bugfix: wrong state was allocated

This commit is contained in:
Martin Diehl 2019-02-22 21:06:37 +01:00
parent 194824fd0f
commit ad0ed4fdec
1 changed files with 1 additions and 1 deletions

View File

@ -999,7 +999,7 @@ subroutine material_allocateSourceState(phase,of,NofMyPhase,&
if (numerics_integrator == 5_pInt) &
allocate(sourceState(phase)%p(of)%RKCK45dotState (6,sizeDotState,NofMyPhase), source=0.0_pReal)
allocate(plasticState(phase)%deltaState (sizeDeltaState,NofMyPhase), source=0.0_pReal)
allocate(sourceState(phase)%p(of)%deltaState (sizeDeltaState,NofMyPhase), source=0.0_pReal)
end subroutine material_allocateSourceState