60 lines
3.2 KiB
Python
60 lines
3.2 KiB
Python
# ***************************************************************************
|
|
# * *
|
|
# * Copyright (c) 2013 - Juergen Riegel <FreeCAD@juergen-riegel.net> *
|
|
# * *
|
|
# * 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__ = "_CommandMechanicalMaterial"
|
|
__author__ = "Juergen Riegel, Bernd Hahnebach"
|
|
__url__ = "http://www.freecadweb.org"
|
|
|
|
|
|
import FreeCAD
|
|
from FemCommands import FemCommands
|
|
|
|
if FreeCAD.GuiUp:
|
|
import FreeCADGui
|
|
import FemGui
|
|
from PySide import QtCore
|
|
|
|
|
|
class _CommandMechanicalMaterial(FemCommands):
|
|
"the Fem Material command definition"
|
|
def __init__(self):
|
|
super(_CommandMechanicalMaterial, self).__init__()
|
|
self.resources = {'Pixmap': 'fem-material',
|
|
'MenuText': QtCore.QT_TRANSLATE_NOOP("Fem_Material", "Mechanical material..."),
|
|
'Accel': "M, M",
|
|
'ToolTip': QtCore.QT_TRANSLATE_NOOP("Fem_Material", "Creates or edit the mechanical material definition.")}
|
|
self.is_active = 'with_analysis'
|
|
|
|
def Activated(self):
|
|
femDoc = FemGui.getActiveAnalysis().Document
|
|
if FreeCAD.ActiveDocument is not femDoc:
|
|
FreeCADGui.setActiveDocument(femDoc)
|
|
FreeCAD.ActiveDocument.openTransaction("Create MechanicalMaterial")
|
|
FreeCADGui.addModule("MechanicalMaterial")
|
|
FreeCADGui.doCommand("MechanicalMaterial.makeMechanicalMaterial('MechanicalMaterial')")
|
|
FreeCADGui.doCommand("App.activeDocument()." + FemGui.getActiveAnalysis().Name + ".Member = App.activeDocument()." + FemGui.getActiveAnalysis().Name + ".Member + [App.ActiveDocument.ActiveObject]")
|
|
FreeCADGui.doCommand("Gui.activeDocument().setEdit(App.ActiveDocument.ActiveObject.Name)")
|
|
|
|
|
|
if FreeCAD.GuiUp:
|
|
FreeCADGui.addCommand('Fem_MechanicalMaterial', _CommandMechanicalMaterial())
|