OGS
DarcyVelocity.h
Go to the documentation of this file.
1
10#pragma once
11
12#include "Base.h"
14
15namespace ProcessLib::TH2M
16{
17namespace ConstitutiveRelations
18{
19template <int DisplacementDim>
21{
24
25 static auto reflect()
26 {
28 namespace R = ProcessLib::Reflection;
29
30 return std::tuple{
31 R::makeReflectionData("velocity_gas", &Self::w_GS),
32 R::makeReflectionData("velocity_liquid", &Self::w_LS)};
33 }
34};
35} // namespace ConstitutiveRelations
36} // namespace ProcessLib::TH2M
Eigen::Vector< double, DisplacementDim > GlobalDimVector
Definition Base.h:36