statistical_eye_contour#

Reports.statistical_eye_contour(expressions=None, setup=None, quantity_type=3)[source]#

Create a standard statistical AMI contour plot.

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 either the sweep

name to use in the export or LastAdaptive.

quantity_typeint, optional

For AMI analysis only, the quantity type. The default is 3. Options are:

  • 0 for Initial Wave

  • 1 for Wave after Source

  • 2 for Wave after Channel

  • 3 for Wave after Probe.

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