add_microstrip#

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

Add a microstrip substrate data block to the circuit design.

Parameters:
dielectric_heightstr

Height of the dielectric layer, 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.

air_heightstr

Height of the air region above the substrate, including units.

roughnessstr, optional

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

metal_materialstr, optional

Conductor material name. The default is "copper".

metal_thicknessstr, optional

Conductor thickness, including units. The default is "0.7mil".

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_microstrip("10mil", 4.4, 0.02, "25mm", roughness="1pm")