deactivated one debug statement at the end of crystallite_updateState(g,i,e) as it leads to division by zero if constitutive_state(g,i,e)%p(1:mySize) contains zero values

statement should be changed to check for zero values
This commit is contained in:
Franz Roters 2011-03-11 10:05:30 +00:00
parent 1f0569230b
commit 97a0146672
1 changed files with 3 additions and 3 deletions

View File

@ -2243,9 +2243,9 @@ if (verboseDebugger .and. (e == debug_e .and. i == debug_i .and. g == debug_g) .
write(6,*)
write(6,'(a,/,12(e12.5,x))') 'updateState: new state',constitutive_state(g,i,e)%p(1:mySize)
write(6,*)
write(6,'(a,/,12(f12.1,x))') 'updateState: relative residuum tolerance', abs(residuum / rTol_crystalliteState &
/ constitutive_state(g,i,e)%p(1:mySize))
write(6,*)
! write(6,'(a,/,12(f12.1,x))') 'updateState: relative residuum tolerance', abs(residuum / rTol_crystalliteState &
! / constitutive_state(g,i,e)%p(1:mySize))
! write(6,*)
!$OMP END CRITICAL (write2out)
endif