create_setup#
- Icepak.create_setup(name=None, setup_type=None, **kwargs)[source]#
Create an analysis setup for Icepak. Optional arguments are passed along with
setup_type
andname
. Keyword names correspond to thesetup_type
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:
- name
str
,optional
Name of the setup.
- setup_type
int
,str
,optional
Type of the setup. Options are
"IcepakSteadyState"
and"IcepakTransient"
. The default is"IcepakSteadyState"
.- **kwargs
dict
,optional
Available keys depend on setup chosen. For more information, see Icepak templates and arguments.
- name
- Returns:
ansys.aedt.core.modules.solve_setup.SetupHFSS
3D Solver Setup object.
References
>>> oModule.InsertSetup
Examples
>>> from ansys.aedt.core import Icepak >>> app = Icepak() >>> app.create_setup(setup_type="TransientTemperatureOnly",name="Setup1",MaxIterations=20)