parent
d92f992eb7
commit
062c6b3d54
|
@ -1219,6 +1219,10 @@ endfunction
|
||||||
msg = 'Non-positive activation energy for dislocation climb'
|
msg = 'Non-positive activation energy for dislocation climb'
|
||||||
case (233)
|
case (233)
|
||||||
msg = 'Non-positive relevant dislocation density'
|
msg = 'Non-positive relevant dislocation density'
|
||||||
|
case (234)
|
||||||
|
msg = 'Negative cutoff radius'
|
||||||
|
case (235)
|
||||||
|
msg = 'Non-positive activation energy for dislocation glide'
|
||||||
case (240)
|
case (240)
|
||||||
msg = 'Non-positive Taylor factor'
|
msg = 'Non-positive Taylor factor'
|
||||||
case (241)
|
case (241)
|
||||||
|
|
|
@ -374,8 +374,8 @@ enddo
|
||||||
enddo
|
enddo
|
||||||
if (any(constitutive_nonlocal_interactionSlipSlip(1:maxval(lattice_interactionSlipSlip(:,:,myStructure)),i) < 0.0_pReal)) &
|
if (any(constitutive_nonlocal_interactionSlipSlip(1:maxval(lattice_interactionSlipSlip(:,:,myStructure)),i) < 0.0_pReal)) &
|
||||||
call IO_error(229)
|
call IO_error(229)
|
||||||
if (constitutive_nonlocal_Q0(i) <= 0.0_pReal) call IO_error(-1)
|
if (constitutive_nonlocal_Q0(i) <= 0.0_pReal) call IO_error(235)
|
||||||
if (constitutive_nonlocal_R(i) <= 0.0_pReal) call IO_error(-1)
|
if (constitutive_nonlocal_R(i) < 0.0_pReal) call IO_error(234)
|
||||||
if (constitutive_nonlocal_atomicVolume(i) <= 0.0_pReal) call IO_error(230)
|
if (constitutive_nonlocal_atomicVolume(i) <= 0.0_pReal) call IO_error(230)
|
||||||
if (constitutive_nonlocal_D0(i) <= 0.0_pReal) call IO_error(231)
|
if (constitutive_nonlocal_D0(i) <= 0.0_pReal) call IO_error(231)
|
||||||
if (constitutive_nonlocal_Qsd(i) <= 0.0_pReal) call IO_error(232)
|
if (constitutive_nonlocal_Qsd(i) <= 0.0_pReal) call IO_error(232)
|
||||||
|
|
Loading…
Reference in New Issue