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
+26
View File
@@ -0,0 +1,26 @@
#pragma once
#include "fesa/core/ElementDefinition.hpp"
#include <array>
#include <cstddef>
namespace fesa::element {
using fesa::core::ElementId;
using fesa::core::ElementType;
using fesa::core::NodeId;
using fesa::core::PropertyId;
class Element {
public:
virtual ~Element() = default;
virtual ElementId id() const noexcept = 0;
virtual ElementType type() const noexcept = 0;
virtual std::size_t nodeCount() const noexcept = 0;
virtual const std::array<NodeId, 4>& connectivity() const noexcept = 0;
virtual PropertyId propertyId() const noexcept = 0;
};
} // namespace fesa::element