Skip to content

Commit 9391165

Browse files
committedMar 5, 2024·
Merge branch 'solver-clean' into 'development'
cleaning solver See merge request damask/DAMASK!917
2 parents 2f80154 + bd4f9a6 commit 9391165

5 files changed

+8
-13
lines changed
 

‎src/grid/DAMASK_grid.f90

+1-2
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,7 @@ program DAMASK_grid
329329
!--------------------------------------------------------------------------------------------------
330330
! check solution and either advance or retry with smaller timestep
331331

332-
if ( (all(solres(:)%converged .and. solres(:)%stagConverged)) & ! converged
333-
.and. .not. solres(1)%termIll) then ! and acceptable solution found
332+
if (all(solres(:)%converged .and. solres(:)%stagConverged)) then ! converged and acceptable solution found
334333
call mechanical_updateCoords()
335334
Delta_t_prev = Delta_t
336335
cutBack = .false.

‎src/grid/grid_mech_FEM.f90

+2-3
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@ function grid_mechanical_FEM_solution(incInfoIn) result(solution)
325325

326326
solution%converged = reason > 0
327327
solution%iterationsNeeded = totalIter
328-
solution%termIll = status /= STATUS_OK
329328
P_aim = merge(P_av,P_aim,params%stress_mask)
330329

331330
end function grid_mechanical_FEM_solution
@@ -491,8 +490,8 @@ subroutine converged(snes_local,PETScIter,devNull1,devNull2,fnorm,reason,dummy,e
491490
divTol = max(maxval(abs(P_av))*num%eps_div_rtol, num%eps_div_atol)
492491
BCTol = max(maxval(abs(P_av))*num%eps_stress_rtol, num%eps_stress_atol)
493492

494-
if ((totalIter >= num%itmin .and. all([err_div/divTol, err_BC/BCTol] < 1.0_pREAL)) &
495-
.or. status /= STATUS_OK) then
493+
if (totalIter >= num%itmin .and. all([err_div/divTol, err_BC/BCTol] < 1.0_pREAL) &
494+
.and. status == STATUS_OK) then
496495
reason = 1
497496
elseif (totalIter >= num%itmax) then
498497
reason = -1

‎src/grid/grid_mech_spectral_basic.f90

+2-3
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,6 @@ function grid_mechanical_spectral_basic_solution(incInfoIn) result(solution)
288288

289289
solution%converged = reason > 0
290290
solution%iterationsNeeded = totalIter
291-
solution%termIll = status /= STATUS_OK
292291
P_aim = merge(P_av,P_aim,params%stress_mask)
293292

294293
end function grid_mechanical_spectral_basic_solution
@@ -452,8 +451,8 @@ subroutine converged(snes_local,PETScIter,devNull1,devNull2,devNull3,reason,dumm
452451
divTol = max(maxval(abs(P_av))*num%eps_div_rtol, num%eps_div_atol)
453452
BCTol = max(maxval(abs(P_av))*num%eps_stress_rtol, num%eps_stress_atol)
454453

455-
if ((totalIter >= num%itmin .and. all([err_div/divTol, err_BC/BCTol] < 1.0_pREAL)) &
456-
.or. status /= STATUS_OK) then
454+
if (totalIter >= num%itmin .and. all([err_div/divTol, err_BC/BCTol] < 1.0_pREAL) &
455+
.and. status == STATUS_OK) then
457456
reason = 1
458457
elseif (totalIter >= num%itmax) then
459458
reason = -1

‎src/grid/grid_mech_spectral_polarization.f90

+2-3
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ function grid_mechanical_spectral_polarization_solution(incInfoIn) result(soluti
323323

324324
solution%converged = reason > 0
325325
solution%iterationsNeeded = totalIter
326-
solution%termIll = status /= STATUS_OK
327326
P_aim = merge(P_av,P_aim,params%stress_mask)
328327

329328
end function grid_mechanical_spectral_polarization_solution
@@ -516,8 +515,8 @@ subroutine converged(snes_local,PETScIter,devNull1,devNull2,devNull3,reason,dumm
516515
divTol = max(maxval(abs(P_av))*num%eps_div_rtol, num%eps_div_atol)
517516
BCTol = max(maxval(abs(P_av))*num%eps_stress_rtol, num%eps_stress_atol)
518517

519-
if ((totalIter >= num%itmin .and. all([err_div/divTol, err_curl/curlTol, err_BC/BCTol] < 1.0_pREAL)) &
520-
.or. status /= STATUS_OK) then
518+
if (totalIter >= num%itmin .and. all([err_div/divTol, err_curl/curlTol, err_BC/BCTol] < 1.0_pREAL) &
519+
.and. status == STATUS_OK) then
521520
reason = 1
522521
elseif (totalIter >= num%itmax) then
523522
reason = -1

‎src/grid/spectral_utilities.f90

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ module spectral_utilities
7171
iterationsNeeded = 0
7272
logical :: &
7373
converged = .true., &
74-
stagConverged = .true., &
75-
termIll = .false.
74+
stagConverged = .true.
7675
end type tSolutionState
7776

7877
type :: tNumerics

0 commit comments

Comments
 (0)
Please sign in to comment.