Line |
Branch |
Exec |
Source |
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-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder |
5 |
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
6 |
|
|
// |
7 |
|
|
/*! |
8 |
|
|
* \file |
9 |
|
|
* \ingroup Fluidmatrixinteractions |
10 |
|
|
* \brief Description of a interfacial area between solid and fluid phase |
11 |
|
|
*/ |
12 |
|
|
#ifndef FLUIDSOLID_INTERFACIALAREA_SHI_WANG_HH |
13 |
|
|
#define FLUIDSOLID_INTERFACIALAREA_SHI_WANG_HH |
14 |
|
|
|
15 |
|
|
namespace Dumux { |
16 |
|
|
|
17 |
|
|
/*! |
18 |
|
|
* \ingroup Fluidmatrixinteractions |
19 |
|
|
* \brief Description of a interfacial area between solid and fluid phase |
20 |
|
|
*/ |
21 |
|
|
template<class Scalar> |
22 |
|
|
class FluidSolidInterfacialAreaShiWang |
23 |
|
|
{ |
24 |
|
|
public: |
25 |
|
|
/*! |
26 |
|
|
* \brief Relation for the interfacial area between a fluid and a solid phase |
27 |
|
|
* after Shi & Wang, Transport in porous media (2011) |
28 |
|
|
* |
29 |
|
|
* \return interfacial area |
30 |
|
|
*/ |
31 |
|
|
static Scalar fluidSolidInterfacialArea(const Scalar porosity, |
32 |
|
|
const Scalar characteristicLength) |
33 |
|
1391823 |
{ return 6.0*(1.0-porosity)/characteristicLength; } |
34 |
|
|
}; |
35 |
|
|
|
36 |
|
|
} // end namespace Dumux |
37 |
|
|
|
38 |
|
|
#endif |
39 |
|
|
|