Deallocate numerics configuration
This commit is contained in:
parent
fbbd21a1ca
commit
f4f2176561
|
@ -81,7 +81,9 @@ subroutine materialpoint_initAll()
|
||||||
call phase_init()
|
call phase_init()
|
||||||
call homogenization_init()
|
call homogenization_init()
|
||||||
call materialpoint_init()
|
call materialpoint_init()
|
||||||
call config_deallocate()
|
call config_material_deallocate()
|
||||||
|
call config_numerics_deallocate()
|
||||||
|
|
||||||
|
|
||||||
end subroutine materialpoint_initAll
|
end subroutine materialpoint_initAll
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,8 @@ module config
|
||||||
|
|
||||||
public :: &
|
public :: &
|
||||||
config_init, &
|
config_init, &
|
||||||
config_deallocate
|
config_material_deallocate,&
|
||||||
|
config_numerics_deallocate
|
||||||
|
|
||||||
contains
|
contains
|
||||||
|
|
||||||
|
@ -95,12 +96,24 @@ end subroutine parse_numerics
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief Deallocate config_material.
|
!> @brief Deallocate config_material.
|
||||||
!ToDo: deallocation of numerics (optional)
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
subroutine config_deallocate
|
subroutine config_material_deallocate()
|
||||||
|
|
||||||
|
print'(/,1x,a)', 'deallocating material configuration'; flush(IO_STDOUT)
|
||||||
deallocate(config_material)
|
deallocate(config_material)
|
||||||
|
|
||||||
end subroutine config_deallocate
|
end subroutine config_material_deallocate
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief Deallocate config_numerics if present.
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
subroutine config_numerics_deallocate()
|
||||||
|
|
||||||
|
if (.not. associated(config_numerics, emptyDict)) then
|
||||||
|
print'(/,1x,a)', 'deallocating numerics configuration'; flush(IO_STDOUT)
|
||||||
|
deallocate(config_numerics)
|
||||||
|
end if
|
||||||
|
|
||||||
|
end subroutine config_numerics_deallocate
|
||||||
|
|
||||||
end module config
|
end module config
|
||||||
|
|
|
@ -314,6 +314,7 @@ program DAMASK_grid
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! doing initialization depending on active solvers
|
! doing initialization depending on active solvers
|
||||||
call spectral_Utilities_init()
|
call spectral_Utilities_init()
|
||||||
|
|
||||||
do field = 2, nActiveFields
|
do field = 2, nActiveFields
|
||||||
select case (ID(field))
|
select case (ID(field))
|
||||||
|
|
||||||
|
@ -327,6 +328,7 @@ program DAMASK_grid
|
||||||
end do
|
end do
|
||||||
|
|
||||||
call mechanical_init()
|
call mechanical_init()
|
||||||
|
call config_numerics_deallocate()
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! write header of output file
|
! write header of output file
|
||||||
|
|
|
@ -72,7 +72,7 @@ subroutine materialpoint_initAll()
|
||||||
call phase_init()
|
call phase_init()
|
||||||
call homogenization_init()
|
call homogenization_init()
|
||||||
call materialpoint_init()
|
call materialpoint_init()
|
||||||
call config_deallocate()
|
call config_material_deallocate()
|
||||||
|
|
||||||
end subroutine materialpoint_initAll
|
end subroutine materialpoint_initAll
|
||||||
|
|
||||||
|
|
|
@ -231,6 +231,7 @@ program DAMASK_mesh
|
||||||
! doing initialization depending on active solvers
|
! doing initialization depending on active solvers
|
||||||
call FEM_Utilities_init()
|
call FEM_Utilities_init()
|
||||||
call FEM_mechanical_init(loadCases(1)%fieldBC(1))
|
call FEM_mechanical_init(loadCases(1)%fieldBC(1))
|
||||||
|
call config_numerics_deallocate()
|
||||||
|
|
||||||
if (worldrank == 0) then
|
if (worldrank == 0) then
|
||||||
open(newunit=statUnit,file=trim(getSolverJobName())//'.sta',form='FORMATTED',status='REPLACE')
|
open(newunit=statUnit,file=trim(getSolverJobName())//'.sta',form='FORMATTED',status='REPLACE')
|
||||||
|
|
Loading…
Reference in New Issue