We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ea965 commit 9cec182Copy full SHA for 9cec182
kratos/python_scripts/analysis_stage.py
@@ -62,7 +62,6 @@ def RunSolutionLoop(self):
62
while self.KeepAdvancingSolutionLoop():
63
self.time = self._AdvanceTime()
64
self.InitializeSolutionStep()
65
- self._GetSolver().Predict()
66
is_converged = self._GetSolver().SolveSolutionStep()
67
self.__CheckIfSolveSolutionStepReturnsAValue(is_converged)
68
self.FinalizeSolutionStep()
@@ -143,6 +142,7 @@ def InitializeSolutionStep(self):
143
142
144
self.ApplyBoundaryConditions() #here the processes are called
145
self.ChangeMaterialProperties() #this is normally empty
+ self._GetSolver().Predict()
146
self._GetSolver().InitializeSolutionStep()
147
148
0 commit comments