feat: add property model foundation

This commit is contained in:
김경종
2026-06-09 11:56:42 +09:00
parent f4196efb10
commit 7ea08441ed
23 changed files with 661 additions and 25 deletions
+10
View File
@@ -10,6 +10,7 @@ add_library(fesa_core STATIC
src/boundary/SinglePointConstraint.cpp
src/core/Domain.cpp
src/element/Mitc4Element.cpp
src/io/Hdf5ResultWriter.cpp
src/load/NodalLoad.cpp
src/material/LinearElasticMaterial.cpp
src/property/ShellProperty.cpp
@@ -45,9 +46,18 @@ add_executable(fesa_model_object_tests
tests/load/load_base_test.cpp
tests/material/material_base_test.cpp
tests/model_object_main.cpp
tests/property/property_base_test.cpp
tests/property/shell_property_test.cpp
)
target_link_libraries(fesa_model_object_tests PRIVATE fesa_core)
add_test(NAME model-object.base COMMAND fesa_model_object_tests)
set_tests_properties(model-object.base PROPERTIES LABELS "model-object;core")
add_executable(fesa_io_tests
tests/io/hdf5_result_writer_test.cpp
)
target_link_libraries(fesa_io_tests PRIVATE fesa_core)
add_test(NAME io.hdf5-result-writer COMMAND fesa_io_tests)
set_tests_properties(io.hdf5-result-writer PROPERTIES LABELS "io;hdf5")