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/>.
|
|
|
|
|
*/
|
2024-02-01 13:39:45 +01:00
|
|
|
#ifndef FLOW_BLACKOIL_TPFA_HPP
|
|
|
|
|
#define FLOW_BLACKOIL_TPFA_HPP
|
2017-10-05 16:55:30 +02:00
|
|
|
|
2022-10-04 11:44:35 +02:00
|
|
|
#include <memory>
|
2024-02-01 13:39:45 +01:00
|
|
|
#include <tuple>
|
2022-10-04 11:44:35 +02:00
|
|
|
|
2024-02-06 14:47:31 +01:00
|
|
|
namespace Opm::Properties::TTag {
|
|
|
|
|
struct FlowProblem;
|
2024-02-06 14:47:31 +01:00
|
|
|
struct FlowProblemTPFA {
|
2024-02-06 14:47:31 +01:00
|
|
|
using InheritsFrom = std::tuple<FlowProblem>;
|
|
|
|
|
};
|
2022-10-04 11:44:35 +02:00
|
|
|
}
|
|
|
|
|
|
2017-10-05 16:55:30 +02:00
|
|
|
namespace Opm {
|
2021-04-29 10:07:46 +02:00
|
|
|
|
2021-11-01 08:33:17 +01:00
|
|
|
//! \brief Main function used in flow binary.
|
2024-02-01 10:54:43 +01:00
|
|
|
int flowBlackoilTpfaMain(int argc, char** argv, bool outputCout, bool outputFiles);
|
2021-11-01 08:33:17 +01:00
|
|
|
|
2024-01-31 14:14:50 +01:00
|
|
|
template<class TypeTag> class FlowMain;
|
2022-10-04 11:44:35 +02:00
|
|
|
|
|
|
|
|
//! \brief Initialization function used in flow binary and python simulator.
|
2024-02-06 14:47:31 +01:00
|
|
|
std::unique_ptr<FlowMain<Properties::TTag::FlowProblemTPFA>>
|
2024-02-01 10:54:43 +01:00
|
|
|
flowBlackoilTpfaMainInit(int argc, char** argv, bool outputCout, bool outputFiles);
|
2022-10-04 11:44:35 +02:00
|
|
|
|
2022-10-03 14:10:18 +02:00
|
|
|
//! \brief Main function used in flow_brine binary.
|
2024-02-01 10:54:43 +01:00
|
|
|
int flowBlackoilTpfaMainStandalone(int argc, char** argv);
|
2021-11-01 08:33:17 +01:00
|
|
|
|
2017-10-05 16:55:30 +02:00
|
|
|
}
|
|
|
|
|
|
2024-02-01 13:39:45 +01:00
|
|
|
#endif // FLOW_BLACKOIL_TPFA_HPP
|