Skip to content

Commit 9cec182

Browse files
Attempting to solve #13350
This is the very first step towards attempting to solve #13350 @loumalouomega @AlejandroCornejo @mcgicjn2
1 parent 53ea965 commit 9cec182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kratos/python_scripts/analysis_stage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def RunSolutionLoop(self):
6262
while self.KeepAdvancingSolutionLoop():
6363
self.time = self._AdvanceTime()
6464
self.InitializeSolutionStep()
65-
self._GetSolver().Predict()
6665
is_converged = self._GetSolver().SolveSolutionStep()
6766
self.__CheckIfSolveSolutionStepReturnsAValue(is_converged)
6867
self.FinalizeSolutionStep()
@@ -143,6 +142,7 @@ def InitializeSolutionStep(self):
143142

144143
self.ApplyBoundaryConditions() #here the processes are called
145144
self.ChangeMaterialProperties() #this is normally empty
145+
self._GetSolver().Predict()
146146
self._GetSolver().InitializeSolutionStep()
147147

148148

0 commit comments

Comments
 (0)