23 lines
326 B
C++
23 lines
326 B
C++
#pragma once
|
|
|
|
#include "fesa/Core/Types.hpp"
|
|
#include "fesa/ModuleInfo.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace fesa::module {
|
|
|
|
inline constexpr std::string_view kLoad = "Load";
|
|
|
|
} // namespace fesa::module
|
|
|
|
namespace fesa {
|
|
|
|
struct NodalLoad {
|
|
std::string target;
|
|
int dof = 0;
|
|
Real magnitude = 0.0;
|
|
};
|
|
|
|
} // namespace fesa
|