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 is None, 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 pyaedt
>>> app = pyaedt.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"])