Skip to content
Snippets Groups Projects
Commit f16ca59c authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

a few simple fixes

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8883 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 67dad424
No related branches found
No related tags found
No related merge requests found
...@@ -43,11 +43,10 @@ namespace Dumux ...@@ -43,11 +43,10 @@ namespace Dumux
namespace Properties namespace Properties
{ {
// forward declaration of properties // forward declaration of properties
NEW_PROP_TAG(MobilityUpwindWeight); NEW_PROP_TAG(ImplicitMobilityUpwindWeight);
NEW_PROP_TAG(SpatialParams); NEW_PROP_TAG(SpatialParams);
NEW_PROP_TAG(NumPhases); NEW_PROP_TAG(NumPhases);
NEW_PROP_TAG(ProblemEnableGravity); NEW_PROP_TAG(ProblemEnableGravity);
NEW_PROP_TAG(EnableGravity);//DEPRECATED
} }
/*! /*!
......
...@@ -55,7 +55,8 @@ NEW_TYPE_TAG(BoxRichards, INHERITS_FROM(BoxModel)); ...@@ -55,7 +55,8 @@ NEW_TYPE_TAG(BoxRichards, INHERITS_FROM(BoxModel));
NEW_PROP_TAG(NumPhases); //!< Number of fluid phases in the system NEW_PROP_TAG(NumPhases); //!< Number of fluid phases in the system
NEW_PROP_TAG(RichardsIndices); //!< DEPRECATED Enumerations used by the Richards models NEW_PROP_TAG(RichardsIndices); //!< DEPRECATED Enumerations used by the Richards models
NEW_PROP_TAG(Indices); //!< Enumerations used by the model NEW_PROP_TAG(Indices); //!< Enumerations used by the model
NEW_PROP_TAG(SpatialParameters); //!< The type of the spatial parameters object NEW_PROP_TAG(SpatialParams); //!< The type of the spatial parameters
NEW_PROP_TAG(SpatialParameters); //!< DEPRECATED The type of the spatial parameters
NEW_PROP_TAG(MaterialLaw); //!< The material law which ought to be used (by default extracted from the spatial parameters) NEW_PROP_TAG(MaterialLaw); //!< The material law which ought to be used (by default extracted from the spatial parameters)
NEW_PROP_TAG(MaterialLawParams); //!< The type of the parameter object for the material law (by default extracted from the spatial parameters) NEW_PROP_TAG(MaterialLawParams); //!< The type of the parameter object for the material law (by default extracted from the spatial parameters)
NEW_PROP_TAG(FluidSystem); //!< The fluid system to be used for the Richards model NEW_PROP_TAG(FluidSystem); //!< The fluid system to be used for the Richards model
......
...@@ -51,9 +51,9 @@ void usage(const char *progName, const std::string &errorMsg) ...@@ -51,9 +51,9 @@ void usage(const char *progName, const std::string &errorMsg)
errorMessageOut += "\n\nThe list of mandatory arguments for this program is:\n" errorMessageOut += "\n\nThe list of mandatory arguments for this program is:\n"
"\t-TimeManager.TEnd End of the simulation [s] \n" "\t-TimeManager.TEnd End of the simulation [s] \n"
"\t-TimeManager.DtInitial Initial timestep size [s] \n" "\t-TimeManager.DtInitial Initial timestep size [s] \n"
"\t-Grid.NumRefine The refinement level of the grid. [-] \n" "\t-Grid.NumRefine The refinement level of the grid. [-] \n";
errorMessageOut += "\nAdditionally the following arguments can be specified:\n" errorMessageOut += "\nAdditionally the following arguments can be specified:\n"
"\t-Problem.Delta Anisotropy of permeability tensor. Value out "\t-Problem.Delta Anisotropy of permeability tensor. Value out"
"\t of (0, 1], with 1 being isotrop. Default: 1e-3.\n"; "\t of (0, 1], with 1 being isotrop. Default: 1e-3.\n";
std::cout << errorMessageOut std::cout << errorMessageOut
......
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