opm-common
EclThconrLawParams.hpp
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  This file is part of the Open Porous Media project (OPM).
5 
6  OPM is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 2 of the License, or
9  (at your option) any later version.
10 
11  OPM is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with OPM. If not, see <http://www.gnu.org/licenses/>.
18 
19  Consult the COPYING file in the top-level source directory of this
20  module for the precise wording of the license and the list of
21  copyright holders.
22 */
27 #ifndef OPM_ECL_THCONR_LAW_PARAMS_HPP
28 #define OPM_ECL_THCONR_LAW_PARAMS_HPP
29 
30 #include <opm/common/utility/gpuDecorators.hpp>
32 
33 namespace Opm {
34 
39 template <class ScalarT>
41 {
42 public:
43  using Scalar = ScalarT;
44 
45  OPM_HOST_DEVICE EclThconrLawParams(const EclThconrLawParams&) = default;
46 
47  OPM_HOST_DEVICE EclThconrLawParams()
48  { }
49 
54  { referenceTotalThermalConductivity_ = value; }
55 
59  OPM_HOST_DEVICE Scalar referenceTotalThermalConductivity() const
60  { EnsureFinalized::check(); return referenceTotalThermalConductivity_; }
61 
66  { dTotalThermalConductivity_dSg_ = value; }
67 
71  OPM_HOST_DEVICE Scalar dTotalThermalConductivity_dSg() const
72  { EnsureFinalized::check(); return dTotalThermalConductivity_dSg_; }
73 
74 private:
75  Scalar referenceTotalThermalConductivity_;
76  Scalar dTotalThermalConductivity_dSg_;
77 };
78 
79 } // namespace Opm
80 
81 #endif
OPM_HOST_DEVICE Scalar referenceTotalThermalConductivity() const
The total thermal conductivity [J/m^2 / (K/m)] of at Sg = 0.
Definition: EclThconrLawParams.hpp:59
OPM_HOST_DEVICE Scalar dTotalThermalConductivity_dSg() const
The gas saturation dependence of thermal conductivity [-].
Definition: EclThconrLawParams.hpp:71
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition: Exceptions.hpp:30
void setDTotalThermalConductivity_dSg(Scalar value)
Set the gas saturation dependence of thermal conductivity [-].
Definition: EclThconrLawParams.hpp:65
Default implementation for asserting finalization of parameter objects.
void setReferenceTotalThermalConductivity(Scalar value)
Set the total thermal conductivity [J/m^2 / (K/m)] of at Sg = 0.
Definition: EclThconrLawParams.hpp:53
Default implementation for asserting finalization of parameter objects.
Definition: EnsureFinalized.hpp:48
The default implementation of a parameter object for the thermal conduction law based on the THCONR k...
Definition: EclThconrLawParams.hpp:40