OGS
MaterialState.h
Go to the documentation of this file.
1
10#pragma once
11
13
15{
16template <int DisplacementDim>
18{
20 DisplacementDim>::MaterialStateVariables;
21
22public:
23 explicit MaterialStateData(std::unique_ptr<MSV>&& material_state_variables)
25 {
26 }
27
28 void pushBackState() { material_state_variables->pushBackState(); }
29
30 std::unique_ptr<MSV> material_state_variables;
31};
32} // namespace ProcessLib::SmallDeformation
typename MaterialLib::Solids::MechanicsBase< DisplacementDim >::MaterialStateVariables MSV
MaterialStateData(std::unique_ptr< MSV > &&material_state_variables)