export_fullwave_spice#
- Circuit.export_fullwave_spice(design: str | None = None, setup: str | None = None, is_solution_file: bool | None = False, filename: str | None = None, passivity: bool | None = False, causality: bool | None = False, renormalize: bool | None = False, impedance: int | None = 50, error: float | None = 0.5, poles: int | None = 10000) str#
Export a full wave HSpice file using NDE.
Warning
This method doesn’t work.
- Parameters:
- design
str,optional Name of the design or the full path to the solution file if it is an imported file. The default is
None.- setup
str,optional Name of the setup if it is a design. The default is
None.- is_solution_filebool,
optional Whether it is an imported solution file. The default is
False.- filename
strorpathlib.Path,optional Full path and name for exporting the HSpice file. The default is
None, in which case the file is exported to the working directory.- passivitybool,
optional Whether to compute the passivity. The default is
False.- causalitybool,
optional Whether to compute the causality. The default is
False.- renormalizebool,
optional Whether to renormalize the S-matrix to a specific port impedance. The default is
False.- impedance
float,optional Impedance value if
renormalize=True. The default is50.- error
float,optional Fitting error. The default is
0.5.- poles
int,optional Number of fitting poles. The default is
10000.
- design
- Returns:
strName of the HSpice file if the export is successful.
References
>>> oDesign.ExportFullWaveSpice