3.3.0
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
awnsurfacepcmaxfctparams.hh
Go to the documentation of this file.
1/*****************************************************************************
2 * See the file COPYING for full copying permissions. *
3 * *
4 * This program is free software: you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation, either version 3 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
16 *****************************************************************************/
23#ifndef AWN_SURFACE_PCMAX_FCT_PARAMS_HH
24#define AWN_SURFACE_PCMAX_FCT_PARAMS_HH
25
26#warning "This header is deprecated. Removal after 3.3. Use new material laws."
27
28namespace Dumux {
29
34template<class ScalarT>
36{
37public:
38 using Scalar = ScalarT;
39
41 {}
42
46 const Scalar a1() const
47 { return a1_; }
48
52 const Scalar a2() const
53 { return a2_; }
54
58 const Scalar a3() const
59 { return a3_; }
60
64 void setA1(const Scalar v)
65 { a1_ = v; }
66
70 void setA2(const Scalar v)
71 { a2_ = v; }
72
76 void setA3(const Scalar v)
77 { a3_ = v; }
78
82 const Scalar pcMax() const
83 { return pcMax_; }
84
88 void setPcMax(const Scalar v)
89 { pcMax_ = v; }
90
91private:
92 Scalar a1_;
93 Scalar a2_;
94 Scalar a3_;
95 Scalar pcMax_;
96 Scalar Swr_;
97 Scalar Snr_;
98};
99} // namespace Dumux
100
101#endif
Definition: adapt.hh:29
Implementation of interfacial area surface params.
Definition: awnsurfacepcmaxfctparams.hh:36
void setA3(const Scalar v)
Set the shape parameter.
Definition: awnsurfacepcmaxfctparams.hh:76
void setA2(const Scalar v)
Set the shape parameter.
Definition: awnsurfacepcmaxfctparams.hh:70
ScalarT Scalar
Definition: awnsurfacepcmaxfctparams.hh:38
void setPcMax(const Scalar v)
Set the for the surface.
Definition: awnsurfacepcmaxfctparams.hh:88
const Scalar a3() const
Return the shape parameter of awn surface.
Definition: awnsurfacepcmaxfctparams.hh:58
void setA1(const Scalar v)
Set the shape parameter.
Definition: awnsurfacepcmaxfctparams.hh:64
const Scalar pcMax() const
Return the shape parameter of awn surface.
Definition: awnsurfacepcmaxfctparams.hh:82
const Scalar a1() const
Return the shape parameter of awn surface.
Definition: awnsurfacepcmaxfctparams.hh:46
AwnSurfacePcMaxFctParams()
Definition: awnsurfacepcmaxfctparams.hh:40
const Scalar a2() const
Return the shape parameter of awn surface.
Definition: awnsurfacepcmaxfctparams.hh:52