24 lines
368 B
C++
24 lines
368 B
C++
#pragma once
|
|
|
|
#include "fesa/Core/Types.hpp"
|
|
#include "fesa/ModuleInfo.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace fesa::module {
|
|
|
|
inline constexpr std::string_view kBoundary = "Boundary";
|
|
|
|
} // namespace fesa::module
|
|
|
|
namespace fesa {
|
|
|
|
struct BoundaryCondition {
|
|
std::string target;
|
|
int first_dof = 0;
|
|
int last_dof = 0;
|
|
Real magnitude = 0.0;
|
|
};
|
|
|
|
} // namespace fesa
|