feat: add domain model foundation
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include "fesa/core/ModelTypes.hpp"
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace fesa::core {
|
||||
|
||||
class LinearStaticStepDefinition {
|
||||
public:
|
||||
LinearStaticStepDefinition(
|
||||
StepId id,
|
||||
std::string name,
|
||||
std::vector<std::size_t> boundary_condition_indices,
|
||||
std::vector<std::size_t> load_indices);
|
||||
|
||||
StepId id() const noexcept;
|
||||
const std::string& name() const noexcept;
|
||||
const std::vector<std::size_t>& boundaryConditionIndices() const noexcept;
|
||||
const std::vector<std::size_t>& loadIndices() const noexcept;
|
||||
|
||||
private:
|
||||
StepId id_;
|
||||
std::string name_;
|
||||
std::vector<std::size_t> boundary_condition_indices_;
|
||||
std::vector<std::size_t> load_indices_;
|
||||
};
|
||||
|
||||
} // namespace fesa::core
|
||||
Reference in New Issue
Block a user