Skip to content
Snippets Groups Projects
Commit 0e866630 authored by Timo Koch's avatar Timo Koch
Browse files

[mixeddimension] Adjust order of pre/posttime step for models with growth

parent 271eab1b
No related branches found
No related tags found
Loading
...@@ -178,8 +178,10 @@ public: ...@@ -178,8 +178,10 @@ public:
} }
else else
{ {
bulkProblem().preTimeStep(); // call low dim problem first because it might grow and the
// coupling maps might need to be updated before the bulkproblem
lowDimProblem().preTimeStep(); lowDimProblem().preTimeStep();
bulkProblem().preTimeStep();
} }
} }
...@@ -316,8 +318,10 @@ public: ...@@ -316,8 +318,10 @@ public:
{ {
if (!useIterativeSolver_) if (!useIterativeSolver_)
{ {
bulkProblem().postTimeStep(); // call low dim problem first because it might grow and the
// coupling maps might need to be updated before the bulkproblem
lowDimProblem().postTimeStep(); lowDimProblem().postTimeStep();
bulkProblem().postTimeStep();
} }
} }
......
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