428 lines
17 KiB
C++
428 lines
17 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) 2012 by Holger Class *
|
|
* Copyright (C) 2012 by Andreas Lauser *
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
*****************************************************************************/
|
|
/*!
|
|
* \file
|
|
* \copydoc Opm::FluidSystems::H2OAirXylene
|
|
*/
|
|
#ifndef OPM_H2O_AIR_XYLENE_FLUID_SYSTEM_HPP
|
|
#define OPM_H2O_AIR_XYLENE_FLUID_SYSTEM_HPP
|
|
|
|
#include <opm/material/IdealGas.hpp>
|
|
#include <opm/material/components/Air.hpp>
|
|
#include <opm/material/components/H2O.hpp>
|
|
#include <opm/material/components/Xylene.hpp>
|
|
#include <opm/material/components/TabulatedComponent.hpp>
|
|
|
|
#include <opm/material/binarycoefficients/H2O_Air.hpp>
|
|
#include <opm/material/binarycoefficients/H2O_Xylene.hpp>
|
|
#include <opm/material/binarycoefficients/Air_Xylene.hpp>
|
|
|
|
#include "BaseFluidSystem.hpp"
|
|
#include "NullParameterCache.hpp"
|
|
|
|
namespace Opm {
|
|
namespace FluidSystems {
|
|
|
|
/*!
|
|
* \ingroup Fluidsystems
|
|
* \brief A fluid system with water, gas and NAPL as phases and
|
|
* water, air and NAPL (contaminant) as components.
|
|
*/
|
|
template <class Scalar>
|
|
class H2OAirXylene
|
|
: public BaseFluidSystem<Scalar, H2OAirXylene<Scalar> >
|
|
{
|
|
typedef H2OAirXylene<Scalar> ThisType;
|
|
typedef BaseFluidSystem<Scalar, ThisType> Base;
|
|
|
|
public:
|
|
//! \copydoc BaseFluidSystem::ParameterCache
|
|
typedef NullParameterCache ParameterCache;
|
|
|
|
//! The type of the water component
|
|
typedef Opm::H2O<Scalar> H2O;
|
|
//! The type of the xylene/napl component
|
|
typedef Opm::Xylene<Scalar> NAPL;
|
|
//! The type of the air component
|
|
typedef Opm::Air<Scalar> Air;
|
|
|
|
//! \copydoc BaseFluidSystem::numPhases
|
|
static const int numPhases = 3;
|
|
//! \copydoc BaseFluidSystem::numComponents
|
|
static const int numComponents = 3;
|
|
|
|
//! The index of the water phase
|
|
static const int wPhaseIdx = 0;
|
|
//! The index of the NAPL phase
|
|
static const int nPhaseIdx = 1;
|
|
//! The index of the gas phase
|
|
static const int gPhaseIdx = 2;
|
|
|
|
//! The index of the water component
|
|
static const int H2OIdx = 0;
|
|
//! The index of the NAPL component
|
|
static const int NAPLIdx = 1;
|
|
//! The index of the air pseudo-component
|
|
static const int airIdx = 2;
|
|
|
|
//! \copydoc BaseFluidSystem::init
|
|
static void init()
|
|
{ }
|
|
|
|
//! \copydoc BaseFluidSystem::isLiquid
|
|
static bool isLiquid(int phaseIdx)
|
|
{
|
|
//assert(0 <= phaseIdx && phaseIdx < numPhases);
|
|
return phaseIdx != gPhaseIdx;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::isIdealGas
|
|
static bool isIdealGas(int phaseIdx)
|
|
{ return phaseIdx == gPhaseIdx && H2O::gasIsIdeal() && Air::gasIsIdeal() && NAPL::gasIsIdeal(); }
|
|
|
|
//! \copydoc BaseFluidSystem::isIdealMixture
|
|
static bool isIdealMixture(int phaseIdx)
|
|
{
|
|
//assert(0 <= phaseIdx && phaseIdx < numPhases);
|
|
|
|
// we assume Henry's and Rault's laws for the water phase and
|
|
// and no interaction between gas molecules of different
|
|
// components, so all phases are ideal mixtures!
|
|
return true;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::isCompressible
|
|
static bool isCompressible(int phaseIdx)
|
|
{
|
|
return
|
|
(phaseIdx == gPhaseIdx)
|
|
// gases are always compressible
|
|
? true
|
|
: (phaseIdx == wPhaseIdx)
|
|
// the water component decides for the water phase...
|
|
? H2O::liquidIsCompressible()
|
|
// the NAPL component decides for the napl phase...
|
|
: NAPL::liquidIsCompressible();
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::phaseName
|
|
static const char *phaseName(int phaseIdx)
|
|
{
|
|
switch (phaseIdx) {
|
|
case wPhaseIdx: return "w";
|
|
case nPhaseIdx: return "n";
|
|
case gPhaseIdx: return "g";;
|
|
};
|
|
OPM_THROW(std::logic_error, "Invalid phase index " << phaseIdx);
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::componentName
|
|
static const char *componentName(int compIdx)
|
|
{
|
|
switch (compIdx) {
|
|
case H2OIdx: return H2O::name();
|
|
case airIdx: return Air::name();
|
|
case NAPLIdx: return NAPL::name();
|
|
};
|
|
OPM_THROW(std::logic_error, "Invalid component index " << compIdx);
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::molarMass
|
|
static Scalar molarMass(int compIdx)
|
|
{
|
|
return
|
|
(compIdx == H2OIdx)
|
|
// gases are always compressible
|
|
? H2O::molarMass()
|
|
: (compIdx == airIdx)
|
|
// the water component decides for the water comp...
|
|
? Air::molarMass()
|
|
// the NAPL component decides for the napl comp...
|
|
: (compIdx == NAPLIdx)
|
|
? NAPL::molarMass()
|
|
: 1e100;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::density
|
|
template <class FluidState>
|
|
static Scalar density(const FluidState &fluidState,
|
|
const ParameterCache ¶mCache,
|
|
int phaseIdx)
|
|
{
|
|
if (phaseIdx == wPhaseIdx) {
|
|
// See: Ochs 2008
|
|
// \todo: proper citation
|
|
Scalar rholH2O = H2O::liquidDensity(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
Scalar clH2O = rholH2O/H2O::molarMass();
|
|
|
|
// this assumes each dissolved molecule displaces exactly one
|
|
// water molecule in the liquid
|
|
return
|
|
clH2O*(H2O::molarMass()*fluidState.moleFraction(wPhaseIdx, H2OIdx)
|
|
+
|
|
Air::molarMass()*fluidState.moleFraction(wPhaseIdx, airIdx)
|
|
+
|
|
NAPL::molarMass()*fluidState.moleFraction(wPhaseIdx, NAPLIdx));
|
|
}
|
|
else if (phaseIdx == nPhaseIdx) {
|
|
// assume pure NAPL for the NAPL phase
|
|
Scalar pressure = NAPL::liquidIsCompressible()?fluidState.pressure(phaseIdx):1e100;
|
|
return NAPL::liquidDensity(fluidState.temperature(phaseIdx), pressure);
|
|
}
|
|
|
|
assert (phaseIdx == gPhaseIdx);
|
|
Scalar pH2O =
|
|
fluidState.moleFraction(gPhaseIdx, H2OIdx) *
|
|
fluidState.pressure(gPhaseIdx);
|
|
Scalar pAir =
|
|
fluidState.moleFraction(gPhaseIdx, airIdx) *
|
|
fluidState.pressure(gPhaseIdx);
|
|
Scalar pNAPL =
|
|
fluidState.moleFraction(gPhaseIdx, NAPLIdx) *
|
|
fluidState.pressure(gPhaseIdx);
|
|
return
|
|
H2O::gasDensity(fluidState.temperature(phaseIdx), pH2O) +
|
|
Air::gasDensity(fluidState.temperature(phaseIdx), pAir) +
|
|
NAPL::gasDensity(fluidState.temperature(phaseIdx), pNAPL);
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::viscosity
|
|
template <class FluidState>
|
|
static Scalar viscosity(const FluidState &fluidState,
|
|
const ParameterCache ¶mCache,
|
|
int phaseIdx)
|
|
{
|
|
if (phaseIdx == wPhaseIdx) {
|
|
// assume pure water viscosity
|
|
return H2O::liquidViscosity(fluidState.temperature(phaseIdx),
|
|
fluidState.pressure(phaseIdx));
|
|
}
|
|
else if (phaseIdx == nPhaseIdx) {
|
|
// assume pure NAPL viscosity
|
|
return NAPL::liquidViscosity(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
}
|
|
|
|
assert (phaseIdx == gPhaseIdx);
|
|
|
|
/* Wilke method. See:
|
|
*
|
|
* See: R. Reid, et al.: The Properties of Gases and Liquids,
|
|
* 4th edition, McGraw-Hill, 1987, 407-410
|
|
* 5th edition, McGraw-Hill, 20001, p. 9.21/22
|
|
*
|
|
* in this case, we use a simplified version in order to avoid
|
|
* computationally costly evaluation of sqrt and pow functions and
|
|
* divisions
|
|
* -- compare e.g. with Promo Class p. 32/33
|
|
*/
|
|
Scalar muResult;
|
|
const Scalar mu[numComponents] = {
|
|
H2O::gasViscosity(fluidState.temperature(phaseIdx), H2O::vaporPressure(fluidState.temperature(phaseIdx))),
|
|
Air::simpleGasViscosity(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx)),
|
|
NAPL::gasViscosity(fluidState.temperature(phaseIdx), NAPL::vaporPressure(fluidState.temperature(phaseIdx)))
|
|
};
|
|
// molar masses
|
|
const Scalar M[numComponents] = {
|
|
H2O::molarMass(),
|
|
Air::molarMass(),
|
|
NAPL::molarMass()
|
|
};
|
|
|
|
Scalar muAW = mu[airIdx]*fluidState.moleFraction(gPhaseIdx, airIdx)
|
|
+ mu[H2OIdx]*fluidState.moleFraction(gPhaseIdx, H2OIdx)
|
|
/ (fluidState.moleFraction(gPhaseIdx, airIdx)
|
|
+ fluidState.moleFraction(gPhaseIdx, H2OIdx));
|
|
Scalar xAW = fluidState.moleFraction(gPhaseIdx, airIdx)
|
|
+ fluidState.moleFraction(gPhaseIdx, H2OIdx);
|
|
|
|
Scalar MAW = (fluidState.moleFraction(gPhaseIdx, airIdx)*Air::molarMass()
|
|
+ fluidState.moleFraction(gPhaseIdx, H2OIdx)*H2O::molarMass())
|
|
/ xAW;
|
|
|
|
/* TODO, please check phiCAW for the Xylene case here */
|
|
|
|
|
|
Scalar phiCAW = 0.3; // simplification for this particular system
|
|
/* actually like this
|
|
* Scalar phiCAW = std::pow(1.+std::sqrt(mu[NAPLIdx]/muAW)*std::pow(MAW/M[NAPLIdx],0.25),2)
|
|
* / std::sqrt(8.*(1.+M[NAPLIdx]/MAW));
|
|
*/
|
|
Scalar phiAWC = phiCAW * muAW*M[NAPLIdx]/(mu[NAPLIdx]*MAW);
|
|
|
|
muResult = (xAW*muAW)/(xAW+fluidState.moleFraction(gPhaseIdx, NAPLIdx)*phiAWC)
|
|
+ (fluidState.moleFraction(gPhaseIdx, NAPLIdx) * mu[NAPLIdx])
|
|
/ (fluidState.moleFraction(gPhaseIdx, NAPLIdx) + xAW*phiCAW);
|
|
return muResult;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::diffusionCoefficient
|
|
template <class FluidState>
|
|
static Scalar diffusionCoefficient(const FluidState &fluidState,
|
|
const ParameterCache ¶mCache,
|
|
int phaseIdx,
|
|
int compIdx)
|
|
{
|
|
Scalar diffCont;
|
|
|
|
if (phaseIdx==gPhaseIdx) {
|
|
Scalar diffAC = Opm::BinaryCoeff::Air_Xylene::gasDiffCoeff(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
Scalar diffWC = Opm::BinaryCoeff::H2O_Xylene::gasDiffCoeff(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
Scalar diffAW = Opm::BinaryCoeff::H2O_Air::gasDiffCoeff(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
|
|
const Scalar xga = fluidState.moleFraction(gPhaseIdx, airIdx);
|
|
const Scalar xgw = fluidState.moleFraction(gPhaseIdx, H2OIdx);
|
|
const Scalar xgc = fluidState.moleFraction(gPhaseIdx, NAPLIdx);
|
|
|
|
if (compIdx==NAPLIdx) return (1.- xgw)/(xga/diffAW + xgc/diffWC);
|
|
else if (compIdx==H2OIdx) return (1.- xgc)/(xgw/diffWC + xga/diffAC);
|
|
else if (compIdx==airIdx) OPM_THROW(std::logic_error,
|
|
"Diffusivity of air in the gas phase "
|
|
"is constraint by sum of diffusive fluxes = 0 !\n");
|
|
} else if (phaseIdx==wPhaseIdx){
|
|
Scalar diffACl = 1.e-9; // BinaryCoeff::Air_Xylene::liquidDiffCoeff(temperature, pressure);
|
|
Scalar diffWCl = 1.e-9; // BinaryCoeff::H2O_Xylene::liquidDiffCoeff(temperature, pressure);
|
|
Scalar diffAWl = 1.e-9; // BinaryCoeff::H2O_Air::liquidDiffCoeff(temperature, pressure);
|
|
|
|
Scalar xwa = fluidState.moleFraction(wPhaseIdx, airIdx);
|
|
Scalar xww = fluidState.moleFraction(wPhaseIdx, H2OIdx);
|
|
Scalar xwc = fluidState.moleFraction(wPhaseIdx, NAPLIdx);
|
|
|
|
switch (compIdx) {
|
|
case NAPLIdx:
|
|
diffCont = (1.- xww)/(xwa/diffAWl + xwc/diffWCl);
|
|
return diffCont;
|
|
case airIdx:
|
|
diffCont = (1.- xwc)/(xww/diffWCl + xwa/diffACl);
|
|
return diffCont;
|
|
case H2OIdx:
|
|
OPM_THROW(std::logic_error,
|
|
"Diffusivity of water in the water phase "
|
|
"is constraint by sum of diffusive fluxes = 0 !\n");
|
|
};
|
|
} else if (phaseIdx==nPhaseIdx) {
|
|
|
|
OPM_THROW(std::logic_error,
|
|
"Diffusion coefficients of "
|
|
"substances in liquid phase are undefined!\n");
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::fugacityCoefficient
|
|
template <class FluidState>
|
|
static Scalar fugacityCoefficient(const FluidState &fluidState,
|
|
const ParameterCache ¶mCache,
|
|
int phaseIdx,
|
|
int compIdx)
|
|
{
|
|
assert(0 <= phaseIdx && phaseIdx < numPhases);
|
|
assert(0 <= compIdx && compIdx < numComponents);
|
|
|
|
Scalar T = fluidState.temperature(phaseIdx);
|
|
Scalar p = fluidState.pressure(phaseIdx);
|
|
|
|
if (phaseIdx == wPhaseIdx) {
|
|
if (compIdx == H2OIdx)
|
|
return H2O::vaporPressure(T)/p;
|
|
else if (compIdx == airIdx)
|
|
return Opm::BinaryCoeff::H2O_Air::henry(T)/p;
|
|
else if (compIdx == NAPLIdx)
|
|
return Opm::BinaryCoeff::H2O_Xylene::henry(T)/p;
|
|
}
|
|
|
|
// for the NAPL phase, we assume currently that nothing is
|
|
// dissolved. this means that the affinity of the NAPL
|
|
// component to the NAPL phase is much higher than for the
|
|
// other components, i.e. the fugacity cofficient is much
|
|
// smaller.
|
|
if (phaseIdx == nPhaseIdx) {
|
|
Scalar phiNapl = NAPL::vaporPressure(T)/p;
|
|
if (compIdx == NAPLIdx)
|
|
return phiNapl;
|
|
else if (compIdx == airIdx)
|
|
return 1e6*phiNapl;
|
|
else if (compIdx == H2OIdx)
|
|
return 1e6*phiNapl;
|
|
}
|
|
|
|
// for the gas phase, assume an ideal gas when it comes to
|
|
// fugacity (-> fugacity == partial pressure)
|
|
assert(phaseIdx == gPhaseIdx);
|
|
return 1.0;
|
|
}
|
|
|
|
//! \copydoc BaseFluidSystem::enthalpy
|
|
template <class FluidState>
|
|
static Scalar enthalpy(const FluidState &fluidState,
|
|
const ParameterCache ¶mCache,
|
|
int phaseIdx)
|
|
{
|
|
if (phaseIdx == wPhaseIdx) {
|
|
return H2O::liquidEnthalpy(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
}
|
|
else if (phaseIdx == nPhaseIdx) {
|
|
return NAPL::liquidEnthalpy(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx));
|
|
}
|
|
else if (phaseIdx == gPhaseIdx) { // gas phase enthalpy depends strongly on composition
|
|
Scalar hgc = NAPL::gasEnthalpy(fluidState.temperature(phaseIdx),
|
|
fluidState.pressure(phaseIdx));
|
|
Scalar hgw = H2O::gasEnthalpy(fluidState.temperature(phaseIdx),
|
|
fluidState.pressure(phaseIdx));
|
|
Scalar hga = Air::gasEnthalpy(fluidState.temperature(phaseIdx), fluidState.pressure(phaseIdx)); // pressure is only a dummy here (not dependent on pressure, just temperature)
|
|
|
|
Scalar result = 0;
|
|
result += hgw * fluidState.massFraction(gPhaseIdx, H2OIdx);
|
|
result += hga * fluidState.massFraction(gPhaseIdx, airIdx);
|
|
result += hgc * fluidState.massFraction(gPhaseIdx, NAPLIdx);
|
|
|
|
return result;
|
|
}
|
|
OPM_THROW(std::logic_error, "Invalid phase index " << phaseIdx);
|
|
}
|
|
|
|
private:
|
|
static Scalar waterPhaseDensity_(Scalar T, Scalar pw, Scalar xww, Scalar xwa, Scalar xwc)
|
|
{
|
|
Scalar rholH2O = H2O::liquidDensity(T, pw);
|
|
Scalar clH2O = rholH2O/H2O::molarMass();
|
|
|
|
// this assumes each dissolved molecule displaces exactly one
|
|
// water molecule in the liquid
|
|
return
|
|
clH2O*(xww*H2O::molarMass() + xwa*Air::molarMass() + xwc*NAPL::molarMass());
|
|
}
|
|
|
|
static Scalar gasPhaseDensity_(Scalar T, Scalar pg, Scalar xgw, Scalar xga, Scalar xgc)
|
|
{
|
|
return H2O::gasDensity(T, pg*xgw) + Air::gasDensity(T, pg*xga) + NAPL::gasDensity(T, pg*xgc);
|
|
}
|
|
|
|
static Scalar NAPLPhaseDensity_(Scalar T, Scalar pn)
|
|
{
|
|
return
|
|
NAPL::liquidDensity(T, pn);
|
|
}
|
|
|
|
};
|
|
} // namespace FluidSystems
|
|
} // namespace Opm
|
|
|
|
#endif
|