add_stripline#

SubstrateManager.add_stripline(dielectric_height: str, dielectric_constant: float | int, dielectric_loss_tangent: float | int, roughness: str = '', metal_material: str = 'copper', metal_thickness: str = '0.7mil', bottom_metal_material: str = '', bottom_metal_thickness: str = '', name: str | None = None) SubstrateDataBlock#

Add a stripline substrate data block to the circuit design.

Parameters:
dielectric_heightstr

Height of the dielectric layer between the conductor and the ground plane, including units (for example, "10mil").

dielectric_constantfloat or int

Relative permittivity (epsilon-r) of the dielectric.

dielectric_loss_tangentfloat or int

Loss tangent of the dielectric.

roughnessstr, optional

Conductor surface roughness, including units. The default is "".

metal_materialstr, optional

Top conductor material name. The default is "copper".

metal_thicknessstr, optional

Top conductor thickness, including units. The default is "0.7mil".

bottom_metal_materialstr, optional

Bottom conductor material name. The default is "".

bottom_metal_thicknessstr, optional

Bottom conductor thickness, including units. The default is "".

namestr, optional

Name of the substrate data block. A unique name is generated when None. The default is None.

Returns:
ansys.aedt.core.modules.substrate_circuit.SubstrateDataBlock

Substrate data block object.

Examples

>>> sub = cir.substrate.add_stripline("20mil", 4.4, 0.02)