From b212a90e8663a5a6ab8e277191bfd1ce6206cc95 Mon Sep 17 00:00:00 2001 From: "pascale.noyret" Date: Wed, 24 Feb 2021 18:09:01 +0100 Subject: [PATCH] on vire les commentaires --- Efi2Xsd/AccasXsd.py | 3 --- InterfaceQT4/browser.py | 2 +- InterfaceQT4/editorSsIhm.py | 10 +++++----- InterfaceQT4/eficas_go.py | 6 +++--- InterfaceQT4/monChoixCommande.py | 9 +++++++-- InterfaceQT4/monWidgetPlusieursInto.py | 5 +++++ InterfaceQT4/qtEficas.py | 4 ++-- InterfaceQT4/readercata.py | 10 +++++----- Vimmp/cata_CSAndCPS_v16.py | 10 ++++------ 9 files changed, 32 insertions(+), 27 deletions(-) diff --git a/Efi2Xsd/AccasXsd.py b/Efi2Xsd/AccasXsd.py index 8ac2b937..33580963 100755 --- a/Efi2Xsd/AccasXsd.py +++ b/Efi2Xsd/AccasXsd.py @@ -120,7 +120,6 @@ class X_definition: cata.dictTypesXSD[nom].append(self) def definitNomDuTypePyxb(self,forceACreer=False,debug=False): - if self.nom == 'ContactPhenomena' : debug = True if debug : print ('definitNomDuTypePyxb', self, self.nom,self.nomComplet()) if hasattr(self,'nomDuTypePyxb') : self.aCreer = False; return self.nomDuTypePyxb #debug=False @@ -388,8 +387,6 @@ class X_compoFactoriseAmbigu(X_definition): # if faut traiter les Blocs exclusifs qui donnent des choices de sequences # mais celles-ci risquent d etre ambigues while (isinstance(nomMC,list)) : - print ('nomMC anormal (ou pas ? a traiter avec cata_Particle', nomMC) - if len(nomMC) > 1 : print ('monMC vraiment anormal', monMC); exit() nomMC=nomMC[0] if nomMC == 'Consigne' or nomMC == 'blocConsigne' : return diff --git a/InterfaceQT4/browser.py b/InterfaceQT4/browser.py index 0cf223ea..24d4cf14 100644 --- a/InterfaceQT4/browser.py +++ b/InterfaceQT4/browser.py @@ -733,7 +733,7 @@ class JDCNode(QTreeWidgetItem,GereRegles): def onRedessine(self): #--------------------- - print ('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!je passe dans onRedessine pour', self.item.nom) + #print ('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!je passe dans onRedessine pour', self.item.nom) self.affichePanneau() def updateNodeValid(self): diff --git a/InterfaceQT4/editorSsIhm.py b/InterfaceQT4/editorSsIhm.py index c9541c1b..d6fa7298 100755 --- a/InterfaceQT4/editorSsIhm.py +++ b/InterfaceQT4/editorSsIhm.py @@ -141,12 +141,12 @@ class JDCEditorSsIhm : self.nouveau=0 if self.fichier is not None: # fichier jdc fourni if jdc==None : - print ('PNPN : chgt try en if') - #try : - if 1 : + #print ('PNPN : chgt try en if') + try : + #if 1 : self.jdc = self.readFile(self.fichier) - #except : - # print ("mauvaise lecture du fichier") + except : + print ("mauvaise lecture du fichier") if self.salome : try : self.appliEficas.addJdcInSalome( self.fichier) except : print ("mauvais enregistrement dans Salome") diff --git a/InterfaceQT4/eficas_go.py b/InterfaceQT4/eficas_go.py index f9c909f3..bf705900 100755 --- a/InterfaceQT4/eficas_go.py +++ b/InterfaceQT4/eficas_go.py @@ -121,10 +121,10 @@ def genereXML(code=None): fichierXMLOut=fichier[:fichier.rfind(".")]+'.xml' else : fichierXMLOut=options.fichierXMLOut - print (monEditeur.jdc.isValid()) if not(monEditeur.jdc.isValid()): - print ('Fichier comm non valide') - # return + print ('Fichier comm is not valid') + return + print ('Fichier comm is not valid') monEditeur.XMLgenerator.gener(monEditeur.jdc) monEditeur.XMLgenerator.writeDefault(fichierXMLOut) diff --git a/InterfaceQT4/monChoixCommande.py b/InterfaceQT4/monChoixCommande.py index 990fc1c0..d7d2d896 100644 --- a/InterfaceQT4/monChoixCommande.py +++ b/InterfaceQT4/monChoixCommande.py @@ -160,7 +160,7 @@ class MonChoixCommande(Ui_ChoixCommandes,QWidget): listeGroupes,dictGroupes=self.jdc.getGroups() sensibleALaCasse=self.RBCasse.isChecked() if "CACHE" in dictGroupes: aExclure=list(dictGroupes["CACHE"]) - else: aExclure=() + else: aExclure=[] listeACreer=[] listeEtapesDejaPresentes=[] if self.editor.maConfiguration.rendVisiblesLesCaches : @@ -168,7 +168,13 @@ class MonChoixCommande(Ui_ChoixCommandes,QWidget): listeEtapesDejaPresentes.append(e.nom) for c in aExclure : if c not in listeEtapesDejaPresentes : aExclure.remove(c) + for e in self.jdc.etapes: + print (e.nom) + print (e.definition.repetable) + if e.definition.repetable == 'n' : aExclure.append(e.nom) + print (aExclure) for l in self.jdc.getListeCmd(): + print (l) if l not in aExclure : if sensibleALaCasse and (filtre != None and not filtre in l) : continue if (not sensibleALaCasse) and filtre != None and (not filtre in l) and (not filtre.upper() in l) : continue @@ -179,7 +185,6 @@ class MonChoixCommande(Ui_ChoixCommandes,QWidget): if self.editor.maConfiguration.nombreDeBoutonParLigne != 0 : self.ajoutePushButtons() return - #print 'ds ajouteRadioButtons' filtre=str(self.LEFiltre.text()) if filtre==str("") : filtre=None if hasattr(self,'buttonGroup') : diff --git a/InterfaceQT4/monWidgetPlusieursInto.py b/InterfaceQT4/monWidgetPlusieursInto.py index 5472b7e2..2c68a7cf 100644 --- a/InterfaceQT4/monWidgetPlusieursInto.py +++ b/InterfaceQT4/monWidgetPlusieursInto.py @@ -76,6 +76,11 @@ class MonWidgetPlusieursInto (Ui_WidgetPlusieursInto,Feuille,GerePlie,GereListe) if len(self.listeAAfficher) < 30 and hasattr(self,'frameRecherche') : self.frameRecherche.close() if len(self.listeAAfficher) == len(self.listeValeursCourantes) : self.CBCheck.setChecked(True) + if len(self.listeAAfficher) < 10 : + self.setMinimumHeight(len(self.listeAAfficher)*22+10) + else : + self.setMinimumHeight(300) + # try except si la liste des possibles est vide # prevoir qqchose try : diff --git a/InterfaceQT4/qtEficas.py b/InterfaceQT4/qtEficas.py index 3ae0c6d8..3347475e 100755 --- a/InterfaceQT4/qtEficas.py +++ b/InterfaceQT4/qtEficas.py @@ -439,8 +439,8 @@ class Appli(AppliSsIhm,Ui_Eficas,QMainWindow): self.actionParametres_Eficas.triggered.connect(self.aidePSEN) def VIMMP(self): - print ('PN : todo connecter RechercherDsCatalogue') - #self.connectRechercherDsCatalogue() + #print ('PN : todo connecter RechercherDsCatalogue') + self.connectRechercherDsCatalogue() def ChercheGrpMesh(self): diff --git a/InterfaceQT4/readercata.py b/InterfaceQT4/readercata.py index 647fe043..3937d81b 100644 --- a/InterfaceQT4/readercata.py +++ b/InterfaceQT4/readercata.py @@ -227,8 +227,8 @@ class ReaderCata (ReaderCataCommun): except : self.QWParent.informe('environnement', 'please source pyxb environment') exit() - #try : - if 1 : + try : + #if 1 : nomCataXsd = os.path.splitext(os.path.basename(self.fichierCata))[0] fichierCataTrunc=os.path.splitext(os.path.basename(self.fichierCata))[0] nomCataXsd = fichierCataTrunc+'_driver' @@ -246,10 +246,10 @@ class ReaderCata (ReaderCataCommun): texte='dicoEltDif = '+ texte exec (texte, globals(),l) dicoEltDif=l['dicoEltDif'] - print ('dans readerCata _________', dicoEltDif) + #print ('dans readerCata _________', dicoEltDif) - #except : - else : + except : + #else : if self.appliEficas.ssIhm == False :print ('______________ poum import cata_genere ') self.QWParent.informe('XSD driver', 'unable to load xsd driver',critique=False) modeleMetier = None diff --git a/Vimmp/cata_CSAndCPS_v16.py b/Vimmp/cata_CSAndCPS_v16.py index 66eb4ef8..955cfb1c 100644 --- a/Vimmp/cata_CSAndCPS_v16.py +++ b/Vimmp/cata_CSAndCPS_v16.py @@ -7,7 +7,7 @@ class converter(mapper):pass class interpolator(mapper):pass class modeleNumDuCompo(UserASSD):pass class especeChimique(UserASSD):pass -class userParticle(UserASSD) :pass +class userParticle(UserASSDMultiple) :pass class userAtom(userParticle) :pass class userMolecule(userParticle) :pass class userDiscrete(userParticle) :pass @@ -74,6 +74,8 @@ dictCodeFormat = { 'OpenFOAM' : ('OpenFoamFormat', 'Med', ), } +listeFormatGenerique =['Med', 'Cgns', 'msh','geo', 'ascii' ] + dictInterpolatorFormat = { 'Med Coupling' : ('Med',), } @@ -554,7 +556,7 @@ def prepareBlocCPS(): Velocity = SIMP(typ=(dynamicVariable,'createObject'), statut='o', defaut ='Velocity', homo='constant'), ToSimulate = SIMP(typ=bool, statut ='o', defaut = True,), blocSimulatedVelocity = prepareBlocInitialisationParticle(condition = 'ToSimulate == True', termeSource=True), - # blocNotSimulatedVelocity = prepareBlocOrigine(condition = 'ToSimulate == False',), + blocNotSimulatedVelocity = prepareBlocOrigine(condition = 'ToSimulate == False',), ), #fin VelocityDefinition blocHydrodynamic = BLOC(condition = '"Hydrodynamic" in MomentumFieldType', FluidVelocitySeenByParticles = FACT(statut ='o', @@ -1521,10 +1523,6 @@ SpatialAspects = PROC(nom='SpatialAspects', dict_condition={ 'ChoiceOfApproach': ('Interactions', 'Component'), 'Interactions' : ( 'Component'), -#NumericalMethod -#TVMChoice -#TypeOfConstraint - } #TEXTE_NEW_JDC = " " -- 2.39.2