feat: add analysis model objects

This commit is contained in:
김경종
2026-06-09 09:04:21 +09:00
parent fdeac602f4
commit 8f24213ab7
44 changed files with 1893 additions and 0 deletions
+20
View File
@@ -7,7 +7,12 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
add_library(fesa_core STATIC
src/boundary/SinglePointConstraint.cpp
src/core/Domain.cpp
src/element/Mitc4Element.cpp
src/load/NodalLoad.cpp
src/material/LinearElasticMaterial.cpp
src/property/ShellProperty.cpp
)
target_include_directories(fesa_core PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/include
@@ -18,6 +23,7 @@ enable_testing()
add_executable(fesa_domain_tests
tests/core/boundary_condition_test.cpp
tests/core/domain_bootstrap_test.cpp
tests/core/domain_model_object_test.cpp
tests/core/domain_storage_test.cpp
tests/core/element_definition_test.cpp
tests/core/load_definition_test.cpp
@@ -31,3 +37,17 @@ target_link_libraries(fesa_domain_tests PRIVATE fesa_core)
add_test(NAME domain.bootstrap COMMAND fesa_domain_tests)
set_tests_properties(domain.bootstrap PROPERTIES LABELS "domain;core")
add_executable(fesa_model_object_tests
tests/boundary/boundary_base_test.cpp
tests/element/element_base_test.cpp
tests/element/mitc4_element_model_test.cpp
tests/load/load_base_test.cpp
tests/material/material_base_test.cpp
tests/model_object_main.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")