removed unnecessary lines
This commit is contained in:
parent
9249e7db2b
commit
b834b2a00d
|
@ -159,20 +159,18 @@ program DAMASK_spectral
|
||||||
PETScFinalize
|
PETScFinalize
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! variables related to stop criterion for yielding
|
! variables related to stop criterion for yielding
|
||||||
real(pReal) :: plasticWorkOld, plasticWorkNew, & ! plastic work
|
real(pReal) :: plasticWorkOld, plasticWorkNew, & ! plastic work
|
||||||
eqTotalStrainOld, eqTotalStrainNew, & ! total equivalent strain
|
eqTotalStrainOld, eqTotalStrainNew, & ! total equivalent strain
|
||||||
eqPlasticStrainOld, eqPlasticStrainNew, & ! total equivalent plastic strain
|
eqPlasticStrainOld, eqPlasticStrainNew, & ! total equivalent plastic strain
|
||||||
eqStressOld, eqStressNew , & ! equivalent stress
|
eqStressOld, eqStressNew , & ! equivalent stress
|
||||||
yieldStopValue
|
yieldStopValue
|
||||||
real(pReal), dimension(3,3) :: yieldStress,yieldStressOld,yieldStressNew, plasticStrainOld, plasticStrainNew, plasticStrainRate
|
real(pReal), dimension(3,3) :: yieldStress,yieldStressOld,yieldStressNew, &
|
||||||
|
plasticStrainOld, plasticStrainNew, plasticStrainRate
|
||||||
integer(pInt) :: yieldResUnit = 0_pInt
|
integer(pInt) :: yieldResUnit = 0_pInt
|
||||||
integer(pInt) :: stressstrainUnit = 0_pInt
|
integer(pInt) :: stressstrainUnit = 0_pInt
|
||||||
character(len=13) :: stopFlag
|
character(len=13) :: stopFlag
|
||||||
logical :: yieldStop, yieldStopSatisfied
|
logical :: yieldStop, yieldStopSatisfied
|
||||||
! logical :: &
|
|
||||||
! stop_totalStrain, & !< stop criterion
|
|
||||||
! stop_plasticStrain, &
|
|
||||||
! stop_plasticWork
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! init DAMASK (all modules)
|
! init DAMASK (all modules)
|
||||||
call CPFEM_initAll(el = 1_pInt, ip = 1_pInt)
|
call CPFEM_initAll(el = 1_pInt, ip = 1_pInt)
|
||||||
|
@ -321,7 +319,7 @@ program DAMASK_spectral
|
||||||
enddo; enddo
|
enddo; enddo
|
||||||
close(FILEUNIT)
|
close(FILEUNIT)
|
||||||
|
|
||||||
if(yieldStop) then ! initialize variables related to yield stop
|
if(yieldStop) then ! initialize variables related to yield stop
|
||||||
yieldStressNew = 0.0_pReal
|
yieldStressNew = 0.0_pReal
|
||||||
plasticStrainNew = 0.0_pReal
|
plasticStrainNew = 0.0_pReal
|
||||||
eqStressNew = 0.0_pReal
|
eqStressNew = 0.0_pReal
|
||||||
|
|
Loading…
Reference in New Issue