2019-11-07 02:39:42 -06:00
|
|
|
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
// vi: set et ts=4 sw=4 sts=4:
|
|
|
|
/*
|
|
|
|
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 2 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/>.
|
|
|
|
|
|
|
|
Consult the COPYING file in the top-level source directory of this
|
|
|
|
module for the precise wording of the license and the list of
|
|
|
|
copyright holders.
|
|
|
|
*/
|
|
|
|
/*!
|
|
|
|
* \file
|
|
|
|
*
|
|
|
|
* \brief A general-purpose simulator for ECL decks using the black-oil model.
|
|
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "ebos.hh"
|
|
|
|
#include "startEbos.hh"
|
|
|
|
|
2020-08-21 06:42:08 -05:00
|
|
|
namespace Opm::Properties {
|
2019-11-07 02:39:42 -06:00
|
|
|
|
2020-08-27 03:30:29 -05:00
|
|
|
namespace TTag {
|
|
|
|
struct EbosBrineTypeTag {
|
|
|
|
using InheritsFrom = std::tuple<EbosTypeTag>;
|
|
|
|
};
|
|
|
|
}
|
2019-11-07 02:39:42 -06:00
|
|
|
|
2019-12-03 10:48:17 -06:00
|
|
|
// enable the brine extension of the black oil model
|
2020-08-27 04:38:38 -05:00
|
|
|
template<class TypeTag>
|
|
|
|
struct EnableBrine<TypeTag, TTag::EbosBrineTypeTag> {
|
|
|
|
static constexpr bool value = true;
|
|
|
|
};
|
2019-11-07 02:39:42 -06:00
|
|
|
|
2020-08-21 06:42:08 -05:00
|
|
|
} // namespace Opm::Properties
|
2019-11-07 02:39:42 -06:00
|
|
|
|
|
|
|
namespace Opm {
|
|
|
|
|
2020-08-17 14:15:46 -05:00
|
|
|
void ebosBrineSetDeck(std::unique_ptr<Opm::Deck> deck,
|
|
|
|
std::unique_ptr<Opm::ParseContext> parseContext,
|
|
|
|
std::unique_ptr<Opm::ErrorGuard> errorGuard,
|
|
|
|
double externalSetupTime)
|
2019-11-07 02:39:42 -06:00
|
|
|
{
|
2020-08-21 06:59:53 -05:00
|
|
|
using ProblemTypeTag = Properties::TTag::EbosBrineTypeTag;
|
2020-08-26 03:49:52 -05:00
|
|
|
using Vanguard = GetPropType<ProblemTypeTag, Properties::Vanguard>;
|
2019-11-07 02:39:42 -06:00
|
|
|
|
|
|
|
Vanguard::setExternalSetupTime(externalSetupTime);
|
2020-08-17 14:15:46 -05:00
|
|
|
Vanguard::setExternalParseContext(std::move(parseContext));
|
|
|
|
Vanguard::setExternalErrorGuard(std::move(errorGuard));
|
|
|
|
Vanguard::setExternalDeck(std::move(deck));
|
2019-11-07 02:39:42 -06:00
|
|
|
}
|
|
|
|
|
2019-12-03 10:48:17 -06:00
|
|
|
int ebosBrineMain(int argc, char **argv)
|
2019-11-07 02:39:42 -06:00
|
|
|
{
|
2020-08-21 06:59:53 -05:00
|
|
|
using ProblemTypeTag = Properties::TTag::EbosBrineTypeTag;
|
2019-11-07 02:39:42 -06:00
|
|
|
return Opm::startEbos<ProblemTypeTag>(argc, argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|