mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
blackoilextboparams: introduce translation unit
move code for loading parameters from eclipse state into it
This commit is contained in:
parent
9fd99ab232
commit
a04d9fdd00
@ -56,6 +56,7 @@ endmacro()
|
||||
# find opm -name '*.c*' -printf '\t%p\n' | sort
|
||||
list (APPEND MAIN_SOURCE_FILES
|
||||
opm/models/blackoil/blackoilbrineparams.cpp
|
||||
opm/models/blackoil/blackoilextboparams.cpp
|
||||
opm/simulators/flow/ActionHandler.cpp
|
||||
opm/simulators/flow/Banners.cpp
|
||||
opm/simulators/flow/BlackoilModelParameters.cpp
|
||||
|
@ -41,24 +41,11 @@
|
||||
|
||||
//#include <opm/models/io/vtkBlackOilExtboModule.hh> //TODO: Missing ...
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SsfnTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/Sof2Table.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/MsfnTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/PmiscTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/MiscTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SorwmisTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SgcwmisTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/TlpmixpaTable.hpp>
|
||||
#endif
|
||||
|
||||
#include <dune/common/fvector.hh>
|
||||
|
||||
#include <cmath>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace Opm {
|
||||
|
||||
@ -99,164 +86,11 @@ class BlackOilExtboModule
|
||||
static constexpr bool blackoilConserveSurfaceVolume = getPropValue<TypeTag, Properties::BlackoilConserveSurfaceVolume>();
|
||||
|
||||
public:
|
||||
#if HAVE_ECL_INPUT
|
||||
/*!
|
||||
* \brief Initialize all internal data structures needed by the solvent module
|
||||
*/
|
||||
static void initFromState(const EclipseState& eclState)
|
||||
//! \brief Set parameters.
|
||||
static void setParams(BlackOilExtboParams<Scalar>&& params)
|
||||
{
|
||||
// some sanity checks: if extended BO is enabled, the PVTSOL keyword must be
|
||||
// present, if extended BO is disabled the keyword must not be present.
|
||||
if (enableExtbo && !eclState.runspec().phases().active(Phase::ZFRACTION))
|
||||
throw std::runtime_error("Extended black oil treatment requested at compile "
|
||||
"time, but the deck does not contain the PVTSOL keyword");
|
||||
else if (!enableExtbo && eclState.runspec().phases().active(Phase::ZFRACTION))
|
||||
throw std::runtime_error("Extended black oil treatment disabled at compile time, but the deck "
|
||||
"contains the PVTSOL keyword");
|
||||
|
||||
if (!eclState.runspec().phases().active(Phase::ZFRACTION))
|
||||
return; // solvent treatment is supposed to be disabled
|
||||
|
||||
// pvt properties from kw PVTSOL:
|
||||
|
||||
const auto& tableManager = eclState.getTableManager();
|
||||
const auto& pvtsolTables = tableManager.getPvtsolTables();
|
||||
|
||||
size_t numPvtRegions = pvtsolTables.size();
|
||||
|
||||
params_.BO_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.BG_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.RS_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.RV_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.X_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.Y_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.VISCO_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.VISCG_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
|
||||
params_.PBUB_RS_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
params_.PBUB_RV_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
|
||||
params_.zLim_.resize(numPvtRegions);
|
||||
|
||||
const bool extractCmpFromPvt = true; //<false>: Default values used in [*]
|
||||
params_.oilCmp_.resize(numPvtRegions);
|
||||
params_.gasCmp_.resize(numPvtRegions);
|
||||
|
||||
for (unsigned regionIdx = 0; regionIdx < numPvtRegions; ++ regionIdx) {
|
||||
const auto& pvtsolTable = pvtsolTables[regionIdx];
|
||||
|
||||
const auto& saturatedTable = pvtsolTable.getSaturatedTable();
|
||||
assert(saturatedTable.numRows() > 1);
|
||||
|
||||
std::vector<Scalar> oilCmp(saturatedTable.numRows(), -4.0e-9); //Default values used in [*]
|
||||
std::vector<Scalar> gasCmp(saturatedTable.numRows(), -0.08); //-------------"-------------
|
||||
params_.zLim_[regionIdx] = 0.7; //-------------"-------------
|
||||
std::vector<Scalar> zArg(saturatedTable.numRows(), 0.0);
|
||||
|
||||
for (unsigned outerIdx = 0; outerIdx < saturatedTable.numRows(); ++ outerIdx) {
|
||||
Scalar ZCO2 = saturatedTable.get("ZCO2", outerIdx);
|
||||
|
||||
zArg[outerIdx] = ZCO2;
|
||||
|
||||
params_.BO_[regionIdx].appendXPos(ZCO2);
|
||||
params_.BG_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
params_.RS_[regionIdx].appendXPos(ZCO2);
|
||||
params_.RV_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
params_.X_[regionIdx].appendXPos(ZCO2);
|
||||
params_.Y_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
params_.VISCO_[regionIdx].appendXPos(ZCO2);
|
||||
params_.VISCG_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
params_.PBUB_RS_[regionIdx].appendXPos(ZCO2);
|
||||
params_.PBUB_RV_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
const auto& underSaturatedTable = pvtsolTable.getUnderSaturatedTable(outerIdx);
|
||||
size_t numRows = underSaturatedTable.numRows();
|
||||
|
||||
Scalar bo0=0.0;
|
||||
Scalar po0=0.0;
|
||||
for (unsigned innerIdx = 0; innerIdx < numRows; ++ innerIdx) {
|
||||
Scalar po = underSaturatedTable.get("P", innerIdx);
|
||||
Scalar bo = underSaturatedTable.get("B_O", innerIdx);
|
||||
Scalar bg = underSaturatedTable.get("B_G", innerIdx);
|
||||
Scalar rs = underSaturatedTable.get("RS", innerIdx)+innerIdx*1.0e-10;
|
||||
Scalar rv = underSaturatedTable.get("RV", innerIdx)+innerIdx*1.0e-10;
|
||||
Scalar xv = underSaturatedTable.get("XVOL", innerIdx);
|
||||
Scalar yv = underSaturatedTable.get("YVOL", innerIdx);
|
||||
Scalar mo = underSaturatedTable.get("MU_O", innerIdx);
|
||||
Scalar mg = underSaturatedTable.get("MU_G", innerIdx);
|
||||
|
||||
if (bo0 > bo) { // This is undersaturated oil-phase for ZCO2 <= zLim ...
|
||||
// Here we assume tabulated bo to decay beyond boiling point
|
||||
if (extractCmpFromPvt) {
|
||||
Scalar cmpFactor = (bo-bo0)/(po-po0);
|
||||
oilCmp[outerIdx] = cmpFactor;
|
||||
params_.zLim_[regionIdx] = ZCO2;
|
||||
//std::cout << "### cmpFactorOil: " << cmpFactor << " zLim: " << zLim_[regionIdx] << std::endl;
|
||||
}
|
||||
break;
|
||||
} else if (bo0 == bo) { // This is undersaturated gas-phase for ZCO2 > zLim ...
|
||||
// Here we assume tabulated bo to be constant extrapolated beyond dew point
|
||||
if (innerIdx+1 < numRows && ZCO2<1.0 && extractCmpFromPvt) {
|
||||
Scalar rvNxt = underSaturatedTable.get("RV", innerIdx+1)+innerIdx*1.0e-10;
|
||||
Scalar bgNxt = underSaturatedTable.get("B_G", innerIdx+1);
|
||||
Scalar cmpFactor = (bgNxt-bg)/(rvNxt-rv);
|
||||
gasCmp[outerIdx] = cmpFactor;
|
||||
//std::cout << "### cmpFactorGas: " << cmpFactor << " zLim: " << zLim_[regionIdx] << std::endl;
|
||||
}
|
||||
|
||||
params_.BO_[regionIdx].appendSamplePoint(outerIdx,po,bo);
|
||||
params_.BG_[regionIdx].appendSamplePoint(outerIdx,po,bg);
|
||||
params_.RS_[regionIdx].appendSamplePoint(outerIdx,po,rs);
|
||||
params_.RV_[regionIdx].appendSamplePoint(outerIdx,po,rv);
|
||||
params_.X_[regionIdx].appendSamplePoint(outerIdx,po,xv);
|
||||
params_.Y_[regionIdx].appendSamplePoint(outerIdx,po,yv);
|
||||
params_.VISCO_[regionIdx].appendSamplePoint(outerIdx,po,mo);
|
||||
params_.VISCG_[regionIdx].appendSamplePoint(outerIdx,po,mg);
|
||||
break;
|
||||
}
|
||||
|
||||
bo0=bo;
|
||||
po0=po;
|
||||
|
||||
params_.BO_[regionIdx].appendSamplePoint(outerIdx,po,bo);
|
||||
params_.BG_[regionIdx].appendSamplePoint(outerIdx,po,bg);
|
||||
|
||||
params_.RS_[regionIdx].appendSamplePoint(outerIdx,po,rs);
|
||||
params_.RV_[regionIdx].appendSamplePoint(outerIdx,po,rv);
|
||||
|
||||
params_.X_[regionIdx].appendSamplePoint(outerIdx,po,xv);
|
||||
params_.Y_[regionIdx].appendSamplePoint(outerIdx,po,yv);
|
||||
|
||||
params_.VISCO_[regionIdx].appendSamplePoint(outerIdx,po,mo);
|
||||
params_.VISCG_[regionIdx].appendSamplePoint(outerIdx,po,mg);
|
||||
|
||||
// rs,rv -> pressure
|
||||
params_.PBUB_RS_[regionIdx].appendSamplePoint(outerIdx, rs, po);
|
||||
params_.PBUB_RV_[regionIdx].appendSamplePoint(outerIdx, rv, po);
|
||||
|
||||
}
|
||||
}
|
||||
params_.oilCmp_[regionIdx].setXYContainers(zArg, oilCmp, /*sortInput=*/false);
|
||||
params_.gasCmp_[regionIdx].setXYContainers(zArg, gasCmp, /*sortInput=*/false);
|
||||
}
|
||||
|
||||
// Reference density for pure z-component taken from kw SDENSITY
|
||||
const auto& sdensityTables = eclState.getTableManager().getSolventDensityTables();
|
||||
if (sdensityTables.size() == numPvtRegions) {
|
||||
params_.zReferenceDensity_.resize(numPvtRegions);
|
||||
for (unsigned regionIdx = 0; regionIdx < numPvtRegions; ++ regionIdx) {
|
||||
Scalar rhoRefS = sdensityTables[regionIdx].getSolventDensityColumn().front();
|
||||
params_.zReferenceDensity_[regionIdx]=rhoRefS;
|
||||
}
|
||||
}
|
||||
else
|
||||
throw std::runtime_error("Extbo: kw SDENSITY is missing or not aligned with NTPVT\n");
|
||||
params_ = params;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*!
|
||||
* \brief Register all run-time parameters for the black-oil solvent module.
|
||||
|
220
opm/models/blackoil/blackoilextboparams.cpp
Normal file
220
opm/models/blackoil/blackoilextboparams.cpp
Normal file
@ -0,0 +1,220 @@
|
||||
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
// vi: set et ts=4 sw=4 sts=4:
|
||||
/*
|
||||
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 2 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/>.
|
||||
|
||||
Consult the COPYING file in the top-level source directory of this
|
||||
module for the precise wording of the license and the list of
|
||||
copyright holders.
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
#include <opm/models/blackoil/blackoilextboparams.hpp>
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
#include <opm/input/eclipse/EclipseState/EclipseState.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SsfnTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/Sof2Table.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/MsfnTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/PmiscTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/MiscTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SorwmisTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/SgcwmisTable.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Tables/TlpmixpaTable.hpp>
|
||||
#endif
|
||||
|
||||
#include <cstddef>
|
||||
#include <stdexcept>
|
||||
|
||||
namespace Opm {
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
template<class Scalar>
|
||||
template<bool enableExtbo>
|
||||
void BlackOilExtboParams<Scalar>::
|
||||
initFromState(const EclipseState& eclState)
|
||||
{
|
||||
// some sanity checks: if extended BO is enabled, the PVTSOL keyword must be
|
||||
// present, if extended BO is disabled the keyword must not be present.
|
||||
if constexpr (enableExtbo) {
|
||||
if (!eclState.runspec().phases().active(Phase::ZFRACTION)) {
|
||||
throw std::runtime_error("Extended black oil treatment requested at compile "
|
||||
"time, but the deck does not contain the PVTSOL keyword");
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!enableExtbo && eclState.runspec().phases().active(Phase::ZFRACTION)) {
|
||||
throw std::runtime_error("Extended black oil treatment disabled at compile time, but the deck "
|
||||
"contains the PVTSOL keyword");
|
||||
}
|
||||
}
|
||||
|
||||
if (!eclState.runspec().phases().active(Phase::ZFRACTION)) {
|
||||
return; // solvent treatment is supposed to be disabled
|
||||
}
|
||||
|
||||
// pvt properties from kw PVTSOL:
|
||||
|
||||
const auto& tableManager = eclState.getTableManager();
|
||||
const auto& pvtsolTables = tableManager.getPvtsolTables();
|
||||
|
||||
std::size_t numPvtRegions = pvtsolTables.size();
|
||||
|
||||
BO_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
BG_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
RS_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
RV_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
X_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
Y_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
VISCO_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
VISCG_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
|
||||
PBUB_RS_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
PBUB_RV_.resize(numPvtRegions, Tabulated2DFunction{Tabulated2DFunction::InterpolationPolicy::LeftExtreme});
|
||||
|
||||
zLim_.resize(numPvtRegions);
|
||||
|
||||
const bool extractCmpFromPvt = true; //<false>: Default values used in [*]
|
||||
oilCmp_.resize(numPvtRegions);
|
||||
gasCmp_.resize(numPvtRegions);
|
||||
|
||||
for (unsigned regionIdx = 0; regionIdx < numPvtRegions; ++regionIdx) {
|
||||
const auto& pvtsolTable = pvtsolTables[regionIdx];
|
||||
|
||||
const auto& saturatedTable = pvtsolTable.getSaturatedTable();
|
||||
assert(saturatedTable.numRows() > 1);
|
||||
|
||||
std::vector<Scalar> oilCmp(saturatedTable.numRows(), -4.0e-9); //Default values used in [*]
|
||||
std::vector<Scalar> gasCmp(saturatedTable.numRows(), -0.08); //-------------"-------------
|
||||
zLim_[regionIdx] = 0.7; //-------------"-------------
|
||||
std::vector<Scalar> zArg(saturatedTable.numRows(), 0.0);
|
||||
|
||||
for (unsigned outerIdx = 0; outerIdx < saturatedTable.numRows(); ++outerIdx) {
|
||||
Scalar ZCO2 = saturatedTable.get("ZCO2", outerIdx);
|
||||
|
||||
zArg[outerIdx] = ZCO2;
|
||||
|
||||
BO_[regionIdx].appendXPos(ZCO2);
|
||||
BG_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
RS_[regionIdx].appendXPos(ZCO2);
|
||||
RV_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
X_[regionIdx].appendXPos(ZCO2);
|
||||
Y_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
VISCO_[regionIdx].appendXPos(ZCO2);
|
||||
VISCG_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
PBUB_RS_[regionIdx].appendXPos(ZCO2);
|
||||
PBUB_RV_[regionIdx].appendXPos(ZCO2);
|
||||
|
||||
const auto& underSaturatedTable = pvtsolTable.getUnderSaturatedTable(outerIdx);
|
||||
std::size_t numRows = underSaturatedTable.numRows();
|
||||
|
||||
Scalar bo0 = 0.0;
|
||||
Scalar po0 = 0.0;
|
||||
for (unsigned innerIdx = 0; innerIdx < numRows; ++innerIdx) {
|
||||
Scalar po = underSaturatedTable.get("P", innerIdx);
|
||||
Scalar bo = underSaturatedTable.get("B_O", innerIdx);
|
||||
Scalar bg = underSaturatedTable.get("B_G", innerIdx);
|
||||
Scalar rs = underSaturatedTable.get("RS", innerIdx) + innerIdx * 1.0e-10;
|
||||
Scalar rv = underSaturatedTable.get("RV", innerIdx) + innerIdx * 1.0e-10;
|
||||
Scalar xv = underSaturatedTable.get("XVOL", innerIdx);
|
||||
Scalar yv = underSaturatedTable.get("YVOL", innerIdx);
|
||||
Scalar mo = underSaturatedTable.get("MU_O", innerIdx);
|
||||
Scalar mg = underSaturatedTable.get("MU_G", innerIdx);
|
||||
|
||||
if (bo0 > bo) { // This is undersaturated oil-phase for ZCO2 <= zLim ...
|
||||
// Here we assume tabulated bo to decay beyond boiling point
|
||||
if (extractCmpFromPvt) {
|
||||
Scalar cmpFactor = (bo - bo0) / (po - po0);
|
||||
oilCmp[outerIdx] = cmpFactor;
|
||||
zLim_[regionIdx] = ZCO2;
|
||||
//std::cout << "### cmpFactorOil: " << cmpFactor << " zLim: " << zLim_[regionIdx] << std::endl;
|
||||
}
|
||||
break;
|
||||
} else if (bo0 == bo) { // This is undersaturated gas-phase for ZCO2 > zLim ...
|
||||
// Here we assume tabulated bo to be constant extrapolated beyond dew point
|
||||
if (innerIdx+1 < numRows && ZCO2<1.0 && extractCmpFromPvt) {
|
||||
Scalar rvNxt = underSaturatedTable.get("RV", innerIdx + 1) + innerIdx * 1.0e-10;
|
||||
Scalar bgNxt = underSaturatedTable.get("B_G", innerIdx + 1);
|
||||
Scalar cmpFactor = (bgNxt - bg) / (rvNxt - rv);
|
||||
gasCmp[outerIdx] = cmpFactor;
|
||||
//std::cout << "### cmpFactorGas: " << cmpFactor << " zLim: " << zLim_[regionIdx] << std::endl;
|
||||
}
|
||||
|
||||
BO_[regionIdx].appendSamplePoint(outerIdx, po, bo);
|
||||
BG_[regionIdx].appendSamplePoint(outerIdx, po, bg);
|
||||
RS_[regionIdx].appendSamplePoint(outerIdx, po, rs);
|
||||
RV_[regionIdx].appendSamplePoint(outerIdx, po, rv);
|
||||
X_[regionIdx].appendSamplePoint(outerIdx, po, xv);
|
||||
Y_[regionIdx].appendSamplePoint(outerIdx, po, yv);
|
||||
VISCO_[regionIdx].appendSamplePoint(outerIdx, po, mo);
|
||||
VISCG_[regionIdx].appendSamplePoint(outerIdx, po, mg);
|
||||
break;
|
||||
}
|
||||
|
||||
bo0 = bo;
|
||||
po0 = po;
|
||||
|
||||
BO_[regionIdx].appendSamplePoint(outerIdx, po, bo);
|
||||
BG_[regionIdx].appendSamplePoint(outerIdx, po, bg);
|
||||
|
||||
RS_[regionIdx].appendSamplePoint(outerIdx, po, rs);
|
||||
RV_[regionIdx].appendSamplePoint(outerIdx, po, rv);
|
||||
|
||||
X_[regionIdx].appendSamplePoint(outerIdx, po, xv);
|
||||
Y_[regionIdx].appendSamplePoint(outerIdx, po, yv);
|
||||
|
||||
VISCO_[regionIdx].appendSamplePoint(outerIdx, po, mo);
|
||||
VISCG_[regionIdx].appendSamplePoint(outerIdx, po, mg);
|
||||
|
||||
// rs,rv -> pressure
|
||||
PBUB_RS_[regionIdx].appendSamplePoint(outerIdx, rs, po);
|
||||
PBUB_RV_[regionIdx].appendSamplePoint(outerIdx, rv, po);
|
||||
}
|
||||
}
|
||||
oilCmp_[regionIdx].setXYContainers(zArg, oilCmp, /*sortInput=*/false);
|
||||
gasCmp_[regionIdx].setXYContainers(zArg, gasCmp, /*sortInput=*/false);
|
||||
}
|
||||
|
||||
// Reference density for pure z-component taken from kw SDENSITY
|
||||
const auto& sdensityTables = eclState.getTableManager().getSolventDensityTables();
|
||||
if (sdensityTables.size() == numPvtRegions) {
|
||||
zReferenceDensity_.resize(numPvtRegions);
|
||||
for (unsigned regionIdx = 0; regionIdx < numPvtRegions; ++regionIdx) {
|
||||
Scalar rhoRefS = sdensityTables[regionIdx].getSolventDensityColumn().front();
|
||||
zReferenceDensity_[regionIdx] = rhoRefS;
|
||||
}
|
||||
}
|
||||
else
|
||||
throw std::runtime_error("Extbo: kw SDENSITY is missing or not aligned with NTPVT\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
#define INSTANTIATE_TYPE(T) \
|
||||
template struct BlackOilExtboParams<T>; \
|
||||
template void BlackOilExtboParams<T>::initFromState<false>(const EclipseState&); \
|
||||
template void BlackOilExtboParams<T>::initFromState<true>(const EclipseState&);
|
||||
|
||||
INSTANTIATE_TYPE(double)
|
||||
|
||||
#if FLOW_INSTANTIATE_FLOAT
|
||||
INSTANTIATE_TYPE(float)
|
||||
#endif
|
||||
|
||||
} // namespace Opm
|
@ -39,12 +39,23 @@
|
||||
|
||||
namespace Opm {
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
class EclipseState;
|
||||
#endif
|
||||
|
||||
//! \brief Struct holding the parameters for the BlackoilExtboModule class.
|
||||
template<class Scalar>
|
||||
struct BlackOilExtboParams {
|
||||
struct BlackOilExtboParams
|
||||
{
|
||||
using TabulatedFunction = Tabulated1DFunction<Scalar>;
|
||||
using Tabulated2DFunction = UniformXTabulated2DFunction<Scalar>;
|
||||
|
||||
#if HAVE_ECL_INPUT
|
||||
template<bool enableExtbo>
|
||||
void initFromState(const EclipseState& eclState);
|
||||
#endif
|
||||
|
||||
|
||||
std::vector<Tabulated2DFunction> X_;
|
||||
std::vector<Tabulated2DFunction> Y_;
|
||||
std::vector<Tabulated2DFunction> PBUB_RS_;
|
||||
|
@ -282,8 +282,12 @@ public:
|
||||
enableSaltPrecipitation>(vanguard.eclState());
|
||||
BrineModule::setParams(std::move(brineParams));
|
||||
|
||||
BlackOilExtboParams<Scalar> extboParams;
|
||||
extboParams.template initFromState<enableExtbo>(vanguard.eclState());
|
||||
ExtboModule::setParams(std::move(extboParams));
|
||||
|
||||
FoamModule::initFromState(vanguard.eclState());
|
||||
ExtboModule::initFromState(vanguard.eclState());
|
||||
|
||||
MICPModule::initFromState(vanguard.eclState());
|
||||
DispersionModule::initFromState(vanguard.eclState());
|
||||
DiffusionModule::initFromState(vanguard.eclState());
|
||||
|
Loading…
Reference in New Issue
Block a user