antenna_parameters#
- Reports.antenna_parameters(expressions=None, setup=None, infinite_sphere=None)#
Create an Antenna Parameters Report object.
- Parameters:
- expressions
strorlist 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.
- setup
str,optional Name of the setup. The default is
None, in which case thenominal_adaptivesetup is used. Be sure to build a setup string in the form of"SetupName : SetupSweep", whereSetupSweepis the sweep name to use in the export orLastAdaptive.- infinite_sphere
str,optional Name of the sphere to compute antenna parameters on.
- expressions
- Returns:
ansys.aedt.core.modules.report_templates.AntennaParameters
Examples
>>> from ansys.aedt.core import Hfss >>> hfss = Hfss(my_project) >>> report = hfss.post.reports_by_category.antenna_parameters("GainTotal", "Setup : LastAdaptive", "3D_Sphere") >>> report.create() >>> solutions = report.get_solution_data()