FEM: unit test, fix setting up some examples

This commit is contained in:
Bernd Hahnebach
2020-06-23 09:01:32 +02:00
parent c22fa6eac7
commit 5948a83058
2 changed files with 7 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ class TestCcxTools(unittest.TestCase):
self
):
# set up
from femexamples.boxanalysis import setup_frequency as setup
from femexamples.boxanalysis_frequency import setup
setup(self.document, "ccxtools")
test_name = "frequency"
base_name = "cube_frequency"
@@ -114,7 +114,7 @@ class TestCcxTools(unittest.TestCase):
self
):
# set up
from femexamples.boxanalysis import setup_static as setup
from femexamples.boxanalysis_static import setup
setup(self.document, "ccxtools")
test_name = "ccxtools static"
base_name = "cube_static"
@@ -146,7 +146,7 @@ class TestCcxTools(unittest.TestCase):
self
):
# set up
from femexamples.ccx_cantilever_std import setup_cantileverhexa20faceload as setup
from femexamples.ccx_cantilever_hexa20faceload import setup
setup(self.document, "ccxtools")
test_name = "canti ccx faceload hexa20"
base_name = "canti_ccx_faceload_hexa20"

View File

@@ -82,8 +82,8 @@ class TestSolverFrameWork(unittest.TestCase):
fcc_print("\n--------------- Start of FEM tests solver framework solver CalculiX ------")
# set up the CalculiX static analysis example
from femexamples import boxanalysis as box
box.setup_static(self.document, "calculix")
from femexamples.boxanalysis_static import setup
setup(self.document, "calculix")
solver_obj = self.document.SolverCalculiX
@@ -124,8 +124,8 @@ class TestSolverFrameWork(unittest.TestCase):
fcc_print("\n--------------- Start of FEM tests solver framework solver Elmer ---------")
# set up the Elmer static analysis example
from femexamples import boxanalysis as box
box.setup_static(self.document, "elmer")
from femexamples.boxanalysis_static import setup
setup(self.document, "elmer")
analysis_obj = self.document.Analysis
solver_obj = self.document.SolverElmer