mirror of
https://github.com/OPM/opm-upscaling.git
synced 2025-02-25 18:45:23 -06:00
Revert "Restore upscaling utility results"
This commit is contained in:
@@ -69,7 +69,6 @@
|
||||
#endif
|
||||
|
||||
#include <opm/core/utility/MonotCubicInterpolator.hpp>
|
||||
#include <opm/core/utility/Units.hpp>
|
||||
#include <opm/upscaling/SinglePhaseUpscaler.hpp>
|
||||
#include <opm/upscaling/ParserAdditions.hpp>
|
||||
|
||||
@@ -236,9 +235,7 @@ try
|
||||
options.insert(make_pair("rock6satexp", "0"));
|
||||
|
||||
// Conversion factor, multiply mD numbers with this to get m² numbers
|
||||
const double milliDarcyToSqMetre =
|
||||
Opm::unit::convert::to(1.0*Opm::prefix::milli*Opm::unit::darcy,
|
||||
Opm::unit::square(Opm::unit::meter));
|
||||
const double milliDarcyToSqMetre = 9.869233e-16;
|
||||
// Reference: http://www.spe.org/spe-site/spe/spe/papers/authors/Metric_Standard.pdf
|
||||
|
||||
/*
|
||||
@@ -355,8 +352,8 @@ try
|
||||
const int points = atoi(options["points"].c_str());
|
||||
|
||||
vector<int> satnums = deck->getKeyword("SATNUM")->getIntData();
|
||||
vector<double> poros = deck->getKeyword("PORO")->getRawDoubleData();
|
||||
vector<double> permxs = deck->getKeyword("PERMX")->getRawDoubleData();
|
||||
vector<double> poros = deck->getKeyword("PORO")->getSIDoubleData();
|
||||
vector<double> permxs = deck->getKeyword("PERMX")->getSIDoubleData();
|
||||
const double minPerm = atof(options["minPerm"].c_str());
|
||||
const double minPoro = atof(options["minPoro"].c_str());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user