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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
# -*- 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 defines the conjugate heat transfer view data management.
This module contains the following classes and function:
- SyrthesVerbosityDelegate
- ProjectionAxisDelegate
- SelectionCriteriaDelegate
- StandardItemModelSyrthes
- ConjugateHeatTransferView
"""
#-------------------------------------------------------------------------------
# Standard modules
#-------------------------------------------------------------------------------
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 LABEL_LENGTH_MAX, GuiParam
from code_saturne.Base.QtPage import IntValidator, DoubleValidator, RegExpValidator, ComboModel
from code_saturne.Base.QtPage import to_qvariant, from_qvariant, to_text_string
from code_saturne.Pages.ConjugateHeatTransferForm import Ui_ConjugateHeatTransferForm
from code_saturne.model.ConjugateHeatTransferModel import ConjugateHeatTransferModel
#-------------------------------------------------------------------------------
# log config
#-------------------------------------------------------------------------------
logging.basicConfig()
log = logging.getLogger("ConjugateHeatTransferView")
log.setLevel(GuiParam.DEBUG)
#-------------------------------------------------------------------------------
# QLineEdit delegate for validation of Syrthes verbosity or visualization
#-------------------------------------------------------------------------------
class SyrthesVerbosityDelegate(QItemDelegate):
def __init__(self, parent = None):
super(SyrthesVerbosityDelegate, self).__init__(parent)
self.parent = parent
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
validator = IntValidator(editor, min=0)
editor.setValidator(validator)
editor.installEventFilter(self)
return editor
def setEditorData(self, editor, index):
editor.setAutoFillBackground(True)
value = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
editor.setText(value)
def setModelData(self, editor, model, index):
if editor.validator().state == QValidator.Acceptable:
value = from_qvariant(editor.text(), int)
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# QComboBox delegate for Axis Projection in Conjugate Heat Transfer table
#-------------------------------------------------------------------------------
class ProjectionAxisDelegate(QItemDelegate):
"""
Use of a combo box in the table.
"""
def __init__(self, parent = None):
super(ProjectionAxisDelegate, self).__init__(parent)
self.parent = parent
def createEditor(self, parent, option, index):
editor = QComboBox(parent)
editor.addItem("off")
editor.addItem("X")
editor.addItem("Y")
editor.addItem("Z")
editor.installEventFilter(self)
return editor
def setEditorData(self, comboBox, index):
row = index.row()
col = index.column()
string = index.model().dataSyrthes[row][col]
comboBox.setEditText(string)
def setModelData(self, comboBox, model, index):
value = comboBox.currentText()
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# QLineEdit delegate for location
#-------------------------------------------------------------------------------
class SelectionCriteriaDelegate(QItemDelegate):
def __init__(self, parent, mdl):
super(SelectionCriteriaDelegate, self).__init__(parent)
self.parent = parent
self.__model = mdl
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
return editor
def setEditorData(self, editor, index):
editor.setAutoFillBackground(True)
self.value = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
editor.setText(self.value)
def setModelData(self, editor, model, index):
value = editor.text()
if str(value) != "" :
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# StandarItemModel class
#-------------------------------------------------------------------------------
class StandardItemModelSyrthes(QStandardItemModel):
def __init__(self, model):
"""
"""
QStandardItemModel.__init__(self)
self.setColumnCount(5)
self.headers = [self.tr("Instance name"),
self.tr("Verbosity"),
self.tr("Visualization"),
self.tr("Projection Axis"),
self.tr("Selection criteria")]
self.tooltip = [self.tr("Name of coupled instance"),
self.tr("Verbosity level"),
self.tr("Visualization output level (0 for none)"),
self.tr("Projection axis to match 2D Solid domain"),
self.tr("Selection criteria for coupled boundary faces")]
self.setColumnCount(len(self.headers))
self.dataSyrthes = []
self.__model = model
def data(self, index, role):
if not index.isValid():
return to_qvariant()
if role == Qt.ToolTipRole:
return to_qvariant(self.tooltip[index.column()])
if role == Qt.DisplayRole:
return to_qvariant(self.dataSyrthes[index.row()][index.column()])
elif role == Qt.TextAlignmentRole:
return to_qvariant(Qt.AlignCenter)
return to_qvariant()
def flags(self, index):
if not index.isValid():
return Qt.ItemIsEnabled
return Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsEditable
def headerData(self, section, orientation, role):
if orientation == Qt.Horizontal and role == Qt.DisplayRole:
return to_qvariant(self.headers[section])
return to_qvariant()
def setData(self, index, value, role):
if not index.isValid():
return
row = index.row()
if index.column() in (0, 3, 4):
self.dataSyrthes[row][index.column()] = str(from_qvariant(value, to_text_string))
else:
self.dataSyrthes[row][index.column()] = from_qvariant(value, int)
num = row + 1
self.__model.setSyrthesInstanceName(num, self.dataSyrthes[row][0])
self.__model.setSyrthesVerbosity(num, self.dataSyrthes[row][1])
self.__model.setSyrthesVisualization(num, self.dataSyrthes[row][2])
self.__model.setSyrthesProjectionAxis(num, self.dataSyrthes[row][3])
self.__model.setSelectionCriteria(num, self.dataSyrthes[row][4])
id1 = self.index(0, 0)
id2 = self.index(self.rowCount(), 0)
self.dataChanged.emit(id1, id2)
return True
def addItem(self, syrthes_name,
verbosity, visualization, proj_axis, location):
"""
Add a row in the table.
"""
self.dataSyrthes.append([syrthes_name,
verbosity, visualization, proj_axis, location])
row = self.rowCount()
self.setRowCount(row+1)
def deleteRow(self, row):
"""
Delete the row in the model
"""
del self.dataSyrthes[row]
row = self.rowCount()
self.setRowCount(row-1)
#-------------------------------------------------------------------------------
# Main class
#-------------------------------------------------------------------------------
class ConjugateHeatTransferView(QWidget, Ui_ConjugateHeatTransferForm):
"""
"""
def __init__(self, parent, case):
"""
Constructor
"""
QWidget.__init__(self, parent)
Ui_ConjugateHeatTransferForm.__init__(self)
self.setupUi(self)
self.case = case
self.case.undoStopGlobal()
self.__model = ConjugateHeatTransferModel(self.case)
# Models
self.modelSyrthes = StandardItemModelSyrthes(self.__model)
self.tableViewSyrthes.setModel(self.modelSyrthes)
if QT_API == "PYQT4":
self.tableViewSyrthes.verticalHeader().setResizeMode(QHeaderView.ResizeToContents)
self.tableViewSyrthes.horizontalHeader().setResizeMode(QHeaderView.ResizeToContents)
self.tableViewSyrthes.horizontalHeader().setResizeMode(4, QHeaderView.Stretch)
elif QT_API == "PYQT5":
self.tableViewSyrthes.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents)
self.tableViewSyrthes.horizontalHeader().setSectionResizeMode(QHeaderView.ResizeToContents)
self.tableViewSyrthes.horizontalHeader().setSectionResizeMode(4, QHeaderView.Stretch)
delegateSyrthesVerbosity = SyrthesVerbosityDelegate(self.tableViewSyrthes)
self.tableViewSyrthes.setItemDelegateForColumn(1, delegateSyrthesVerbosity)
self.tableViewSyrthes.setItemDelegateForColumn(2, delegateSyrthesVerbosity)
delegateProjectionAxis = ProjectionAxisDelegate(self.tableViewSyrthes)
self.tableViewSyrthes.setItemDelegateForColumn(3, delegateProjectionAxis)
delegateSelectionCriteria = SelectionCriteriaDelegate(self.tableViewSyrthes, self.__model)
self.tableViewSyrthes.setItemDelegateForColumn(4, delegateSelectionCriteria)
# Connections
self.pushButtonAdd.clicked.connect(self.slotAddSyrthes)
self.pushButtonDelete.clicked.connect(self.slotDeleteSyrthes)
# Insert list of Syrthes couplings for view
for c in self.__model.getSyrthesCouplingList():
[syrthes_name, verbosity, visualization, proj_axis, location] = c
self.modelSyrthes.addItem(syrthes_name,
verbosity, visualization, proj_axis, location)
if len(self.__model.getSyrthesCouplingList()) < 2:
self.tableViewSyrthes.hideColumn(0)
self.case.undoStartGlobal()
@pyqtSlot()
def slotAddSyrthes(self):
"""
Set in view label and variables to see on profile
"""
syrthes_name = self.__model.defaultValues()['syrthes_name']
verbosity = self.__model.defaultValues()['verbosity']
visualization = self.__model.defaultValues()['visualization']
proj_axis = self.__model.defaultValues()['projection_axis']
location = self.__model.defaultValues()['selection_criteria']
num = self.__model.addSyrthesCoupling(syrthes_name,
verbosity, visualization,
proj_axis, location)
self.modelSyrthes.addItem(syrthes_name, verbosity, visualization,
proj_axis, location)
if len(self.__model.getSyrthesCouplingList()) > 1:
self.tableViewSyrthes.showColumn(0)
@pyqtSlot()
def slotDeleteSyrthes(self):
"""
Delete the profile from the list (one by one).
"""
row = self.tableViewSyrthes.currentIndex().row()
log.debug("slotDeleteSyrthes -> %s" % (row,))
if row == -1:
title = self.tr("Warning")
msg = self.tr("You must select an existing coupling")
QMessageBox.information(self, title, msg)
else:
self.modelSyrthes.deleteRow(row)
self.__model.deleteSyrthesCoupling(row+1)
if len(self.__model.getSyrthesCouplingList()) < 2:
self.tableViewSyrthes.hideColumn(0)
def tr(self, text):
"""
Translation
"""
return text
#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------
|