meshoperations#

property Mesh.meshoperations[source]#

Return the available mesh operations.

Returns:
List
List of pyaedt.modules.Mesh.MeshOperation

List of mesh operation object.

Examples

Basic usage demonstrated with an HFSS design:

>>> from pyaedt import Hfss
>>> aedtapp = Hfss()
>>> o = aedtapp.modeler.create_cylinder(0, [0, 0, 0], 3, 20, 0)
>>> mr1 = aedtapp.mesh.assign_model_resolution(o, 1e-4, "ModelRes1")
>>> mesh_operations_list = aedtapp.mesh.meshoperations