OGS
VapourPartialPressure.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{
20{
21 // water partial pressure in gas phase
22 double pWGR = nan;
23
24 static auto reflect()
25 {
26 using Self = VapourPartialPressureData;
27 namespace R = ProcessLib::Reflection;
28
29 return std::tuple{
30 R::makeReflectionData("vapour_pressure", &Self::pWGR)};
31 }
32};
33
34} // namespace ConstitutiveRelations
35} // namespace ProcessLib::TH2M
static constexpr double nan
Convenience alias for not a number.
Definition Base.h:80