1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# This file is part of Code_Saturne, a general-purpose CFD tool.
#
# Copyright (C) 1998-2019 EDF S.A.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA.
#-------------------------------------------------------------------------------
"""
This module contains the following class:
- NumericalParamGlobalView
"""
#-------------------------------------------------------------------------------
# Library modules import
#-------------------------------------------------------------------------------
import logging
#-------------------------------------------------------------------------------
# Third-party modules
#-------------------------------------------------------------------------------
from code_saturne.Base.QtCore import *
from code_saturne.Base.QtGui import *
from code_saturne.Base.QtWidgets import *
#-------------------------------------------------------------------------------
# Application modules import
#-------------------------------------------------------------------------------
from code_saturne.model.Common import GuiParam
from code_saturne.Base.QtPage import ComboModel, DoubleValidator, from_qvariant
from code_saturne.Pages.NumericalParamGlobalForm import Ui_NumericalParamGlobalForm
from code_saturne.model.NumericalParamGlobalModel import NumericalParamGlobalModel
#-------------------------------------------------------------------------------
# log config
#-------------------------------------------------------------------------------
logging.basicConfig()
log = logging.getLogger("NumericalParamGlobalView")
log.setLevel(GuiParam.DEBUG)
#-------------------------------------------------------------------------------
# Main class
#-------------------------------------------------------------------------------
class NumericalParamGlobalView(QWidget, Ui_NumericalParamGlobalForm):
"""
"""
def __init__(self, parent, case, tree):
"""
Constructor
"""
QWidget.__init__(self, parent)
Ui_NumericalParamGlobalForm.__init__(self)
self.setupUi(self)
self.case = case
self.case.undoStopGlobal()
self.model = NumericalParamGlobalModel(self.case)
self.browser = tree
self.labelSRROM.hide()
self.lineEditSRROM.hide()
# Combo models
self.modelEXTRAG = ComboModel(self.comboBoxEXTRAG,2,1)
self.modelIMRGRA = ComboModel(self.comboBoxIMRGRA,7,1)
self.modelEXTRAG.addItem(self.tr("Neumann 1st order"), 'neumann')
self.modelEXTRAG.addItem(self.tr("Extrapolation"), 'extrapolation')
self.modelIMRGRA.addItem(self.tr("Green-Gauss with iterative handling of non-orthogonalities"),'0')
self.modelIMRGRA.addItem(self.tr("Least squares method over neighboring cells"),'1')
self.modelIMRGRA.addItem(self.tr("Least squares method over extended cell neighborhood"),'2')
self.modelIMRGRA.addItem(self.tr("Least squares method over partial extended cell neighborhood"),'3')
self.modelIMRGRA.addItem(self.tr("Green-Gauss with least squares gradient face values"),'4')
self.modelIMRGRA.addItem(self.tr("Green-Gauss with extended neighborhood least squares gradient face values"),'5')
self.modelIMRGRA.addItem(self.tr("Green-Gauss with partial extended neighborhood least squares gradient face values"),'6')
self.comboBoxEXTRAG.setSizeAdjustPolicy(QComboBox.AdjustToContents)
# Connections
self.checkBoxIVISSE.clicked.connect(self.slotIVISSE)
self.checkBoxIPUCOU.clicked.connect(self.slotIPUCOU)
self.checkBoxICFGRP.clicked.connect(self.slotICFGRP)
self.checkBoxImprovedPressure.clicked.connect(self.slotImprovedPressure)
self.comboBoxEXTRAG.activated[str].connect(self.slotEXTRAG)
self.lineEditRELAXP.textChanged[str].connect(self.slotRELAXP)
self.comboBoxIMRGRA.activated[str].connect(self.slotIMRGRA)
self.lineEditSRROM.textChanged[str].connect(self.slotSRROM)
# Validators
validatorRELAXP = DoubleValidator(self.lineEditRELAXP, min=0., max=1.)
validatorRELAXP.setExclusiveMin(True)
validatorSRROM = DoubleValidator(self.lineEditSRROM, min=0., max=1.)
validatorSRROM.setExclusiveMax(True)
self.lineEditRELAXP.setValidator(validatorRELAXP)
self.lineEditSRROM.setValidator(validatorSRROM)
if self.model.getTransposedGradient() == 'on':
self.checkBoxIVISSE.setChecked(True)
else:
self.checkBoxIVISSE.setChecked(False)
if self.model.getVelocityPressureCoupling() == 'on':
self.checkBoxIPUCOU.setChecked(True)
else:
self.checkBoxIPUCOU.setChecked(False)
import code_saturne.model.FluidCharacteristicsModel as FluidCharacteristics
fluid = FluidCharacteristics.FluidCharacteristicsModel(self.case)
modl_atmo, modl_joul, modl_thermo, modl_gas, modl_coal, modl_comp, modl_hgn = \
fluid.getThermoPhysicalModel()
if self.model.getHydrostaticPressure() == 'on':
self.checkBoxImprovedPressure.setChecked(True)
else:
self.checkBoxImprovedPressure.setChecked(False)
self.lineEditRELAXP.setText(str(self.model.getPressureRelaxation()))
self.modelEXTRAG.setItem(str_model=self.model.getWallPressureExtrapolation())
self.modelIMRGRA.setItem(str_model=str(self.model.getGradientReconstruction()))
if modl_joul != 'off' or modl_gas != 'off' or modl_coal != 'off':
self.labelSRROM.show()
self.lineEditSRROM.show()
self.lineEditSRROM.setText(str(self.model.getDensityRelaxation()))
if modl_comp != 'off':
self.labelICFGRP.show()
self.checkBoxICFGRP.show()
if self.model.getHydrostaticEquilibrium() == 'on':
self.checkBoxICFGRP.setChecked(True)
else:
self.checkBoxICFGRP.setChecked(False)
self.checkBoxIPUCOU.hide()
self.labelIPUCOU.hide()
self.lineEditRELAXP.hide()
self.labelRELAXP.hide()
self.checkBoxImprovedPressure.hide()
self.labelImprovedPressure.hide()
else:
self.labelICFGRP.hide()
self.checkBoxICFGRP.hide()
self.checkBoxIPUCOU.show()
self.labelIPUCOU.show()
self.lineEditRELAXP.show()
self.labelRELAXP.show()
self.checkBoxImprovedPressure.show()
self.labelImprovedPressure.show()
# Update the Tree files and folders
self.browser.configureTree(self.case)
self.case.undoStartGlobal()
@pyqtSlot()
def slotIVISSE(self):
"""
Set value for parameter IVISSE
"""
if self.checkBoxIVISSE.isChecked():
self.model.setTransposedGradient("on")
else:
self.model.setTransposedGradient("off")
@pyqtSlot()
def slotIPUCOU(self):
"""
Set value for parameter IPUCOU
"""
if self.checkBoxIPUCOU.isChecked():
self.model.setVelocityPressureCoupling("on")
else:
self.model.setVelocityPressureCoupling("off")
@pyqtSlot()
def slotICFGRP(self):
"""
Set value for parameter IPUCOU
"""
if self.checkBoxICFGRP.isChecked():
self.model.setHydrostaticEquilibrium("on")
else:
self.model.setHydrostaticEquilibrium("off")
@pyqtSlot()
def slotImprovedPressure(self):
"""
Input IHYDPR.
"""
if self.checkBoxImprovedPressure.isChecked():
self.model.setHydrostaticPressure("on")
else:
self.model.setHydrostaticPressure("off")
@pyqtSlot(str)
def slotEXTRAG(self, text):
"""
Set value for parameter EXTRAG
"""
extrag = self.modelEXTRAG.dicoV2M[str(text)]
self.model.setWallPressureExtrapolation(extrag)
log.debug("slotEXTRAG-> %s" % extrag)
@pyqtSlot(str)
def slotRELAXP(self, text):
"""
Set value for parameter RELAXP
"""
if self.lineEditRELAXP.validator().state == QValidator.Acceptable:
relaxp = from_qvariant(text, float)
self.model.setPressureRelaxation(relaxp)
log.debug("slotRELAXP-> %s" % relaxp)
@pyqtSlot(str)
def slotSRROM(self, text):
"""
Set value for parameter SRROM
"""
if self.lineEditSRROM.validator().state == QValidator.Acceptable:
srrom = from_qvariant(text, float)
self.model.setDensityRelaxation(srrom)
log.debug("slotSRROM-> %s" % srrom)
@pyqtSlot(str)
def slotIMRGRA(self, text):
"""
Set value for parameter IMRGRA
"""
imrgra = self.modelIMRGRA.dicoV2M[str(text)]
self.model.setGradientReconstruction(int(imrgra))
log.debug("slotIMRGRA-> %s" % imrgra)
def tr(self, text):
"""
Translation
"""
return text
#-------------------------------------------------------------------------------
# Testing part
#-------------------------------------------------------------------------------
if __name__ == "__main__":
pass
#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------
|