OGS
StressData.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
8
10{
11template <int DisplacementDim>
13{
15
16 static auto reflect()
17 {
18 using Self = StressData<DisplacementDim>;
19
20 return ProcessLib::Reflection::reflectWithName("sigma", &Self::sigma);
21 }
22};
23
24} // namespace ProcessLib::ConstitutiveRelations
Eigen::Matrix< double, kelvin_vector_dimensions(DisplacementDim), 1, Eigen::ColMajor > KelvinVectorType
auto reflectWithName(std::string name, Member Class::*member)
MathLib::KelvinVector::KelvinVectorType< DisplacementDim > sigma
Definition StressData.h:14