add_rectangular_waveguide#
- SubstrateManager.add_rectangular_waveguide(num_layers: int, roughness: str = '', metal_material: str = 'copper', metal_thickness: str = '0.7mil', name: str | None = None) SubstrateDataBlock#
Add a rectangular waveguide substrate data block to the circuit design.
- Parameters:
- num_layers
int Number of dielectric layers in the stack.
- roughness
str,optional Conductor surface roughness, including units. The default is
"".- metal_material
str,optional Conductor material. The default is
"copper".- metal_thickness
str,optional Conductor thickness, including units. The default is
"0.7mil".- name
str,optional Name of the substrate data block. A unique name is generated when
None. The default isNone.
- num_layers
- Returns:
ansys.aedt.core.modules.substrate_circuit.SubstrateDataBlockSubstrate data block object.
Examples
>>> sub = cir.substrate.add_rectangular_waveguide(num_layers=3)