OGS
MechanicalStrainData.h
Go to the documentation of this file.
1
11#pragma once
12
14
16{
17namespace ConstitutiveStress_StrainTemperature
18{
19template <int DisplacementDim>
21{
22 // TODO it seems fragile that some data have to be initialized that way.
23 KelvinVector<DisplacementDim> eps_m = KV::KVzero<DisplacementDim>();
24
25 static auto reflect()
26 {
28
29 return ProcessLib::Reflection::reflectWithName("eps_m", &Self::eps_m);
30 }
31};
32} // namespace ConstitutiveStress_StrainTemperature
33} // namespace ProcessLib::ThermoRichardsMechanics
auto reflectWithName(std::string name, Member Class::*member)
KV::KelvinVectorType< DisplacementDim > KelvinVector
Definition Base.h:26