2021-12-01 07:00:21 -06:00
|
|
|
/*
|
|
|
|
Copyright 2020, NORCE AS
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
2023-08-03 06:54:54 -05:00
|
|
|
#include <config.h>
|
|
|
|
|
2023-08-01 06:41:51 -05:00
|
|
|
#include <dune/alugrid/grid.hh>
|
2023-08-03 06:54:54 -05:00
|
|
|
#include <opm/simulators/flow/Main.hpp>
|
|
|
|
|
|
|
|
// for equilgrid in writer
|
|
|
|
// need to include this before eclgenericwriter_impl.hh due to specializations.
|
|
|
|
#include <opm/grid/CpGrid.hpp>
|
|
|
|
#include <opm/grid/cpgrid/GridHelpers.hpp>
|
|
|
|
|
|
|
|
// these are not explicitly instanced in library
|
|
|
|
#include <ebos/collecttoiorank_impl.hh>
|
2023-08-03 05:01:34 -05:00
|
|
|
#include <ebos/eclgenericproblem_impl.hh>
|
2023-08-03 06:54:54 -05:00
|
|
|
#include <ebos/eclgenericthresholdpressure_impl.hh>
|
|
|
|
#include <ebos/eclgenerictracermodel_impl.hh>
|
|
|
|
#include <ebos/eclgenericwriter_impl.hh>
|
|
|
|
#include <ebos/ecltransmissibility_impl.hh>
|
|
|
|
#include <ebos/equil/initstateequil_impl.hh>
|
2024-02-02 03:46:44 -06:00
|
|
|
#include <opm/simulators/flow/AluGridVanguard.hpp>
|
2024-01-30 04:20:17 -06:00
|
|
|
#include <opm/simulators/utils/GridDataOutput_impl.hpp>
|
2023-08-03 06:54:54 -05:00
|
|
|
|
2022-09-26 03:43:42 -05:00
|
|
|
namespace Opm {
|
|
|
|
namespace Properties {
|
|
|
|
namespace TTag {
|
2024-02-06 07:47:31 -06:00
|
|
|
struct FlowProblemAlugrid {
|
2024-02-06 07:47:31 -06:00
|
|
|
using InheritsFrom = std::tuple<FlowProblem>;
|
2021-12-01 07:00:21 -06:00
|
|
|
};
|
2022-09-26 03:43:42 -05:00
|
|
|
}
|
2023-08-01 06:41:51 -05:00
|
|
|
|
|
|
|
template<class TypeTag>
|
2024-02-06 07:47:31 -06:00
|
|
|
struct Grid<TypeTag, TTag::FlowProblemAlugrid> {
|
2023-08-01 06:41:51 -05:00
|
|
|
static const int dim = 3;
|
2023-08-09 02:03:59 -05:00
|
|
|
#if HAVE_MPI
|
|
|
|
using type = Dune::ALUGrid<dim, dim, Dune::cube, Dune::nonconforming,Dune::ALUGridMPIComm>;
|
|
|
|
#else
|
|
|
|
using type = Dune::ALUGrid<dim, dim, Dune::cube, Dune::nonconforming, Dune::ALUGridNoComm>;
|
|
|
|
#endif
|
2023-08-01 06:41:51 -05:00
|
|
|
};
|
2024-02-06 07:47:31 -06:00
|
|
|
|
2023-08-01 06:41:51 -05:00
|
|
|
// alugrid need cp grid as equilgrid
|
|
|
|
template<class TypeTag>
|
2024-02-06 07:47:31 -06:00
|
|
|
struct EquilGrid<TypeTag, TTag::FlowProblemAlugrid> {
|
2023-08-01 06:41:51 -05:00
|
|
|
using type = Dune::CpGrid;
|
|
|
|
};
|
|
|
|
template<class TypeTag>
|
2024-02-06 07:47:31 -06:00
|
|
|
struct Vanguard<TypeTag, TTag::FlowProblemAlugrid> {
|
2024-02-02 03:46:44 -06:00
|
|
|
using type = Opm::AluGridVanguard<TypeTag>;
|
2023-08-01 06:41:51 -05:00
|
|
|
};
|
2021-12-01 07:00:21 -06:00
|
|
|
}
|
2022-09-26 03:43:42 -05:00
|
|
|
}
|
2024-02-06 07:47:31 -06:00
|
|
|
|
2021-12-01 07:00:21 -06:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2024-02-06 07:47:31 -06:00
|
|
|
using TypeTag = Opm::Properties::TTag::FlowProblemAlugrid;
|
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;
|
2021-12-01 07:00:21 -06:00
|
|
|
}
|