set_mesh_fusion_settings#
- Hfss.set_mesh_fusion_settings(assignment: list | str = None, volume_padding: list = None, priority: list = None) bool [source]#
Set mesh fusion settings in HFSS.
- componentlist, optional
List of active 3D Components. The default is
None
, in which case components are disabled.- volume_paddinglist, optional
List of mesh envelope padding, the format is
[+x, -x, +y, -y, +z, -z]
. The default isNone
, in which case all zeros are applied.- prioritylist, optional
List of components with the priority flag enabled. The default is
None
.
- Returns:
- bool
True
when successful,False
when failed.
References
>>> oDesign.SetDoMeshAssembly
Examples
>>> import ansys.aedt.core >>> app = ansys.aedt.core.Hfss() >>> app.set_mesh_fusion_settings(assignment=["Comp1", "Comp2"], >>> volume_padding=[[0,0,0,0,0,0], [0,0,5,0,0,0]],priority=["Comp1"])