Skip to content

Commit

Permalink
FEM: split MechanicalMaterial into separate modules
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and yorikvanhavre committed Nov 7, 2015
1 parent 49c12c5 commit 05a20ec
Show file tree
Hide file tree
Showing 8 changed files with 501 additions and 359 deletions.
9 changes: 7 additions & 2 deletions src/Mod/Fem/App/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ SET(FemScripts_SRCS
FemTools.py
MechanicalAnalysis.ui
MechanicalAnalysis.py
MechanicalMaterial.ui
MechanicalMaterial.py
ShowDisplacement.ui
FemCommands.py
_ResultControlTaskPanel.py
Expand All @@ -104,6 +102,13 @@ SET(FemScripts_SRCS
_CommandFemShellThickness.py
_FemShellThicknessTaskPanel.py
FemShellThickness.ui

_MechanicalMaterial.py
_ViewProviderMechanicalMaterial.py
MechanicalMaterial.py
_CommandMechanicalMaterial.py
_MechanicalMaterialTaskPanel.py
MechanicalMaterial.ui
)
#SOURCE_GROUP("Scripts" FILES ${FemScripts_SRCS})

Expand Down
10 changes: 8 additions & 2 deletions src/Mod/Fem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ INSTALL(
TestFem.py
FemExample.py
MechanicalAnalysis.py
MechanicalMaterial.py
MechanicalMaterial.ui
MechanicalAnalysis.ui
ShowDisplacement.ui
FemCommands.py
Expand Down Expand Up @@ -46,6 +44,14 @@ INSTALL(
_CommandFemShellThickness.py
_FemShellThicknessTaskPanel.py
FemShellThickness.ui

_MechanicalMaterial.py
_ViewProviderMechanicalMaterial.py
MechanicalMaterial.py
_CommandMechanicalMaterial.py
_MechanicalMaterialTaskPanel.py
MechanicalMaterial.ui

DESTINATION
Mod/Fem
)
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/InitGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ def Initialize(self):
import _CommandNewMechanicalAnalysis
import _CommandFemShellThickness
import _CommandFemBeamSection
import _CommandMechanicalMaterial

import MechanicalAnalysis
import MechanicalMaterial

import subprocess
from platform import system
Expand Down
Loading

0 comments on commit 05a20ec

Please sign in to comment.