1 # Copyright (C) 2013-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 TableRatios (TableDeBase):
25 TableDeBase.__init__(self,"Ratios")
26 self.setField(('Maillage','Version','RatioMax','RatioMin','Quartile1','Mediane','Quartile3','Moyenne'))
27 self.setTypeField(('int','int','float','float','float','float','float','float'),('idMaillage','idVersion','Machine'))
29 def createSqlTable(self):
32 texteQuery ="create table Ratios(idMaillage int, idVersion int, "
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+="primary key (idMaillage,idVersion));"
42 print("Creation de TableRatios : " , query.exec_(texteQuery))
44 def getVal(self,idMaillage, idVersion, Entite):
46 texteQuery ='select '+ str(Entite) + ' from Ratios where idMaillage='+str(idMaillage)
47 texteQuery+=' and idVersion='+str(idVersion)
48 query.exec_(texteQuery)
50 val=0 # Valeur si l enregistrement n existe pas
51 while (query.next()) :
52 val=query.value(0).toFloat()[0]
54 if nb > 1 : print("Double valeur de Reference dans la table des mailles")