cleaning
This commit is contained in:
parent
7710f4d444
commit
9512231d49
|
@ -104,7 +104,6 @@ contains
|
||||||
subroutine debug_init
|
subroutine debug_init
|
||||||
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
|
use, intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
|
||||||
use numerics, only: &
|
use numerics, only: &
|
||||||
worldrank, &
|
|
||||||
nStress, &
|
nStress, &
|
||||||
nState, &
|
nState, &
|
||||||
nCryst, &
|
nCryst, &
|
||||||
|
@ -130,36 +129,16 @@ subroutine debug_init
|
||||||
integer(pInt), allocatable, dimension(:) :: chunkPos
|
integer(pInt), allocatable, dimension(:) :: chunkPos
|
||||||
character(len=65536) :: tag, line
|
character(len=65536) :: tag, line
|
||||||
|
|
||||||
mainProcess: if (worldrank == 0) then
|
|
||||||
write(6,'(/,a)') ' <<<+- debug init -+>>>'
|
write(6,'(/,a)') ' <<<+- debug init -+>>>'
|
||||||
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
||||||
#include "compilation_info.f90"
|
#include "compilation_info.f90"
|
||||||
endif mainProcess
|
|
||||||
|
|
||||||
if (allocated(debug_StressLoopLpDistribution)) &
|
allocate(debug_StressLoopLpDistribution(nStress+1,2), source=0_pInt)
|
||||||
deallocate(debug_StressLoopLpDistribution)
|
allocate(debug_StressLoopLiDistribution(nStress+1,2), source=0_pInt)
|
||||||
allocate(debug_StressLoopLpDistribution(nStress+1,2))
|
allocate(debug_StateLoopDistribution(nState+1,2), source=0_pInt)
|
||||||
debug_StressLoopLpDistribution = 0_pInt
|
allocate(debug_CrystalliteLoopDistribution(nCryst+1), source=0_pInt)
|
||||||
if (allocated(debug_StressLoopLiDistribution)) &
|
allocate(debug_MaterialpointStateLoopDistribution(nMPstate), source=0_pInt)
|
||||||
deallocate(debug_StressLoopLiDistribution)
|
allocate(debug_MaterialpointLoopDistribution(nHomog+1), source=0_pInt)
|
||||||
allocate(debug_StressLoopLiDistribution(nStress+1,2))
|
|
||||||
debug_StressLoopLiDistribution = 0_pInt
|
|
||||||
if (allocated(debug_StateLoopDistribution)) &
|
|
||||||
deallocate(debug_StateLoopDistribution)
|
|
||||||
allocate(debug_StateLoopDistribution(nState+1,2))
|
|
||||||
debug_StateLoopDistribution = 0_pInt
|
|
||||||
if (allocated(debug_CrystalliteLoopDistribution)) &
|
|
||||||
deallocate(debug_CrystalliteLoopDistribution)
|
|
||||||
allocate(debug_CrystalliteLoopDistribution(nCryst+1))
|
|
||||||
debug_CrystalliteLoopDistribution = 0_pInt
|
|
||||||
if (allocated(debug_MaterialpointStateLoopDistribution)) &
|
|
||||||
deallocate(debug_MaterialpointStateLoopDistribution)
|
|
||||||
allocate(debug_MaterialpointStateLoopDistribution(nMPstate))
|
|
||||||
debug_MaterialpointStateLoopDistribution = 0_pInt
|
|
||||||
if (allocated(debug_MaterialpointLoopDistribution)) &
|
|
||||||
deallocate(debug_MaterialpointLoopDistribution)
|
|
||||||
allocate(debug_MaterialpointLoopDistribution(nHomog+1))
|
|
||||||
debug_MaterialpointLoopDistribution = 0_pInt
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! try to open the config file
|
! try to open the config file
|
||||||
|
|
Loading…
Reference in New Issue