error msg in case of unknown keyword was not properly trimmed --> 64kB of spaces...
This commit is contained in:
parent
034a6bc926
commit
fd8d85896a
|
@ -443,7 +443,7 @@ rewind(file)
|
|||
case ('qedgepersbsystem')
|
||||
constitutive_dislotwin_sbQedge(i) = IO_floatValue(line,positions,2_pInt)
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//constitutive_dislotwin_label//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//constitutive_dislotwin_label//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -263,7 +263,7 @@ subroutine constitutive_j2_init(myFile)
|
|||
case ('atol_resistance')
|
||||
constitutive_j2_aTolResistance(i) = IO_floatValue(line,positions,2_pInt)
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//constitutive_j2_label//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//constitutive_j2_label//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -160,7 +160,7 @@ subroutine constitutive_none_init(myFile)
|
|||
case ('c66')
|
||||
constitutive_none_Cslip_66(6,6,i) = IO_floatValue(line,positions,2_pInt)
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//constitutive_none_label//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//constitutive_none_label//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -585,7 +585,7 @@ do while (trim(line) /= '#EOF#')
|
|||
case('probabilisticmultiplication','randomsources','randommultiplication','discretesources')
|
||||
probabilisticMultiplication(i) = IO_floatValue(line,positions,2_pInt) > 0.0_pReal
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//CONSTITUTIVE_NONLOCAL_LABEL//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//CONSTITUTIVE_NONLOCAL_LABEL//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -369,7 +369,7 @@ subroutine constitutive_phenopowerlaw_init(myFile)
|
|||
constitutive_phenopowerlaw_nonSchmidCoeff(j,i) = IO_floatValue(line,positions,1_pInt+j)
|
||||
enddo
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//constitutive_phenopowerlaw_label//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//constitutive_phenopowerlaw_label//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
|
@ -622,7 +622,7 @@ do while (trim(line) /= '#EOF#')
|
|||
constitutive_titanmod_interactionTwinTwin(j,i) = IO_floatValue(line,positions,1_pInt+j)
|
||||
enddo
|
||||
case default
|
||||
call IO_error(210_pInt,ext_msg=tag//' ('//constitutive_titanmod_label//')')
|
||||
call IO_error(210_pInt,ext_msg=trim(tag)//' ('//constitutive_titanmod_label//')')
|
||||
end select
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue