create_setup#

Rmxprt.create_setup(setupname='MySetupAuto', setuptype=None, **kwargs)[source]#

Create an analysis setup for RmXport.

Optional arguments are passed along with the setuptype and setupname parameters. Keyword names correspond to the setuptype corresponding to the native AEDT API. The list of keywords here is not exhaustive.

Parameters:
setuptypeint, str, optional

Type of the setup. Options are “IcepakSteadyState” and “IcepakTransient”. The default is “IcepakSteadyState”.

setupnamestr, optional

Name of the setup. The default is “Setup1”.

**kwargsdict, optional

Available keys depend on the setup chosen. For more information, see RMXprt templates and arguments.

Returns:
pyaedt.modules.SolveSetup.SetupHFSS

Solver Setup object.

References

>>> oModule.InsertSetup

Examples

>>> from pyaedt import Hfss
>>> hfss = Hfss()
>>> hfss.create_setup(setupname="Setup1", setuptype="HFSSDriven", Frequency="10GHz")