2015-12-08 03:36:44 -06:00
|
|
|
/*
|
|
|
|
Copyright 2013, 2014, 2015 SINTEF ICT, Applied Mathematics.
|
|
|
|
Copyright 2014 Dr. Blatt - HPC-Simulation-Software & Services
|
|
|
|
Copyright 2015 IRIS AS
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPM_FLOWMAIN_HEADER_INCLUDED
|
|
|
|
#define OPM_FLOWMAIN_HEADER_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include <opm/common/utility/platform_dependent/disable_warnings.h>
|
|
|
|
|
|
|
|
#include <dune/common/version.hh>
|
|
|
|
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
|
|
|
#include <dune/common/parallel/mpihelper.hh>
|
|
|
|
#else
|
|
|
|
#include <dune/common/mpihelper.hh>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <opm/common/utility/platform_dependent/reenable_warnings.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include <opm/core/grid/GridManager.hpp>
|
|
|
|
#include <opm/autodiff/GridHelpers.hpp>
|
|
|
|
#include <opm/autodiff/createGlobalCellArray.hpp>
|
|
|
|
#include <opm/autodiff/GridInit.hpp>
|
|
|
|
|
|
|
|
#include <opm/core/wells.h>
|
|
|
|
#include <opm/core/wells/WellsManager.hpp>
|
|
|
|
#include <opm/common/ErrorMacros.hpp>
|
|
|
|
#include <opm/core/simulator/initState.hpp>
|
|
|
|
#include <opm/core/simulator/initStateEquil.hpp>
|
|
|
|
#include <opm/core/simulator/SimulatorReport.hpp>
|
|
|
|
#include <opm/core/simulator/SimulatorTimer.hpp>
|
|
|
|
#include <opm/core/utility/miscUtilities.hpp>
|
|
|
|
#include <opm/core/utility/parameters/ParameterGroup.hpp>
|
2016-04-11 09:22:09 -05:00
|
|
|
#include <opm/simulators/thresholdPressures.hpp> // Note: the GridHelpers must be included before this (to make overloads available). \TODO: Fix.
|
2015-12-08 03:36:44 -06:00
|
|
|
|
|
|
|
#include <opm/material/fluidmatrixinteractions/EclMaterialLawManager.hpp>
|
|
|
|
#include <opm/core/props/BlackoilPropertiesBasic.hpp>
|
|
|
|
#include <opm/core/props/BlackoilPropertiesFromDeck.hpp>
|
|
|
|
#include <opm/core/props/rock/RockCompressibility.hpp>
|
2016-02-18 22:45:23 -06:00
|
|
|
#include <opm/core/props/satfunc/RelpermDiagnostics.hpp>
|
2015-12-08 03:36:44 -06:00
|
|
|
#include <opm/core/linalg/LinearSolverFactory.hpp>
|
|
|
|
#include <opm/autodiff/NewtonIterationBlackoilSimple.hpp>
|
|
|
|
#include <opm/autodiff/NewtonIterationBlackoilCPR.hpp>
|
|
|
|
#include <opm/autodiff/NewtonIterationBlackoilInterleaved.hpp>
|
|
|
|
|
|
|
|
#include <opm/autodiff/WellStateFullyImplicitBlackoil.hpp>
|
|
|
|
|
|
|
|
#include <opm/autodiff/BlackoilPropsAdFromDeck.hpp>
|
|
|
|
#include <opm/autodiff/RedistributeDataHandles.hpp>
|
|
|
|
#include <opm/autodiff/moduleVersion.hpp>
|
|
|
|
|
|
|
|
#include <opm/core/utility/share_obj.hpp>
|
|
|
|
|
2016-03-17 10:19:07 -05:00
|
|
|
#include <opm/common/OpmLog/OpmLog.hpp>
|
|
|
|
#include <opm/common/OpmLog/EclipsePRTLog.hpp>
|
2016-04-29 01:13:21 -05:00
|
|
|
#include <opm/common/OpmLog/LogUtil.hpp>
|
2015-12-08 03:36:44 -06:00
|
|
|
#include <opm/parser/eclipse/Deck/Deck.hpp>
|
|
|
|
#include <opm/parser/eclipse/Parser/Parser.hpp>
|
2016-03-16 19:55:52 -05:00
|
|
|
#include <opm/parser/eclipse/Parser/ParseContext.hpp>
|
2015-12-08 03:36:44 -06:00
|
|
|
#include <opm/parser/eclipse/EclipseState/checkDeck.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
|
2016-01-20 08:11:30 -06:00
|
|
|
#include <opm/parser/eclipse/EclipseState/IOConfig/IOConfig.hpp>
|
2016-01-05 05:39:02 -06:00
|
|
|
#include <opm/parser/eclipse/EclipseState/InitConfig/InitConfig.hpp>
|
2015-12-08 03:36:44 -06:00
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
|
|
|
#ifdef _OPENMP
|
|
|
|
#include <omp.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <numeric>
|
|
|
|
#include <cstdlib>
|
2016-03-16 08:40:54 -05:00
|
|
|
#include <stdexcept>
|
2015-12-08 03:36:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
2016-03-16 08:40:54 -05:00
|
|
|
|
2016-04-29 07:59:18 -05:00
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
boost::filesystem::path simulationCaseName( const std::string& casename );
|
|
|
|
int64_t convertMessageType(const Message::type& mtype);
|
2016-03-16 08:40:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-14 03:46:00 -06:00
|
|
|
/// This class encapsulates the setup and running of
|
|
|
|
/// a simulator based on an input deck.
|
2015-12-14 06:51:59 -06:00
|
|
|
template <class Implementation, class Grid, class Simulator>
|
|
|
|
class FlowMainBase
|
2015-12-09 02:56:09 -06:00
|
|
|
{
|
|
|
|
public:
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
|
2015-12-14 03:46:00 -06:00
|
|
|
/// This is the main function of Flow.
|
|
|
|
/// It runs a complete simulation, with the given grid and
|
|
|
|
/// simulator classes, based on user command-line input. The
|
|
|
|
/// content of this function used to be in the main() function of
|
|
|
|
/// flow.cpp.
|
2015-12-09 02:56:09 -06:00
|
|
|
int execute(int argc, char** argv)
|
2015-12-08 03:36:44 -06:00
|
|
|
try {
|
2015-12-11 10:01:08 -06:00
|
|
|
// Setup.
|
2015-12-14 06:51:59 -06:00
|
|
|
asImpl().setupParallelism(argc, argv);
|
|
|
|
asImpl().printStartupMessage();
|
|
|
|
const bool ok = asImpl().setupParameters(argc, argv);
|
2015-12-09 06:20:32 -06:00
|
|
|
if (!ok) {
|
2015-12-08 03:36:44 -06:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-12-14 06:51:59 -06:00
|
|
|
asImpl().setupOutput();
|
|
|
|
asImpl().readDeckInput();
|
|
|
|
asImpl().setupGridAndProps();
|
2016-04-29 01:13:21 -05:00
|
|
|
asImpl().extractMessages();
|
2016-02-19 02:40:45 -06:00
|
|
|
asImpl().runDiagnostics();
|
2015-12-14 06:51:59 -06:00
|
|
|
asImpl().setupState();
|
|
|
|
asImpl().distributeData();
|
|
|
|
asImpl().setupOutputWriter();
|
|
|
|
asImpl().setupLinearSolver();
|
|
|
|
asImpl().createSimulator();
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
// Run.
|
2015-12-14 06:51:59 -06:00
|
|
|
return asImpl().runSimulator();
|
2015-12-08 03:36:44 -06:00
|
|
|
}
|
|
|
|
catch (const std::exception &e) {
|
|
|
|
std::cerr << "Program threw an exception: " << e.what() << "\n";
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2015-12-09 03:51:03 -06:00
|
|
|
|
|
|
|
|
2015-12-14 06:51:59 -06:00
|
|
|
protected:
|
2015-12-09 03:51:03 -06:00
|
|
|
|
2015-12-14 03:46:00 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------ Types ------------
|
|
|
|
|
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
typedef BlackoilPropsAdFromDeck FluidProps;
|
|
|
|
typedef FluidProps::MaterialLawManager MaterialLawManager;
|
|
|
|
typedef typename Simulator::ReservoirState ReservoirState;
|
|
|
|
|
2015-12-09 03:51:03 -06:00
|
|
|
|
2015-12-14 03:46:00 -06:00
|
|
|
// ------------ Data members ------------
|
2015-12-09 04:20:53 -06:00
|
|
|
|
|
|
|
|
2015-12-14 03:46:00 -06:00
|
|
|
// The comments indicate in which method the
|
|
|
|
// members first occur.
|
2015-12-09 04:20:53 -06:00
|
|
|
|
2015-12-09 08:06:44 -06:00
|
|
|
// setupParallelism()
|
2015-12-09 03:51:03 -06:00
|
|
|
bool output_cout_ = false;
|
|
|
|
bool must_distribute_ = false;
|
2015-12-09 08:06:44 -06:00
|
|
|
// setupParameters()
|
2015-12-09 06:20:32 -06:00
|
|
|
parameter::ParameterGroup param_;
|
2015-12-09 08:06:44 -06:00
|
|
|
// setupOutput()
|
2015-12-09 06:37:20 -06:00
|
|
|
bool output_to_files_ = false;
|
2016-05-03 10:38:29 -05:00
|
|
|
std::string output_dir_ = std::string(".");
|
2015-12-09 08:06:44 -06:00
|
|
|
// readDeckInput()
|
|
|
|
std::shared_ptr<const Deck> deck_;
|
|
|
|
std::shared_ptr<EclipseState> eclipse_state_;
|
2015-12-11 10:01:08 -06:00
|
|
|
// setupGridAndProps()
|
|
|
|
std::unique_ptr<GridInit<Grid>> grid_init_;
|
|
|
|
std::shared_ptr<MaterialLawManager> material_law_manager_;
|
|
|
|
std::unique_ptr<FluidProps> fluidprops_;
|
|
|
|
std::unique_ptr<RockCompressibility> rock_comp_;
|
|
|
|
std::array<double, 3> gravity_;
|
|
|
|
bool use_local_perm_ = true;
|
|
|
|
std::unique_ptr<DerivedGeology> geoprops_;
|
|
|
|
// setupState()
|
2016-02-28 04:27:00 -06:00
|
|
|
std::unique_ptr<ReservoirState> state_;
|
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
std::vector<double> threshold_pressures_;
|
|
|
|
// distributeData()
|
|
|
|
boost::any parallel_information_;
|
|
|
|
// setupOutputWriter()
|
|
|
|
std::unique_ptr<BlackoilOutputWriter> output_writer_;
|
|
|
|
// setupLinearSolver
|
|
|
|
std::unique_ptr<NewtonIterationBlackoilInterface> fis_solver_;
|
|
|
|
// createSimulator()
|
|
|
|
std::unique_ptr<Simulator> simulator_;
|
2016-02-18 22:45:23 -06:00
|
|
|
// create log file
|
|
|
|
std::string logFile_;
|
2015-12-09 03:51:03 -06:00
|
|
|
// ------------ Methods ------------
|
|
|
|
|
2015-12-09 04:20:53 -06:00
|
|
|
|
|
|
|
// Set up MPI and OpenMP.
|
|
|
|
// Writes to:
|
|
|
|
// output_cout_
|
|
|
|
// must_distribute_
|
2015-12-09 03:51:03 -06:00
|
|
|
void setupParallelism(int argc, char** argv)
|
|
|
|
{
|
|
|
|
// MPI setup.
|
|
|
|
// Must ensure an instance of the helper is created to initialise MPI.
|
|
|
|
// For a build without MPI the Dune::FakeMPIHelper is used, so rank will
|
|
|
|
// be 0 and size 1.
|
|
|
|
const Dune::MPIHelper& mpi_helper = Dune::MPIHelper::instance(argc, argv);
|
|
|
|
const int mpi_rank = mpi_helper.rank();
|
|
|
|
const int mpi_size = mpi_helper.size();
|
|
|
|
output_cout_ = ( mpi_rank == 0 );
|
|
|
|
must_distribute_ = ( mpi_size > 1 );
|
|
|
|
|
|
|
|
#ifdef _OPENMP
|
|
|
|
// OpenMP setup.
|
|
|
|
if (!getenv("OMP_NUM_THREADS")) {
|
|
|
|
// Default to at most 4 threads, regardless of
|
|
|
|
// number of cores (unless ENV(OMP_NUM_THREADS) is defined)
|
|
|
|
int num_cores = omp_get_num_procs();
|
|
|
|
int num_threads = std::min(4, num_cores);
|
|
|
|
omp_set_num_threads(num_threads);
|
|
|
|
}
|
|
|
|
#pragma omp parallel
|
|
|
|
if (omp_get_thread_num() == 0) {
|
2015-12-09 04:12:43 -06:00
|
|
|
// omp_get_num_threads() only works as expected within a parallel region.
|
|
|
|
const int num_omp_threads = omp_get_num_threads();
|
|
|
|
if (mpi_size == 1) {
|
|
|
|
std::cout << "OpenMP using " << num_omp_threads << " threads." << std::endl;
|
|
|
|
} else {
|
|
|
|
std::cout << "OpenMP using " << num_omp_threads << " threads on MPI rank " << mpi_rank << "." << std::endl;
|
|
|
|
}
|
2015-12-09 03:51:03 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-09 04:20:53 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Print startup message if on output rank.
|
|
|
|
void printStartupMessage()
|
|
|
|
{
|
|
|
|
if (output_cout_) {
|
|
|
|
const std::string version = moduleVersionName();
|
|
|
|
std::cout << "**********************************************************************\n";
|
|
|
|
std::cout << "* *\n";
|
|
|
|
std::cout << "* This is Flow (version " << version << ")"
|
|
|
|
<< std::string(26 - version.size(), ' ') << "*\n";
|
|
|
|
std::cout << "* *\n";
|
|
|
|
std::cout << "* Flow is a simulator for fully implicit three-phase black-oil flow, *\n";
|
|
|
|
std::cout << "* and is part of OPM. For more information see: *\n";
|
|
|
|
std::cout << "* http://opm-project.org *\n";
|
|
|
|
std::cout << "* *\n";
|
|
|
|
std::cout << "**********************************************************************\n\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 06:20:32 -06:00
|
|
|
// Read parameters, see if a deck was specified on the command line, and if
|
|
|
|
// it was, insert it into parameters.
|
|
|
|
// Writes to:
|
|
|
|
// param_
|
|
|
|
// Returns true if ok, false if not.
|
|
|
|
bool setupParameters(int argc, char** argv)
|
|
|
|
{
|
|
|
|
// Read parameters.
|
|
|
|
if ( output_cout_ ) {
|
|
|
|
std::cout << "--------------- Reading parameters ---------------" << std::endl;
|
|
|
|
}
|
|
|
|
param_ = parameter::ParameterGroup(argc, argv, false, output_cout_);
|
|
|
|
|
|
|
|
// See if a deck was specified on the command line.
|
|
|
|
if (!param_.unhandledArguments().empty()) {
|
|
|
|
if (param_.unhandledArguments().size() != 1) {
|
|
|
|
std::cerr << "You can only specify a single input deck on the command line.\n";
|
|
|
|
return false;
|
|
|
|
} else {
|
2016-04-29 07:59:18 -05:00
|
|
|
const auto casename = detail::simulationCaseName( param_.unhandledArguments()[ 0 ] );
|
2016-03-16 08:40:54 -05:00
|
|
|
param_.insertParameter("deck_filename", casename.string() );
|
2015-12-09 06:20:32 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We must have an input deck. Grid and props will be read from that.
|
|
|
|
if (!param_.has("deck_filename")) {
|
|
|
|
std::cerr << "This program must be run with an input deck.\n"
|
|
|
|
"Specify the deck filename either\n"
|
|
|
|
" a) as a command line argument by itself\n"
|
|
|
|
" b) as a command line parameter with the syntax deck_filename=<path to your deck>, or\n"
|
|
|
|
" c) as a parameter in a parameter file (.param or .xml) passed to the program.\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-09 06:37:20 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set output_to_files_ and set/create output dir. Write parameter file.
|
|
|
|
// Writes to:
|
|
|
|
// output_to_files_
|
|
|
|
// output_dir_
|
|
|
|
// Throws std::runtime_error if failed to create (if requested) output dir.
|
|
|
|
void setupOutput()
|
|
|
|
{
|
|
|
|
// Write parameters used for later reference. (only if rank is zero)
|
|
|
|
output_to_files_ = output_cout_ && param_.getDefault("output", true);
|
|
|
|
if (output_to_files_) {
|
|
|
|
// Create output directory if needed.
|
|
|
|
output_dir_ =
|
2016-05-03 10:38:29 -05:00
|
|
|
param_.getDefault("output_dir", std::string("."));
|
2015-12-09 06:37:20 -06:00
|
|
|
boost::filesystem::path fpath(output_dir_);
|
|
|
|
try {
|
|
|
|
create_directories(fpath);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
OPM_THROW(std::runtime_error, "Creating directories failed: " << fpath);
|
|
|
|
}
|
|
|
|
// Write simulation parameters.
|
|
|
|
param_.writeParam(output_dir_ + "/simulation.param");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-09 08:06:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Parser the input and creates the Deck and EclipseState objects.
|
|
|
|
// Writes to:
|
|
|
|
// deck_
|
|
|
|
// eclipse_state_
|
|
|
|
// May throw if errors are encountered, here configured to be somewhat tolerant.
|
|
|
|
void readDeckInput()
|
2016-02-18 22:45:23 -06:00
|
|
|
{
|
|
|
|
std::string deck_filename = param_.get<std::string>("deck_filename");
|
|
|
|
// create logFile
|
|
|
|
using boost::filesystem::path;
|
|
|
|
path fpath(deck_filename);
|
|
|
|
std::string baseName;
|
|
|
|
if (boost::to_upper_copy(path(fpath.extension()).string()) == ".DATA") {
|
|
|
|
baseName = path(fpath.stem()).string();
|
|
|
|
} else {
|
|
|
|
baseName = path(fpath.filename()).string();
|
|
|
|
}
|
2016-03-31 20:27:39 -05:00
|
|
|
if (param_.has("output_dir")) {
|
|
|
|
logFile_ = output_dir_ + "/" + baseName + ".PRT";
|
|
|
|
} else {
|
|
|
|
logFile_ = baseName + ".PRT";
|
|
|
|
}
|
2015-12-09 08:06:44 -06:00
|
|
|
// Create Parser
|
|
|
|
ParserPtr parser(new Parser());
|
|
|
|
{
|
2016-03-14 20:43:18 -05:00
|
|
|
std::shared_ptr<EclipsePRTLog> prtLog = std::make_shared<EclipsePRTLog>(logFile_ , Log::DefaultMessageTypes);
|
|
|
|
OpmLog::addBackend( "ECLIPSEPRTLOG" , prtLog );
|
2015-12-09 08:06:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create Deck and EclipseState.
|
|
|
|
try {
|
2016-03-16 19:55:52 -05:00
|
|
|
ParseContext parseContext({{ ParseContext::PARSE_RANDOM_SLASH , InputError::IGNORE }});
|
|
|
|
deck_ = parser->parseFile(deck_filename, parseContext);
|
2016-02-09 09:05:00 -06:00
|
|
|
checkDeck(deck_, parser);
|
2016-03-16 19:55:52 -05:00
|
|
|
eclipse_state_.reset(new EclipseState(deck_, parseContext));
|
2016-04-28 06:30:13 -05:00
|
|
|
auto ioConfig = eclipse_state_->getIOConfig();
|
2016-04-28 08:43:52 -05:00
|
|
|
ioConfig->setOutputDir(output_dir_);
|
2015-12-09 08:06:44 -06:00
|
|
|
}
|
|
|
|
catch (const std::invalid_argument& e) {
|
2016-02-18 22:45:23 -06:00
|
|
|
std::cerr << "Failed to create valid EclipseState object. See logfile: " << logFile_ << std::endl;
|
2015-12-09 08:06:44 -06:00
|
|
|
std::cerr << "Exception caught: " << e.what() << std::endl;
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Possibly override IOConfig setting (from deck) for how often RESTART files should get written to disk (every N report step)
|
|
|
|
if (param_.has("output_interval")) {
|
|
|
|
const int output_interval = param_.get<int>("output_interval");
|
|
|
|
IOConfigPtr ioConfig = eclipse_state_->getIOConfig();
|
|
|
|
ioConfig->overrideRestartWriteInterval(static_cast<size_t>(output_interval));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Create grid and property objects.
|
|
|
|
// Writes to:
|
|
|
|
// grid_init_
|
|
|
|
// material_law_manager_
|
|
|
|
// fluidprops_
|
|
|
|
// rock_comp_
|
|
|
|
// gravity_
|
|
|
|
// use_local_perm_
|
|
|
|
// geoprops_
|
|
|
|
void setupGridAndProps()
|
|
|
|
{
|
|
|
|
// Create grid.
|
2016-04-11 02:15:06 -05:00
|
|
|
const std::vector<double>& porv =
|
2016-04-11 08:15:27 -05:00
|
|
|
eclipse_state_->get3DProperties().getDoubleGridProperty("PORV").getData();
|
2016-04-20 07:55:01 -05:00
|
|
|
grid_init_.reset(new GridInit<Grid>(eclipse_state_, porv));
|
2015-12-11 10:01:08 -06:00
|
|
|
const Grid& grid = grid_init_->grid();
|
|
|
|
|
|
|
|
// Create material law manager.
|
|
|
|
std::vector<int> compressedToCartesianIdx;
|
|
|
|
Opm::createGlobalCellArray(grid, compressedToCartesianIdx);
|
|
|
|
material_law_manager_.reset(new MaterialLawManager());
|
|
|
|
material_law_manager_->initFromDeck(deck_, eclipse_state_, compressedToCartesianIdx);
|
|
|
|
|
|
|
|
// Rock and fluid properties.
|
|
|
|
fluidprops_.reset(new BlackoilPropsAdFromDeck(deck_, eclipse_state_, material_law_manager_, grid));
|
|
|
|
|
|
|
|
// Rock compressibility.
|
|
|
|
rock_comp_.reset(new RockCompressibility(deck_, eclipse_state_));
|
|
|
|
|
|
|
|
// Gravity.
|
|
|
|
assert(UgGridHelpers::dimensions(grid) == 3);
|
|
|
|
gravity_.fill(0.0);
|
|
|
|
gravity_[2] = deck_->hasKeyword("NOGRAV")
|
|
|
|
? param_.getDefault("gravity", 0.0)
|
|
|
|
: param_.getDefault("gravity", unit::gravity);
|
|
|
|
|
|
|
|
// Geological properties
|
|
|
|
use_local_perm_ = param_.getDefault("use_local_perm", use_local_perm_);
|
|
|
|
geoprops_.reset(new DerivedGeology(grid, *fluidprops_, eclipse_state_, use_local_perm_, gravity_.data()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Initialise the reservoir state. Updated fluid props for SWATINIT.
|
|
|
|
// Writes to:
|
|
|
|
// state_
|
|
|
|
// threshold_pressures_
|
|
|
|
// fluidprops_ (if SWATINIT is used)
|
|
|
|
void setupState()
|
|
|
|
{
|
|
|
|
const PhaseUsage pu = Opm::phaseUsageFromDeck(deck_);
|
|
|
|
const Grid& grid = grid_init_->grid();
|
|
|
|
|
|
|
|
// Need old-style fluid object for init purposes (only).
|
|
|
|
BlackoilPropertiesFromDeck props( deck_, eclipse_state_, material_law_manager_,
|
|
|
|
Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::globalCell(grid),
|
|
|
|
Opm::UgGridHelpers::cartDims(grid),
|
|
|
|
param_);
|
|
|
|
|
2016-02-28 04:27:00 -06:00
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
// Init state variables (saturation and pressure).
|
|
|
|
if (param_.has("init_saturation")) {
|
2016-02-28 04:27:00 -06:00
|
|
|
state_.reset( new ReservoirState( Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::numFaces(grid),
|
|
|
|
props.numPhases() ));
|
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
initStateBasic(Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::globalCell(grid),
|
|
|
|
Opm::UgGridHelpers::cartDims(grid),
|
|
|
|
Opm::UgGridHelpers::numFaces(grid),
|
|
|
|
Opm::UgGridHelpers::faceCells(grid),
|
|
|
|
Opm::UgGridHelpers::beginFaceCentroids(grid),
|
|
|
|
Opm::UgGridHelpers::beginCellCentroids(grid),
|
|
|
|
Opm::UgGridHelpers::dimensions(grid),
|
2016-02-28 04:27:00 -06:00
|
|
|
props, param_, gravity_[2], *state_);
|
2015-12-11 10:01:08 -06:00
|
|
|
|
2016-02-28 04:27:00 -06:00
|
|
|
initBlackoilSurfvol(Opm::UgGridHelpers::numCells(grid), props, *state_);
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
enum { Oil = BlackoilPhases::Liquid, Gas = BlackoilPhases::Vapour };
|
|
|
|
if (pu.phase_used[Oil] && pu.phase_used[Gas]) {
|
|
|
|
const int numPhases = props.numPhases();
|
|
|
|
const int numCells = Opm::UgGridHelpers::numCells(grid);
|
2016-02-28 04:27:00 -06:00
|
|
|
|
|
|
|
// Uglyness 1: The state is a templated type, here we however make explicit use BlackoilState.
|
|
|
|
auto& gor = state_->getCellData( BlackoilState::GASOILRATIO );
|
|
|
|
const auto& surface_vol = state_->getCellData( BlackoilState::SURFACEVOL );
|
2015-12-11 10:01:08 -06:00
|
|
|
for (int c = 0; c < numCells; ++c) {
|
2016-02-28 04:27:00 -06:00
|
|
|
// Uglyness 2: Here we explicitly use the layout of the saturation in the surface_vol field.
|
|
|
|
gor[c] = surface_vol[ c * numPhases + pu.phase_pos[Gas]] / surface_vol[ c * numPhases + pu.phase_pos[Oil]];
|
2015-12-11 10:01:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (deck_->hasKeyword("EQUIL") && props.numPhases() == 3) {
|
2016-02-28 04:27:00 -06:00
|
|
|
// Which state class are we really using - what a f... mess?
|
|
|
|
state_.reset( new ReservoirState( Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::numFaces(grid),
|
|
|
|
props.numPhases()));
|
|
|
|
|
|
|
|
initStateEquil(grid, props, deck_, eclipse_state_, gravity_[2], *state_);
|
|
|
|
//state_.faceflux().resize(Opm::UgGridHelpers::numFaces(grid), 0.0);
|
2015-12-11 10:01:08 -06:00
|
|
|
} else {
|
2016-03-15 08:03:55 -05:00
|
|
|
state_.reset( new ReservoirState( Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::numFaces(grid),
|
|
|
|
props.numPhases()));
|
2015-12-11 10:01:08 -06:00
|
|
|
initBlackoilStateFromDeck(Opm::UgGridHelpers::numCells(grid),
|
|
|
|
Opm::UgGridHelpers::globalCell(grid),
|
|
|
|
Opm::UgGridHelpers::numFaces(grid),
|
|
|
|
Opm::UgGridHelpers::faceCells(grid),
|
|
|
|
Opm::UgGridHelpers::beginFaceCentroids(grid),
|
|
|
|
Opm::UgGridHelpers::beginCellCentroids(grid),
|
|
|
|
Opm::UgGridHelpers::dimensions(grid),
|
2016-02-28 04:27:00 -06:00
|
|
|
props, deck_, gravity_[2], *state_);
|
2015-12-11 10:01:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Threshold pressures.
|
|
|
|
std::map<std::pair<int, int>, double> maxDp;
|
2016-02-28 04:27:00 -06:00
|
|
|
computeMaxDp(maxDp, deck_, eclipse_state_, grid_init_->grid(), *state_, props, gravity_[2]);
|
2015-12-11 10:01:08 -06:00
|
|
|
threshold_pressures_ = thresholdPressures(deck_, eclipse_state_, grid, maxDp);
|
2015-12-21 04:12:55 -06:00
|
|
|
std::vector<double> threshold_pressures_nnc = thresholdPressuresNNC(eclipse_state_, geoprops_->nnc(), maxDp);
|
|
|
|
threshold_pressures_.insert(threshold_pressures_.end(), threshold_pressures_nnc.begin(), threshold_pressures_nnc.end());
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
// The capillary pressure is scaled in fluidprops_ to match the scaled capillary pressure in props.
|
|
|
|
if (deck_->hasKeyword("SWATINIT")) {
|
|
|
|
const int numCells = Opm::UgGridHelpers::numCells(grid);
|
|
|
|
std::vector<int> cells(numCells);
|
|
|
|
for (int c = 0; c < numCells; ++c) { cells[c] = c; }
|
2016-02-28 04:27:00 -06:00
|
|
|
std::vector<double> pc = state_->saturation();
|
|
|
|
props.capPress(numCells, state_->saturation().data(), cells.data(), pc.data(), nullptr);
|
|
|
|
fluidprops_->setSwatInitScaling(state_->saturation(), pc);
|
2015-12-11 10:01:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Distribute the grid, properties and state.
|
|
|
|
// Writes to:
|
|
|
|
// grid_init_->grid()
|
|
|
|
// state_
|
|
|
|
// fluidprops_
|
|
|
|
// geoprops_
|
|
|
|
// material_law_manager_
|
|
|
|
// parallel_information_
|
|
|
|
void distributeData()
|
|
|
|
{
|
|
|
|
// At this point all properties and state variables are correctly initialized
|
|
|
|
// If there are more than one processors involved, we now repartition the grid
|
|
|
|
// and initilialize new properties and states for it.
|
|
|
|
if (must_distribute_) {
|
2016-02-18 09:52:54 -06:00
|
|
|
distributeGridAndData(grid_init_->grid(), deck_, eclipse_state_,
|
2016-02-28 04:27:00 -06:00
|
|
|
*state_, *fluidprops_, *geoprops_,
|
2016-02-18 09:52:54 -06:00
|
|
|
material_law_manager_, threshold_pressures_,
|
|
|
|
parallel_information_, use_local_perm_);
|
2015-12-11 10:01:08 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-29 07:59:18 -05:00
|
|
|
// Extract messages from parser.
|
2016-02-18 22:45:23 -06:00
|
|
|
// Writes to:
|
2016-04-29 07:59:18 -05:00
|
|
|
// OpmLog singleton.
|
2016-04-29 01:13:21 -05:00
|
|
|
void extractMessages()
|
|
|
|
{
|
2016-04-29 07:58:44 -05:00
|
|
|
auto extractMessage = [](const Message& msg) {
|
|
|
|
auto log_type = detail::convertMessageType(msg.mtype);
|
2016-04-29 01:13:21 -05:00
|
|
|
const auto& location = msg.location;
|
|
|
|
if (location) {
|
|
|
|
OpmLog::addMessage(log_type, Log::fileMessage(location.filename, location.lineno, msg.message));
|
|
|
|
} else {
|
|
|
|
OpmLog::addMessage(log_type, msg.message);
|
|
|
|
}
|
2016-04-29 07:58:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// Extract messages from Deck.
|
|
|
|
for(const auto& msg : deck_->getMessageContainer()) {
|
|
|
|
extractMessage(msg);
|
2016-04-29 01:13:21 -05:00
|
|
|
}
|
2016-04-29 07:58:44 -05:00
|
|
|
|
|
|
|
// Extract messages from EclipseState.
|
2016-04-29 01:13:21 -05:00
|
|
|
for (const auto& msg : eclipse_state_->getMessageContainer()) {
|
2016-04-29 07:58:44 -05:00
|
|
|
extractMessage(msg);
|
2016-04-29 01:13:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-29 07:59:18 -05:00
|
|
|
|
|
|
|
// Run diagnostics.
|
2016-02-18 22:45:23 -06:00
|
|
|
// Writes to:
|
2016-04-29 07:59:18 -05:00
|
|
|
// OpmLog singleton.
|
2016-02-18 22:45:23 -06:00
|
|
|
void runDiagnostics()
|
|
|
|
{
|
|
|
|
// Run relperm diagnostics
|
2016-03-31 23:33:02 -05:00
|
|
|
RelpermDiagnostics diagnostic;
|
2016-02-18 22:45:23 -06:00
|
|
|
diagnostic.diagnosis(eclipse_state_, deck_, grid_init_->grid());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-11 10:01:08 -06:00
|
|
|
// Setup output writer.
|
|
|
|
// Writes to:
|
|
|
|
// output_writer_
|
|
|
|
void setupOutputWriter()
|
|
|
|
{
|
|
|
|
// create output writer after grid is distributed, otherwise the parallel output
|
|
|
|
// won't work correctly since we need to create a mapping from the distributed to
|
|
|
|
// the global view
|
|
|
|
output_writer_.reset(new BlackoilOutputWriter(grid_init_->grid(),
|
|
|
|
param_,
|
|
|
|
eclipse_state_,
|
|
|
|
Opm::phaseUsageFromDeck(deck_),
|
|
|
|
fluidprops_->permeability()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Setup linear solver.
|
|
|
|
// Writes to:
|
|
|
|
// fis_solver_
|
|
|
|
void setupLinearSolver()
|
|
|
|
{
|
|
|
|
const std::string cprSolver = "cpr";
|
|
|
|
const std::string interleavedSolver = "interleaved";
|
|
|
|
const std::string directSolver = "direct";
|
|
|
|
const std::string flowDefaultSolver = interleavedSolver;
|
|
|
|
|
|
|
|
std::shared_ptr<const Opm::SimulationConfig> simCfg = eclipse_state_->getSimulationConfig();
|
|
|
|
std::string solver_approach = flowDefaultSolver;
|
|
|
|
|
|
|
|
if (param_.has("solver_approach")) {
|
|
|
|
solver_approach = param_.get<std::string>("solver_approach");
|
|
|
|
} else {
|
|
|
|
if (simCfg->useCPR()) {
|
|
|
|
solver_approach = cprSolver;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (solver_approach == cprSolver) {
|
|
|
|
fis_solver_.reset(new NewtonIterationBlackoilCPR(param_, parallel_information_));
|
|
|
|
} else if (solver_approach == interleavedSolver) {
|
|
|
|
fis_solver_.reset(new NewtonIterationBlackoilInterleaved(param_, parallel_information_));
|
|
|
|
} else if (solver_approach == directSolver) {
|
|
|
|
fis_solver_.reset(new NewtonIterationBlackoilSimple(param_, parallel_information_));
|
|
|
|
} else {
|
|
|
|
OPM_THROW( std::runtime_error , "Internal error - solver approach " << solver_approach << " not recognized.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Run the simulator.
|
|
|
|
// Returns EXIT_SUCCESS if it does not throw.
|
|
|
|
int runSimulator()
|
|
|
|
{
|
|
|
|
Opm::ScheduleConstPtr schedule = eclipse_state_->getSchedule();
|
|
|
|
Opm::TimeMapConstPtr timeMap(schedule->getTimeMap());
|
|
|
|
SimulatorTimer simtimer;
|
|
|
|
|
|
|
|
// initialize variables
|
2016-01-05 05:39:02 -06:00
|
|
|
const auto initConfig = eclipse_state_->getInitConfig();
|
2016-02-29 04:05:35 -06:00
|
|
|
simtimer.init(timeMap, (size_t)initConfig->getRestartStep());
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!schedule->initOnly()) {
|
|
|
|
if (output_cout_) {
|
|
|
|
std::cout << "\n\n================ Starting main simulation loop ===============\n"
|
|
|
|
<< std::flush;
|
|
|
|
}
|
|
|
|
|
2016-02-28 04:27:00 -06:00
|
|
|
SimulatorReport fullReport = simulator_->run(simtimer, *state_);
|
2015-12-11 10:01:08 -06:00
|
|
|
|
|
|
|
if (output_cout_) {
|
|
|
|
std::cout << "\n\n================ End of simulation ===============\n\n";
|
|
|
|
fullReport.reportFullyImplicit(std::cout);
|
2015-12-14 03:21:21 -06:00
|
|
|
if (param_.anyUnused()) {
|
|
|
|
// This allows a user to catch typos and misunderstandings in the
|
|
|
|
// use of simulator parameters.
|
|
|
|
std::cout << "-------------------- Unused parameters: --------------------\n";
|
|
|
|
param_.displayUsage();
|
|
|
|
std::cout << "----------------------------------------------------------------" << std::endl;
|
|
|
|
}
|
2015-12-11 10:01:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (output_to_files_) {
|
|
|
|
std::string filename = output_dir_ + "/walltime.txt";
|
|
|
|
std::fstream tot_os(filename.c_str(), std::fstream::trunc | std::fstream::out);
|
|
|
|
fullReport.reportParam(tot_os);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
output_writer_->writeInit( simtimer );
|
|
|
|
if (output_cout_) {
|
|
|
|
std::cout << "\n\n================ Simulation turned off ===============\n" << std::flush;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-14 06:51:59 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Access the most-derived class used for
|
|
|
|
// static polymorphism (CRTP).
|
|
|
|
Implementation& asImpl()
|
|
|
|
{
|
|
|
|
return static_cast<Implementation&>(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}; // class FlowMainBase
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The FlowMain class is the basic black-oil simulator case.
|
|
|
|
template <class Grid, class Simulator>
|
|
|
|
class FlowMain : public FlowMainBase<FlowMain<Grid, Simulator>, Grid, Simulator>
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
using Base = FlowMainBase<FlowMain<Grid, Simulator>, Grid, Simulator>;
|
|
|
|
friend Base;
|
|
|
|
|
|
|
|
// Create simulator instance.
|
|
|
|
// Writes to:
|
|
|
|
// simulator_
|
|
|
|
void createSimulator()
|
|
|
|
{
|
|
|
|
// Create the simulator instance.
|
|
|
|
Base::simulator_.reset(new Simulator(Base::param_,
|
|
|
|
Base::grid_init_->grid(),
|
|
|
|
*Base::geoprops_,
|
|
|
|
*Base::fluidprops_,
|
|
|
|
Base::rock_comp_->isActive() ? Base::rock_comp_.get() : nullptr,
|
|
|
|
*Base::fis_solver_,
|
|
|
|
Base::gravity_.data(),
|
|
|
|
Base::deck_->hasKeyword("DISGAS"),
|
|
|
|
Base::deck_->hasKeyword("VAPOIL"),
|
|
|
|
Base::eclipse_state_,
|
|
|
|
*Base::output_writer_,
|
|
|
|
Base::threshold_pressures_));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-09 02:56:09 -06:00
|
|
|
|
2015-12-08 03:36:44 -06:00
|
|
|
|
2016-04-29 07:59:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
|
|
|
|
boost::filesystem::path simulationCaseName( const std::string& casename ) {
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
|
|
|
const auto exists = []( const fs::path& f ) -> bool {
|
|
|
|
if( !fs::exists( f ) ) return false;
|
|
|
|
|
|
|
|
if( fs::is_regular_file( f ) ) return true;
|
|
|
|
|
|
|
|
return fs::is_symlink( f )
|
|
|
|
&& fs::is_regular_file( fs::read_symlink( f ) );
|
|
|
|
};
|
|
|
|
|
|
|
|
auto simcase = fs::path( casename );
|
|
|
|
|
|
|
|
if( exists( simcase ) ) {
|
|
|
|
return simcase;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( const auto& ext : { std::string("data"), std::string("DATA") } ) {
|
|
|
|
if( exists( simcase.replace_extension( ext ) ) ) {
|
|
|
|
return simcase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw std::invalid_argument( "Cannot find input case " + casename );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int64_t convertMessageType(const Message::type& mtype)
|
|
|
|
{
|
|
|
|
switch (mtype) {
|
|
|
|
case Message::type::Debug:
|
|
|
|
return Log::MessageType::Debug;
|
|
|
|
case Message::type::Info:
|
|
|
|
return Log::MessageType::Info;
|
|
|
|
case Message::type::Warning:
|
|
|
|
return Log::MessageType::Warning;
|
|
|
|
case Message::type::Error:
|
|
|
|
return Log::MessageType::Error;
|
|
|
|
case Message::type::Problem:
|
|
|
|
return Log::MessageType::Problem;
|
|
|
|
case Message::type::Bug:
|
|
|
|
return Log::MessageType::Bug;
|
|
|
|
}
|
|
|
|
throw std::logic_error("Invalid messages type!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-12-08 03:36:44 -06:00
|
|
|
} // namespace Opm
|
|
|
|
|
|
|
|
#endif // OPM_FLOWMAIN_HEADER_INCLUDED
|