2012-01-04 07:44:55 -06:00
|
|
|
/*
|
|
|
|
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 OPM_BLACKOILPROPERTIESFROMDECK_HEADER_INCLUDED
|
|
|
|
#define OPM_BLACKOILPROPERTIESFROMDECK_HEADER_INCLUDED
|
|
|
|
|
|
|
|
|
2013-03-14 04:29:42 -05:00
|
|
|
#include <opm/core/props/BlackoilPropertiesInterface.hpp>
|
|
|
|
#include <opm/core/props/rock/RockFromDeck.hpp>
|
|
|
|
#include <opm/core/props/satfunc/SaturationPropsFromDeck.hpp>
|
2012-08-28 07:27:14 -05:00
|
|
|
#include <opm/core/utility/parameters/ParameterGroup.hpp>
|
2016-02-15 09:03:30 -06:00
|
|
|
#include <opm/material/fluidsystems/blackoilpvt/OilPvtMultiplexer.hpp>
|
|
|
|
#include <opm/material/fluidsystems/blackoilpvt/GasPvtMultiplexer.hpp>
|
|
|
|
#include <opm/material/fluidsystems/blackoilpvt/WaterPvtMultiplexer.hpp>
|
2014-01-24 05:00:03 -06:00
|
|
|
|
|
|
|
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
|
|
|
|
2013-08-08 08:21:38 -05:00
|
|
|
#include <memory>
|
2012-01-04 07:44:55 -06:00
|
|
|
|
2012-08-10 03:12:45 -05:00
|
|
|
struct UnstructuredGrid;
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Concrete class implementing the blackoil property interface,
|
|
|
|
/// reading all data and properties from eclipse deck input.
|
|
|
|
class BlackoilPropertiesFromDeck : public BlackoilPropertiesInterface
|
|
|
|
{
|
|
|
|
public:
|
2015-07-28 10:28:51 -05:00
|
|
|
typedef typename SaturationPropsFromDeck::MaterialLawManager MaterialLawManager;
|
|
|
|
|
2014-01-24 05:00:03 -06:00
|
|
|
/// Initialize from deck and grid.
|
|
|
|
/// \param[in] deck Deck input parser
|
|
|
|
/// \param[in] grid Grid to which property object applies, needed for the
|
|
|
|
/// mapping from cell indices (typically from a processed grid)
|
|
|
|
/// to logical cartesian indices consistent with the deck.
|
2016-10-13 09:03:35 -05:00
|
|
|
BlackoilPropertiesFromDeck(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2013-07-28 06:34:13 -05:00
|
|
|
const UnstructuredGrid& grid, bool init_rock=true );
|
2012-09-03 07:16:54 -05:00
|
|
|
|
2014-01-24 05:00:03 -06:00
|
|
|
/// Initialize from deck, grid and parameters.
|
|
|
|
/// \param[in] deck Deck input parser
|
|
|
|
/// \param[in] grid Grid to which property object applies, needed for the
|
|
|
|
/// mapping from cell indices (typically from a processed grid)
|
|
|
|
/// to logical cartesian indices consistent with the deck.
|
|
|
|
/// \param[in] param Parameters. Accepted parameters include:
|
|
|
|
/// pvt_tab_size (200) number of uniform sample points for dead-oil pvt tables.
|
|
|
|
/// sat_tab_size (200) number of uniform sample points for saturation tables.
|
|
|
|
/// threephase_model("simple") three-phase relperm model (accepts "simple" and "stone2").
|
|
|
|
/// For both size parameters, a 0 or negative value indicates that no spline fitting is to
|
|
|
|
/// be done, and the input fluid data used directly for linear interpolation.
|
2016-10-13 09:03:35 -05:00
|
|
|
BlackoilPropertiesFromDeck(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2014-01-24 05:00:03 -06:00
|
|
|
const UnstructuredGrid& grid,
|
|
|
|
const parameter::ParameterGroup& param,
|
|
|
|
bool init_rock=true);
|
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
BlackoilPropertiesFromDeck(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2015-07-28 10:28:51 -05:00
|
|
|
int number_of_cells,
|
|
|
|
const int* global_cell,
|
|
|
|
const int* cart_dims,
|
|
|
|
bool init_rock=true);
|
2014-02-25 08:45:15 -06:00
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
BlackoilPropertiesFromDeck(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2014-02-25 08:45:15 -06:00
|
|
|
int number_of_cells,
|
|
|
|
const int* global_cell,
|
|
|
|
const int* cart_dims,
|
2015-07-28 10:28:51 -05:00
|
|
|
const parameter::ParameterGroup& param,
|
2014-02-25 08:45:15 -06:00
|
|
|
bool init_rock=true);
|
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
BlackoilPropertiesFromDeck(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2015-07-28 10:28:51 -05:00
|
|
|
std::shared_ptr<MaterialLawManager> materialLawManager,
|
2014-02-25 08:45:15 -06:00
|
|
|
int number_of_cells,
|
|
|
|
const int* global_cell,
|
|
|
|
const int* cart_dims,
|
|
|
|
const parameter::ParameterGroup& param,
|
|
|
|
bool init_rock=true);
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
/// Destructor.
|
|
|
|
virtual ~BlackoilPropertiesFromDeck();
|
|
|
|
|
|
|
|
|
|
|
|
// ---- Rock interface ----
|
|
|
|
|
|
|
|
/// \return D, the number of spatial dimensions.
|
|
|
|
virtual int numDimensions() const;
|
|
|
|
|
|
|
|
/// \return N, the number of cells.
|
|
|
|
virtual int numCells() const;
|
|
|
|
|
2014-05-13 05:59:11 -05:00
|
|
|
/// Return an array containing the PVT table index for each
|
|
|
|
/// grid cell
|
|
|
|
virtual const int* cellPvtRegionIndex() const
|
|
|
|
{ return &cellPvtRegionIdx_[0]; }
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \return Array of N porosity values.
|
|
|
|
virtual const double* porosity() const;
|
|
|
|
|
|
|
|
/// \return Array of ND^2 permeability values.
|
|
|
|
/// The D^2 permeability values for a cell are organized as a matrix,
|
|
|
|
/// which is symmetric (so ordering does not matter).
|
|
|
|
virtual const double* permeability() const;
|
|
|
|
|
|
|
|
|
|
|
|
// ---- Fluid interface ----
|
|
|
|
|
|
|
|
/// \return P, the number of phases (also the number of components).
|
|
|
|
virtual int numPhases() const;
|
|
|
|
|
2013-05-13 09:20:00 -05:00
|
|
|
/// \return Object describing the active phases.
|
|
|
|
virtual PhaseUsage phaseUsage() const;
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] p Array of n pressure values.
|
2014-11-20 05:15:01 -06:00
|
|
|
/// \param[in] T Array of n temperature values.
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[in] z Array of nP surface volume values.
|
|
|
|
/// \param[in] cells Array of n cell indices to be associated with the p and z values.
|
|
|
|
/// \param[out] mu Array of nP viscosity values, array must be valid before calling.
|
|
|
|
/// \param[out] dmudp If non-null: array of nP viscosity derivative values,
|
|
|
|
/// array must be valid before calling.
|
|
|
|
virtual void viscosity(const int n,
|
|
|
|
const double* p,
|
2014-11-20 05:15:01 -06:00
|
|
|
const double* T,
|
2012-01-04 07:44:55 -06:00
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* mu,
|
|
|
|
double* dmudp) const;
|
|
|
|
|
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] p Array of n pressure values.
|
2014-11-20 05:15:01 -06:00
|
|
|
/// \param[in] T Array of n temperature values.
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[in] z Array of nP surface volume values.
|
|
|
|
/// \param[in] cells Array of n cell indices to be associated with the p and z values.
|
|
|
|
/// \param[out] A Array of nP^2 values, array must be valid before calling.
|
|
|
|
/// The P^2 values for a cell give the matrix A = RB^{-1} which
|
|
|
|
/// relates z to u by z = Au. The matrices are output in Fortran order.
|
|
|
|
/// \param[out] dAdp If non-null: array of nP^2 matrix derivative values,
|
|
|
|
/// array must be valid before calling. The matrices are output
|
|
|
|
/// in Fortran order.
|
|
|
|
virtual void matrix(const int n,
|
|
|
|
const double* p,
|
2014-11-20 05:15:01 -06:00
|
|
|
const double* T,
|
2012-01-04 07:44:55 -06:00
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* A,
|
|
|
|
double* dAdp) const;
|
|
|
|
|
|
|
|
|
2012-05-14 04:28:05 -05:00
|
|
|
/// Densities of stock components at reservoir conditions.
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] A Array of nP^2 values, where the P^2 values for a cell give the
|
|
|
|
/// matrix A = RB^{-1} which relates z to u by z = Au. The matrices
|
|
|
|
/// are assumed to be in Fortran order, and are typically the result
|
|
|
|
/// of a call to the method matrix().
|
2014-05-13 05:59:11 -05:00
|
|
|
/// \param[in] cells The index of the grid cell of each data point.
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[out] rho Array of nP density values, array must be valid before calling.
|
|
|
|
virtual void density(const int n,
|
|
|
|
const double* A,
|
2014-05-13 05:59:11 -05:00
|
|
|
const int* cells,
|
2012-01-04 07:44:55 -06:00
|
|
|
double* rho) const;
|
|
|
|
|
2012-05-14 04:28:05 -05:00
|
|
|
/// Densities of stock components at surface conditions.
|
|
|
|
/// \return Array of P density values.
|
2014-05-13 05:59:11 -05:00
|
|
|
virtual const double* surfaceDensity(int cellIdx = 0) const;
|
2012-05-14 04:28:05 -05:00
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] s Array of nP saturation values.
|
|
|
|
/// \param[in] cells Array of n cell indices to be associated with the s values.
|
|
|
|
/// \param[out] kr Array of nP relperm values, array must be valid before calling.
|
|
|
|
/// \param[out] dkrds If non-null: array of nP^2 relperm derivative values,
|
|
|
|
/// array must be valid before calling.
|
|
|
|
/// The P^2 derivative matrix is
|
|
|
|
/// m_{ij} = \frac{dkr_i}{ds^j},
|
2012-01-27 04:42:05 -06:00
|
|
|
/// and is output in Fortran order (m_00 m_10 m_20 m_01 ...)
|
2012-01-04 07:44:55 -06:00
|
|
|
virtual void relperm(const int n,
|
|
|
|
const double* s,
|
|
|
|
const int* cells,
|
|
|
|
double* kr,
|
|
|
|
double* dkrds) const;
|
|
|
|
|
|
|
|
|
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] s Array of nP saturation values.
|
|
|
|
/// \param[in] cells Array of n cell indices to be associated with the s values.
|
|
|
|
/// \param[out] pc Array of nP capillary pressure values, array must be valid before calling.
|
|
|
|
/// \param[out] dpcds If non-null: array of nP^2 derivative values,
|
|
|
|
/// array must be valid before calling.
|
|
|
|
/// The P^2 derivative matrix is
|
|
|
|
/// m_{ij} = \frac{dpc_i}{ds^j},
|
2012-01-27 04:42:05 -06:00
|
|
|
/// and is output in Fortran order (m_00 m_10 m_20 m_01 ...)
|
2012-01-04 07:44:55 -06:00
|
|
|
virtual void capPress(const int n,
|
|
|
|
const double* s,
|
|
|
|
const int* cells,
|
2012-01-05 04:41:52 -06:00
|
|
|
double* pc,
|
2012-01-04 07:44:55 -06:00
|
|
|
double* dpcds) const;
|
|
|
|
|
2012-05-15 05:48:16 -05:00
|
|
|
|
2012-09-05 04:28:54 -05:00
|
|
|
/// Obtain the range of allowable saturation values.
|
|
|
|
/// In cell cells[i], saturation of phase p is allowed to be
|
|
|
|
/// in the interval [smin[i*P + p], smax[i*P + p]].
|
2012-05-15 05:48:16 -05:00
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] cells Array of n cell indices.
|
|
|
|
/// \param[out] smin Array of nP minimum s values, array must be valid before calling.
|
|
|
|
/// \param[out] smax Array of nP maximum s values, array must be valid before calling.
|
|
|
|
virtual void satRange(const int n,
|
|
|
|
const int* cells,
|
|
|
|
double* smin,
|
|
|
|
double* smax) const;
|
2014-06-10 07:02:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
/// Update capillary pressure scaling according to pressure diff. and initial water saturation.
|
|
|
|
/// \param[in] cell Cell index.
|
|
|
|
/// \param[in] pcow P_oil - P_water.
|
|
|
|
/// \param[in/out] swat Water saturation. / Possibly modified Water saturation.
|
|
|
|
virtual void swatInitScaling(const int cell,
|
|
|
|
const double pcow,
|
|
|
|
double & swat);
|
2012-05-15 05:48:16 -05:00
|
|
|
|
2016-02-15 09:03:30 -06:00
|
|
|
const OilPvtMultiplexer<double>& oilPvt() const
|
2015-10-20 06:37:44 -05:00
|
|
|
{
|
2016-02-15 09:03:30 -06:00
|
|
|
return oilPvt_;
|
|
|
|
}
|
|
|
|
|
|
|
|
const GasPvtMultiplexer<double>& gasPvt() const
|
|
|
|
{
|
|
|
|
return gasPvt_;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WaterPvtMultiplexer<double>& waterPvt() const
|
|
|
|
{
|
|
|
|
return waterPvt_;
|
2015-10-20 06:37:44 -05:00
|
|
|
}
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
private:
|
2014-05-13 05:59:11 -05:00
|
|
|
int getTableIndex_(const int* pvtTableIdx, int cellIdx) const
|
|
|
|
{
|
|
|
|
if (!pvtTableIdx)
|
|
|
|
return 0;
|
|
|
|
return pvtTableIdx[cellIdx];
|
|
|
|
}
|
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
void initSurfaceDensities_(const Opm::Deck& deck);
|
2016-02-15 09:03:30 -06:00
|
|
|
|
|
|
|
void compute_B_(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* T,
|
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* B) const;
|
|
|
|
|
|
|
|
void compute_dBdp_(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* T,
|
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* B,
|
|
|
|
double* dBdp) const;
|
|
|
|
|
|
|
|
void compute_R_(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* T,
|
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* R) const;
|
|
|
|
|
|
|
|
void compute_dRdp_(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* T,
|
|
|
|
const double* z,
|
|
|
|
const int* cells,
|
|
|
|
double* R,
|
|
|
|
double* dRdp) const;
|
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
void init(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2015-07-28 10:28:51 -05:00
|
|
|
std::shared_ptr<MaterialLawManager> materialLawManager,
|
2014-02-19 08:22:18 -06:00
|
|
|
int number_of_cells,
|
|
|
|
const int* global_cell,
|
|
|
|
const int* cart_dims,
|
|
|
|
bool init_rock);
|
2015-09-14 03:33:23 -05:00
|
|
|
|
2016-10-13 09:03:35 -05:00
|
|
|
void init(const Opm::Deck& deck,
|
|
|
|
const Opm::EclipseState& eclState,
|
2015-07-28 10:28:51 -05:00
|
|
|
std::shared_ptr<MaterialLawManager> materialLawManager,
|
2014-02-19 08:22:18 -06:00
|
|
|
int number_of_cells,
|
|
|
|
const int* global_cell,
|
|
|
|
const int* cart_dims,
|
|
|
|
const parameter::ParameterGroup& param,
|
|
|
|
bool init_rock);
|
2015-07-28 10:28:51 -05:00
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
RockFromDeck rock_;
|
2016-02-15 09:03:30 -06:00
|
|
|
PhaseUsage phaseUsage_;
|
2014-05-13 05:59:11 -05:00
|
|
|
std::vector<int> cellPvtRegionIdx_;
|
2016-02-15 09:03:30 -06:00
|
|
|
OilPvtMultiplexer<double> oilPvt_;
|
|
|
|
GasPvtMultiplexer<double> gasPvt_;
|
|
|
|
WaterPvtMultiplexer<double> waterPvt_;
|
2015-07-28 10:28:51 -05:00
|
|
|
std::shared_ptr<MaterialLawManager> materialLawManager_;
|
2015-02-05 08:41:02 -06:00
|
|
|
std::shared_ptr<SaturationPropsInterface> satprops_;
|
2016-02-15 09:03:30 -06:00
|
|
|
std::vector<double> surfaceDensities_;
|
2012-01-05 14:39:33 -06:00
|
|
|
mutable std::vector<double> B_;
|
|
|
|
mutable std::vector<double> dB_;
|
|
|
|
mutable std::vector<double> R_;
|
|
|
|
mutable std::vector<double> dR_;
|
2012-01-04 07:44:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|
|
|
|
#endif // OPM_BLACKOILPROPERTIESFROMDECK_HEADER_INCLUDED
|