smesh/src/Tools/MeshCut/meshcut_plugin.py

135 lines
4.7 KiB
Python
Raw Normal View History

2016-03-18 22:10:20 +05:00
# Copyright (C) 2006-2016 EDF R&D
2012-08-09 16:03:55 +06:00
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
2014-02-20 18:25:37 +06:00
# version 2.1 of the License, or (at your option) any later version.
2012-08-09 16:03:55 +06:00
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
#
# if you already have plugins defined in a salome_plugins.py file, add this file at the end.
# if not, copy this file as ${HOME}/Plugins/smesh_plugins.py or ${APPLI}/Plugins/smesh_plugins.py
def MeshCut(context):
# get context study, studyId, salomeGui
study = context.study
studyId = context.studyId
sg = context.sg
import os
import subprocess
import tempfile
2016-01-28 19:40:22 +05:00
from qtsalome import QFileDialog, QMessageBox, QDialog
from MeshCutDialog_ui import Ui_Dialog
2012-08-09 16:03:55 +06:00
2016-01-28 19:40:22 +05:00
class CutDialog(QDialog):
2012-08-09 16:03:55 +06:00
def __init__(self):
2016-01-28 19:40:22 +05:00
QDialog.__init__(self)
2012-08-09 16:03:55 +06:00
# Set up the user interface from Designer.
self.ui = Ui_Dialog()
self.ui.setupUi(self)
# Connect up the buttons.
2016-01-28 19:40:22 +05:00
self.ui.pb_origMeshFile.clicked.connect(self.setInputFile)
self.ui.pb_cutMeshFile.clicked.connect(self.setOutputFile)
self.ui.pb_help.clicked.connect(self.helpMessage)
2012-08-09 16:03:55 +06:00
pass
def setInputFile(self):
fd = QFileDialog(self, "select an existing Med file", self.ui.le_origMeshFile.text(), "MED-Files (*.med);;All Files (*)")
if fd.exec_():
infile = fd.selectedFiles()[0]
self.ui.le_origMeshFile.setText(infile)
2016-01-28 19:40:22 +05:00
insplit = os.path.splitext(unicode(infile).encode())
2012-08-09 16:03:55 +06:00
outfile = insplit[0] + '_cut' + insplit[1]
self.ui.le_cutMeshFile.setText(outfile)
pass
def setOutputFile(self):
fd = QFileDialog(self, "select an output Med file", self.ui.le_cutMeshFile.text(), "MED-Files (*.med);;All Files (*)")
if fd.exec_():
self.ui.le_cutMeshFile.setText(fd.selectedFiles()[0])
pass
def helpMessage(self):
QMessageBox.about(None, "About MeshCut",
"""
Cut a tetrahedron mesh by a plane
---------------------------------
MeshCut allows to cut a mesh constituted of linear
tetrahedrons by a plane. The tetrahedrons intersected
by the plane are cut and replaced by elements of
various types (tetrahedron, pyramid, pentahedron).
MeshCut is a standalone program, reading and
producing med files. The cutting plane is defined
by a vector normal to the plane and a vertex
belonging to the plane.
Vertices of a tetrahedron are considered as belonging to
the cut plane if their distance to the plane is inferior
to L*T where L is the mean edge size of the tetrahedron
and T the tolerance.
""")
pass
pass
window = CutDialog()
window.ui.dsb_tolerance.setValue(0.01)
retry = True
while(retry):
retry = False
window.exec_()
result = window.result()
if result:
# dialog accepted
args = ['MeshCut']
2016-01-28 19:40:22 +05:00
args += [unicode(window.ui.le_origMeshFile.text()).encode()]
args += [unicode(window.ui.le_cutMeshFile.text()).encode()]
args += [unicode(window.ui.le_outMeshName.text()).encode()]
args += [unicode(window.ui.le_groupAbove.text()).encode()]
args += [unicode(window.ui.le_groupBelow.text()).encode()]
2012-08-09 16:03:55 +06:00
args += [str(window.ui.dsb_normX.value())]
args += [str(window.ui.dsb_normY.value())]
args += [str(window.ui.dsb_normZ.value())]
args += [str(window.ui.dsb_vertX.value())]
args += [str(window.ui.dsb_vertY.value())]
args += [str(window.ui.dsb_vertZ.value())]
args += [str(window.ui.dsb_tolerance.value())]
f= tempfile.NamedTemporaryFile(delete=False)
fname = f.name
p = subprocess.Popen(args, stdout=f, stderr=f)
err = p.wait()
f.close()
if err==0:
os.remove(fname)
else:
f = open(fname, 'r')
m = f.read()
msgBox = QMessageBox()
msgBox.setText("Parameters are not OK")
msgBox.setInformativeText("Do you want to retry ?")
msgBox.setDetailedText(m)
msgBox.setStandardButtons(QMessageBox.Retry | QMessageBox.Cancel)
msgBox.setDefaultButton(QMessageBox.Retry)
ret = msgBox.exec_()
if ret == QMessageBox.Retry:
retry = True
pass
pass
pass
pass