commented out the logical 'nonlocal' from newState structure(might be used later)
This commit is contained in:
parent
cb1337aaf8
commit
e8be3b871b
|
@ -910,7 +910,7 @@ allocate(nonSchmidProjection(3,3,4,maxTotalNslip,maxNinstances),
|
|||
|
||||
#ifdef NEWSTATE
|
||||
! Determine size of state array
|
||||
plasticState(phase)%nonlocal = .true.
|
||||
! plasticState(phase)%nonlocal = .true.
|
||||
sizeDotState = int(size(BASICSTATES),pInt) * ns
|
||||
sizeDependentState = int(size(DEPENDENTSTATES),pInt) * ns
|
||||
sizeState = sizeDotState &
|
||||
|
|
|
@ -64,6 +64,7 @@ module prec
|
|||
!http://stackoverflow.com/questions/3948210/can-i-have-a-pointer-to-an-item-in-an-allocatable-array
|
||||
type, public :: tState
|
||||
integer(pInt) :: sizeState,sizeDotState
|
||||
! logical :: nonlocal
|
||||
real(pReal), pointer, dimension(:) :: atolState
|
||||
real(pReal), pointer, dimension(:,:) :: state, & ! material points, state size
|
||||
dotState, &
|
||||
|
|
Loading…
Reference in New Issue