2022-10-03 07:10:18 -05: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"
|
|
|
|
|
2024-02-01 06:39:45 -06:00
|
|
|
#include <flow/flow_blackoil_legacyassembly.hpp>
|
2022-10-03 07:10:18 -05:00
|
|
|
|
|
|
|
#include <opm/material/common/ResetLocale.hpp>
|
2024-01-31 07:14:50 -06:00
|
|
|
#include <opm/simulators/flow/SimulatorFullyImplicitBlackoil.hpp>
|
2022-10-03 07:10:18 -05:00
|
|
|
#include <opm/simulators/flow/Main.hpp>
|
|
|
|
|
|
|
|
namespace Opm {
|
|
|
|
|
2024-02-06 07:47:31 -06:00
|
|
|
std::unique_ptr<FlowMain<Properties::TTag::FlowProblem>>
|
2024-02-01 03:54:43 -06:00
|
|
|
flowBlackoilMainInit(int argc, char** argv, bool outputCout, bool outputFiles)
|
2022-10-03 07:10:18 -05:00
|
|
|
{
|
|
|
|
// we always want to use the default locale, and thus spare us the trouble
|
|
|
|
// with incorrect locale settings.
|
|
|
|
resetLocale();
|
|
|
|
|
2024-02-06 07:47:31 -06:00
|
|
|
return std::make_unique<FlowMain<Properties::TTag::FlowProblem>>(
|
2022-10-03 07:10:18 -05:00
|
|
|
argc, argv, outputCout, outputFiles);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------- Main program -----------------
|
2024-02-01 03:54:43 -06:00
|
|
|
int flowBlackoilMain(int argc, char** argv, bool outputCout, bool outputFiles)
|
2022-10-03 07:10:18 -05:00
|
|
|
{
|
2024-02-01 03:54:43 -06:00
|
|
|
auto mainfunc = flowBlackoilMainInit(argc, argv, outputCout, outputFiles);
|
2022-10-03 07:10:18 -05:00
|
|
|
return mainfunc->execute();
|
|
|
|
}
|
|
|
|
|
2024-02-01 03:54:43 -06:00
|
|
|
int flowBlackoilMainStandalone(int argc, char** argv)
|
2022-10-03 07:10:18 -05:00
|
|
|
{
|
2024-02-06 07:47:31 -06:00
|
|
|
using TypeTag = Properties::TTag::FlowProblem;
|
2023-07-19 06:20:03 -05:00
|
|
|
auto mainObject = std::make_unique<Opm::Main>(argc, argv);
|
|
|
|
auto ret = mainObject->runStatic<TypeTag>();
|
|
|
|
// Destruct mainObject as the destructor calls MPI_Finalize!
|
|
|
|
mainObject.reset();
|
|
|
|
return ret;
|
2022-10-03 07:10:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|