monitor#
- Reports.monitor(expressions=None, setup=None)#
Create an Icepak Monitor Report object.
- Parameters:
- expressions
str
orlist
One or more expressions to add to 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_adaptive
setup is used. Be sure to build a setup string in the form of"SetupName : SetupSweep"
, whereSetupSweep
is the sweep name to use in the export orLastAdaptive
.
- expressions
- Returns:
ansys.aedt.core.modules.report_templates.Standard
Examples
>>> from ansys.aedt.core import Icepak >>> ipk = Icepak(my_project) >>> report = ipk.post.reports_by_category.monitor(["monitor_surf.Temperature","monitor_point.Temperature"]) >>> report = report.create()