OGS
PermeabilityData.h
Go to the documentation of this file.
1
11#pragma once
12
13#include "Base.h"
14
16{
17template <int DisplacementDim>
19{
20 double k_rel;
23
24 static auto reflect()
25 {
27 namespace R = ProcessLib::Reflection;
28
29 return std::tuple{
30 R::makeReflectionData("intrinsic_permeability", &Self::Ki),
31 R::makeReflectionData("relative_permeability", &Self::k_rel)};
32 }
33};
34} // namespace ProcessLib::ThermoRichardsMechanics
Eigen::Matrix< double, DisplacementDim, DisplacementDim, Eigen::RowMajor > GlobalDimMatrix
Definition Base.h:35