Merge branch 'grid_thermal_spectral_fix' into 'development'
missing allocation statement was causing gnu and intel debug compiler to fail in testsuite See merge request damask/DAMASK!633
This commit is contained in:
commit
11e91c0ef0
|
@ -110,7 +110,7 @@ subroutine grid_thermal_spectral_init()
|
||||||
T_current = discretization_grid_getInitialCondition('T')
|
T_current = discretization_grid_getInitialCondition('T')
|
||||||
T_lastInc = T_current
|
T_lastInc = T_current
|
||||||
T_stagInc = T_current
|
T_stagInc = T_current
|
||||||
dotT_lastInc = 0.0_pReal
|
dotT_lastInc = 0.0_pReal * T_current
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
! initialize solver specific parts of PETSc
|
! initialize solver specific parts of PETSc
|
||||||
|
|
Loading…
Reference in New Issue