similar structure as for mechanics

This commit is contained in:
Martin Diehl 2021-01-17 13:20:17 +01:00
parent 6b452a73bb
commit ca5409f0f1
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,8 @@ module homogenization
!--------------------------------------------------------------------------------------------------
! General variables for the homogenization at a material point
real(pReal), dimension(:), allocatable, public :: &
homogenization_T
homogenization_T, &
homogenization_dot_T
real(pReal), dimension(:,:,:), allocatable, public :: &
homogenization_F0, & !< def grad of IP at start of FE increment
homogenization_F !< def grad of IP to be reached at end of FE increment

View File

@ -15,7 +15,7 @@ module subroutine thermal_init()
print'(/,a)', ' <<<+- homogenization_thermal init -+>>>'
allocate(homogenization_T(discretization_nIPs*discretization_Nelems))
allocate(homogenization_dot_T(discretization_nIPs*discretization_Nelems))
end subroutine thermal_init