Skip to content
Snippets Groups Projects
Commit 2dfcba1b authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

- variableclass (if h-adaptive) is now called with problem

- variableclass tidied up, improved strucutre & docu for reconstruction of prim vars

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6185 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent c8c50ec8
No related branches found
No related tags found
No related merge requests found
...@@ -115,7 +115,7 @@ public: ...@@ -115,7 +115,7 @@ public:
<< coarsened_ << " to be coarsened." << std::endl; << coarsened_ << " to be coarsened." << std::endl;
/**** 3) Put primary variables in a map *********/ /**** 3) Put primary variables in a map *********/
problem_.variables().storePrimVars(); problem_.variables().storePrimVars(problem_);
/**** 4) Adapt Grid and size of variable vectors *****/ /**** 4) Adapt Grid and size of variable vectors *****/
problem_.grid().preAdapt(); problem_.grid().preAdapt();
...@@ -130,7 +130,7 @@ public: ...@@ -130,7 +130,7 @@ public:
problem_.variables().adaptVariableSize(problem_.variables().elementMapper().size()); problem_.variables().adaptVariableSize(problem_.variables().elementMapper().size());
/**** 5) (Re-)construct primary variables to new grid **/ /**** 5) (Re-)construct primary variables to new grid **/
problem_.variables().reconstructPrimVars(); problem_.variables().reconstructPrimVars(problem_);
// delete markers in grid // delete markers in grid
problem_.grid().postAdapt(); problem_.grid().postAdapt();
// adapt secondary variables // adapt secondary variables
...@@ -218,7 +218,7 @@ public: ...@@ -218,7 +218,7 @@ public:
* *
* @return levelMax_ maximum level for refinement * @return levelMax_ maximum level for refinement
*/ */
int getMaxLevel() const const int getMaxLevel() const
{ {
return levelMax_; return levelMax_;
} }
...@@ -227,7 +227,7 @@ public: ...@@ -227,7 +227,7 @@ public:
* *
* @return levelMin_ minimum level for coarsening * @return levelMin_ minimum level for coarsening
*/ */
int getMinLevel() const const int getMinLevel() const
{ {
return levelMin_; return levelMin_;
} }
......
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