2012-03-19 07:55:26 -05: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/>.
|
|
|
|
*/
|
|
|
|
|
2013-04-10 05:56:14 -05:00
|
|
|
#include "config.h"
|
2013-03-14 04:29:42 -05:00
|
|
|
#include <opm/core/props/rock/RockCompressibility.hpp>
|
2012-03-19 08:30:44 -05:00
|
|
|
#include <opm/core/utility/parameters/ParameterGroup.hpp>
|
|
|
|
#include <opm/core/utility/Units.hpp>
|
2015-10-08 04:42:15 -05:00
|
|
|
#include <opm/common/ErrorMacros.hpp>
|
2012-03-19 07:55:26 -05:00
|
|
|
#include <opm/core/utility/linearInterpolation.hpp>
|
|
|
|
|
2014-01-24 05:04:04 -06:00
|
|
|
|
2013-08-28 07:19:12 -05:00
|
|
|
#include <iostream>
|
|
|
|
|
2012-03-19 07:55:26 -05:00
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
2012-03-19 08:30:44 -05:00
|
|
|
RockCompressibility::RockCompressibility(const parameter::ParameterGroup& param)
|
|
|
|
: pref_(0.0),
|
|
|
|
rock_comp_(0.0)
|
|
|
|
{
|
2012-03-19 08:35:13 -05:00
|
|
|
pref_ = param.getDefault("rock_compressibility_pref", 100.0)*unit::barsa;
|
|
|
|
rock_comp_ = param.getDefault("rock_compressibility", 0.0)/unit::barsa;
|
2012-03-19 08:30:44 -05:00
|
|
|
}
|
|
|
|
|
2014-09-17 05:44:40 -05:00
|
|
|
RockCompressibility::RockCompressibility(Opm::DeckConstPtr deck,
|
|
|
|
Opm::EclipseStateConstPtr eclipseState)
|
2014-01-24 05:04:04 -06:00
|
|
|
: pref_(0.0),
|
|
|
|
rock_comp_(0.0)
|
|
|
|
{
|
2015-09-01 05:58:09 -05:00
|
|
|
const auto tables = eclipseState->getTableManager();
|
|
|
|
const auto& rocktabTables = tables->getRocktabTables();
|
2014-09-17 05:44:40 -05:00
|
|
|
if (rocktabTables.size() > 0) {
|
2015-09-21 11:22:09 -05:00
|
|
|
const auto& rocktabTable = rocktabTables.getTable<RocktabTable>(0);
|
2014-09-17 05:44:40 -05:00
|
|
|
if (rocktabTables.size() != 1)
|
2014-01-24 05:04:04 -06:00
|
|
|
OPM_THROW(std::runtime_error, "Can only handle a single region in ROCKTAB.");
|
|
|
|
|
2016-01-05 05:12:29 -06:00
|
|
|
p_ = rocktabTable.getColumn("PO").vectorCopy( );
|
|
|
|
poromult_ = rocktabTable.getColumn("PV_MULT").vectorCopy();
|
|
|
|
if (rocktabTable.hasColumn("PV_MULT_TRAN")) {
|
|
|
|
transmult_ = rocktabTable.getColumn("PV_MULT_TRAN").vectorCopy();
|
|
|
|
} else {
|
|
|
|
transmult_ = rocktabTable.getColumn("PV_MULT_TRANX").vectorCopy();
|
|
|
|
}
|
2014-04-26 05:03:07 -05:00
|
|
|
} else if (deck->hasKeyword("ROCK")) {
|
2014-09-17 05:44:40 -05:00
|
|
|
Opm::DeckKeywordConstPtr rockKeyword = deck->getKeyword("ROCK");
|
|
|
|
if (rockKeyword->size() != 1) {
|
|
|
|
// here it would be better not to use std::cout directly but to add the
|
|
|
|
// warning to some "warning list"...
|
|
|
|
std::cout << "Can only handle a single region in ROCK ("<<rockKeyword->size()<<" regions specified)."
|
|
|
|
<< " Ignoring all except for the first.\n";
|
|
|
|
}
|
2014-01-24 05:04:04 -06:00
|
|
|
|
2014-09-17 05:44:40 -05:00
|
|
|
pref_ = rockKeyword->getRecord(0)->getItem("PREF")->getSIDouble(0);
|
|
|
|
rock_comp_ = rockKeyword->getRecord(0)->getItem("COMPRESSIBILITY")->getSIDouble(0);
|
2014-01-24 05:04:04 -06:00
|
|
|
} else {
|
|
|
|
std::cout << "**** warning: no rock compressibility data found in deck (ROCK or ROCKTAB)." << std::endl;
|
2012-03-19 07:55:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-20 04:15:33 -05:00
|
|
|
bool RockCompressibility::isActive() const
|
|
|
|
{
|
2012-03-20 15:36:31 -05:00
|
|
|
return !p_.empty() || (rock_comp_ != 0.0);
|
2012-03-20 04:15:33 -05:00
|
|
|
}
|
|
|
|
|
2012-03-20 04:29:43 -05:00
|
|
|
double RockCompressibility::poroMult(double pressure) const
|
2012-03-19 07:55:26 -05:00
|
|
|
{
|
|
|
|
if (p_.empty()) {
|
|
|
|
// Approximating with a quadratic curve.
|
|
|
|
const double cpnorm = rock_comp_*(pressure - pref_);
|
|
|
|
return (1.0 + cpnorm + 0.5*cpnorm*cpnorm);
|
|
|
|
} else {
|
2013-03-22 09:28:16 -05:00
|
|
|
return Opm::linearInterpolation(p_, poromult_, pressure);
|
2012-03-19 07:55:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-03 07:33:18 -05:00
|
|
|
double RockCompressibility::poroMultDeriv(double pressure) const
|
|
|
|
{
|
|
|
|
if (p_.empty()) {
|
|
|
|
// Approximating poro multiplier with a quadratic curve,
|
|
|
|
// we must use its derivative.
|
|
|
|
return rock_comp_ + 2 * rock_comp_ * rock_comp_ * (pressure - pref_);
|
|
|
|
} else {
|
|
|
|
return Opm::linearInterpolationDerivative(p_, poromult_, pressure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double RockCompressibility::transMult(double pressure) const
|
|
|
|
{
|
|
|
|
if (p_.empty()) {
|
|
|
|
return 1.0;
|
|
|
|
} else {
|
|
|
|
return Opm::linearInterpolation(p_, transmult_, pressure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double RockCompressibility::transMultDeriv(double pressure) const
|
|
|
|
{
|
|
|
|
if (p_.empty()) {
|
|
|
|
return 0.0;
|
|
|
|
} else {
|
|
|
|
return Opm::linearInterpolationDerivative(p_, transmult_, pressure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-20 04:29:43 -05:00
|
|
|
double RockCompressibility::rockComp(double pressure) const
|
2012-03-19 07:55:26 -05:00
|
|
|
{
|
|
|
|
if (p_.empty()) {
|
|
|
|
return rock_comp_;
|
|
|
|
} else {
|
2012-08-14 02:36:19 -05:00
|
|
|
//const double poromult = Opm::linearInterpolation(p_, poromult_, pressure);
|
|
|
|
//const double dporomultdp = Opm::linearInterpolationDerivative(p_, poromult_, pressure);
|
2013-03-22 09:28:16 -05:00
|
|
|
const double poromult = Opm::linearInterpolation(p_, poromult_, pressure);
|
|
|
|
const double dporomultdp = Opm::linearInterpolationDerivative(p_, poromult_, pressure);
|
2012-08-14 02:36:19 -05:00
|
|
|
|
2012-03-19 07:55:26 -05:00
|
|
|
return dporomultdp/poromult;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|