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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
|
# -*- 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 classes and function:
- StandardItemModelMeshes
- SolutionDomainView
"""
#-------------------------------------------------------------------------------
# Standard modules
#-------------------------------------------------------------------------------
import os, sys, logging
try:
import ConfigParser
configparser = ConfigParser
except Exception:
import configparser
#-------------------------------------------------------------------------------
# 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, RegExpValidator, IntValidator
from code_saturne.Base.QtPage import to_qvariant, from_qvariant, to_text_string
from code_saturne.Pages.SolutionDomainForm import Ui_SolutionDomainForm
from code_saturne.model.SolutionDomainModel import RelOrAbsPath, MeshModel, SolutionDomainModel
#-------------------------------------------------------------------------------
# log config
#-------------------------------------------------------------------------------
logging.basicConfig()
log = logging.getLogger("SolutionDomainView")
log.setLevel(GuiParam.DEBUG)
#-------------------------------------------------------------------------------
# Label delegate for 'Name' in Meshes table
#-------------------------------------------------------------------------------
class MeshNameDelegate(QItemDelegate):
def __init__(self, parent = None):
super(MeshNameDelegate, self).__init__(parent)
self.parent = parent
def paint(self, painter, option, index):
row = index.row()
isValid = index.model().dataMeshes[row][7]
if isValid:
QItemDelegate.paint(self, painter, option, index)
else:
painter.save()
# set background color
if option.state & QStyle.State_Selected:
painter.setBrush(QBrush(Qt.darkRed))
else:
painter.setBrush(QBrush(Qt.red))
# set text color
painter.setPen(QPen(Qt.NoPen))
painter.drawRect(option.rect)
painter.setPen(QPen(Qt.black))
value = index.data(Qt.DisplayRole)
if value != None:
text = from_qvariant(value, to_text_string)
painter.drawText(option.rect, Qt.AlignLeft, text)
painter.restore()
#-------------------------------------------------------------------------------
# QComboBox delegate for Format in Meshes table
#-------------------------------------------------------------------------------
class MeshFormatDelegate(QItemDelegate):
"""
Use of a combo box in the table.
"""
def __init__(self, parent = None, updateLayout = None):
super(MeshFormatDelegate, self).__init__(parent)
self.parent = parent
self.updateLayout = updateLayout
self.lst = MeshModel().getBuildFormatList()
# Compute width based on longest possible string and font metrics
fm = self.parent.fontMetrics()
self.textSize = fm.size(Qt.TextSingleLine, 'I-deas universal')
self.textSize.setHeight(1)
for i in range(len(self.lst)):
w = fm.size(Qt.TextSingleLine, str(self.lst[i][1])).width()
if w > self.textSize.width():
self.textSize.setWidth(w)
def createEditor(self, parent, option, index):
editor = QComboBox(parent)
for i in range(len(self.lst)):
fmt = self.lst[i]
editor.addItem(str(fmt[1] + fmt[2]))
return editor
def setEditorData(self, comboBox, index):
key = index.model().dataMeshes[index.row()][1]
string = ''
for i in range(len(self.lst)):
if key == self.lst[i][0]:
comboBox.setCurrentIndex(i)
def setModelData(self, comboBox, model, index):
value = str(comboBox.currentText())
key = ''
for i in range(len(self.lst)):
if value == self.lst[i][1] + self.lst[i][2]:
key = self.lst[i][0]
model.setData(index, to_qvariant(key))
if self.updateLayout != None:
self.updateLayout()
def sizeHint(self, option, index):
return self.textSize
def paint(self, painter, option, index):
row = index.row()
format = index.model().dataMeshes[row][1]
isValid = format != None and format != ''
if isValid:
QItemDelegate.paint(self, painter, option, index)
else:
painter.save()
# set background color
if option.state & QStyle.State_Selected:
painter.setBrush(QBrush(Qt.darkRed))
else:
painter.setBrush(QBrush(Qt.red))
# set text color
painter.setPen(QPen(Qt.NoPen))
painter.drawRect(option.rect)
painter.setPen(QPen(Qt.black))
value = index.data(Qt.DisplayRole)
if value != None:
if value.isValid():
text = from_qvariant(value, to_text_string)
painter.drawText(option.rect, Qt.AlignLeft, text)
painter.restore()
#-------------------------------------------------------------------------------
# Line edit delegate for 'Number' in Meshes table
#-------------------------------------------------------------------------------
class MeshNumberDelegate(QItemDelegate):
def __init__(self, parent = None):
super(MeshNumberDelegate, self).__init__(parent)
self.parent = parent
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
vd = RegExpValidator(editor, QRegExp("[0-9- ]*"))
editor.setValidator(vd)
editor.installEventFilter(self)
return editor
def setEditorData(self, lineEdit, index):
string = index.model().dataMeshes[index.row()][2]
lineEdit.setText(string)
def setModelData(self, lineEdit, model, index):
value = str(lineEdit.text()).strip()
model.setData(index, to_qvariant(value))
#-------------------------------------------------------------------------------
# QComboBox delegate for 'Group cells' and 'Group Faces' in Meshes table
#-------------------------------------------------------------------------------
class GroupDelegate(QItemDelegate):
"""
Use of a combo box in the table.
"""
def __init__(self, parent = None):
super(GroupDelegate, self).__init__(parent)
self.parent = parent
def createEditor(self, parent, option, index):
editor = QComboBox(parent)
editor.addItem("off")
editor.addItem("section")
editor.addItem("zone")
editor.installEventFilter(self)
return editor
def setEditorData(self, comboBox, index):
row = index.row()
col = index.column()
string = index.model().dataMeshes[row][col]
comboBox.setEditText(string)
def setModelData(self, comboBox, model, index):
value = comboBox.currentText()
model.setData(index, to_qvariant(value))
#-------------------------------------------------------------------------------
# Line edit delegate for selection
#-------------------------------------------------------------------------------
class LineEditDelegateSelector(QItemDelegate):
"""
Use of a QLineEdit in the table.
"""
def __init__(self, parent=None):
QItemDelegate.__init__(self, parent)
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
validator = RegExpValidator(editor, QRegExp("[ -~]*"))
editor.setValidator(validator)
return editor
def setEditorData(self, lineEdit, index):
value = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
lineEdit.setText(value)
def setModelData(self, lineEdit, model, index):
value = lineEdit.text()
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# Line edit delegate for float (thickness and reason)
#-------------------------------------------------------------------------------
class FloatDelegate(QItemDelegate):
def __init__(self, parent=None):
super(FloatDelegate, self).__init__(parent)
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
validator = DoubleValidator(editor, min=0.)
validator.setExclusiveMin(True)
editor.setValidator(validator)
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(), float)
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# Line edit delegate for float (thickness and reason)
#-------------------------------------------------------------------------------
class IntDelegate(QItemDelegate):
def __init__(self, parent=None):
super(IntDelegate, self).__init__(parent)
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
validator = IntValidator(editor, min=0)
validator.setExclusiveMin(True)
editor.setValidator(validator)
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)
#-------------------------------------------------------------------------------
# StandarItemModelMeshes class
#-------------------------------------------------------------------------------
class StandardItemModelMeshes(QStandardItemModel):
def __init__(self, mdl):
"""
"""
QStandardItemModel.__init__(self)
self.mdl = mdl
self.dataMeshes = []
# list of items to be disabled in the QTableView
self.disabledItem = []
lst = MeshModel().getBuildFormatList()
self.formatDict = {'':''}
for i in range(len(lst)):
self.formatDict[lst[i][0]] = lst[i][1]
self.populateModel()
self.headers = [self.tr("File name"),
self.tr("Format"),
self.tr("Numbers"),
self.tr("Reorient"),
self.tr("Add face groups"),
self.tr("Add cell groups"),
self.tr("Path")]
self.tooltip = [self.tr("Preprocessor option: --mesh"),
self.tr("Preprocessor sub-option: --format"),
self.tr("Preprocessor sub-option: --num"),
self.tr("Preprocessor sub-option: --reorient"),
self.tr("Preprocessor sub-option: --grp-fac"),
self.tr("Preprocessor sub-option: --grp-cel"),
self.tr("Preprocessor option: --mesh")]
self.setColumnCount(len(self.headers))
# Initialize the flags
for row in range(self.rowCount()):
for column in range(self.columnCount()):
role = Qt.DisplayRole
index = self.index(row, column)
value = self.data(index, role)
if column != 1:
self.setData(index, value)
else:
self.setData(index, to_qvariant(self.dataMeshes[row][1]))
def populateModel(self):
for mesh in self.mdl.getMeshList():
format = self.mdl.getMeshFormat(mesh)
lst = []
lst.append(mesh[0])
lst.append(format)
if format in ['cgns', 'med', 'ensight']:
num = self.mdl.getMeshNumbers(mesh)
if not num:
num = ''
lst.append(num)
else:
lst.append("")
lst.append(self.mdl.getMeshReorient(mesh))
if format == 'cgns':
lst.append(self.mdl.getMeshGroupFaces(mesh))
lst.append(self.mdl.getMeshGroupCells(mesh))
else:
lst.append("")
lst.append("")
lst.append(mesh[1])
lst.append(self.__isMeshPathValid(mesh))
self.dataMeshes.append(lst)
log.debug("populateModel-> dataMeshes = %s" % lst)
row = self.rowCount()
self.setRowCount(row + 1)
def data(self, index, role):
if not index.isValid():
return to_qvariant()
col = index.column()
if role == Qt.ToolTipRole:
return to_qvariant(self.tooltip[col])
elif role == Qt.DisplayRole:
d = self.dataMeshes[index.row()][col]
if d:
if col == 1:
return to_qvariant(self.formatDict[d])
elif col == 3:
return to_qvariant()
else:
return to_qvariant(d)
else:
return to_qvariant()
elif role == Qt.TextAlignmentRole:
if col == 6:
return to_qvariant(Qt.AlignLeft)
else:
return to_qvariant(Qt.AlignCenter)
elif role == Qt.CheckStateRole:
if col == 3:
d = self.dataMeshes[index.row()][3]
if d == True:
return to_qvariant(Qt.Checked)
else:
return to_qvariant(Qt.Unchecked)
else:
return to_qvariant()
return to_qvariant()
def flags(self, index):
if not index.isValid():
return Qt.ItemIsEnabled
self.__disableData(index.row())
# disable item
if (index.row(), index.column()) in self.disabledItem:
return Qt.ItemIsEnabled
if index.column() in [0, 6]:
return Qt.ItemIsEnabled | Qt.ItemIsSelectable
elif index.column() in [1, 2, 4, 5]:
return Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsEditable
elif index.column() == 3:
return Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsUserCheckable
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=None):
row = index.row()
col = index.column()
mesh = (self.dataMeshes[row][0], self.dataMeshes[row][6])
if col == 1:
v = from_qvariant(value, to_text_string)
self.dataMeshes[row][col] = v
if v:
self.mdl.setMeshFormat(mesh, v)
elif col == 2:
v = from_qvariant(value, to_text_string)
self.dataMeshes[row][col] = v
if value:
self.mdl.setMeshNumbers(mesh, v)
elif col == 3 and role == Qt.CheckStateRole:
state = from_qvariant(value, int)
if state == Qt.Unchecked:
self.dataMeshes[row][col] = False
else:
self.dataMeshes[row][col] = True
self.mdl.setMeshReorient(mesh, self.dataMeshes[row][col])
elif col == 4:
if value:
v = from_qvariant(value, to_text_string)
else:
v = ''
self.dataMeshes[row][col] = v
if v:
self.mdl.setMeshGroupFaces(mesh, v)
elif col == 5:
if value:
v = from_qvariant(value, to_text_string)
else:
v = ''
self.dataMeshes[row][col] = v
if v:
self.mdl.setMeshGroupCells(mesh, v)
self.dataChanged.emit(index, index)
return True
def addRow(self, mesh, format):
"""
Add a row in the table.
"""
if format == 'med' or format == 'ensight':
item = [mesh[0], format, "1", "", "", "", mesh[1]]
elif format == 'cgns':
item = [mesh[0], format, "1", "", "off", "off", mesh[1]]
else:
item = [mesh[0], format, "", "", "", "", mesh[1]]
item.append(self.__isMeshPathValid(mesh))
self.dataMeshes.append(item)
row = self.rowCount()
self.setRowCount(row+1)
def deleteRow(self, row):
"""
Delete the row in the model
"""
self.setRowCount(self.rowCount() - 1)
del self.dataMeshes[row]
def __disableData(self, row):
mesh = (self.dataMeshes[row][0], self.dataMeshes[row][6])
self.dataMeshes[row][7] = self.__isMeshPathValid(mesh)
if not self.dataMeshes[row][1] in ["cgns", "med", "ensight"]:
if (row, 2) not in self.disabledItem:
self.disabledItem.append((row, 2))
else:
if (row, 2) in self.disabledItem:
self.disabledItem.remove((row, 2))
if self.dataMeshes[row][1] != "cgns":
if (row, 4) not in self.disabledItem:
self.disabledItem.append((row, 4))
if (row, 5) not in self.disabledItem:
self.disabledItem.append((row, 5))
else:
if (row, 4) in self.disabledItem:
self.disabledItem.remove((row, 4))
if (row, 5) in self.disabledItem:
self.disabledItem.remove((row, 5))
def __isMeshPathValid(self, mesh):
"""
Public method. Check if a mesh named "mesh" matches an existing file
"""
if mesh[1] != None:
path = os.path.join(mesh[1], mesh[0])
else:
path = mesh[0]
if not os.path.isabs(path) and self.mdl.case['mesh_path'] != None:
path = os.path.join(self.mdl.case['mesh_path'], path)
if not (os.path.isfile(path) and os.path.isabs(path)):
return False
return True
#-------------------------------------------------------------------------------
# File dialog to select either file or directory
#-------------------------------------------------------------------------------
class MeshInputDialog(QFileDialog):
def __init__(self,
parent = None,
search_dirs = []):
if len(search_dirs) == 0:
directory = ""
else:
directory = str(search_dirs[0])
try:
QFileDialog.__init__(self,
parent = parent,
directory = directory)
except (AttributeError, TypeError):
QFileDialog.__init__(self) # for older PyQt versions
# Self.tr is only available once the parent class __init__ has been called,
# so we may now set the caption, filter, and selection label
caption = self.tr("Select input mesh file or directory")
self.setWindowTitle(caption)
self.name_filter = str(self.tr("Imported or preprocessed meshes (mesh_input mesh_output)"))
self.setNameFilter(self.name_filter)
self.select_label = str(self.tr("Select"))
self.setLabelText(QFileDialog.Accept, self.select_label)
if hasattr(QFileDialog, 'ReadOnly'):
options = QFileDialog.DontUseNativeDialog | QFileDialog.ReadOnly
else:
options = QFileDialog.DontUseNativeDialog
if hasattr(self, 'setOptions'):
self.setOptions(options)
search_urls = []
for d in search_dirs:
search_urls.append(QUrl.fromLocalFile(d))
self.setSidebarUrls(search_urls)
self.currentChanged[str].connect(self._selectChange)
self.setFileMode(QFileDialog.ExistingFile)
def _selectChange(self, spath):
mode = QFileDialog.ExistingFile
path = str(spath)
if os.path.basename(path) == 'mesh_input':
if os.path.isdir(path):
mode = QFileDialog.Directory
self.setFileMode(mode)
self.setNameFilter(self.name_filter)
self.setLabelText(QFileDialog.Accept, self.select_label)
#-------------------------------------------------------------------------------
# Main class
#-------------------------------------------------------------------------------
class SolutionDomainView(QWidget, Ui_SolutionDomainForm):
"""
"""
def __init__(self, parent, case, stbar, tree):
"""
Constructor
"""
QWidget.__init__(self, parent)
Ui_SolutionDomainForm.__init__(self)
self.setupUi(self)
self.root = parent
self.stbar = stbar
self.case = case
self.browser = tree
self.case.undoStopGlobal()
self.mdl = SolutionDomainModel(self.case)
# 0) Mesh Input
self.mesh_input = self.mdl.getMeshInput()
if self.mesh_input:
self.radioButtonImport.setChecked(False)
self.radioButtonExists.setChecked(True)
self.frameMeshImport.hide()
self.lineEditMeshInput.setText(self.mesh_input)
else:
self.radioButtonImport.setChecked(True)
self.radioButtonExists.setChecked(False)
self.frameMeshInput.hide()
self.radioButtonImport.clicked.connect(self.slotSetImportMesh)
self.radioButtonExists.clicked.connect(self.slotSetInputMesh)
self.toolButtonMeshInput.pressed.connect(self.selectInputMesh)
self.lineEditMeshInput.textChanged[str].connect(self.modifyInputMesh)
# 1) Meshes directory
self.mesh_dirs = [None]
d = self.mdl.getMeshDir()
study_path = os.path.split(self.case['case_path'])[0]
if d == None:
d = os.path.join(study_path, 'MESH')
elif not os.path.abspath(d):
d = os.path.join(self.case['case_path'], d)
if d != None:
if os.path.isdir(d):
self.lineEditMeshDir.setText(RelOrAbsPath(d, self.case['case_path']))
self.mesh_dirs[0] = d
self.case['mesh_path'] = self.mesh_dirs[0]
package = self.case['package']
# User and global mesh directories
for config_file in [package.get_user_configfile(),
package.get_global_configfile()]:
cfg = configparser.ConfigParser()
cfg.read(config_file)
if cfg.has_option('run', 'meshpath'):
cfg_mesh_dirs = cfg.get('run', 'meshpath').split(':')
for d in cfg_mesh_dirs:
self.mesh_dirs.append(d)
del(package)
# 2) Meshes selection layout
# 2.1) Model for meshes table
self.modelMeshes = StandardItemModelMeshes(self.mdl)
self.tableViewMeshes.setModel(self.modelMeshes)
self.tableViewMeshes.resizeColumnsToContents()
self.tableViewMeshes.resizeRowsToContents()
delegateName = MeshNameDelegate(self.tableViewMeshes)
self.tableViewMeshes.setItemDelegateForColumn(0, delegateName)
delegateFormat = MeshFormatDelegate(self.tableViewMeshes, self._tableViewLayout)
self.tableViewMeshes.setItemDelegateForColumn(1, delegateFormat)
delegateNumber = MeshNumberDelegate(self.tableViewMeshes)
self.tableViewMeshes.setItemDelegateForColumn(2, delegateNumber)
delegateGroupFaces = GroupDelegate(self.tableViewMeshes)
self.tableViewMeshes.setItemDelegateForColumn(4, delegateGroupFaces)
delegateGroupCells = GroupDelegate(self.tableViewMeshes)
self.tableViewMeshes.setItemDelegateForColumn(5, delegateGroupCells)
self.groupBoxMeshes.resizeEvent = self.MeshesResizeEvent
# 2.2) Connections
self.pushButtonAddMesh.clicked.connect(self.slotSearchMesh)
self.pushButtonDeleteMesh.clicked.connect(self.slotDeleteMesh)
# 3) Initialize meshes list
# 3.1) Meshes default directory
self.toolButtonMeshDir.pressed.connect(self.searchDir)
self.toolButtonMeshDirClear.pressed.connect(self.clearDir)
# 3.2) Meshes list
msg = ""
nameList = self.mdl.getMeshList()
log.debug("__init__ -> nameList = %s " % nameList)
if nameList:
for i in range(len(nameList)):
mesh = nameList[i]
if mesh[1] != None:
path = os.path.join(mesh[1], mesh[0])
else:
path = mesh[0]
if not os.path.isabs(path) and self.case['mesh_path'] != None:
path = os.path.join(self.case['mesh_path'], path)
if not (os.path.isfile(path) and os.path.isabs(path)):
msg = msg + path + '\n'
if msg != "":
msg = msg + '\n'
title = self.tr("WARNING")
msg2 = self.tr("The following mesh files are not present or\n" +
"in the meshes directory search path:\n\n" +
msg +
"Verify existence and location of the mesh files,\n" +
"and the 'Mesh Directory' section." )
QMessageBox.warning(self, title, msg2)
self._tableViewLayout()
# Combomodels
self.modelArg_cs_verif = ComboModel(self.comboBoxRunType, 4, 1)
self.modelArg_cs_verif.addItem(self.tr("Import mesh only"), 'none')
self.modelArg_cs_verif.addItem(self.tr("Mesh preprocessing only"),
'mesh preprocess')
self.modelArg_cs_verif.addItem(self.tr("Mesh quality criteria only"),
'mesh quality')
self.modelArg_cs_verif.addItem(self.tr("Standard Computation"), 'standard')
self.modelArg_cs_verif.setItem(str_model=self.case['run_type'])
if self.mesh_input != None:
self.modelArg_cs_verif.disableItem(str_model='none')
else:
self.modelArg_cs_verif.enableItem(str_model='none')
self.comboBoxRunType.activated[str].connect(self.slotArgRunType)
# Checkboxes
self.checkBoxMeshRestart.setChecked(not self.mdl.getPreprocessOnRestart())
self.checkBoxMeshRestart.clicked.connect(self.slotMeshRestart)
self.checkBoxMeshSave.setChecked(self.mdl.getMeshSaveOnModify())
self.checkBoxMeshSave.clicked.connect(self.slotMeshSaveOnModify)
# Undo/redo
self.case.undoStartGlobal()
# Update tree
self.browser.configureTree(self.case)
def MeshesResizeEvent(self, event):
QWidget.resizeEvent(self, event)
self._tableViewLayout()
def searchDir(self):
"""
Open a File Dialog in order to search the case directory.
"""
title = self.tr("Select input mesh directory")
default = os.path.split(self.case['case_path'])[0]
if hasattr(QFileDialog, 'ReadOnly'):
options = QFileDialog.DontUseNativeDialog | QFileDialog.ReadOnly
else:
options = QFileDialog.DontUseNativeDialog
l_mesh_dirs = []
for i in range(0, len(self.mesh_dirs)):
if self.mesh_dirs[i] != None:
l_mesh_dirs.append(QUrl.fromLocalFile(self.mesh_dirs[i]))
dialog = QFileDialog()
dialog.setWindowTitle(title)
dialog.setDirectory(default)
if hasattr(dialog, 'setOptions'):
dialog.setOptions(options)
dialog.setSidebarUrls(l_mesh_dirs)
dialog.setFileMode(QFileDialog.Directory)
if dialog.exec_() == 1:
s = dialog.selectedFiles()
dir_name = str(s[0])
dir_name = os.path.abspath(dir_name)
self.lineEditMeshDir.setText(RelOrAbsPath(dir_name,
self.case['case_path']))
self.mdl.setMeshDir(dir_name)
self.mesh_dirs[0] = dir_name
mesh_list = self.mdl.getMeshList()
for i in range(len(mesh_list)):
self.modelMeshes.dataMeshes[i][6] = mesh_list[i][1]
def clearDir(self):
"""
Clear the case directory.
"""
self.lineEditMeshDir.setText('')
if self.case['mesh_path'] != None:
self.mesh_dirs[0] = None
self.mdl.setMeshDir(None)
mesh_list = self.mdl.getMeshList()
for i in range(len(mesh_list)):
self.modelMeshes.dataMeshes[i][6] = mesh_list[i][1]
def selectMeshFiles(self):
"""
Open a File Dialog in order to select mesh files.
"""
mesh_files = []
title = self.tr("Select input mesh file(s)")
default = self.mesh_dirs[0]
if default == None:
default = os.path.split(self.case['case_path'])[0]
if hasattr(QFileDialog, 'ReadOnly'):
options = QFileDialog.DontUseNativeDialog | QFileDialog.ReadOnly
else:
options = QFileDialog.DontUseNativeDialog
l_mesh_dirs = []
for i in range(0, len(self.mesh_dirs)):
if self.mesh_dirs[i] != None:
l_mesh_dirs.append(QUrl.fromLocalFile(self.mesh_dirs[i]))
filetypes = ""
for Format in MeshModel().getFileFormatList():
filetypes += "%s (%s);;"%(Format[0], Format[1])
dialog = QFileDialog()
dialog.setWindowTitle(title)
dialog.setDirectory(default)
dialog.setNameFilter(filetypes)
if hasattr(dialog, 'setOptions'):
dialog.setOptions(options)
dialog.setSidebarUrls(l_mesh_dirs)
dialog.setFileMode(QFileDialog.ExistingFiles)
if dialog.exec_() == 1:
s = dialog.selectedFiles()
count = len(s)
for i in range(count):
el = str(s[0])
s = s[1:]
mesh_files.append(el)
return mesh_files
def _tableViewLayout(self):
"""
Configure QTableView column number
"""
fm = self.tableViewMeshes.fontMetrics()
last_width = 0
n_groups = 0
n_num = 0
for row in self.modelMeshes.dataMeshes:
if row[1] == 'cgns':
n_groups += 1
n_num += 1
elif row[1] in ['med', 'ensight']:
n_num += 1
if row[6] != None:
cmp_width = fm.size(Qt.TextSingleLine, str(row[6])).width()
if cmp_width > last_width:
last_width = cmp_width
if QT_API == "PYQT4":
self.tableViewMeshes.horizontalHeader().setResizeMode(0, QHeaderView.ResizeToContents)
self.tableViewMeshes.horizontalHeader().setResizeMode(1, QHeaderView.ResizeToContents)
elif QT_API == "PYQT5":
self.tableViewMeshes.horizontalHeader().setSectionResizeMode(0, QHeaderView.ResizeToContents)
self.tableViewMeshes.horizontalHeader().setSectionResizeMode(1, QHeaderView.ResizeToContents)
if n_num == 0:
self.tableViewMeshes.setColumnHidden(2, True)
else:
self.tableViewMeshes.setColumnHidden(2, False)
if QT_API == "PYQT4":
self.tableViewMeshes.horizontalHeader().setResizeMode(2, QHeaderView.ResizeToContents)
elif QT_API == "PYQT5":
self.tableViewMeshes.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
if n_groups == 0:
self.tableViewMeshes.setColumnHidden(4, True)
self.tableViewMeshes.setColumnHidden(5, True)
else:
self.tableViewMeshes.setColumnHidden(4, False)
self.tableViewMeshes.setColumnHidden(5, False)
if QT_API == "PYQT4":
self.tableViewMeshes.horizontalHeader().setResizeMode(4, QHeaderView.ResizeToContents)
self.tableViewMeshes.horizontalHeader().setResizeMode(5, QHeaderView.ResizeToContents)
elif QT_API == "PYQT5":
self.tableViewMeshes.horizontalHeader().setSectionResizeMode(4, QHeaderView.ResizeToContents)
self.tableViewMeshes.horizontalHeader().setSectionResizeMode(5, QHeaderView.ResizeToContents)
# We have a bug under KDE (but not Gnome) if the line below is not commented.
# self.tableViewMeshes.horizontalHeader().setSectionResizeMode(6, QHeaderView.ResizeToContents)
self.tableViewMeshes.horizontalHeader().setStretchLastSection(True)
if last_width > self.tableViewMeshes.columnWidth(6):
self.tableViewMeshes.horizontalHeader().setStretchLastSection(False)
self.tableViewMeshes.resizeColumnsToContents()
def _addMeshInList(self, file_name):
"""
Tab1: add input new meshes in the listbox and case.
"""
(d, m) = os.path.split(file_name)
index = -1
if self.mesh_dirs[0] != None:
index = d.find(self.mesh_dirs[0])
if index == 0:
d = d[len(self.mesh_dirs[0])+1:]
if d == '':
d = None
mesh = (m, d)
# 1) Verify that the new mesh is not already in the case
if mesh in self.mdl.getMeshList():
title = self.tr("Warning")
msg = self.tr("Warning, the following input is already " \
"uploaded in the list:\n\n" + file_name)
QMessageBox.information(self, title, msg)
else:
# 2) Update View and model
format = MeshModel().getMeshFormat(mesh[0])
self.mdl.addMesh(mesh)
self.modelMeshes.addRow(mesh, format)
self._tableViewLayout()
@pyqtSlot()
def selectInputMesh(self):
# Open a File Dialog in order to search the mesh_input file or directory.
search_dirs = []
study_dir = os.path.split(self.case['case_path'])[0]
for d in [os.path.join(study_dir, 'RESU_COUPLING'),
os.path.join(self.case['case_path'], 'RESU'),
study_dir]:
if os.path.isdir(d):
search_dirs.append(d)
dialog = MeshInputDialog(search_dirs = search_dirs)
if dialog.exec_() == 1:
s = dialog.selectedFiles()
mi = str(s[0])
mi = os.path.abspath(mi)
mi = RelOrAbsPath(mi, self.case['case_path'])
self.modifyInputMesh(mi)
@pyqtSlot(str)
def modifyInputMesh(self, text):
"""
Modify the mesh_input/mesh_output value
"""
self.lineEditMeshInput.setText(text)
self.mdl.setMeshInput(text)
self.mesh_input = text
@pyqtSlot()
def slotSetInputMesh(self):
self.radioButtonImport.setChecked(False)
self.radioButtonExists.setChecked(True)
self.frameMeshInput.show()
self.frameMeshImport.hide()
if self.mesh_input == None:
self.selectInputMesh()
# If Dialog was canceled and no previous mesh_input was selected
if self.mesh_input == None:
self.slotSetImportMesh()
@pyqtSlot()
def slotSetImportMesh(self):
self.radioButtonImport.setChecked(True)
self.radioButtonExists.setChecked(False)
self.frameMeshInput.hide()
self.frameMeshImport.show()
if self.mesh_input:
self.lineEditMeshInput.setText("")
self.mesh_input = None
self.mdl.setMeshInput(self.mesh_input)
@pyqtSlot()
def slotSearchMesh(self):
msg = self.tr("Select a mesh file.")
self.stbar.showMessage(msg, 2000)
file_names = self.selectMeshFiles()
for file_name in file_names:
self._addMeshInList(file_name)
@pyqtSlot()
def slotDeleteMesh(self):
"""
Delete the selected mesh from the list
"""
# 1) Is there a mesh to delete ?
selectionModel = self.tableViewMeshes.selectionModel()
for index in selectionModel.selectedRows():
row = index.row()
mesh = (self.modelMeshes.dataMeshes[row][0],
self.modelMeshes.dataMeshes[row][6])
# 2) Delete mesh from view and from model
self.modelMeshes.deleteRow(row)
self.mdl.delMesh(mesh)
self._tableViewLayout()
@pyqtSlot()
def slotMeshRestart(self):
"""
Input if preprocessing should be done on restart or not
"""
self.mdl.setPreprocessOnRestart(not self.checkBoxMeshRestart.isChecked())
@pyqtSlot(str)
def slotArgRunType(self, text):
"""
Input run type option.
"""
run_type = self.modelArg_cs_verif.dicoV2M[str(text)]
self.mdl.setRunType(run_type)
self.root.initCase()
self.browser.configureTree(self.case)
@pyqtSlot()
def slotMeshSaveOnModify(self):
"""
Input if mesh should be saved if modified or not
"""
self.mdl.setMeshSaveOnModify(self.checkBoxMeshSave.isChecked())
def tr(self, text):
"""
Translation
"""
return text
#-------------------------------------------------------------------------------
# Testing part
#-------------------------------------------------------------------------------
if __name__ == "__main__":
pass
#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------
|