Setup#
This section lists setup modules:
* Setup for Hfss
, Maxwell2D
, Maxwell3d
, Q2d
and Q3d
* SetupCircuit for Circuit
and Twin Builder
* Setup3DLayout for Hfss3dLayout
Setup object is accessible through the create_setup
method and setups
object list.
Initializes, creates, and updates a 3D setup. |
|
Initializes, creates, and updates a 3D Layout setup. |
|
Initializes, creates, and updates a circuit setup. |
from pyaedt import Hfss
app = Hfss(specified_version="2022.1",
non_graphical=False, new_desktop_session=True,
close_on_exit=True, student_version=False)
# this call returns the Setup Class
my_setup = app.setups[0]
# this call returns a Setup Object
setup = app.create_setup("MySetup")
...
Sweep Classes#
This section lists Sweep classes and their default values.
* SweepHFSS for Hfss
,
* SweepQ3D for Q3d
* SweepHFSS3DLayout for Hfss3dLayout
Setup object is accessible through the methods available for sweep creation.
Initializes, creates, and updates sweeps in HFSS. |
|
Initializes, creates, and updates sweeps in HFSS 3D Layout. |
|
Initializes, creates, and updates sweeps in Q3D. |