]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
echange eric
authorpascale.noyret <pascale.noyret@edf.fr>
Wed, 24 Feb 2021 08:44:39 +0000 (09:44 +0100)
committerpascale.noyret <pascale.noyret@edf.fr>
Wed, 24 Feb 2021 08:44:39 +0000 (09:44 +0100)
Vimmp/cata_CSAndCPS_v15.py

index 09578ca978072d05a9d512dae0bad20e57a345a2..a97dc0b00085bd54525fb11694b2a27523cdeecf 100644 (file)
@@ -891,17 +891,14 @@ def prepareBlocOrigine(condition):
         ),
       ),
    )
-# __________________________________________________________________
-def prepareBlocInitialisation(condition,ajoutPossible=None,particle=False):
-# __________________________________________________________________
+# ___________________________________________________________________________
+def prepareBlocInitialisation( condition, ajoutPossible=None, particle=False):
+# ___________________________________________________________________________
    monIntoType = ['ByValue', 'ByFile', 'ByInteraction']
-   dicoParticle = {}
-   if particle : dicoParticle['ParticleIdentifier']=SIMP(statut='o', typ = userParticle)
    if ajoutPossible != None :
       monIntoType.append(ajoutPossible)
    return BLOC(condition = condition,
        Initialisation = FACT(statut ='o',
-         **dicoParticle,
          InitialisationType = SIMP(statut='o', into = monIntoType, typ ='TXM', defaut='ByValue'),
          blocByFile = creeBlocPourLesFichiers('InitialisationType == "ByFile"', '', ListeFormats = listeFormatGenerique, FieldName='FieldName'),
          blocByInteraction = BLOC(condition = 'InitialisationType == "ByInteraction"',
@@ -918,11 +915,6 @@ def prepareBlocInitialisation(condition,ajoutPossible=None,particle=False):
 
 def prepareBlocInitialisationParticle(condition, termeSource=True):
    monIntoType = ['ByValue', 'ByFile', 'ByInteraction','Not needed' ]
-   dicoTermeSource = {}
-   if termeSource : 
-       dicoTermeSource['SourceTerm']     = SIMP(typ=bool, statut='o', defaut=False),
-       dicoTermeSource['blocSourceTerm'] = prepareTermeSourceDynVar('SourceTerm==True')
-
    if termeSource  : 
     return BLOC(condition = condition,
        Initialisation = FACT(statut ='o',
@@ -946,7 +938,7 @@ def prepareBlocInitialisationParticle(condition, termeSource=True):
      return BLOC(condition = condition,
        Initialisation = FACT(statut ='o',
          InitialisationType = SIMP(statut='o', into =monIntoType, typ ='TXM', defaut='ByValue'),
-         blocNotNeeded = BLOC(condition = 'InitialisationType == "Not needed"',
+         blocNotNeeded = BLOC(condition = 'InitialisationType != "Not needed"',
             ParticleIdentifier=SIMP(statut='o', typ = userParticle),
          ),
          blocByFile = creeBlocPourLesFichiers('InitialisationType == "ByFile"', '', ListeFormats = listeFormatGenerique, FieldName='FieldName'),