Files
opm-simulators/ebos/ebos_polymer.cc
T

72 lines
2.2 KiB
C++
Raw Normal View History

2019-03-05 11:41:02 +01: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"
2019-10-07 14:51:23 +02:00
#include "startEbos.hh"
2019-03-05 11:41:02 +01:00
namespace Opm::Properties {
2019-03-05 11:41:02 +01:00
2020-08-27 10:30:29 +02:00
namespace TTag {
struct EbosPolymerTypeTag {
using InheritsFrom = std::tuple<EbosTypeTag>;
};
}
2019-03-05 11:41:02 +01:00
// enable the polymer extension of the black oil model
2020-08-27 11:38:38 +02:00
template<class TypeTag>
struct EnablePolymer<TypeTag, TTag::EbosPolymerTypeTag> {
static constexpr bool value = true;
};
2019-03-05 11:41:02 +01:00
} // namespace Opm::Properties
2019-03-05 11:41:02 +01:00
2019-09-05 17:04:39 +02:00
namespace Opm {
2019-06-11 10:22:11 +02:00
void ebosPolymerSetDeck(std::unique_ptr<Opm::Deck> deck,
std::unique_ptr<Opm::ParseContext> parseContext,
std::unique_ptr<Opm::ErrorGuard> errorGuard,
2019-09-05 17:04:39 +02:00
double externalSetupTime)
2019-06-11 10:22:11 +02:00
{
2020-08-21 13:59:53 +02:00
using ProblemTypeTag = Properties::TTag::EbosPolymerTypeTag;
using Vanguard = GetPropType<ProblemTypeTag, Properties::Vanguard>;
2019-06-11 10:22:11 +02:00
Vanguard::setExternalSetupTime(externalSetupTime);
Vanguard::setExternalParseContext(std::move(parseContext));
Vanguard::setExternalErrorGuard(std::move(errorGuard));
Vanguard::setExternalDeck(std::move(deck));
2019-06-11 10:22:11 +02:00
}
int ebosPolymerMain(int argc, char **argv)
2019-03-05 11:41:02 +01:00
{
2020-08-21 13:59:53 +02:00
using ProblemTypeTag = Properties::TTag::EbosPolymerTypeTag;
2019-10-07 14:51:23 +02:00
return Opm::startEbos<ProblemTypeTag>(argc, argv);
2019-03-05 11:41:02 +01:00
}
2019-06-11 10:22:11 +02:00
}