17 lines
218 B
C++
17 lines
218 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <fesa/model/ids.hpp>
|
|
|
|
namespace fesa {
|
|
|
|
struct IsotropicElastic final {
|
|
MaterialId id;
|
|
std::string name;
|
|
double young;
|
|
double poisson;
|
|
};
|
|
|
|
} // namespace fesa
|