93 lines
3.7 KiB
C++
93 lines
3.7 KiB
C++
/*
|
|
Copyright 2012 SINTEF ICT, Applied Mathematics.
|
|
|
|
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 3 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/>.
|
|
*/
|
|
#ifndef SATFUNCSIMPLE_HPP
|
|
#define SATFUNCSIMPLE_HPP
|
|
|
|
#include <opm/core/io/eclipse/EclipseGridParser.hpp>
|
|
#include <opm/core/utility/UniformTableLinear.hpp>
|
|
#include <opm/core/utility/NonuniformTableLinear.hpp>
|
|
#include <opm/core/props/BlackoilPhases.hpp>
|
|
#include <vector>
|
|
|
|
namespace Opm
|
|
{
|
|
class SatFuncSimpleUniform : public BlackoilPhases
|
|
{
|
|
public:
|
|
void init(const EclipseGridParser& deck,
|
|
const int table_num,
|
|
const PhaseUsage phase_usg,
|
|
const int samples);
|
|
void evalKr(const double* s, double* kr) const;
|
|
void evalKrDeriv(const double* s, double* kr, double* dkrds) const;
|
|
void evalPc(const double* s, double* pc) const;
|
|
void evalPcDeriv(const double* s, double* pc, double* dpcds) const;
|
|
double smin_[PhaseUsage::MaxNumPhases];
|
|
double smax_[PhaseUsage::MaxNumPhases];
|
|
double krwmax_; // Max water relperm
|
|
double kromax_; // Max oil relperm
|
|
double swcr_; // Critical water saturation.
|
|
double krwr_; // Water relperm at critical oil-in-water saturation.
|
|
double sowcr_; // Critical oil-in-water saturation.
|
|
double krorw_; // Oil relperm at critical water saturation.
|
|
private:
|
|
PhaseUsage phase_usage; // A copy of the outer class' phase_usage_.
|
|
UniformTableLinear<double> krw_;
|
|
UniformTableLinear<double> krow_;
|
|
UniformTableLinear<double> pcow_;
|
|
UniformTableLinear<double> krg_;
|
|
UniformTableLinear<double> krog_;
|
|
UniformTableLinear<double> pcog_;
|
|
double krocw_; // = krow_(s_wc)
|
|
};
|
|
|
|
|
|
class SatFuncSimpleNonuniform : public BlackoilPhases
|
|
{
|
|
public:
|
|
void init(const EclipseGridParser& deck,
|
|
const int table_num,
|
|
const PhaseUsage phase_usg,
|
|
const int samples);
|
|
void evalKr(const double* s, double* kr) const;
|
|
void evalKrDeriv(const double* s, double* kr, double* dkrds) const;
|
|
void evalPc(const double* s, double* pc) const;
|
|
void evalPcDeriv(const double* s, double* pc, double* dpcds) const;
|
|
double smin_[PhaseUsage::MaxNumPhases];
|
|
double smax_[PhaseUsage::MaxNumPhases];
|
|
double krwmax_; // Max water relperm
|
|
double kromax_; // Max oil relperm
|
|
double swcr_; // Critical water saturation.
|
|
double krwr_; // Water relperm at critical oil-in-water saturation.
|
|
double sowcr_; // Critical oil-in-water saturation.
|
|
double krorw_; // Oil relperm at critical water saturation.
|
|
private:
|
|
PhaseUsage phase_usage; // A copy of the outer class' phase_usage_.
|
|
NonuniformTableLinear<double> krw_;
|
|
NonuniformTableLinear<double> krow_;
|
|
NonuniformTableLinear<double> pcow_;
|
|
NonuniformTableLinear<double> krg_;
|
|
NonuniformTableLinear<double> krog_;
|
|
NonuniformTableLinear<double> pcog_;
|
|
double krocw_; // = krow_(s_wc)
|
|
};
|
|
|
|
} // namespace Opm
|
|
#endif // SATFUNCSIMPLE_HPP
|