statistical_eye_contour#
- Reports.statistical_eye_contour(expressions=None, setup=None, quantity_type=3)#
Create a standard statistical AMI contour plot.
- Parameters:
- expressions
str
Expression 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_adaptive
setup is used. Be sure to build a setup string in the form of"SetupName : SetupSweep"
, whereSetupSweep
is either the sweepname to use in the export or
LastAdaptive
.- quantity_type
int
,optional
For AMI analysis only, the quantity type. The default is
3
. Options are:0
for Initial Wave1
for Wave after Source2
for Wave after Channel3
for Wave after Probe.
- expressions
- Returns:
ansys.aedt.core.modules.report_templates.AMIConturEyeDiagram
Examples
>>> from ansys.aedt.core import Circuit >>> cir= Circuit() >>> new_eye = cir.post.reports_by_category.statistical_eye_contour("V(Vout)") >>> new_eye.unit_interval = "1e-9s" >>> new_eye.time_stop = "100ns" >>> new_eye.create()