create_setup#
- Q3d.create_setup(name='MySetupAuto', **kwargs)[source]#
Create an analysis setup for Q3D Extractor.
Optional arguments are passed along with the
name
parameter.- Parameters:
- name
str
,optional
Name of the setup. The default is “Setup1”.
- **kwargs
dict
,optional
Available keys depend on the setup chosen. For more information, see Q3D templates and arguments.
- name
- Returns:
ansys.aedt.core.modules.solve_setup.SetupQ3D
3D Solver Setup object.
References
>>> oModule.InsertSetup
Examples
>>> from ansys.aedt.core import Q3d >>> app = Q3d() >>> app.create_setup(name="Setup1",DC__MinPass=2)