feat(linear-static-3d-euler-beam): step 12 - inp-domain-mapping

This commit is contained in:
KOKO\Mimi
2026-08-09 16:15:31 +09:00
parent 8b7c6896d5
commit fc3a66d8da
6 changed files with 2843 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include "fesa/core/status.hpp"
#include "fesa/io/abaqus/input_syntax.hpp"
#include "fesa/model/domain.hpp"
namespace fesa {
// Converts syntax-only blocks into the approved immutable B33 semantic model.
class AbaqusDomainMapper {
public:
Result<Domain> map(const ParsedInput& input) const;
};
} // namespace fesa