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

Merge branch 'fix/change-mixeddimension-initialization-order' into 'next'

[mixeddimension] change initialization order

See merge request !402
parents e35de1ea 940f83e4
No related branches found
No related tags found
Loading
...@@ -144,8 +144,10 @@ public: ...@@ -144,8 +144,10 @@ public:
lowDimProblem().setCouplingManager(couplingManager_); lowDimProblem().setCouplingManager(couplingManager_);
// initialize the subproblem time managers (this also initializes the subproblems) // initialize the subproblem time managers (this also initializes the subproblems)
bulkTimeManager().init(bulkProblem(), tStart, dtBulkProblem, tEnd, restart); // the lowDim time manager is initialized first as the bulk problem might need some data from the
// lowDim problem for its initialization (e.g. for models using facet coupling with the global caching)
lowDimTimeManager().init(lowDimProblem(), tStart, dtLowDimProblem, tEnd, restart); lowDimTimeManager().init(lowDimProblem(), tStart, dtLowDimProblem, tEnd, restart);
bulkTimeManager().init(bulkProblem(), tStart, dtBulkProblem, tEnd, restart);
// finalize the problem coupler // finalize the problem coupler
couplingManager().postInit(); couplingManager().postInit();
......
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