create_ports#
- Choke.create_ports(ground: Object3d, app: Hfss) list#
Create the ports.
- Parameters:
- ground
ansys.aedt.core.modeler.cad.object3d Ground object.
- ground
- Returns:
listList of ports.
Examples
>>> import ansys.aedt.core as pyaedt >>> from ansys.aedt.core.modeler.advanced_cad.choke import Choke >>> hfss = pyaedt.Hfss() >>> choke = Choke() >>> choke.create_choke(app=hfss) >>> ground = choke.create_ground(app=hfss) >>> ports = choke.create_ports(ground, app=hfss)