Polishing.
This commit is contained in:
parent
775146030c
commit
a2552d6241
|
@ -3271,7 +3271,7 @@ subroutine crystallite_integrateStateFPI()
|
|||
- damageState(p)%subState0(1:mySizeDamageDotState,c) &
|
||||
- (damageState(p)%dotState(1:mySizeDamageDotState,c) * damageStateDamper &
|
||||
+ damageState(p)%previousDotState(1:mySizeDamageDotState,c) &
|
||||
* (1.0_pReal - damageStatedamper)) * crystallite_subdt(g,i,e)
|
||||
* (1.0_pReal - damageStateDamper)) * crystallite_subdt(g,i,e)
|
||||
|
||||
thermalStateResiduum(1:mySizeThermalDotState) = thermalState(p)%state(1:mySizeThermalDotState,c) &
|
||||
- thermalState(p)%subState0(1:mySizeThermalDotState,c) &
|
||||
|
|
|
@ -214,7 +214,7 @@ subroutine damage_phaseField_init(fileUnit)
|
|||
allocate(damageState(phase)%state_backup (sizeState,NofMyPhase), source=0.0_pReal)
|
||||
|
||||
allocate(damageState(phase)%dotState (sizeDotState,NofMyPhase), source=0.0_pReal)
|
||||
allocate(damageState(phase)%deltaState (sizeDotState,NofMyPhase), source=0.0_pReal)
|
||||
allocate(damageState(phase)%deltaState (sizeDotState,NofMyPhase), source=0.0_pReal)
|
||||
allocate(damageState(phase)%dotState_backup (sizeDotState,NofMyPhase), source=0.0_pReal)
|
||||
if (any(numerics_integrator == 1_pInt)) then
|
||||
allocate(damageState(phase)%previousDotState (sizeDotState,NofMyPhase), source=0.0_pReal)
|
||||
|
|
Loading…
Reference in New Issue