create#

Spectral.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()
>>> new_report = circuit.post.reports_by_category.spectral(["dB(V(net_11))"], "Transient")
>>> new_report.window = "Hanning"
>>> new_report.max_freq = "1GHz"
>>> new_report.time_start = "1ns"
>>> new_report.time_stop = "190ns"
>>> new_report.create()