polishing
This commit is contained in:
parent
a04be84719
commit
7ad343c9b6
|
@ -783,6 +783,8 @@ subroutine IO_error(error_ID,el,ip,g,instance,ext_msg)
|
|||
msg = 'incomplete loadcase'
|
||||
case (838)
|
||||
msg = 'mixed boundary conditions allow rotation'
|
||||
case (839)
|
||||
msg = 'non-positive restart frequency in grid load case'
|
||||
case (841)
|
||||
msg = 'missing header length info in grid mesh'
|
||||
case (842)
|
||||
|
|
|
@ -299,7 +299,7 @@ program DAMASK_spectral
|
|||
write(6,'(2x,a,i5)') 'increments: ', newLoadCase%incs
|
||||
if (newLoadCase%outputfrequency < 1) errorID = 836 ! non-positive result frequency
|
||||
write(6,'(2x,a,i5)') 'output frequency: ', newLoadCase%outputfrequency
|
||||
if (newLoadCase%restartfrequency < 1) errorID = 836 ! non-positive restart frequency
|
||||
if (newLoadCase%restartfrequency < 1) errorID = 839 ! non-positive restart frequency
|
||||
write(6,'(2x,a,i5)') 'restart frequency: ', newLoadCase%restartfrequency
|
||||
if (errorID > 0) call IO_error(error_ID = errorID, ext_msg = loadcase_string) ! exit with error message
|
||||
endif reportAndCheck
|
||||
|
|
Loading…
Reference in New Issue