mirror of
https://github.com/OPM/opm-upscaling.git
synced 2025-02-25 18:45:23 -06:00
we need to call mpi_init when compiled against mpi (in particular mpich) even if running with a single node. this fixes this across all apps in a uniform way (the dune-intended approach)
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
/*
|
|
Copyright 2009, 2010 SINTEF ICT, Applied Mathematics.
|
|
Copyright 2009, 2010 Statoil ASA.
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <opm/upscaling/SinglePhaseUpscaler.hpp>
|
|
#include <opm/core/utility/Units.hpp>
|
|
#include <iostream>
|
|
|
|
#include <dune/common/version.hh>
|
|
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
|
|
#include <dune/common/parallel/mpihelper.hh>
|
|
#else
|
|
#include <dune/common/mpihelper.hh>
|
|
#endif
|
|
|
|
using namespace Opm;
|
|
using namespace Opm::prefix;
|
|
using namespace Opm::unit;
|
|
|
|
int main(int argc, char** argv)
|
|
try
|
|
{
|
|
Dune::MPIHelper::instance(argc, argv);
|
|
|
|
Opm::parameter::ParameterGroup param(argc, argv);
|
|
// MPIHelper::instance(argc,argv);
|
|
SinglePhaseUpscaler upscaler;
|
|
upscaler.init(param);
|
|
SinglePhaseUpscaler::permtensor_t upscaled_K = upscaler.upscaleSinglePhase();
|
|
upscaled_K *= (1.0/(milli*darcy));
|
|
std::cout.precision(15);
|
|
std::cout << "Upscaled K in millidarcy:\n" << upscaled_K << std::endl;
|
|
}
|
|
catch (const std::exception &e) {
|
|
std::cerr << "Program threw an exception: " << e.what() << "\n";
|
|
throw;
|
|
}
|