create#

EyeDiagram.create(name: str = None) bool#

Create an eye diagram report.

Parameters:
namestr, optional

Plot name. The default is None, in which case the default name is used.

Returns:
bool

True when successful, False when failed.

Examples

>>> from ansys.aedt.core import Circuit
>>> circuit = Circuit()
>>> rep = circuit.post.reports_by_category.eye_diagram("AEYEPROBE(OutputEye)", "QuickEyeAnalysis")
>>> rep.time_start = "0ps"
>>> rep.time_stop = "50us"
>>> rep.unit_interval = "1e-9"
>>> rep.create()