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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <opm/core/fluid/BlackoilPropertiesFromDeck.hpp>
|
2012-08-28 07:27:14 -05:00
|
|
|
#include <opm/core/utility/parameters/ParameterGroup.hpp>
|
2012-01-04 07:44:55 -06:00
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
2012-01-19 06:50:57 -06:00
|
|
|
BlackoilPropertiesFromDeck::BlackoilPropertiesFromDeck(const EclipseGridParser& deck,
|
2012-08-10 03:12:45 -05:00
|
|
|
const UnstructuredGrid& grid)
|
2012-01-04 07:44:55 -06:00
|
|
|
{
|
2012-08-10 03:12:45 -05:00
|
|
|
rock_.init(deck, grid);
|
2012-01-05 04:41:52 -06:00
|
|
|
pvt_.init(deck);
|
2012-08-10 03:12:45 -05:00
|
|
|
satprops_.init(deck, grid);
|
2012-01-18 11:36:20 -06:00
|
|
|
if (pvt_.numPhases() != satprops_.numPhases()) {
|
|
|
|
THROW("BlackoilPropertiesBasic::BlackoilPropertiesBasic() - Inconsistent number of phases in pvt data ("
|
|
|
|
<< pvt_.numPhases() << ") and saturation-dependent function data (" << satprops_.numPhases() << ").");
|
|
|
|
}
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
2012-08-28 07:27:14 -05:00
|
|
|
BlackoilPropertiesFromDeck::BlackoilPropertiesFromDeck(const EclipseGridParser& deck,
|
|
|
|
const UnstructuredGrid& grid,
|
|
|
|
const parameter::ParameterGroup& param)
|
|
|
|
{
|
|
|
|
rock_.init(deck, grid);
|
2012-08-31 10:01:07 -05:00
|
|
|
int samples = param.getDefault("dead_tab_size", 1025);
|
|
|
|
pvt_.init(deck, samples);
|
2012-08-28 07:27:14 -05:00
|
|
|
satprops_.init(deck, grid, param);
|
|
|
|
|
|
|
|
if (pvt_.numPhases() != satprops_.numPhases()) {
|
|
|
|
THROW("BlackoilPropertiesBasic::BlackoilPropertiesBasic() - Inconsistent number of phases in pvt data ("
|
|
|
|
<< pvt_.numPhases() << ") and saturation-dependent function data (" << satprops_.numPhases() << ").");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
BlackoilPropertiesFromDeck::~BlackoilPropertiesFromDeck()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// \return D, the number of spatial dimensions.
|
|
|
|
int BlackoilPropertiesFromDeck::numDimensions() const
|
|
|
|
{
|
2012-01-05 08:39:13 -06:00
|
|
|
return rock_.numDimensions();
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \return N, the number of cells.
|
|
|
|
int BlackoilPropertiesFromDeck::numCells() const
|
|
|
|
{
|
2012-01-05 08:39:13 -06:00
|
|
|
return rock_.numCells();
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \return Array of N porosity values.
|
|
|
|
const double* BlackoilPropertiesFromDeck::porosity() const
|
|
|
|
{
|
2012-01-05 08:39:13 -06:00
|
|
|
return rock_.porosity();
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \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).
|
|
|
|
const double* BlackoilPropertiesFromDeck::permeability() const
|
|
|
|
{
|
2012-01-05 08:39:13 -06:00
|
|
|
return rock_.permeability();
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ---- Fluid interface ----
|
|
|
|
|
|
|
|
/// \return P, the number of phases (also the number of components).
|
|
|
|
int BlackoilPropertiesFromDeck::numPhases() const
|
|
|
|
{
|
2012-01-05 04:41:52 -06:00
|
|
|
return pvt_.numPhases();
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] p Array of n pressure values.
|
|
|
|
/// \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.
|
|
|
|
void BlackoilPropertiesFromDeck::viscosity(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* z,
|
2012-01-05 04:41:52 -06:00
|
|
|
const int* /*cells*/,
|
2012-01-04 07:44:55 -06:00
|
|
|
double* mu,
|
|
|
|
double* dmudp) const
|
|
|
|
{
|
|
|
|
if (dmudp) {
|
2012-01-05 04:41:52 -06:00
|
|
|
THROW("BlackoilPropertiesFromDeck::viscosity() -- derivatives of viscosity not yet implemented.");
|
2012-01-04 07:44:55 -06:00
|
|
|
} else {
|
2012-01-05 04:41:52 -06:00
|
|
|
pvt_.mu(n, p, z, mu);
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \param[in] n Number of data points.
|
|
|
|
/// \param[in] p Array of n pressure values.
|
|
|
|
/// \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.
|
|
|
|
void BlackoilPropertiesFromDeck::matrix(const int n,
|
|
|
|
const double* p,
|
|
|
|
const double* z,
|
2012-01-05 14:39:33 -06:00
|
|
|
const int* /*cells*/,
|
2012-01-04 07:44:55 -06:00
|
|
|
double* A,
|
|
|
|
double* dAdp) const
|
|
|
|
{
|
2012-01-05 14:39:33 -06:00
|
|
|
const int np = numPhases();
|
|
|
|
B_.resize(n*np);
|
|
|
|
R_.resize(n*np);
|
|
|
|
if (dAdp) {
|
|
|
|
dB_.resize(n*np);
|
|
|
|
dR_.resize(n*np);
|
|
|
|
pvt_.dBdp(n, p, z, &B_[0], &dB_[0]);
|
|
|
|
pvt_.dRdp(n, p, z, &R_[0], &dR_[0]);
|
|
|
|
} else {
|
|
|
|
pvt_.B(n, p, z, &B_[0]);
|
|
|
|
pvt_.R(n, p, z, &R_[0]);
|
|
|
|
}
|
|
|
|
const int* phase_pos = pvt_.phasePosition();
|
|
|
|
bool oil_and_gas = pvt_.phaseUsed()[BlackoilPhases::Liquid] &&
|
|
|
|
pvt_.phaseUsed()[BlackoilPhases::Vapour];
|
|
|
|
const int o = phase_pos[BlackoilPhases::Liquid];
|
|
|
|
const int g = phase_pos[BlackoilPhases::Vapour];
|
|
|
|
|
|
|
|
// Compute A matrix
|
2012-04-10 08:46:24 -05:00
|
|
|
// #pragma omp parallel for
|
2012-01-05 14:39:33 -06:00
|
|
|
for (int i = 0; i < n; ++i) {
|
|
|
|
double* m = A + i*np*np;
|
|
|
|
std::fill(m, m + np*np, 0.0);
|
|
|
|
// Diagonal entries.
|
|
|
|
for (int phase = 0; phase < np; ++phase) {
|
|
|
|
m[phase + phase*np] = 1.0/B_[i*np + phase];
|
|
|
|
}
|
|
|
|
// Off-diagonal entries.
|
|
|
|
if (oil_and_gas) {
|
|
|
|
m[o + g*np] = R_[i*np + g]/B_[i*np + g];
|
|
|
|
m[g + o*np] = R_[i*np + o]/B_[i*np + o];
|
|
|
|
}
|
|
|
|
}
|
2012-01-04 07:44:55 -06:00
|
|
|
|
2012-01-05 14:39:33 -06:00
|
|
|
// Derivative of A matrix.
|
2012-05-11 07:26:48 -05:00
|
|
|
// A = R*inv(B) whence
|
|
|
|
//
|
|
|
|
// dA/dp = (dR/dp*inv(B) + R*d(inv(B))/dp)
|
|
|
|
// = (dR/dp*inv(B) - R*inv(B)*(dB/dp)*inv(B))
|
|
|
|
// = (dR/dp - A*(dB/dp)) * inv(B)
|
|
|
|
//
|
|
|
|
// The B matrix is diagonal and that fact is exploited in the
|
|
|
|
// following implementation.
|
2012-01-05 14:39:33 -06:00
|
|
|
if (dAdp) {
|
2012-04-10 08:46:24 -05:00
|
|
|
// #pragma omp parallel for
|
2012-05-11 09:07:01 -05:00
|
|
|
// (1): dA/dp <- A
|
2012-05-11 07:26:48 -05:00
|
|
|
std::copy(A, A + n*np*np, dAdp);
|
|
|
|
|
2012-01-05 14:39:33 -06:00
|
|
|
for (int i = 0; i < n; ++i) {
|
2012-05-11 07:26:48 -05:00
|
|
|
double* m = dAdp + i*np*np;
|
|
|
|
|
2012-05-11 09:07:01 -05:00
|
|
|
// (2): dA/dp <- -dA/dp*(dB/dp) == -A*(dB/dp)
|
2012-05-11 07:26:48 -05:00
|
|
|
const double* dB = & dB_[i * np];
|
2012-05-11 09:31:05 -05:00
|
|
|
for (int col = 0; col < np; ++col) {
|
|
|
|
for (int row = 0; row < np; ++row) {
|
|
|
|
m[col*np + row] *= - dB[ col ]; // Note sign.
|
2012-05-11 07:26:48 -05:00
|
|
|
}
|
2012-01-05 14:39:33 -06:00
|
|
|
}
|
2012-05-11 07:26:48 -05:00
|
|
|
|
2012-01-05 14:39:33 -06:00
|
|
|
if (oil_and_gas) {
|
2012-05-11 09:07:01 -05:00
|
|
|
// (2b): dA/dp += dR/dp (== dR/dp - A*(dB/dp))
|
2012-05-11 07:26:48 -05:00
|
|
|
const double* dR = & dR_[i * np];
|
|
|
|
|
|
|
|
m[o*np + g] += dR[ o ];
|
|
|
|
m[g*np + o] += dR[ g ];
|
|
|
|
}
|
|
|
|
|
2012-05-11 09:07:01 -05:00
|
|
|
// (3): dA/dp *= inv(B) (== final result)
|
2012-05-11 07:26:48 -05:00
|
|
|
const double* B = & B_[i * np];
|
2012-05-11 09:31:05 -05:00
|
|
|
for (int col = 0; col < np; ++col) {
|
|
|
|
for (int row = 0; row < np; ++row) {
|
|
|
|
m[col*np + row] /= B[ col ];
|
2012-05-11 07:26:48 -05:00
|
|
|
}
|
2012-01-05 14:39:33 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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().
|
|
|
|
/// \param[out] rho Array of nP density values, array must be valid before calling.
|
|
|
|
void BlackoilPropertiesFromDeck::density(const int n,
|
|
|
|
const double* A,
|
|
|
|
double* rho) const
|
|
|
|
{
|
2012-01-05 14:39:33 -06:00
|
|
|
const int np = numPhases();
|
2012-01-05 04:41:52 -06:00
|
|
|
const double* sdens = pvt_.surfaceDensities();
|
2012-04-10 08:46:24 -05:00
|
|
|
// #pragma omp parallel for
|
2012-01-04 07:44:55 -06:00
|
|
|
for (int i = 0; i < n; ++i) {
|
2012-01-05 04:41:52 -06:00
|
|
|
for (int phase = 0; phase < np; ++phase) {
|
|
|
|
rho[np*i + phase] = 0.0;
|
|
|
|
for (int comp = 0; comp < np; ++comp) {
|
2012-02-15 08:37:02 -06:00
|
|
|
rho[np*i + phase] += A[i*np*np + np*phase + comp]*sdens[comp];
|
2012-01-05 04:41:52 -06:00
|
|
|
}
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-14 04:28:05 -05:00
|
|
|
/// Densities of stock components at surface conditions.
|
|
|
|
/// \return Array of P density values.
|
|
|
|
const double* BlackoilPropertiesFromDeck::surfaceDensity() const
|
|
|
|
{
|
|
|
|
return pvt_.surfaceDensities();
|
|
|
|
}
|
|
|
|
|
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},
|
|
|
|
/// and is output in Fortran order (m_00 m_10 m_20 m01 ...)
|
|
|
|
void BlackoilPropertiesFromDeck::relperm(const int n,
|
|
|
|
const double* s,
|
2012-04-19 04:49:59 -05:00
|
|
|
const int* cells,
|
2012-01-04 07:44:55 -06:00
|
|
|
double* kr,
|
|
|
|
double* dkrds) const
|
|
|
|
{
|
2012-04-19 04:49:59 -05:00
|
|
|
satprops_.relperm(n, s, cells, kr, dkrds);
|
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] 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},
|
|
|
|
/// and is output in Fortran order (m_00 m_10 m_20 m01 ...)
|
|
|
|
void BlackoilPropertiesFromDeck::capPress(const int n,
|
|
|
|
const double* s,
|
2012-04-19 04:49:59 -05:00
|
|
|
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-04-19 04:49:59 -05:00
|
|
|
satprops_.capPress(n, s, cells, pc, dpcds);
|
2012-01-04 07:44:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-15 05:48:16 -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]].
|
|
|
|
/// \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.
|
|
|
|
void BlackoilPropertiesFromDeck::satRange(const int n,
|
|
|
|
const int* cells,
|
|
|
|
double* smin,
|
|
|
|
double* smax) const
|
|
|
|
{
|
|
|
|
satprops_.satRange(n, cells, smin, smax);
|
|
|
|
}
|
|
|
|
|
2012-01-04 07:44:55 -06:00
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|