version 3.11-dev
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
cao.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_CAO_HH
13#define DUMUX_CAO_HH
14
16
17#include <cmath>
18#include <iostream>
19
22
23namespace Dumux::Components {
24
29template <class Scalar>
30class CaO
31: public Components::Base<Scalar, CaO<Scalar> >
32, public Components::Solid<Scalar, CaO<Scalar> >
33{
34public:
38 static const char *name()
39 {
40 return "CaO";
41 }
42
46 static constexpr Scalar molarMass()
47 {
48 return 56.0774e-3;
49 }
50
55 {
56 return 3370;
57 }
58
64 {
66 }
67
72 {
73 return 934; //Nagel et al. (2014) : 934 J/kgK
74 }
75
80 {
81 return 0.4; //Nagel et al. (2014)
82 }
83};
84
85} // end namespace Dumux::Components
86
87#endif
Base class for all components Components provide the thermodynamic relations for the liquid,...
Definition: components/base.hh:46
Scalar Scalar
export the scalar type used by the component
Definition: components/base.hh:50
A class for the CaO properties.
Definition: cao.hh:33
static Scalar solidThermalConductivity(Scalar temperature)
The thermal conductivity of the porous material.
Definition: cao.hh:79
static Scalar solidHeatCapacity(Scalar temperature)
The specific heat capacity of CaO.
Definition: cao.hh:71
static Scalar solidMolarDensity(Scalar temperature)
The molar density of CaO. Molar density at 293 K. Literature value from Shao et al....
Definition: cao.hh:63
static const char * name()
A human readable name for the CaO.
Definition: cao.hh:38
static constexpr Scalar molarMass()
The molar mass of CaOH2 in .
Definition: cao.hh:46
static Scalar solidDensity(Scalar temperature)
The mass density of CaO.
Definition: cao.hh:54
Interface for components that have a solid state.
Definition: solid.hh:28
Base class for all components Components provide the thermodynamic relations for the liquid,...
Some exceptions thrown in DuMux
Definition: air.hh:22
std::string temperature() noexcept
I/O name of temperature for equilibrium models.
Definition: name.hh:39
Interface for components that have a solid state.