export_mesh_obj#

PostProcessor.export_mesh_obj(setup_name=None, intrinsic_dict=None)[source]#

Export the mesh in aedtplt format. The mesh has to be available in the selected setup. If a parametric model is provided user can choose the mesh to export providing a specific set of variations. This method applies only to Hfss, Q3d, Q2D, Maxwell3d, Maxwell2d, Icepak and Mechanical objects. This method is calling create_fieldplot_surface to create a mesh plot and export_field_plot to export it as aedtplt file.

Parameters:
setup_namestr, optional

Name of the setup. The default is None which automatically take nominal_adaptive setup. Please make sure to build a setup string in the form of "SetupName : SetupSweep" where SetupSweep is the Sweep name to use in the export or LastAdaptive.

intrinsic_dictdict, optional.

Intrinsic dictionary that is needed for the export. The default is {} which assumes no variables are present in the dict or nominal values are used.

Returns:
str

File Generated with full path.

Examples

>>> from pyaedt import Hfss
>>> hfss = Hfss()
>>> hfss.analyze()
>>> # Export report using defaults.
>>> hfss.post.export_mesh_obj(setup_name=None, intrinsic_dict=None)
>>> # Export report using arguments.
>>> hfss.post.export_mesh_obj(setup_name="MySetup : LastAdaptive", intrinsic_dict={"w1":"5mm", "l1":"3mm"})