]> SALOME platform Git repositories - modules/parametric.git/blob - src/salome/parametric/gui/eficas/parametric_exec_params_cata.py
Salome HOME
First version of PARAMETRIC module
[modules/parametric.git] / src / salome / parametric / gui / eficas / parametric_exec_params_cata.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2012 EDF
4 #
5 # This file is part of SALOME PARAMETRIC module.
6 #
7 # SALOME PARAMETRIC module is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # SALOME PARAMETRIC module is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with SALOME PARAMETRIC module.  If not, see <http://www.gnu.org/licenses/>.
19
20 from salome.parametric.gui.eficas.appli import SalomeEntry
21 from Accas import *
22
23 JdC = JDC_CATA(regles = (UN_PARMI('EXECUTION_PARAMETERS',)),
24                         )
25
26 EXECUTION_PARAMETERS = PROC(
27     nom = "EXECUTION_PARAMETERS", op = None,
28     fr = u"Paramètres d'exécution de l'étude paramétrique",
29     PARAMETRIC_STUDY_NAME = SIMP(statut = "o", typ = 'TXM',
30                                  defaut = "Parametric Study",
31                                  fr = u"Nom de l'étude paramétrique qui sera créée dans l'arbre d'étude de Salome"),
32     SOLVER_CODE = SIMP(statut = "o", typ = 'TXM',
33                        defaut = "DEVIATION",
34                        fr = u"Nom du composant de calcul"),
35     DETERMINISTIC_CASE_ENTRY = SIMP(statut = "o", typ = SalomeEntry,
36                                     fr = u"Cas déterministe dans l'arbre d'étude de Salome"),
37     NUMBER_OF_PARALLEL_COMPUTATIONS = SIMP(statut = "o", typ = 'I', defaut = 1,
38                                            fr = u"Nombre de branches de calcul parallèles"),
39 )