1 # Copyright (C) 2014-2020 EDF R&D
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 from qtsalome import QSqlQuery
21 from Base.tableDeBase import TableDeBase
23 class TableGroupeRatios (TableDeBase):
25 TableDeBase.__init__(self,"GroupesRatios")
26 self.setField(('Maillage','Version','Groupe','RatioMax','RatioMin','Quartile1','Mediane','Quartile3','Moyenne'))
27 self.setTypeField(('int','int','str','float','float','float','float','float','float'),('idMaillage','idVersion','Groupe'))
29 def createSqlTable(self):
32 texteQuery ="create table GroupesRatios(idMaillage int, idVersion int, Groupe varchar(40),"
33 texteQuery+="RatioMax float, RatioMin float, "
34 texteQuery+="Q1 float,"
35 texteQuery+="Mediane float,"
36 texteQuery+="Q3 float,"
37 texteQuery+="Moyenne float,"
38 texteQuery+="foreign key (idMaillage) references Maillages(id),"
39 texteQuery+="foreign key (idVersion) references Versions(id),"
40 texteQuery+="foreign key (Groupe) references GroupesRef(nomGroupe),"
41 texteQuery+="primary key (idMaillage,idVersion,Groupe));"
42 print("Creation de TableGroupeRatios : " , query.exec_(texteQuery))
44 def getVal(self,idMaillage, idVersion, Groupe, Entite):
46 texteQuery ='select '+ str(Entite) + ' from GroupesRatios where idMaillage='+str(idMaillage)
47 texteQuery+=' and idVersion='+str(idVersion)
48 texteQuery+=" and Groupe='" + str(Groupe) +"';"
49 query.exec_(texteQuery)
51 val=0 # Valeur si l enregistrement n existe pas
52 while (query.next()) :
53 val=query.value(0).toFloat()[0]
55 if nb > 1 : print("Double valeur de Reference dans la table des mailles")