This is intended as a possibly temporary measure for processing explicitly assigned NNCs (keywords NNC/EDITNNC/EDITNNCR) along with those NNCs arising from numerical aquifers, and for which there is no associate face direction. Add a set of unit tests to probe the implementation of all MULTREGT connection behaviours as exhibited by MULTREGTScanner member functions getRegionMultiplier() and getRegionMultiplierNNC().
177 lines
6.4 KiB
C++
177 lines
6.4 KiB
C++
/*
|
|
Copyright 2014 Statoil ASA.
|
|
|
|
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 <stdexcept>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <opm/common/OpmLog/LogUtil.hpp>
|
|
#include <opm/common/utility/OpmInputError.hpp>
|
|
|
|
#include <opm/common/OpmLog/OpmLog.hpp>
|
|
#include <opm/input/eclipse/Deck/Deck.hpp>
|
|
#include <opm/input/eclipse/Deck/DeckKeyword.hpp>
|
|
#include <opm/input/eclipse/Deck/DeckSection.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/FieldPropsManager.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/Fault.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/FaultFace.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/FaultCollection.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/TransMult.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/GridDims.hpp>
|
|
#include <opm/input/eclipse/EclipseState/Grid/MULTREGTScanner.hpp>
|
|
#include <opm/input/eclipse/Parser/ParserKeywords/M.hpp>
|
|
|
|
|
|
namespace Opm {
|
|
|
|
TransMult::TransMult(const GridDims& dims, const Deck& deck, const FieldPropsManager& fp) :
|
|
m_nx( dims.getNX()),
|
|
m_ny( dims.getNY()),
|
|
m_nz( dims.getNZ()),
|
|
m_names( { { FaceDir::XPlus, "MULTX" },
|
|
{ FaceDir::YPlus, "MULTY" },
|
|
{ FaceDir::ZPlus, "MULTZ" },
|
|
{ FaceDir::XMinus, "MULTX-" },
|
|
{ FaceDir::YMinus, "MULTY-" },
|
|
{ FaceDir::ZMinus, "MULTZ-" }}),
|
|
m_multregtScanner( dims, &fp, deck.getKeywordList( "MULTREGT" ))
|
|
{
|
|
EDITSection edit_section(deck);
|
|
if (edit_section.hasKeyword<ParserKeywords::MULTREGT>()) {
|
|
const auto& keyword = edit_section.get<ParserKeywords::MULTREGT>().back();
|
|
std::string msg_fmt = "The {keyword} located in the EDIT section\n"
|
|
"In {file} line {line}\n"
|
|
"The MULTREGT keyword will be applied, but it is recommended to place MULTREGT in the GRID section.";
|
|
OpmLog::warning(OpmInputError::format(msg_fmt, keyword.location()));
|
|
}
|
|
}
|
|
|
|
TransMult TransMult::serializationTestObject()
|
|
{
|
|
TransMult result;
|
|
result.m_nx = 1;
|
|
result.m_ny = 2;
|
|
result.m_nz = 3;
|
|
result.m_trans = {{FaceDir::YPlus, {4.0, 5.0}}};
|
|
result.m_names = {{FaceDir::ZPlus, "test1"}};
|
|
result.m_multregtScanner = MULTREGTScanner::serializationTestObject();
|
|
|
|
return result;
|
|
}
|
|
|
|
void TransMult::assertIJK(size_t i , size_t j , size_t k) const {
|
|
if ((i >= m_nx) || (j >= m_ny) || (k >= m_nz))
|
|
throw std::invalid_argument("Invalid ijk");
|
|
}
|
|
|
|
|
|
size_t TransMult::getGlobalIndex(size_t i , size_t j , size_t k) const {
|
|
assertIJK(i,j,k);
|
|
return i + j*m_nx + k*m_nx*m_ny;
|
|
}
|
|
|
|
|
|
double TransMult::getMultiplier(size_t globalIndex, FaceDir::DirEnum faceDir) const {
|
|
if (globalIndex < m_nx * m_ny * m_nz)
|
|
return this->getMultiplier__(globalIndex , faceDir);
|
|
else
|
|
throw std::invalid_argument("Invalid global index");
|
|
}
|
|
|
|
double TransMult::getMultiplier__(size_t globalIndex, FaceDir::DirEnum faceDir) const {
|
|
if (hasDirectionProperty( faceDir )) {
|
|
const auto& data = m_trans.at(faceDir);
|
|
return data[globalIndex];
|
|
} else
|
|
return 1.0;
|
|
}
|
|
|
|
|
|
|
|
|
|
double TransMult::getMultiplier(size_t i , size_t j , size_t k, FaceDir::DirEnum faceDir) const {
|
|
size_t globalIndex = this->getGlobalIndex(i,j,k);
|
|
return getMultiplier__( globalIndex , faceDir );
|
|
}
|
|
|
|
double TransMult::getRegionMultiplier(size_t globalCellIndex1, size_t globalCellIndex2, FaceDir::DirEnum faceDir) const {
|
|
return m_multregtScanner.getRegionMultiplier(globalCellIndex1, globalCellIndex2, faceDir);
|
|
}
|
|
|
|
double TransMult::getRegionMultiplierNNC(std::size_t globalCellIndex1, std::size_t globalCellIndex2) const {
|
|
return m_multregtScanner.getRegionMultiplierNNC(globalCellIndex1, globalCellIndex2);
|
|
}
|
|
|
|
bool TransMult::hasDirectionProperty(FaceDir::DirEnum faceDir) const {
|
|
return m_trans.count(faceDir) == 1;
|
|
}
|
|
|
|
|
|
std::vector<double>& TransMult::getDirectionProperty(FaceDir::DirEnum faceDir) {
|
|
if (m_trans.count(faceDir) == 0) {
|
|
std::size_t global_size = this->m_nx * this->m_ny * this->m_nz;
|
|
m_trans[faceDir] = std::vector<double>(global_size, 1);
|
|
}
|
|
|
|
return m_trans.at( faceDir );
|
|
}
|
|
|
|
void TransMult::applyMULT(const std::vector<double>& srcData, FaceDir::DirEnum faceDir)
|
|
{
|
|
auto& dstProp = this->getDirectionProperty(faceDir);
|
|
for (size_t i = 0; i < srcData.size(); ++i)
|
|
dstProp[i] *= srcData[i];
|
|
}
|
|
|
|
|
|
void TransMult::applyMULTFLT(const Fault& fault) {
|
|
double transMult = fault.getTransMult();
|
|
|
|
for( const auto& face : fault ) {
|
|
FaceDir::DirEnum faceDir = face.getDir();
|
|
auto& multProperty = this->getDirectionProperty(faceDir);
|
|
|
|
for( auto globalIndex : face )
|
|
multProperty[globalIndex] *= transMult;
|
|
}
|
|
}
|
|
|
|
|
|
void TransMult::applyMULTFLT(const FaultCollection& faults) {
|
|
for (size_t faultIndex = 0; faultIndex < faults.size(); faultIndex++) {
|
|
auto& fault = faults.getFault(faultIndex);
|
|
this->applyMULTFLT(fault);
|
|
}
|
|
}
|
|
|
|
void TransMult::applyNumericalAquifer(const std::vector<std::size_t>& aquifer_cells) {
|
|
m_multregtScanner.applyNumericalAquifer(aquifer_cells);
|
|
}
|
|
|
|
bool TransMult::operator==(const TransMult& data) const {
|
|
return this->m_nx == data.m_nx &&
|
|
this->m_ny == data.m_ny &&
|
|
this->m_nz == data.m_nz &&
|
|
this->m_trans == data.m_trans &&
|
|
this->m_names == data.m_names &&
|
|
this->m_multregtScanner == data.m_multregtScanner;
|
|
}
|
|
|
|
}
|