reduced size of aTolState from sizeState to sizeDotState
asb tolerance check is only meaningful for the state part affected by dotState
This commit is contained in:
parent
a153443239
commit
d6cf3c4dd4
|
@ -575,11 +575,11 @@ subroutine plastic_phenopowerlaw_init(fileUnit)
|
|||
plasticState(phase)%nSlip =plastic_phenopowerlaw_totalNslip(instance)
|
||||
plasticState(phase)%nTwin =plastic_phenopowerlaw_totalNtwin(instance)
|
||||
plasticState(phase)%nTrans=plastic_phenopowerlaw_totalNtrans(instance)
|
||||
allocate(plasticState(phase)%aTolState ( sizeState), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%state0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%partionedState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%subState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%state ( sizeState,NipcMyPhase), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%aTolState (sizeDotState), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%dotState (sizeDotState,NipcMyPhase), source=0.0_pReal)
|
||||
allocate(plasticState(phase)%deltaState (sizeDeltaState,NipcMyPhase), source=0.0_pReal)
|
||||
if (any(numerics_integrator == 1_pInt)) then
|
||||
|
|
Loading…
Reference in New Issue