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:
namestr, optional

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

**kwargsdict, optional

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

Returns:
pyaedt.modules.SolveSetup.SetupQ3D

3D Solver Setup object.

References

>>> oModule.InsertSetup

Examples

>>> from pyaedt import Q3d
>>> app = Q3d()
>>> app.create_setup(name="Setup1",DC__MinPass=2)