assign_single_conductor#
- Q2d.assign_single_conductor(assignment: list[Object3d] | Object3d, name: str | None = '', conductor_type: str | None = 'SignalLine', solve_option: str | None = 'SolveInside', thickness: float | None = None, units: str | None = 'um') BoundaryObject#
Assign the conductor type to sheets.
- Parameters:
- assignment
listoransys.aedt.core.modeler.cad.object_3d.Object3d List of Object3D.
- name
str,optional Name of the conductor. The default is
"", in which case the default name is used.- conductor_type
str,optional Type of the conductor. Options are
"SignalLine"and"ReferenceGround"and"SurfaceGround". The default is"SignalLine".- solve_option
str,optional Method for solving. Options are
"SolveInside","SolveOnBoundary", and"Automatic". The default is"SolveInside".- thickness
float,optional Conductor thickness. The default is
None, in which case the conductor thickness is obtained by dividing the conductor’s area by its perimeter (A/p). If multiple conductors are selected, the average conductor thickness is used.- units
str,optional Thickness unit. The default is
"um".
- assignment
- Returns:
ansys.aedt.core.modules.boundary.common.BoundaryObjectSource object.
References
>>> oModule.AssignSingleSignalLine >>> oModule.AssignSingleReferenceGround >>> oModule.AssignSingleSurfaceGround