Files
opm-simulators/flow/flow_ebos_blackoil.cpp
T

73 lines
2.5 KiB
C++
Raw Normal View History

2017-10-05 16:55:30 +02:00
/*
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 "config.h"
2018-09-20 10:58:27 +02:00
#include <flow/flow_ebos_blackoil.hpp>
2017-10-05 16:55:30 +02:00
#include <opm/material/common/ResetLocale.hpp>
#include <opm/simulators/flow/SimulatorFullyImplicitBlackoilEbos.hpp>
#include <opm/simulators/flow/FlowMainEbos.hpp>
2017-10-05 16:55:30 +02:00
#if HAVE_DUNE_FEM
#include <dune/fem/misc/mpimanager.hh>
#else
#include <dune/common/parallel/mpihelper.hh>
#endif
namespace Opm {
void flowEbosBlackoilSetDeck(double setupTime, std::unique_ptr<Deck> deck,
std::unique_ptr<EclipseState> eclState,
std::unique_ptr<Schedule> schedule,
std::unique_ptr<SummaryConfig> summaryConfig)
2017-10-05 16:55:30 +02:00
{
2020-08-21 13:59:53 +02:00
using TypeTag = Properties::TTag::EclFlowProblem;
using Vanguard = GetPropType<TypeTag, Properties::Vanguard>;
2017-10-05 16:55:30 +02:00
2019-02-05 16:51:05 +01:00
Vanguard::setExternalSetupTime(setupTime);
Vanguard::setExternalDeck(std::move(deck));
Vanguard::setExternalEclState(std::move(eclState));
Vanguard::setExternalSchedule(std::move(schedule));
Vanguard::setExternalSummaryConfig(std::move(summaryConfig));
2017-10-05 16:55:30 +02:00
}
2020-08-21 13:59:53 +02:00
std::unique_ptr<Opm::FlowMainEbos<Properties::TTag::EclFlowProblem>>
2020-06-25 20:04:19 +02:00
flowEbosBlackoilMainInit(int argc, char** argv, bool outputCout, bool outputFiles)
2017-10-05 16:55:30 +02:00
{
// we always want to use the default locale, and thus spare us the trouble
// with incorrect locale settings.
Opm::resetLocale();
#if HAVE_DUNE_FEM
Dune::Fem::MPIManager::initialize(argc, argv);
#else
Dune::MPIHelper::instance(argc, argv);
#endif
2020-08-21 13:59:53 +02:00
return std::make_unique<Opm::FlowMainEbos<Properties::TTag::EclFlowProblem>>(
2020-06-25 20:04:19 +02:00
argc, argv, outputCout, outputFiles);
2020-05-11 17:57:43 +02:00
}
// ----------------- Main program -----------------
int flowEbosBlackoilMain(int argc, char** argv, bool outputCout, bool outputFiles)
{
2020-06-25 20:04:19 +02:00
auto mainfunc = flowEbosBlackoilMainInit(argc, argv, outputCout, outputFiles);
return mainfunc->execute();
2017-10-05 16:55:30 +02:00
}
}