add_coplanar_waveguide#
- SubstrateManager.add_coplanar_waveguide(dielectric_height: str, dielectric_constant: float | int, dielectric_loss_tangent: float | int, cover_height: str, roughness: str = '', metal_material: str = 'copper', metal_thickness: str = '0.7mil', cover_metal_material: str = '', cover_metal_thickness: str = '', name: str | None = None) SubstrateDataBlock#
Add a coplanar waveguide (CPW) substrate data block to the circuit design.
- Parameters:
- dielectric_height
str Dielectric layer height, including units.
- dielectric_constant
floatorint Relative permittivity (epsilon-r) of the dielectric.
- dielectric_loss_tangent
floatorint Loss tangent of the dielectric.
- cover_height
str Height from the conductor to the metallic cover, including units.
- roughness
str,optional Conductor surface roughness, including units. The default is
"".- metal_material
str,optional Strip conductor material. The default is
"copper".- metal_thickness
str,optional Strip conductor thickness, including units. The default is
"0.7mil".- cover_metal_material
str,optional Cover conductor material. The default is
"".- cover_metal_thickness
str,optional Cover conductor thickness, including units. The default is
"".- name
str,optional Name of the substrate data block. A unique name is generated when
None. The default isNone.
- dielectric_height
- Returns:
ansys.aedt.core.modules.substrate_circuit.SubstrateDataBlockSubstrate data block object.
Examples
>>> sub = cir.substrate.add_coplanar_waveguide("1mm", 2.2, 0.0, "25mm")