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
+4
View File
@@ -3,6 +3,7 @@ int run_element_base_tests();
int run_load_base_tests();
int run_material_base_tests();
int run_mitc4_element_model_tests();
int run_property_base_tests();
int run_shell_property_tests();
int main() {
@@ -18,6 +19,9 @@ int main() {
if (const int result = run_material_base_tests(); result != 0) {
return result;
}
if (const int result = run_property_base_tests(); result != 0) {
return result;
}
if (const int result = run_shell_property_tests(); result != 0) {
return result;
}