mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #5495 from akva2/move_linsol_params_to_params
Move linear solver parameters to Opm::Parameters namespace
This commit is contained in:
commit
5ec2a499bc
@ -128,7 +128,7 @@ namespace Opm {
|
||||
registerAllParameters_<TypeTag>(/*finalizeRegistration=*/false);
|
||||
|
||||
// hide the parameters unused by flow. TODO: this is a pain to maintain
|
||||
Parameters::hideParam<TypeTag, Properties::EnableGravity>();
|
||||
Parameters::hideParam<TypeTag, Parameters::EnableGravity>();
|
||||
Parameters::hideParam<TypeTag, Parameters::EnableGridAdaptation>();
|
||||
|
||||
// this parameter is actually used in eWoms, but the flow well model
|
||||
|
@ -392,7 +392,7 @@ public:
|
||||
// disables gravity, else the standard value of the gravity constant at sea level
|
||||
// on earth is used
|
||||
this->gravity_ = 0.0;
|
||||
if (Parameters::get<TypeTag, Properties::EnableGravity>())
|
||||
if (Parameters::get<TypeTag, Parameters::EnableGravity>())
|
||||
this->gravity_[dim - 1] = 9.80665;
|
||||
if (!eclState.getInitConfig().hasGravity())
|
||||
this->gravity_[dim - 1] = 0.0;
|
||||
|
@ -238,12 +238,6 @@ struct AquiferModel<TypeTag, TTag::FlowBaseProblem> {
|
||||
using type = BaseAquiferModel<TypeTag>;
|
||||
};
|
||||
|
||||
// Enable gravity
|
||||
template<class TypeTag>
|
||||
struct EnableGravity<TypeTag, TTag::FlowBaseProblem> {
|
||||
static constexpr bool value = true;
|
||||
};
|
||||
|
||||
// Enable diffusion
|
||||
template<class TypeTag>
|
||||
struct EnableDiffusion<TypeTag, TTag::FlowBaseProblem> {
|
||||
@ -471,10 +465,10 @@ struct ExplicitRockCompaction<TypeTag, TTag::FlowBaseProblem> {
|
||||
|
||||
namespace Opm::Parameters {
|
||||
|
||||
// Disable the VTK output by default for this problem ...
|
||||
// Enable gravity
|
||||
template<class TypeTag>
|
||||
struct EnableVtkOutput<TypeTag, Properties::TTag::FlowBaseProblem>
|
||||
{ static constexpr bool value = false; };
|
||||
struct EnableGravity<TypeTag, Properties::TTag::FlowBaseProblem>
|
||||
{ static constexpr bool value = true; };
|
||||
|
||||
// the cache for intensive quantities can be used for ECL problems and also yields a
|
||||
// decent speedup...
|
||||
@ -487,6 +481,11 @@ template<class TypeTag>
|
||||
struct EnableStorageCache<TypeTag, Properties::TTag::FlowBaseProblem>
|
||||
{ static constexpr bool value = true; };
|
||||
|
||||
// Disable the VTK output by default for this problem ...
|
||||
template<class TypeTag>
|
||||
struct EnableVtkOutput<TypeTag, Properties::TTag::FlowBaseProblem>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
// The default for the end time of the simulation [s]
|
||||
//
|
||||
// By default, stop it after the universe will probably have stopped
|
||||
|
@ -26,215 +26,203 @@
|
||||
|
||||
#include <opm/simulators/linalg/MILU.hpp>
|
||||
|
||||
#include <opm/simulators/linalg/linalgparameters.hh>
|
||||
#include <opm/simulators/linalg/linalgproperties.hh>
|
||||
#include <opm/models/utils/parametersystem.hh>
|
||||
|
||||
namespace Opm {
|
||||
|
||||
template <class TypeTag>
|
||||
class ISTLSolverBda;
|
||||
|
||||
template <class TypeTag>
|
||||
class ISTLSolver;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
namespace Opm::Properties {
|
||||
|
||||
namespace TTag {
|
||||
|
||||
struct FlowIstlSolverParams {};
|
||||
|
||||
}
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolverReduction {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct LinearSolverReduction { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct RelaxedLinearSolverReduction {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct RelaxedLinearSolverReduction { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolverMaxIter {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct LinearSolverMaxIter { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolverRestart {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
//
|
||||
// LinearSolverVerbosity defined in opm-models
|
||||
//
|
||||
struct LinearSolverRestart { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct IluRelaxation {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct IluRelaxation { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct IluFillinLevel {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct IluFillinLevel { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct MiluVariant {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct MiluVariant { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct IluRedblack {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct IluRedblack { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct IluReorderSpheres {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct IluReorderSpheres { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct UseGmres {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct UseGmres { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolverIgnoreConvergenceFailure{
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct LinearSolverIgnoreConvergenceFailure { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct ScaleLinearSystem {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct ScaleLinearSystem { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolver {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct LinearSolver { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct LinearSolverPrintJsonDefinition {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct LinearSolverPrintJsonDefinition { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct CprReuseSetup {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct CprReuseSetup { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct CprReuseInterval {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct CprReuseInterval { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct AcceleratorMode {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct AcceleratorMode { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct BdaDeviceId {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct BdaDeviceId { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct OpenclPlatformId {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct OpenclPlatformId { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag, class MyTypeTag>
|
||||
struct OpenclIluParallel {
|
||||
using type = UndefinedProperty;
|
||||
};
|
||||
struct OpenclIluParallel { using type = UndefinedProperty; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverReduction<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
struct LinearSolverReduction<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{
|
||||
using type = GetPropType<TypeTag, Scalar>;
|
||||
static constexpr type value = 1e-2;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct RelaxedLinearSolverReduction<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
struct RelaxedLinearSolverReduction<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{
|
||||
using type = GetPropType<TypeTag, Scalar>;
|
||||
static constexpr type value = 1e-2;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverMaxIter<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 200;
|
||||
};
|
||||
struct LinearSolverMaxIter<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 200; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverRestart<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 40;
|
||||
};
|
||||
struct LinearSolverRestart<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 40; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverVerbosity<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 0;
|
||||
};
|
||||
template<class TypeTag>
|
||||
struct IluRelaxation<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
struct IluRelaxation<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{
|
||||
using type = GetPropType<TypeTag, Scalar>;
|
||||
static constexpr type value = 0.9;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct IluFillinLevel<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 0;
|
||||
};
|
||||
struct IluFillinLevel<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 0; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct MiluVariant<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr auto value = "ILU";
|
||||
};
|
||||
struct MiluVariant<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr auto value = "ILU"; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct IluRedblack<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
struct IluRedblack<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct IluReorderSpheres<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
struct IluReorderSpheres<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct UseGmres<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
struct UseGmres<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverIgnoreConvergenceFailure<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
struct LinearSolverIgnoreConvergenceFailure<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct ScaleLinearSystem<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = false;
|
||||
};
|
||||
struct ScaleLinearSystem<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = false; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolver<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr auto value = "ilu0";
|
||||
};
|
||||
struct LinearSolver<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr auto value = "ilu0"; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverPrintJsonDefinition<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr auto value = true;
|
||||
};
|
||||
struct LinearSolverPrintJsonDefinition<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr auto value = true; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct CprReuseSetup<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 4;
|
||||
};
|
||||
struct CprReuseSetup<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 4; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct CprReuseInterval<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 30;
|
||||
};
|
||||
struct CprReuseInterval<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 30; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct AcceleratorMode<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr auto value = "none";
|
||||
};
|
||||
struct AcceleratorMode<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr auto value = "none"; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct BdaDeviceId<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 0;
|
||||
};
|
||||
struct BdaDeviceId<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 0; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct OpenclPlatformId<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr int value = 0;
|
||||
};
|
||||
struct OpenclPlatformId<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 0; };
|
||||
|
||||
template<class TypeTag>
|
||||
struct OpenclIluParallel<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
static constexpr bool value = true; // note: false should only be used in debug
|
||||
};
|
||||
struct OpenclIluParallel<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{ static constexpr bool value = true; }; // note: false should only be used in debug
|
||||
|
||||
// Set the backend to be used.
|
||||
template<class TypeTag>
|
||||
struct LinearSolverBackend<TypeTag, TTag::FlowIstlSolverParams> {
|
||||
struct LinearSolverBackend<TypeTag, TTag::FlowIstlSolverParams>
|
||||
{
|
||||
#if COMPILE_BDA_BRIDGE
|
||||
using type = ISTLSolverBda<TypeTag>;
|
||||
#else
|
||||
using type = ISTLSolver<TypeTag>;
|
||||
#endif
|
||||
};
|
||||
|
||||
} // namespace Opm::Properties
|
||||
|
||||
namespace Opm
|
||||
namespace Opm::Parameters {
|
||||
|
||||
template<class TypeTag>
|
||||
struct LinearSolverVerbosity<TypeTag, Properties::TTag::FlowIstlSolverParams>
|
||||
{ static constexpr int value = 0; };
|
||||
|
||||
} // namespace Opm::Properties
|
||||
|
||||
namespace Opm {
|
||||
|
||||
/// This class carries all parameters for the NewtonIterationBlackoilInterleaved class.
|
||||
struct FlowLinearSolverParameters
|
||||
{
|
||||
|
||||
|
||||
/// This class carries all parameters for the NewtonIterationBlackoilInterleaved class.
|
||||
struct FlowLinearSolverParameters
|
||||
{
|
||||
double linear_solver_reduction_;
|
||||
double relaxed_linear_solver_reduction_;
|
||||
int linear_solver_maxiter_;
|
||||
@ -265,7 +253,7 @@ namespace Opm
|
||||
relaxed_linear_solver_reduction_ = Parameters::get<TypeTag, Properties::RelaxedLinearSolverReduction>();
|
||||
linear_solver_maxiter_ = Parameters::get<TypeTag, Properties::LinearSolverMaxIter>();
|
||||
linear_solver_restart_ = Parameters::get<TypeTag, Properties::LinearSolverRestart>();
|
||||
linear_solver_verbosity_ = Parameters::get<TypeTag, Properties::LinearSolverVerbosity>();
|
||||
linear_solver_verbosity_ = Parameters::get<TypeTag, Parameters::LinearSolverVerbosity>();
|
||||
ilu_relaxation_ = Parameters::get<TypeTag, Properties::IluRelaxation>();
|
||||
ilu_fillin_level_ = Parameters::get<TypeTag, Properties::IluFillinLevel>();
|
||||
ilu_milu_ = convertString2Milu(Parameters::get<TypeTag, Properties::MiluVariant>());
|
||||
@ -303,7 +291,7 @@ namespace Opm
|
||||
("The maximum number of iterations of the linear solver");
|
||||
Parameters::registerParam<TypeTag, Properties::LinearSolverRestart>
|
||||
("The number of iterations after which GMRES is restarted");
|
||||
Parameters::registerParam<TypeTag, Properties::LinearSolverVerbosity>
|
||||
Parameters::registerParam<TypeTag, Parameters::LinearSolverVerbosity>
|
||||
("The verbosity level of the linear solver (0: off, 2: all)");
|
||||
Parameters::registerParam<TypeTag, Properties::IluRelaxation>
|
||||
("The relaxation factor of the linear solver's ILU preconditioner");
|
||||
@ -390,12 +378,8 @@ namespace Opm
|
||||
opencl_platform_id_ = 0;
|
||||
opencl_ilu_parallel_ = true;
|
||||
}
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
} // namespace Opm
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // OPM_FLOWLINEARSOLVERPARAMETERS_HEADER_INCLUDED
|
||||
|
Loading…
Reference in New Issue
Block a user