export_mask_violation#

EyeDiagram.export_mask_violation(output_file: str = None) str#

Export the eye diagram mask violations to a TAB file.

Parameters:
output_filestr, optional

Full path to the TAB file. The default is None, in which case the violations are exported to a TAB file in the working directory.

Returns:
str

Output file path if a TAB file is created.

Examples

>>> from ansys.aedt.core import Circuit
>>> circuit = Circuit()
>>> rep = circuit.post.reports_by_category.eye_diagram("AEYEPROBE(OutputEye)", "QuickEyeAnalysis")
>>> rep.create()
>>> rep.export_mask_violation()