Files
opm-common/opm/material/binarycoefficients/FullerMethod.hpp
Andreas Lauser 5b08de4244 incorperate all infrastructural classes required into opm-material itself
they used to be in opm-core, but this allows to be more flexible with
the dependency order: What's now called "opm-core" can easily depend
on opm-material which might come in handy for the refactoring.

Besides moving in classes from opm-core, the infrastructural code
which was still in opm-material is moved to the directory
opm/material/common. The intention is to collect these classes at a
central location to make it easy to move them to a real "core" module.
(if this is ever going to happen.)
2015-04-28 12:17:49 +02:00

69 lines
2.2 KiB
C++

/*
Copyright (C) 2010 by Benjamin Faigle
Copyright (C) 2009-2013 by Andreas Lauser
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
/*!
* \file
* \copydoc Opm::BinaryCoeff::fullerMethod
*/
#ifndef OPM_FULLERMETHOD_HPP
#define OPM_FULLERMETHOD_HPP
#include <opm/material/common/Means.hpp>
#include <cmath>
namespace Opm {
namespace BinaryCoeff {
/*!
* \ingroup Binarycoefficients
* \brief Estimate binary diffusion coefficents \f$\mathrm{[m^2/s]}\f$ in gases according to
* the method by Fuller.
*
* \param M molar masses \f$\mathrm{[g/mol]}\f$
* \param SigmaNu atomic diffusion volume
* \param temperature The temperature \f$\mathrm{[K]}\f$
* \param pressure phase pressure \f$\mathrm{[Pa]}\f$
*
* This function estimates the diffusion coefficents in binary gases
* using to the method proposed by Fuller. This method and is only
* valid at "low" pressures.
*
* See: R. Reid, et al.: The Properties of Gases and Liquids, 4th
* edition, McGraw-Hill, 1987, pp. 587-588
*/
template <class Scalar>
inline Scalar fullerMethod(const Scalar *M, // molar masses [g/mol]
const Scalar *SigmaNu, // atomic diffusion volume
const Scalar temperature, // [K]
const Scalar pressure) // [Pa]
{
// "effective" molar mass in [g/m^3]
Scalar Mab = Opm::harmonicMean(M[0], M[1]);
// Fuller's method
Scalar tmp = std::pow(SigmaNu[0], 1./3) + std::pow(SigmaNu[1], 1./3);
return 1e-4 * (143.0*std::pow(temperature, 1.75))/(pressure*std::sqrt(Mab)*tmp*tmp);
}
} // namespace BinaryCoeff
} // namespace Opm
#endif