Files
opm-common/src/opm/input/eclipse/EclipseState/InitConfig/InitConfig.cpp

177 lines
5.6 KiB
C++

/*
Copyright 2015 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 <iostream>
#include <opm/input/eclipse/Deck/Deck.hpp>
#include <opm/input/eclipse/Deck/DeckItem.hpp>
#include <opm/input/eclipse/Deck/DeckKeyword.hpp>
#include <opm/input/eclipse/Deck/DeckRecord.hpp>
#include <opm/input/eclipse/Deck/DeckSection.hpp>
#include <opm/input/eclipse/EclipseState/InitConfig/InitConfig.hpp>
#include <opm/input/eclipse/EclipseState/InitConfig/Equil.hpp>
#include <opm/input/eclipse/Parser/ParserKeywords/E.hpp>
#include <opm/input/eclipse/Parser/ParserKeywords/R.hpp>
#include <opm/input/eclipse/Parser/ParserKeywords/S.hpp>
namespace Opm {
static inline Equil equils( const Deck& deck ) {
if( !deck.hasKeyword<ParserKeywords::EQUIL>( ) ) return {};
return Equil( deck.get<ParserKeywords::EQUIL>( ).back() );
}
static inline DeckKeyword stressequils( const Deck& deck ) {
if( !deck.hasKeyword<ParserKeywords::STREQUIL>( ) ) return {};
return deck.get<ParserKeywords::STREQUIL>( ).back();
}
InitConfig::InitConfig()
: m_filleps(false)
{
}
InitConfig::InitConfig(const Deck& deck)
: equil(equils(deck))
, stress_equil(stressequils(deck))
, foamconfig(deck)
, m_filleps(PROPSSection{deck}.hasKeyword("FILLEPS"))
{
if( !deck.hasKeyword( "RESTART" ) ) {
if( deck.hasKeyword( "SKIPREST" ) ) {
std::cout << "Deck has SKIPREST, but no RESTART. "
<< "Ignoring SKIPREST." << std::endl;
}
return;
}
m_gravity = !deck.hasKeyword("NOGRAV");
const auto& record = deck["RESTART"].back().getRecord(0);
const auto& save_item = record.getItem(2);
if( save_item.hasValue( 0 ) ) {
throw std::runtime_error(
"OPM does not support RESTART from a SAVE file, "
"only from RESTART files");
}
int step = record.getItem( 1 ).get< int >(0);
const std::string& root = record.getItem( 0 ).get< std::string >( 0 );
const std::string& input_path = deck.getInputPath();
if (root[0] == '/' || input_path.empty())
this->setRestart(root, step);
else
this->setRestart( input_path + "/" + root, step );
}
InitConfig InitConfig::serializationTestObject()
{
InitConfig result;
result.equil = Equil::serializationTestObject();
result.stress_equil = StressEquil::serializationTestObject();
result.foamconfig = FoamConfig::serializationTestObject();
result.m_filleps = true;
result.m_gravity = false;
result.m_restartRequested = true;
result.m_restartStep = 20;
result.m_restartRootName = "test1";
return result;
}
void InitConfig::setRestart( const std::string& root, int step) {
m_restartRequested = true;
m_restartStep = step;
m_restartRootName = root;
}
bool InitConfig::restartRequested() const {
return m_restartRequested;
}
int InitConfig::getRestartStep() const {
return m_restartStep;
}
const std::string& InitConfig::getRestartRootName() const {
return m_restartRootName;
}
bool InitConfig::hasEquil() const {
return !this->equil.empty();
}
const Equil& InitConfig::getEquil() const {
if( !this->hasEquil() )
throw std::runtime_error( "Error: No 'EQUIL' present" );
return this->equil;
}
bool InitConfig::hasStressEquil() const {
return !this->stress_equil.empty();
}
const StressEquil& InitConfig::getStressEquil() const {
if( !this->hasStressEquil() )
throw std::runtime_error( "Error: No 'STREQUIL' present" );
return this->stress_equil;
}
bool InitConfig::hasGravity() const {
return m_gravity;
}
bool InitConfig::hasFoamConfig() const {
// return !this->foamconfig.empty();
return true;
}
const FoamConfig& InitConfig::getFoamConfig() const {
if( !this->hasFoamConfig() )
throw std::runtime_error( "Error: No foam model configuration keywords present" );
return this->foamconfig;
}
bool InitConfig::operator==(const InitConfig& data) const {
return equil == data.equil &&
stress_equil == data.stress_equil &&
foamconfig == data.foamconfig &&
m_filleps == data.m_filleps &&
m_gravity == data.m_gravity &&
m_restartRequested == data.m_restartRequested &&
m_restartStep == data.m_restartStep &&
m_restartRootName == data.m_restartRootName;
}
bool InitConfig::rst_cmp(const InitConfig& full_config, const InitConfig& rst_config) {
return full_config.foamconfig == rst_config.foamconfig &&
full_config.m_filleps == rst_config.m_filleps &&
full_config.m_gravity == rst_config.m_gravity;
}
} //namespace Opm