@@ -48,7 +48,7 @@ PyAEDT supports AEDT versions 2021 R1 or newer.
48
48
Student Version
49
49
---------------
50
50
51
- PyAEDT now supports supports also AEDT Student version 2021 R2. Visit
51
+ PyAEDT now supports also AEDT Student version 2021 R2. Visit
52
52
`Student Version page <https://www.ansys.com/academic/students/ansys-e
53
53
lectronics-desktop-student> `_
54
54
for more info.
@@ -57,7 +57,7 @@ for more info.
57
57
Why PyAEDT?
58
58
-----------
59
59
A quick and easy approach for automating a simple operation in the
60
- AEDT UI is to record and reuse a scripts . However, disadvantages of
60
+ AEDT UI is to record and reuse a script . However, disadvantages of
61
61
this approach are:
62
62
63
63
- Recorded code is dirty and difficult to read and understand.
@@ -97,7 +97,7 @@ Explicit Desktop Declaration and Error Management
97
97
98
98
.. code :: python
99
99
100
- Launch AEDT 2021 R1 in Non- Graphical mode
100
+ # Launch AEDT 2021 R1 in Non-Graphical mode
101
101
102
102
from pyaedt import Desktop, Circuit
103
103
with Desktop(specified_version = " 2021.1" ,
@@ -116,9 +116,9 @@ Implicit Desktop Declaration and Error Management
116
116
117
117
.. code :: python
118
118
119
- Launch the latest installed version of AEDT in graphical mode
119
+ # Launch the latest installed version of AEDT in graphical mode
120
120
121
- from pyaedt import Circuit
121
+ from pyaedt import Circuit
122
122
with Circuit(specified_version = " 2021.2" ,
123
123
non_graphical = False ) as circuit:
124
124
...
@@ -141,7 +141,7 @@ On a CPython Server
141
141
launch_server()
142
142
143
143
144
- On any windows client machine
144
+ On any Windows client machine
145
145
146
146
.. code :: python
147
147
@@ -166,7 +166,7 @@ Modeler
166
166
167
167
.. code :: python
168
168
169
- Create a box, assign variables, and assign materials.
169
+ # Create a box, assign variables, and assign materials.
170
170
171
171
from pyaedt.hfss import Hfss
172
172
with Hfss as hfss:
@@ -181,7 +181,7 @@ This PyAEDT module makes no commercial claim over Ansys
181
181
whatsoever. PyAEDT extends the functionality of AEDT by adding
182
182
an additional Python interface to AEDT without changing the core
183
183
behavior or license of the original software. The use of the
184
- interactive APDL control of PyAEDT requires a legally licensed
184
+ interactive control of PyAEDT requires a legally licensed
185
185
local copy of AEDT. For more information about AEDT,
186
186
visit the `AEDT page <https://www.ansys.com/products/electronics >`_
187
187
on the Ansys website.
0 commit comments