create_setup#

Circuit.create_setup(name='MySetupAuto', setup_type=None, **kwargs)[source]#

Create a setup.

Parameters:
namestr, optional

Name of the new setup. The default is "MySetupAuto".

setup_typestr, optional

Type of the setup. The default is None, in which case the default type is applied.

**kwargsdict, optional

Extra arguments to set up the circuit. Available keys depend on the setup chosen. For more information, see Circuit templates and arguments.

Returns:
pyaedt.modules.SolveSetup.SetupCircuit

Setup object.

References

>>> oModule.AddLinearNetworkAnalysis
>>> oModule.AddDCAnalysis
>>> oModule.AddTransient
>>> oModule.AddQuickEyeAnalysis
>>> oModule.AddVerifEyeAnalysis
>>> oModule.AddAMIAnalysis

Examples

>>> from pyaedt import Circuit
>>> app = Circuit()
>>> app.create_setup(name="Setup1",setup_type=app.SETUPS.NexximLNA,Data="LINC 0GHz 4GHz 501")