create_setup#

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

Create an analysis setup for Icepak. Optional arguments are passed along with setuptype and setupname. Keyword names correspond to the setuptype corresponding to the native AEDT API. The list of keywords here is not exhaustive.

Note

This method overrides the Analysis.setup() method for the HFSS app.

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 setup chosen. For more information, see Icepak templates and arguments.

Returns:
pyaedt.modules.SolveSetup.SetupHFSS

3D Solver Setup object.

References

>>> oModule.InsertSetup

Examples

>>> from pyaedt import Icepak
>>> app = Icepak()
>>> app.create_setup(setupname="Setup1", setuptype="TransientTemperatureOnly", MaxIterations=20)