circuit_netlist#

Reports.circuit_netlist(setup, expressions=None, domain=None)#

Create a Circuit Netlist Report object.

Parameters:
setupstr

Name of the analysis type. Specify the name of the analysis as listed in ansys.aedt.core.generic.aedt_constants.CircuitNetlistConstants.

expressionsstr or list, optional

One or more expressions to add into the report.

domainstr, optional

Domain of the report. The default is None, in which case the domain is set to "Sweep" or "Time" for transient analysis.

Returns:
ansys.aedt.core.modules.report_templates.netlist.CircuitNetlistReport

Examples

Initialize Circuit Netlist. >>> from ansys.aedt.core import CircuitNetlist >>> cir = CircuitNetlist(version=”2025.2”) Create a report object (not in AEDT) for a transient analysis. >>> new_report = cir.post.reports_by_category.circuit_netlist( … expressions=”V(net_20,0)”, setup=”NexximTransient”, domain=”Time”, primary_sweep_variable=”Time” … ) Set time range for the report. >>> new_report.time_start = “0us” >>> new_report.time_stop = “10us” Create the report in AEDT. >>> assert new_report.create() >>> cir.release_desktop(False, False)