FEM: GMSH mesh tool, add command and add it to tool bar and make a menu entry

This commit is contained in:
Bernd Hahnebach 2016-11-22 19:47:58 +01:00
parent c3df2e298d
commit 1327589045
5 changed files with 70 additions and 0 deletions

View File

@ -70,6 +70,7 @@ SET(FemScripts_SRCS
_CommandConstraintSelfWeight.py _CommandConstraintSelfWeight.py
_CommandMaterialMechanicalNonlinear.py _CommandMaterialMechanicalNonlinear.py
_CommandMechanicalMaterial.py _CommandMechanicalMaterial.py
_CommandMeshGmshFromShape.py
_CommandMeshNetgenFromShape.py _CommandMeshNetgenFromShape.py
_CommandPurgeResults.py _CommandPurgeResults.py
_CommandRunSolver.py _CommandRunSolver.py

View File

@ -39,6 +39,7 @@ INSTALL(
FemMeshGmsh.py FemMeshGmsh.py
_FemMeshGmsh.py _FemMeshGmsh.py
_ViewProviderFemMeshGmsh.py _ViewProviderFemMeshGmsh.py
_CommandMeshGmshFromShape.py
FemBeamSection.py FemBeamSection.py
_FemBeamSection.py _FemBeamSection.py

View File

@ -59,6 +59,7 @@ Gui::ToolBarItem* Workbench::setupToolBars() const
<< "Fem_SolverCalculix" << "Fem_SolverCalculix"
// << "Fem_SolverZ88" // << "Fem_SolverZ88"
<< "Fem_MeshNetgenFromShape" << "Fem_MeshNetgenFromShape"
<< "Fem_MeshGmshFromShape"
<< "Fem_MechanicalMaterial" << "Fem_MechanicalMaterial"
<< "Fem_MaterialMechanicalNonlinear" << "Fem_MaterialMechanicalNonlinear"
<< "Fem_BeamSection" << "Fem_BeamSection"
@ -119,6 +120,7 @@ Gui::MenuItem* Workbench::setupMenuBar() const
<< "Fem_SolverCalculix" << "Fem_SolverCalculix"
<< "Fem_SolverZ88" << "Fem_SolverZ88"
<< "Fem_MeshNetgenFromShape" << "Fem_MeshNetgenFromShape"
<< "Fem_MeshGmshFromShape"
<< "Fem_MechanicalMaterial" << "Fem_MechanicalMaterial"
<< "Fem_MaterialMechanicalNonlinear" << "Fem_MaterialMechanicalNonlinear"
<< "Fem_BeamSection" << "Fem_BeamSection"

View File

@ -49,6 +49,7 @@ class FemWorkbench (Workbench):
import _CommandRunSolver import _CommandRunSolver
import _CommandPurgeResults import _CommandPurgeResults
import _CommandControlSolver import _CommandControlSolver
import _CommandMeshGmshFromShape
import _CommandMeshNetgenFromShape import _CommandMeshNetgenFromShape
import _CommandAnalysis import _CommandAnalysis
import _CommandShellThickness import _CommandShellThickness

View File

@ -0,0 +1,65 @@
# ***************************************************************************
# * *
# * Copyright (c) 2016 - Bernd Hahnebach <bernd@bimstatik.org> *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * 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 Library General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with this program; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************
__title__ = "Command GMSH Mesh From Shape"
__author__ = "Bernd Hahnebach"
__url__ = "http://www.freecadweb.org"
## @package CommandMeshGmshFromShape
# \ingroup FEM
import FreeCAD
from FemCommands import FemCommands
import FreeCADGui
import FemGui
from PySide import QtCore
class _CommandMeshGmshFromShape(FemCommands):
# the Fem_MeshGmshFromShape command definition
def __init__(self):
super(_CommandMeshGmshFromShape, self).__init__()
self.resources = {'Pixmap': 'fem-fem-mesh-from-shape',
'MenuText': QtCore.QT_TRANSLATE_NOOP("Fem_MeshGmshFromShape", "FEM mesh from shape by GMSH"),
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Fem_MeshGmshFromShape", "Create a FEM mesh from a shape by GMSH mesher")}
self.is_active = 'with_part_feature'
def Activated(self):
FreeCAD.ActiveDocument.openTransaction("Create FEM mesh by GMSH")
FreeCADGui.addModule("FemGui")
sel = FreeCADGui.Selection.getSelection()
if (len(sel) == 1):
if(sel[0].isDerivedFrom("Part::Feature")):
mesh_obj_name = sel[0].Name + "_Mesh"
FreeCADGui.addModule("FemMeshGmsh")
FreeCADGui.doCommand("FemMeshGmsh.makeFemMeshGmsh('" + mesh_obj_name + "')")
FreeCADGui.doCommand("App.ActiveDocument.ActiveObject.Part = App.ActiveDocument." + sel[0].Name)
if FemGui.getActiveAnalysis():
FreeCADGui.addModule("FemGui")
FreeCADGui.doCommand("FemGui.getActiveAnalysis().Member = FemGui.getActiveAnalysis().Member + [App.ActiveDocument.ActiveObject]")
FreeCADGui.doCommand("Gui.ActiveDocument.setEdit(App.ActiveDocument.ActiveObject.Name)")
FreeCADGui.Selection.clearSelection()
if FreeCAD.GuiUp:
FreeCADGui.addCommand('Fem_MeshGmshFromShape', _CommandMeshGmshFromShape())