Files
opm-common/src/opm/parser/eclipse/EclipseState/Grid/TransMult.cpp

137 lines
4.7 KiB
C++
Raw Normal View History

/*
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 <opm/parser/eclipse/Deck/DeckKeyword.hpp>
#include <opm/parser/eclipse/EclipseState/Eclipse3DProperties.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/Fault.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/FaultFace.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/FaultCollection.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/GridProperty.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/TransMult.hpp>
2017-09-24 15:17:10 +02:00
#include <opm/parser/eclipse/EclipseState/Grid/GridDims.hpp>
#include <opm/parser/eclipse/EclipseState/Grid/MULTREGTScanner.hpp>
namespace Opm {
2017-09-24 15:17:10 +02:00
TransMult::TransMult(const GridDims& dims, const Deck& deck, const Eclipse3DProperties& props) :
m_names( { { FaceDir::XPlus, "MULTX" },
{ FaceDir::YPlus, "MULTY" },
{ FaceDir::ZPlus, "MULTZ" },
{ FaceDir::XMinus, "MULTX-" },
{ FaceDir::YMinus, "MULTY-" },
2017-09-24 15:17:10 +02:00
{ FaceDir::ZMinus, "MULTZ-" }}),
m_nx( dims.getNX()),
m_ny( dims.getNY()),
m_nz( dims.getNZ()),
m_multregtScanner( props, deck.getKeywordList( "MULTREGT" ))
{
}
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 getMultiplier__(globalIndex , faceDir);
else
throw std::invalid_argument("Invalid global index");
}
double TransMult::getMultiplier__(size_t globalIndex, FaceDir::DirEnum faceDir) const {
if (hasDirectionProperty( faceDir )) {
return m_trans.at(faceDir).iget( globalIndex );
} else
return 1.0;
}
double TransMult::getMultiplier(size_t i , size_t j , size_t k, FaceDir::DirEnum faceDir) const {
size_t globalIndex = 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);
}
bool TransMult::hasDirectionProperty(FaceDir::DirEnum faceDir) const {
return m_trans.count(faceDir) == 1;
}
void TransMult::insertNewProperty(FaceDir::DirEnum faceDir) {
GridPropertySupportedKeywordInfo<double> kwInfo(m_names[faceDir] , 1.0 , "1");
GridProperty< double > prop( m_nx, m_ny, m_nz, kwInfo );
m_trans.emplace( faceDir, std::move( prop ) );
}
GridProperty<double>& TransMult::getDirectionProperty(FaceDir::DirEnum faceDir) {
if (m_trans.count(faceDir) == 0)
insertNewProperty(faceDir);
return m_trans.at( faceDir );
}
void TransMult::applyMULT(const GridProperty<double>& srcProp, FaceDir::DirEnum faceDir)
{
auto& dstProp = getDirectionProperty(faceDir);
const std::vector<double> &srcData = srcProp.getData();
for (size_t i = 0; i < srcData.size(); ++i)
dstProp.multiplyValueAtIndex(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 = getDirectionProperty(faceDir);
for( auto globalIndex : face ) {
multProperty.multiplyValueAtIndex( globalIndex , transMult);
}
}
}
void TransMult::applyMULTFLT(const FaultCollection& faults) {
for (size_t faultIndex = 0; faultIndex < faults.size(); faultIndex++) {
auto& fault = faults.getFault(faultIndex);
applyMULTFLT(fault);
}
}
2017-09-24 15:17:10 +02:00
}