mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #5152 from akva2/simulatorfullyimplicit_janitoring
SimulatorFullyImplicitBlackoil.hpp: Some janitoring
This commit is contained in:
@@ -22,7 +22,11 @@
|
||||
#ifndef OPM_SIMULATOR_FULLY_IMPLICIT_BLACKOIL_HEADER_INCLUDED
|
||||
#define OPM_SIMULATOR_FULLY_IMPLICIT_BLACKOIL_HEADER_INCLUDED
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <opm/common/ErrorMacros.hpp>
|
||||
|
||||
#include <opm/input/eclipse/Units/UnitSystem.hpp>
|
||||
|
||||
#include <opm/grid/utility/StopWatch.hpp>
|
||||
|
||||
#include <opm/simulators/aquifers/BlackoilAquiferModel.hpp>
|
||||
#include <opm/simulators/flow/BlackoilModel.hpp>
|
||||
@@ -37,14 +41,13 @@
|
||||
#include <opm/simulators/utils/moduleVersion.hpp>
|
||||
#include <opm/simulators/wells/WellState.hpp>
|
||||
|
||||
#include <opm/grid/utility/StopWatch.hpp>
|
||||
#if HAVE_HDF5
|
||||
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||
#endif
|
||||
|
||||
#include <opm/input/eclipse/Units/UnitSystem.hpp>
|
||||
|
||||
#include <opm/common/ErrorMacros.hpp>
|
||||
|
||||
#include <boost/date_time/gregorian/gregorian.hpp>
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include <cstddef>
|
||||
#include <filesystem>
|
||||
#include <memory>
|
||||
#include <optional>
|
||||
@@ -54,10 +57,6 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#if HAVE_HDF5
|
||||
#include <opm/simulators/utils/HDF5Serializer.hpp>
|
||||
#endif
|
||||
|
||||
namespace Opm::Properties {
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
@@ -163,15 +162,14 @@ public:
|
||||
using AquiferModel = GetPropType<TypeTag, Properties::EclAquiferModel>;
|
||||
|
||||
using TimeStepper = AdaptiveTimeStepping<TypeTag>;
|
||||
typedef BlackOilPolymerModule<TypeTag> PolymerModule;
|
||||
typedef BlackOilMICPModule<TypeTag> MICPModule;
|
||||
using PolymerModule = BlackOilPolymerModule<TypeTag>;
|
||||
using MICPModule = BlackOilMICPModule<TypeTag>;
|
||||
|
||||
using Model = BlackoilModel<TypeTag>;
|
||||
using Solver = NonlinearSolver<TypeTag, Model>;
|
||||
typedef typename Model::ModelParameters ModelParameters;
|
||||
typedef typename Solver::SolverParameters SolverParameters;
|
||||
typedef BlackoilWellModel<TypeTag> WellModel;
|
||||
|
||||
using ModelParameters = typename Model::ModelParameters;
|
||||
using SolverParameters = typename Solver::SolverParameters;
|
||||
using WellModel = BlackoilWellModel<TypeTag>;
|
||||
|
||||
/// Initialise from parameters and objects to observe.
|
||||
/// \param[in] param parameters, this class accepts the following:
|
||||
|
||||
Reference in New Issue
Block a user