2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief material subroutine for isothermal temperature field
|
2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-09-26 21:37:26 +05:30
|
|
|
module thermal_isothermal
|
2019-06-11 19:46:10 +05:30
|
|
|
use prec
|
|
|
|
use config
|
|
|
|
use material
|
2014-06-25 04:29:16 +05:30
|
|
|
|
2019-06-11 19:46:10 +05:30
|
|
|
implicit none
|
|
|
|
private
|
|
|
|
|
|
|
|
public :: &
|
|
|
|
thermal_isothermal_init
|
2014-06-25 04:29:16 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @brief allocates all neccessary fields, reads information from material configuration file
|
2014-06-25 04:29:16 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-06-11 19:46:10 +05:30
|
|
|
subroutine thermal_isothermal_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-11 19:46:10 +05:30
|
|
|
integer :: &
|
|
|
|
homog, &
|
|
|
|
NofMyHomog
|
|
|
|
|
|
|
|
write(6,'(/,a)') ' <<<+- thermal_'//THERMAL_isothermal_label//' init -+>>>'
|
|
|
|
|
|
|
|
initializeInstances: do homog = 1, material_Nhomogenization
|
|
|
|
|
|
|
|
if (thermal_type(homog) /= THERMAL_isothermal_ID) cycle
|
|
|
|
NofMyHomog = count(material_homogenizationAt == homog)
|
|
|
|
thermalState(homog)%sizeState = 0
|
|
|
|
allocate(thermalState(homog)%state0 (0,NofMyHomog), source=0.0_pReal)
|
|
|
|
allocate(thermalState(homog)%subState0(0,NofMyHomog), source=0.0_pReal)
|
|
|
|
allocate(thermalState(homog)%state (0,NofMyHomog), source=0.0_pReal)
|
|
|
|
|
|
|
|
deallocate(temperature (homog)%p)
|
|
|
|
allocate (temperature (homog)%p(1), source=thermal_initialT(homog))
|
|
|
|
deallocate(temperatureRate(homog)%p)
|
|
|
|
allocate (temperatureRate(homog)%p(1), source=0.0_pReal)
|
|
|
|
|
|
|
|
enddo initializeInstances
|
2014-06-25 04:29:16 +05:30
|
|
|
|
2014-09-26 21:37:26 +05:30
|
|
|
end subroutine thermal_isothermal_init
|
2014-06-25 04:29:16 +05:30
|
|
|
|
2014-09-26 21:37:26 +05:30
|
|
|
end module thermal_isothermal
|