FEM: examples, rename material multiple two boxes

This commit is contained in:
Bernd Hahnebach
2020-07-10 08:41:13 +02:00
parent 8abfe38fb1
commit 5f88fa2ebb
5 changed files with 7 additions and 7 deletions

View File

@@ -56,7 +56,7 @@ SET(FemExamples_SRCS
femexamples/manager.py
femexamples/material_multiple_bendingbeam_fiveboxes.py
femexamples/material_multiple_bendingbeam_fivefaces.py
femexamples/material_multiple_twoboxes.py
femexamples/material_multiple_tensionrod_twoboxes.py
femexamples/material_nl_platewithhole.py
femexamples/rc_wall_2d.py
femexamples/thermomech_bimetall.py
@@ -245,7 +245,7 @@ SET(FemTestsCcx_SRCS
femtest/data/calculix/constraint_tie.inp
femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp
femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp
femtest/data/calculix/material_multiple.inp
femtest/data/calculix/material_multiple_tensionrod_twoboxes.inp
femtest/data/calculix/material_nonlinear.inp
femtest/data/calculix/thermomech_bimetall.inp
femtest/data/calculix/thermomech_flow1D.inp

View File

@@ -24,7 +24,7 @@
# to run the example use:
"""
from femexamples.material_multiple_twoboxes import setup
from femexamples.material_multiple_tensionrod_twoboxes import setup
setup()
"""

View File

@@ -183,10 +183,10 @@ class TestSolverCalculix(unittest.TestCase):
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_material_multiple(
def test_material_multiple_tensionrod_twoboxes(
self
):
from femexamples.material_multiple_twoboxes import setup
from femexamples.material_multiple_tensionrod_twoboxes import setup
setup(self.document, "calculix")
self.input_file_writing_test(get_namefromdef("test_"))

View File

@@ -85,7 +85,7 @@ make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalc
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_constraint_tie
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple_bendingbeam_fiveboxes
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple_bendingbeam_fivefaces
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple_tensionrod_twoboxes
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_material_nonlinear
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_thermomech_bimetall
make -j 4 && ./bin/FreeCADCmd -t femtest.app.test_solver_calculix.TestSolverCalculix.test_thermomech_flow1D
@@ -340,7 +340,7 @@ unittest.TextTestRunner().run(unittest.TestLoader().loadTestsFromName(
import unittest
unittest.TextTestRunner().run(unittest.TestLoader().loadTestsFromName(
'femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple'
'femtest.app.test_solver_calculix.TestSolverCalculix.test_material_multiple_tensionrod_twoboxes'
))
import unittest