version 3.9
fluidsolidinterfacialareashiwang.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-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef FLUIDSOLID_INTERFACIALAREA_SHI_WANG_HH
13#define FLUIDSOLID_INTERFACIALAREA_SHI_WANG_HH
14
15namespace Dumux {
16
21template<class Scalar>
23{
24public:
31 static Scalar fluidSolidInterfacialArea(const Scalar porosity,
32 const Scalar characteristicLength)
33 { return 6.0*(1.0-porosity)/characteristicLength; }
34};
35
36} // end namespace Dumux
37
38#endif
Description of a interfacial area between solid and fluid phase.
Definition: fluidsolidinterfacialareashiwang.hh:23
static Scalar fluidSolidInterfacialArea(const Scalar porosity, const Scalar characteristicLength)
Relation for the interfacial area between a fluid and a solid phase after Shi & Wang,...
Definition: fluidsolidinterfacialareashiwang.hh:31
std::string porosity() noexcept
I/O name of porosity.
Definition: name.hh:127
Definition: adapt.hh:17