missing variable definitions
This commit is contained in:
parent
898aa0e9bf
commit
fec71e2986
|
@ -969,7 +969,7 @@ function constitutive_getLocalDamage(ipc, ip, el)
|
|||
constitutive_getLocalDamage = constitutive_gurson_getDamage(ipc, ip, el)
|
||||
|
||||
case (LOCAL_DAMAGE_anisotropic_ID)
|
||||
constitutive_getLocalDamage = constitutive_anisotropic_getDamage(ipc, ip, el)
|
||||
!constitutive_getLocalDamage = constitutive_anisotropic_getDamage(ipc, ip, el)
|
||||
end select
|
||||
|
||||
end function constitutive_getLocalDamage
|
||||
|
@ -1015,7 +1015,7 @@ subroutine constitutive_putLocalDamage(ipc, ip, el, localDamage)
|
|||
call constitutive_gurson_putDamage(ipc, ip, el, localDamage)
|
||||
|
||||
case (LOCAL_DAMAGE_anisotropic_ID)
|
||||
call constitutive_anisotropic_putDamage(ipc, ip, el, localDamage)
|
||||
!call constitutive_anisotropic_putDamage(ipc, ip, el, localDamage)
|
||||
|
||||
end select
|
||||
|
||||
|
|
|
@ -109,6 +109,7 @@ subroutine damage_anisotropic_init(fileUnit)
|
|||
integer(pInt) :: maxNinstance,mySize=0_pInt,phase,instance,o
|
||||
integer(pInt) :: sizeState, sizeDotState
|
||||
integer(pInt) :: NofMyPhase
|
||||
integer(pInt) :: Nchunks_SlipFamilies, j
|
||||
character(len=65536) :: &
|
||||
tag = '', &
|
||||
line = ''
|
||||
|
|
Loading…
Reference in New Issue