near_field#

Reports.near_field(expressions=None, setup=None)[source]#

Create a Field Report object.

Parameters:
expressionsstr or list

Expression List to add into the report. The expression can be any of the available formula you can enter into the Electronics Desktop Report Editor.

setupstr, optional

Name of the setup. The default is None, in which case the nominal_adaptive setup is used. Be 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.

Returns:
ansys.aedt.core.modules.report_templates.NearField

Examples

>>> from ansys.aedt.core import Hfss
>>> hfss = Hfss(my_project)
>>> report = hfss.post.reports_by_category.near_field("GainTotal", "Setup : LastAdaptive", "NF_1")
>>> report.primary_sweep = "Phi"
>>> report.create()
>>> solutions = report.get_solution_data()