create#
- Spectral.create(name: str = None) bool#
Create an eye diagram report.
- Parameters:
- name
str,optional Plot name. The default is
None, in which case the default name is used.
- name
- Returns:
- bool
Truewhen successful,Falsewhen 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()