diff --git a/src/Mod/Fem/femtest/app/support_utils.py b/src/Mod/Fem/femtest/app/support_utils.py index ed81af4119..2ecb1cf14e 100644 --- a/src/Mod/Fem/femtest/app/support_utils.py +++ b/src/Mod/Fem/femtest/app/support_utils.py @@ -40,11 +40,15 @@ def get_fem_test_home_dir( def get_fem_test_tmp_dir( + dirname=None ): from uuid import uuid4 _unique_id = str(uuid4())[-12:] - print(_unique_id) - temp_dir = join(tempfile.gettempdir(), "FEM_unittests", _unique_id) + # print(_unique_id) + if dirname is None: + temp_dir = join(tempfile.gettempdir(), "FEM_unittests", _unique_id) + else: + temp_dir = join(tempfile.gettempdir(), "FEM_unittests", dirname + "_" + _unique_id) if not os.path.exists(temp_dir): os.makedirs(temp_dir) return(temp_dir) diff --git a/src/Mod/Fem/femtest/app/test_solver_elmer.py b/src/Mod/Fem/femtest/app/test_solver_elmer.py index a07ba9c39c..617c6031e4 100644 --- a/src/Mod/Fem/femtest/app/test_solver_elmer.py +++ b/src/Mod/Fem/femtest/app/test_solver_elmer.py @@ -49,10 +49,6 @@ class TestSolverElmer(unittest.TestCase): # more inits self.mesh_name = "Mesh" - self.temp_dir = testtools.get_unit_test_tmp_dir( - testtools.get_fem_test_tmp_dir(), - "FEM_solver_elmer" - ) # make sure std FreeCAD unit system mm/kg/s is used param = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Units") @@ -103,20 +99,18 @@ class TestSolverElmer(unittest.TestCase): # the examples do use a gmsh mesh object thus ok # FIXME elmer elasticity needs the dict key "ThermalExpansionCoefficient" in material - solver_obj = self.document.SolverElmer - - base_name = "cube_static" - analysis_dir = testtools.get_unit_test_tmp_dir(self.temp_dir, solver_obj.Name) + base_name = "elmer_generic_test" + analysis_dir = testtools.get_fem_test_tmp_dir("solver_" + base_name) # save the file - save_fc_file = join(analysis_dir, solver_obj.Name + "_" + base_name + ".FCStd") + save_fc_file = join(analysis_dir, base_name + ".FCStd") fcc_print("Save FreeCAD file to {}...".format(save_fc_file)) self.document.saveAs(save_fc_file) # write input files fcc_print("Checking FEM input file writing for Elmer solver framework solver ...") - machine_elmer = solver_obj.Proxy.createMachine( - solver_obj, + machine_elmer = self.document.SolverElmer.Proxy.createMachine( + self.document.SolverElmer, analysis_dir, True )