@@ -636,41 +636,39 @@ def assign_heat_generation(self, objects_list, value, boundary_name=""):
636636 def create_setup (self , setupname = "MySetupAuto" , setuptype = None , ** kwargs ):
637637 """Create an analysis setup for Mechanical.
638638
639- Optional arguments are passed along with ``setuptype`` and ``setupname``. Keyword
640- names correspond to the ``setuptype``
641- corresponding to the native AEDT API. The list of
642- keywords here is not exhaustive.
643-
644-
645- Parameters
646- ----------
647- setuptype : int, str, optional
648- Type of the setup. Options are ``"IcepakSteadyState"`` and
649- ``"IcepakTransient"``. The default is ``"IcepakSteadyState"``.
650- setupname : str, optional
651- Name of the setup. The default is ``"Setup1"``.
652- **kwargs : dict, optional
653- Available keys depend on the setup chosen.
654- For more information, see :doc:`../SetupTemplatesMechanical`.
655-
656- Returns
657- -------
658- :class:`pyaedt.modules.SolveSetup.SetupHFSS`
659- Solver Setup object.
660-
661- References
662- ----------
663-
664- >>> oModule.InsertSetup
665-
666- Examples
667- --------
668-
669- >>> from pyaedt import Mechanical
670- >>> app = Mechanical()
671- >>> app.create_setup(setup_name="Setup1",MaxModes=6)
672- )
639+ Optional arguments are passed along with ``setuptype`` and ``setupname``. Keyword
640+ names correspond to the ``setuptype``
641+ corresponding to the native AEDT API. The list of
642+ keywords here is not exhaustive.
643+
644+
645+ Parameters
646+ ----------
647+ setuptype : int, str, optional
648+ Type of the setup. Options are ``"IcepakSteadyState"`` and
649+ ``"IcepakTransient"``. The default is ``"IcepakSteadyState"``.
650+ setupname : str, optional
651+ Name of the setup. The default is ``"Setup1"``.
652+ **kwargs : dict, optional
653+ Available keys depend on the setup chosen.
654+ For more information, see :doc:`../SetupTemplatesMechanical`.
655+
656+ Returns
657+ -------
658+ :class:`pyaedt.modules.SolveSetup.SetupHFSS`
659+ Solver Setup object.
660+
661+ References
662+ ----------
663+
664+ >>> oModule.InsertSetup
665+
666+ Examples
667+ --------
673668
669+ >>> from pyaedt import Mechanical
670+ >>> app = Mechanical()
671+ >>> app.create_setup(setup_name="Setup1",MaxModes=6)
674672 """
675673 if setuptype is None :
676674 setuptype = self .design_solutions .default_setup
0 commit comments