]> SALOME platform Git repositories - tools/eficas.git/blob - CatasDeTests/cata_FactFreresMemesNoms.py
Salome HOME
reindent + copyright + merge manuel avec la V9_dev sauf repertoires metier
[tools/eficas.git] / CatasDeTests / cata_FactFreresMemesNoms.py
1 # Copyright (C) 2008-2018 EDF R&D
2 #
3 # This file is part of SALOME ADAO module
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 import os, re
21 import Accas
22 from Accas import *
23 monFichier=os.path.abspath(__file__)
24
25 JdC = JDC_CATA (
26     code='Essai'
27     )
28 VERSION_CATALOGUE='V_0'
29
30 #leProc = PROC(nom = 'leProc',
31 #      unSimp = SIMP(statut='o', typ ='I'),
32 #      bloc1 = BLOC(condition = "UnSimp == 1",
33 #         leFact1 = FACT(statut = 'o',
34 #               Name = SIMP(typ='TXM', statut='o',),
35 #               ScalarFluxModel = SIMP(typ='TXM', statut='o'),
36 #          ),
37 #      ), # fin bloc1
38 #      bloc2 = BLOC(condition = "UnSimp == 2",
39 #         leFact1 = FACT(statut = 'o',
40 #               Name = SIMP(typ='TXM', statut='o',),
41 #         ),
42 #      )
43 #)
44 leProcV2 = PROC(nom = 'leProcV2',
45       unSimpV2 = SIMP(statut='o', typ ='I'),
46       blocV21 = BLOC(condition = "UnSimpV2 == 1",
47          leFactV21 = FACT(statut = 'o',
48             ScalarV2 = FACT(statut = 'f', max ='**',
49                NameV2 = SIMP(typ='TXM', statut='o',),
50                ScalarFluxModelV2 = SIMP(typ='TXM', statut='o'),
51             ),# Scalar
52           ),
53       ), # fin bloc1
54       blocV22 = BLOC(condition = "UnSimp == 2",
55          leFactV21 = FACT(statut = 'o',
56             ScalarV2 = FACT (  statut = 'f', max ='**',
57                NameV2 = SIMP(typ='TXM', statut='o',),
58           ),# ScalarV2
59          ),
60       ), # fin bloc2
61 )