File size: 23,242 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 | # ***************************************************************************
# * Copyright (c) 2015 Przemo Firszt <przemo@firszt.eu> *
# * Copyright (c) 2015 Bernd Hahnebach <bernd@bimstatik.org> *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * 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__ = "CcxTools FEM unit tests"
__author__ = "Bernd Hahnebach"
__url__ = "https://www.freecad.org"
import unittest
from os.path import join
import FreeCAD
from . import support_utils as testtools
from .support_utils import fcc_print
from .support_utils import get_namefromdef
from femtools import ccxtools
class TestCcxTools(unittest.TestCase):
fcc_print("import TestCcxTools")
# ********************************************************************************************
def setUp(self):
# setUp is executed before every test
# new document
self.document = FreeCAD.newDocument(self.__class__.__name__)
# directory pre face in name
self.pre_dir_name = "ccxtools_"
# more inits
self.mesh_name = "Mesh"
self.test_file_dir = join(
testtools.get_fem_test_home_dir(),
"calculix", # TODO rename directory to "ccxtools" or rename the solver to calculix
)
# ********************************************************************************************
def tearDown(self):
# tearDown is executed after every test
FreeCAD.closeDocument(self.document.Name)
# ********************************************************************************************
def test_00print(self):
# since method name starts with 00 this will be run first
# this test just prints a line with stars
fcc_print(
"\n{0}\n{1} run FEM TestCcxTools tests {2}\n{0}".format(100 * "*", 10 * "*", 62 * "*")
)
# ********************************************************************************************
def test_box_frequency(self):
# set up
from femexamples.boxanalysis_frequency import setup
setup(self.document, "ccxtools")
base_name = get_namefromdef("test_")
res_obj_name = "CCX_EigenMode_1_Results"
analysis_dir = testtools.get_fem_test_tmp_dir(self.pre_dir_name + base_name)
# test input file writing
fea = self.input_file_writing_test(
base_name,
analysis_dir=analysis_dir,
test_end=True,
)
# test result reading
self.result_reading_test(
base_name,
analysis_dir=analysis_dir,
fea=fea,
res_obj_name=res_obj_name,
)
def test_box_static(self):
# set up
from femexamples.boxanalysis_static import setup
setup(self.document, "ccxtools")
base_name = get_namefromdef("test_")
res_obj_name = "CCX_Results"
analysis_dir = testtools.get_fem_test_tmp_dir(self.pre_dir_name + base_name)
# test input file writing
fea = self.input_file_writing_test(
base_name,
analysis_dir=analysis_dir,
test_end=True,
)
# test result reading
self.result_reading_test(
base_name,
analysis_dir=analysis_dir,
fea=fea,
res_obj_name=res_obj_name,
)
# ********************************************************************************************
def test_ccx_buckling_flexuralbuckling(self):
from femexamples.ccx_buckling_flexuralbuckling import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_beam_circle(self):
from femexamples.ccx_cantilever_beam_circle import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_beam_pipe(self):
from femexamples.ccx_cantilever_beam_pipe import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_beam_rect(self):
from femexamples.ccx_cantilever_beam_rect import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_hexa20(self):
from femexamples.ccx_cantilever_ele_hexa20 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_quad4(self):
from femexamples.ccx_cantilever_ele_quad4 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_quad8(self):
from femexamples.ccx_cantilever_ele_quad8 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_seg2(self):
from femexamples.ccx_cantilever_ele_seg2 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_seg3(self):
from femexamples.ccx_cantilever_ele_seg3 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_tria3(self):
from femexamples.ccx_cantilever_ele_tria3 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_ele_tria6(self):
from femexamples.ccx_cantilever_ele_tria6 import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_faceload(self):
from femexamples.ccx_cantilever_faceload import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_nodeload(self):
from femexamples.ccx_cantilever_nodeload import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_ccx_cantilever_prescribeddisplacement(self):
from femexamples.ccx_cantilever_prescribeddisplacement import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_centrif(self):
# TODO does pass on my local machine, but not on ci
return
from femexamples.constraint_centrif import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_contact_shell_shell(self):
from femexamples.constraint_contact_shell_shell import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_contact_solid_solid(self):
# TODO does pass on my local machine, but not on ci
return
from femexamples.constraint_contact_solid_solid import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_sectionprint(self):
from femexamples.constraint_section_print import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_selfweight_cantilever(self):
from femexamples.constraint_selfweight_cantilever import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_tie(self):
from femexamples.constraint_tie import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_transform_beam_hinged(self):
from femexamples.constraint_transform_beam_hinged import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_constraint_transform_torque(self):
from femexamples.constraint_transform_torque import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_frequency_beamsimple(self):
from femexamples.frequency_beamsimple import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_material_multiple_bendingbeam_fiveboxes(self):
from femexamples.material_multiple_bendingbeam_fiveboxes import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_material_multiple_bendingbeam_fivefaces(self):
from femexamples.material_multiple_bendingbeam_fivefaces import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_material_multiple_tensionrod_twoboxes(self):
from femexamples.material_multiple_tensionrod_twoboxes import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_material_nonlinear(self):
from femexamples.material_nl_platewithhole import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_square_pipe_end_twisted_edgeforces(self):
from femexamples.square_pipe_end_twisted_edgeforces import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_square_pipe_end_twisted_nodeforces(self):
from femexamples.square_pipe_end_twisted_nodeforces import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def test_thermomech_bimetal(self):
from femexamples.thermomech_bimetal import setup
setup(self.document, "ccxtools")
self.input_file_writing_test(get_namefromdef("test_"))
# ********************************************************************************************
def input_file_writing_test(
self,
base_name,
analysis_dir=None,
test_end=False,
):
fcc_print(f"\n--------------- Start of FEM ccxtools {base_name} test---------------")
if analysis_dir is None:
analysis_dir = testtools.get_fem_test_tmp_dir(self.pre_dir_name + base_name)
analysis = self.document.Analysis
solver_object = self.document.CalculiXCcxTools
fea = ccxtools.FemToolsCcx(analysis, solver_object, test_mode=True)
fea.update_objects()
fcc_print(f"Setting up working directory {analysis_dir}")
fea.setup_working_dir(analysis_dir)
self.assertTrue(
True if fea.working_dir == analysis_dir else False,
f"Setting working directory {analysis_dir} failed",
)
fcc_print(f"Checking FEM inp file prerequisites for {base_name} ...")
error = fea.check_prerequisites()
self.assertFalse(
error,
f"ccxtools check_prerequisites returned error message: {error}",
)
inpfile_given = join(self.test_file_dir, (base_name + ".inp"))
inpfile_totest = join(analysis_dir, (self.mesh_name + ".inp"))
fcc_print("Checking FEM inp file write...")
fcc_print(f"Writing {inpfile_totest} for {base_name}")
error = fea.write_inp_file()
self.assertFalse(error, "Writing failed")
fcc_print(f"Comparing {inpfile_given} to {inpfile_totest}")
ret = testtools.compare_inp_files(inpfile_given, inpfile_totest)
self.assertFalse(ret, f"ccxtools write_inp_file test failed.\n{ret}")
if test_end is True:
# do not save and print End of tests
return fea
save_fc_file = join(analysis_dir, base_name + ".FCStd")
fcc_print(f"Save FreeCAD file for {base_name} to {save_fc_file}...")
self.document.saveAs(save_fc_file)
fcc_print(f"\n--------------- End of FEM ccxtools {base_name}---------------")
# ********************************************************************************************
def result_reading_test(
self,
base_name,
analysis_dir,
fea,
res_obj_name,
):
inpfile_given = join(self.test_file_dir, (base_name + ".inp"))
fcc_print(
"Setting up working directory to {} in order to read simulated calculations".format(
self.test_file_dir
)
)
fea.setup_working_dir(self.test_file_dir)
self.assertTrue(
True if fea.working_dir == self.test_file_dir else False,
f"Setting working directory {self.test_file_dir} failed",
)
fcc_print(f"Setting base name to read test {base_name}.frd file...")
fea.set_base_name(base_name)
self.assertTrue(
True if fea.base_name == base_name else False,
f"Setting base name to {base_name} failed",
)
fcc_print(f"Setting inp file name to read test {base_name}.frd file...")
fea.set_inp_file_name()
self.assertTrue(
True if fea.inp_file_name == inpfile_given else False,
f"Setting inp file name to {inpfile_given} failed",
)
fcc_print(f"Checking FEM frd file read from {base_name}...")
fea.load_results()
self.assertTrue(
fea.results_present,
f"Cannot read results from {fea.base_name}.frd frd file",
)
fcc_print(f"Reading stats from result object for {base_name}...")
expected_values = join(self.test_file_dir, base_name + "_expected_values")
ret = testtools.compare_stats(fea, expected_values, res_obj_name)
self.assertFalse(ret, "Invalid results read from .frd file")
save_fc_file = join(analysis_dir, base_name + ".FCStd")
fcc_print(f"Save FreeCAD file for {base_name} to {save_fc_file}...")
self.document.saveAs(save_fc_file)
fcc_print(f"--------------- End of {base_name} -------------------")
# ************************************************************************************************
def create_test_results():
import os
import shutil
import unittest
import FemGui
from femresult import resulttools
from femtools import ccxtools
temp_dir = testtools.get_fem_test_tmp_dir()
test_class = "femtest.app.test_ccxtools.TestCcxTools" # unit test class
stat_types = [
"U1",
"U2",
"U3",
"Uabs",
"Sabs",
"MaxPrin",
"MidPrin",
"MinPrin",
"MaxShear",
"Peeq",
"Temp",
"MFlow",
"NPress",
]
# ****************************************************************************
# static cube
print("create static result files")
unittest.TextTestRunner().run(
unittest.TestLoader().loadTestsFromName(test_class + ".test_static_analysis")
)
static_analysis_dir = join(temp_dir, "FEM_ccx_static")
doc_static_cube = FreeCAD.open(join(static_analysis_dir, "cube_static.FCStd"))
FemGui.setActiveAnalysis(doc_static_cube.Analysis)
fea = ccxtools.FemToolsCcx()
fea.update_objects()
fea.reset_all()
fea.run()
fea.load_results()
stats_static = []
res_obj_static = doc_static_cube.getObject("CCX_Results")
for s in stat_types:
statval = resulttools.get_stats(res_obj_static, s)
stats_static.append(f"{s}: ({statval[0]:.14g}, {statval[1]:.14g}, )\n")
static_expected_values_file = join(static_analysis_dir, "cube_static_expected_values")
f = open(static_expected_values_file, "w")
for s in stats_static:
f.write(s)
f.close()
frd_result_file = os.path.splitext(fea.inp_file_name)[0] + ".frd"
dat_result_file = os.path.splitext(fea.inp_file_name)[0] + ".dat"
frd_static_test_result_file = join(static_analysis_dir, "cube_static.frd")
dat_static_test_result_file = join(static_analysis_dir, "cube_static.dat")
shutil.copyfile(frd_result_file, frd_static_test_result_file)
shutil.copyfile(dat_result_file, dat_static_test_result_file)
print("Results copied to the appropriate FEM test dirs in: " + temp_dir)
# ****************************************************************************
# frequency cube
print("create frequency result files")
unittest.TextTestRunner().run(
unittest.TestLoader().loadTestsFromName(test_class + ".test_freq_analysis")
)
frequency_analysis_dir = join(temp_dir, "FEM_ccx_frequency")
doc_frequency_cube = FreeCAD.open(join(frequency_analysis_dir, "cube_frequency.FCStd"))
FemGui.setActiveAnalysis(doc_frequency_cube.Analysis)
fea = ccxtools.FemToolsCcx()
fea.update_objects()
fea.reset_all()
# we should only have one result object 1 to 6 will be less than 0.01 and ignored
fea.solver.EigenmodesCount = 7
doc_frequency_cube.recompute()
fea.run()
fea.load_results()
stats_frequency = []
res_obj_freq = doc_frequency_cube.getObject("CCX_Mode7_Results")
for s in stat_types:
statval = resulttools.get_stats(res_obj_freq, s)
stats_frequency.append(f"{s}: ({statval[0]:.14g}, {statval[1]:.14g})\n")
frequency_expected_values_file = join(frequency_analysis_dir, "cube_frequency_expected_values")
f = open(frequency_expected_values_file, "w")
for s in stats_frequency:
f.write(s)
f.close()
frd_result_file = os.path.splitext(fea.inp_file_name)[0] + ".frd"
dat_result_file = os.path.splitext(fea.inp_file_name)[0] + ".dat"
frd_frequency_test_result_file = join(frequency_analysis_dir, "cube_frequency.frd")
dat_frequency_test_result_file = join(frequency_analysis_dir, "cube_frequency.dat")
shutil.copyfile(frd_result_file, frd_frequency_test_result_file)
shutil.copyfile(dat_result_file, dat_frequency_test_result_file)
print("Results copied to the appropriate FEM test dirs in: " + temp_dir)
"""
update the results of FEM ccxtools unit tests:
from femtest.app.test_ccxtools import create_test_results
create_test_results()
copy result files
from unit_test_temp_directory/FEM_unittests/specific_test into the src directory
compare the results with git difftool
run make
start FreeCAD and run FEM unit test
if FEM unit test is fine --> commit new FEM unit test results
TODO compare the inp file of the helper with the inp file of FEM unit tests
TODO the better way: move the result creation inside the TestFem
and add some preference to deactivate this because it needs ccx
"""
|