add_signal_layer#
- Stackup3D.add_signal_layer(name, material='copper', thickness=0.035, fill_material='FR4_epoxy', frequency=None)[source]#
Add a new ground layer to the stackup. A signal layer is positive. The layer is entirely filled with the fill material. Anything will be drawn material.
- Parameters:
- name
str
Layer name.
- material
str
Material name. Material will be parametrized.
- thickness
float
,str
,None
Thickness value. Thickness will be parametrized.
- fill_material
str
Fill Material name. Material will be parametrized.=
- material
str
,optional
Material name. Material will be parametrized. Default value is “copper”.
- thickness
float
,optional
Thickness value. Thickness will be parametrized. Default value is 0.035.
- fill_material
str
,optional
Fill material name. Material will be parametrized. Default value is “FR4_epoxy”.
- frequency
float
,optional
The layer frequency, it will be common to all geometric shapes on the layer. The default is None, so each shape must have their own frequency.
- name
- Returns:
Examples
>>> from ansys.aedt.core import Hfss >>> from ansys.aedt.core.modeler.advanced_cad.stackup_3d import Stackup3D >>> hfss = Hfss() >>> my_stackup = Stackup3D(hfss, 2.5e9) >>> my_signal_layer = my_stackup.add_signal_layer("signal_layer")