conceptually, this may not be the purest conceivable solution, but it is the most practical one.
86 lines
2.7 KiB
C++
86 lines
2.7 KiB
C++
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
// vi: set et ts=4 sw=4 sts=4:
|
|
/*
|
|
Copyright (C) 2009-2013 by Andreas Lauser
|
|
Copyright (C) 2010 by Benjamin Faigle
|
|
|
|
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
|
|
*
|
|
* \brief The IAPWS formulation of Henry coefficients in water.
|
|
*/
|
|
#ifndef OPM_HENRY_IAPWS_HPP
|
|
#define OPM_HENRY_IAPWS_HPP
|
|
|
|
#include <opm/material/components/H2O.hpp>
|
|
|
|
namespace Opm
|
|
{
|
|
/*!
|
|
* \ingroup Binarycoefficients
|
|
* \brief The Henry constants in liquid water using the IAPWS 2004 formulation.
|
|
*
|
|
* This function calculates \f$K_D\f$, see:
|
|
*
|
|
* IAPWS: "Guideline on the Henry's Constant and Vapor-Liquid Distribution Constant for
|
|
* Gases in H2O and D2O at High Temperatures" http://www.iapws.org/relguide/HenGuide.pdf
|
|
*/
|
|
template <class Scalar, class Evaluation>
|
|
inline Evaluation henryIAPWS(Scalar E,
|
|
Scalar F,
|
|
Scalar G,
|
|
Scalar H,
|
|
const Evaluation& temperature)
|
|
{
|
|
typedef Opm::MathToolbox<Evaluation> Toolbox;
|
|
typedef Opm::H2O<Evaluation> H2O;
|
|
|
|
Evaluation Tr = temperature/H2O::criticalTemperature();
|
|
Evaluation tau = 1 - Tr;
|
|
|
|
static const Scalar c[6] = {
|
|
1.99274064, 1.09965342, -0.510839303,
|
|
-1.75493479,-45.5170352, -6.7469445e5
|
|
};
|
|
static const Scalar d[6] = {
|
|
1/3.0, 2/3.0, 5/3.0,
|
|
16/3.0, 43/3.0, 110/3.0
|
|
};
|
|
static const Scalar q = -0.023767;
|
|
|
|
Evaluation f = 0;
|
|
for (int i = 0; i < 6; ++i) {
|
|
f += c[i]*Toolbox::pow(tau, d[i]);
|
|
}
|
|
|
|
const Evaluation& exponent =
|
|
q*F +
|
|
E/temperature*f +
|
|
(F +
|
|
G*Toolbox::pow(tau, 2.0/3) +
|
|
H*tau)*
|
|
Toolbox::exp((H2O::tripleTemperature() - temperature)/100);
|
|
// CAUTION: K_D is formulated in mole fractions. We have to
|
|
// multiply it with the vapor pressure of water in order to get
|
|
// derivative of the partial pressure.
|
|
return Toolbox::exp(exponent)*H2O::vaporPressure(temperature);
|
|
}
|
|
} // namespace Opm
|
|
|
|
#endif // OPM_HENRY_IAPWS_HPP
|