Material and Stackup#
This section lists material and stackup modules. Those classes cannot be used directly and can be accessed through Application. Example:
Contains the AEDT materials database and all methods for creating and editing materials. |
|
Contains a list of constant names for all materials with mappings to their internal XML names. |
|
Contains a list of constant names for all surface materials with mappings to their internal XML names. |
|
Manages simple, anisotropic, tensor, and non-linear properties. |
|
Manages material properties. |
|
Manages surface material properties. |
|
Manages layers for the Circuit and HFSS 3D Layout tools. |
|
Manages the stackup layer. |
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 return the Materials Class
my_materials = app.materials
# this call return the Material Class
copper = my_materials["copper"]
# this property is from MatProperty Class
copper.conductivity
...