missing allocation statement was causing gnu and intel debug compiler to fail

This commit is contained in:
Daniel Otto de Mentock 2022-10-14 11:44:42 +02:00
parent b2a600b07d
commit 592936f21f
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ subroutine grid_thermal_spectral_init()
T_current = discretization_grid_getInitialCondition('T')
T_lastInc = T_current
T_stagInc = T_current
dotT_lastInc = 0.0_pReal
allocate(dotT_lastInc(size(T_current,1),size(T_current,2),size(T_current,3)), source=0.0_pReal)
!--------------------------------------------------------------------------------------------------
! initialize solver specific parts of PETSc