moved setting of CPFEM forwarding flag to the forwarding subroutine
This commit is contained in:
parent
656e3cc6ca
commit
b9e55b4495
|
@ -322,7 +322,6 @@ type(tSolutionState) function &
|
|||
S_scale = math_invSym3333(C_minMaxAvg)
|
||||
endif
|
||||
|
||||
ForwardData = .True.
|
||||
AL_solution%converged =.false.
|
||||
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
|
@ -676,6 +675,7 @@ subroutine AL_forward(guess,timeinc,timeinc_old,loadCaseTime,F_BC,P_BC,rotation_
|
|||
F = reshape(F_lastInc, [9,grid(1),grid(2),grid(3)])
|
||||
C_volAvg = C_volAvgLastInc
|
||||
else
|
||||
ForwardData = .True.
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
! calculate rate for aim
|
||||
C_volAvgLastInc = C_volAvg
|
||||
|
|
|
@ -288,7 +288,6 @@ type(tSolutionState) function basicPETSc_solution( &
|
|||
S = Utilities_maskedCompliance(rotation_BC,P_BC%maskLogical,C_volAvg)
|
||||
if (update_gamma) call Utilities_updateGamma(C_minmaxAvg,restartWrite)
|
||||
|
||||
ForwardData = .True.
|
||||
BasicPETSc_solution%converged =.false.
|
||||
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
|
@ -600,6 +599,7 @@ subroutine BasicPETSc_forward(guess,timeinc,timeinc_old,loadCaseTime,F_BC,P_BC,r
|
|||
F = reshape(F_lastInc, [9,grid(1),grid(2),grid(3)])
|
||||
C_volAvg = C_volAvgLastInc
|
||||
else
|
||||
ForwardData = .True.
|
||||
C_volAvgLastInc = C_volAvg
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
! calculate rate for aim
|
||||
|
|
|
@ -325,7 +325,6 @@ type(tSolutionState) function &
|
|||
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
! set module wide availabe data
|
||||
ForwardData = .True.
|
||||
mask_stress = P_BC%maskFloat
|
||||
params%P_BC = P_BC%values
|
||||
params%rotation_BC = rotation_BC
|
||||
|
@ -674,6 +673,7 @@ subroutine Polarisation_forward(guess,timeinc,timeinc_old,loadCaseTime,F_BC,P_BC
|
|||
F = reshape(F_lastInc, [9,grid(1),grid(2),grid(3)])
|
||||
C_volAvg = C_volAvgLastInc
|
||||
else
|
||||
ForwardData = .True.
|
||||
C_volAvgLastInc = C_volAvg
|
||||
!--------------------------------------------------------------------------------------------------
|
||||
! calculate rate for aim
|
||||
|
|
Loading…
Reference in New Issue