Skip to content
Snippets Groups Projects
Commit 4cc66986 authored by Timo Koch's avatar Timo Koch Committed by Dennis Gläser
Browse files

[params] New mechanism for parameters in Dumux

todo: implemenet tree lookup for the logging tree
parent 515db02c
No related branches found
No related tags found
Loading
...@@ -48,8 +48,8 @@ public: ...@@ -48,8 +48,8 @@ public:
/* /*
* \brief Create LoggingParameterTree from ParameterTree * \brief Create LoggingParameterTree from ParameterTree
*/ */
LoggingParameterTree(const Dune::ParameterTree& params) LoggingParameterTree(const Dune::ParameterTree& params, const Dune::ParameterTree& defaultParams)
: params_(params) {} : params_(params), defaultParams_(defaultParams) {}
/** \brief test for key /** \brief test for key
* *
...@@ -181,6 +181,12 @@ public: ...@@ -181,6 +181,12 @@ public:
usedRuntimeParams_[key] = params_[key]; usedRuntimeParams_[key] = params_[key];
} }
else if(defaultParams_.hasKey(key))
{
// use the default
return defaultParams_.template get<T>(key);
}
return params_.template get<T>(key); return params_.template get<T>(key);
} }
...@@ -221,6 +227,7 @@ private: ...@@ -221,6 +227,7 @@ private:
} }
const Dune::ParameterTree& params_; const Dune::ParameterTree& params_;
const Dune::ParameterTree& defaultParams_;
mutable Dune::ParameterTree usedRuntimeParams_; mutable Dune::ParameterTree usedRuntimeParams_;
}; };
......
This diff is collapsed.
...@@ -5,37 +5,86 @@ ...@@ -5,37 +5,86 @@
#include <dune/common/parallel/mpihelper.hh> #include <dune/common/parallel/mpihelper.hh>
#include <dune/common/exceptions.hh> #include <dune/common/exceptions.hh>
#include <dumux/common/propertysystem.hh>
#include <dumux/common/parameters.hh>
#include <dumux/common/parameterparser.hh> #include <dumux/common/parameterparser.hh>
#include <dumux/common/loggingparametertree.hh>
namespace Dumux {
namespace Properties
{
NEW_TYPE_TAG(Bla);
NEW_PROP_TAG(TimeLoopTLEnd);
NEW_PROP_TAG(Scalar);
SET_TYPE_PROP(Bla, Scalar, double);
SET_SCALAR_PROP(Bla, TimeLoopTLEnd, 2.0);
}
}
int main (int argc, char *argv[]) try int main (int argc, char *argv[]) try
{ {
using namespace Dumux;
using TypeTag = TTAG(Bla);
// maybe initialize mpi // maybe initialize mpi
Dune::MPIHelper::instance(argc, argv); Dune::MPIHelper::instance(argc, argv);
// parse the input file into the parameter tree // parse the input file into the parameter tree
Dune::ParameterTree tree; // Dune::ParameterTree tree;
Dumux::ParameterParser::parseInputFile(argc, argv, tree, "params.input"); // Dumux::ParameterParser::parseInputFile(argc, argv, tree, "params.input");
//
// // attach the tree to the logging tree
// Dumux::LoggingParameterTree params(tree);
//
// // use some default parameters
// bool DUNE_UNUSED(enableGravity) = params.get<bool>("Problem.EnableGravity", true);
//
// // use some given parameters
// const auto DUNE_UNUSED(cells) = params.get<std::array<int, 2>>("Grid.Cells", {1, 1});
// const auto DUNE_UNUSED(tEnd) = params.get<double>("TimeLoop.TEnd");
//
// // check the unused keys
// const auto unused = params.getUnusedKeys();
// if (unused.size() != 1)
// DUNE_THROW(Dune::InvalidStateException, "There should be exactly one unused key!");
// else if (unused[0] != "Grid.Bells")
// DUNE_THROW(Dune::InvalidStateException, "Unused key \"Grid.Bells\" not found!");
//
// params.reportAll();
// attach the tree to the logging tree Parameters::init(argc, argv, "params.input");
Dumux::LoggingParameterTree params(tree);
// use some default parameters // use some default parameters
bool DUNE_UNUSED(enableGravity) = params.get<bool>("Problem.EnableGravity", true); bool enableGravity = getParam<bool>("Problem.EnableGravity", false); // used user default
std::cout << enableGravity << std::endl;
enableGravity = getParam<bool>("Problem.EnableGravity"); // uses the Dumux default value
std::cout << enableGravity << std::endl;
// use some given parameters // use some given parameters
const auto DUNE_UNUSED(cells) = params.get<std::array<int, 2>>("Grid.Cells", {1, 1}); const auto DUNE_UNUSED(cells) = getParam<std::array<int, 2>>("Grid.Cells", std::array<int, 2>{{1, 1}});
const auto DUNE_UNUSED(tEnd) = params.get<double>("TimeLoop.TEnd"); auto tEnd = getParam<double>("TimeLoop.TEnd");
tEnd = getParam<double>("TimeLoop.TEnd", 1.0);
// const auto tEnd = getParamFromGroup<double>("Bulk", "TimeLoop.TEnd", 1.0, Parameters::simpleLookup);
tEnd = getParamFromGroup<double>("Bulk", "TimeLoop.TEnd", 1.0, ParamLookup::tree);
// tEnd = GET_PARAM(TypeTag, double, TimeLoop.TEnd);
tEnd = GET_PARAM_FROM_GROUP(TypeTag, double, TimeLoop, TLEnd);
std::cout << tEnd << std::endl;
tEnd = GET_RUNTIME_PARAM(TypeTag, double, TimeLoop.TEnd);
tEnd = GET_RUNTIME_PARAM_CSTRING(TypeTag, double, "TimeLoop.TEnd");
tEnd = GET_RUNTIME_PARAM_FROM_GROUP(TypeTag, double, TimeLoop, TEnd);
tEnd = GET_RUNTIME_PARAM_FROM_GROUP_CSTRING(TypeTag, double, "TimeLoop", TEnd);
std::cout << tEnd << std::endl;
reportParams();
// check the unused keys // check the unused keys
const auto unused = params.getUnusedKeys(); const auto unused = Parameters::getTree().getUnusedKeys();
if (unused.size() != 1) if (unused.size() != 1)
DUNE_THROW(Dune::InvalidStateException, "There should be exactly one unused key!"); DUNE_THROW(Dune::InvalidStateException, "There should be exactly one unused key!");
else if (unused[0] != "Grid.Bells") else if (unused[0] != "Grid.Bells")
DUNE_THROW(Dune::InvalidStateException, "Unused key \"Grid.Bells\" not found!"); DUNE_THROW(Dune::InvalidStateException, "Unused key \"Grid.Bells\" not found!");
params.reportAll();
return 0; return 0;
} }
// ////////////////////////////////// // //////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment