eye_diagram#

Reports.eye_diagram(expressions=None, setup=None, quantity_type=3, statistical_analysis=True, unit_interval='1ns')[source]#

Create a Standard or Default Report object.

Parameters:
expressionsstr

Expression 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.

quantity_typeint, 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_intervalstr, optional

Unit interval for the eye diagram.

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()