eye_diagram#
- Reports.eye_diagram(expressions=None, setup=None, quantity_type=3, statistical_analysis=True, unit_interval='1ns')#
Create a Standard or Default Report object.
- 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 the sweep name to use in the export orLastAdaptive
.- quantity_type
int
,optional
For AMI Analysis only, specify the quantity type. Options are: 0 for Initial Wave, 1 for Wave after Source, 2 for Wave after Channel and 3 for Wave after Probe. Default is 3.
- statistical_analysisbool,
optional
For AMI Analysis only, whether to plot the statistical eye plot or transient eye plot. The default is
True
.- unit_interval
str
,optional
Unit interval for the eye diagram.
- expressions
- Returns:
ansys.aedt.core.modules.report_templates.Standard
Examples
>>> from ansys.aedt.core import Circuit >>> cir= Circuit() >>> new_eye = cir.post.reports_by_category.eye_diagram("V(Vout)") >>> new_eye.unit_interval = "1e-9s" >>> new_eye.time_stop = "100ns" >>> new_eye.create()