dot_T is needed
This commit is contained in:
parent
4f059910ab
commit
fede1dcd09
|
@ -10,7 +10,7 @@ submodule(constitutive) constitutive_thermal
|
||||||
end enum
|
end enum
|
||||||
|
|
||||||
type :: tDataContainer
|
type :: tDataContainer
|
||||||
real(pReal), dimension(:), allocatable :: T
|
real(pReal), dimension(:), allocatable :: T, dot_T
|
||||||
end type tDataContainer
|
end type tDataContainer
|
||||||
integer(kind(THERMAL_UNDEFINED_ID)), dimension(:,:), allocatable :: &
|
integer(kind(THERMAL_UNDEFINED_ID)), dimension(:,:), allocatable :: &
|
||||||
thermal_source
|
thermal_source
|
||||||
|
@ -94,6 +94,7 @@ module subroutine thermal_init(phases)
|
||||||
Nconstituents = count(material_phaseAt == ph) * discretization_nIPs
|
Nconstituents = count(material_phaseAt == ph) * discretization_nIPs
|
||||||
|
|
||||||
allocate(current(ph)%T(Nconstituents),source=300.0_pReal)
|
allocate(current(ph)%T(Nconstituents),source=300.0_pReal)
|
||||||
|
allocate(current(ph)%dot_T(Nconstituents),source=0.0_pReal)
|
||||||
phase => phases%get(ph)
|
phase => phases%get(ph)
|
||||||
if(phase%contains('thermal')) then
|
if(phase%contains('thermal')) then
|
||||||
thermal => phase%get('thermal')
|
thermal => phase%get('thermal')
|
||||||
|
@ -147,13 +148,11 @@ module subroutine constitutive_thermal_getRate(TDot, ip, el)
|
||||||
integer :: &
|
integer :: &
|
||||||
ph, &
|
ph, &
|
||||||
homog, &
|
homog, &
|
||||||
instance, &
|
|
||||||
me, &
|
me, &
|
||||||
so, &
|
so, &
|
||||||
co
|
co
|
||||||
|
|
||||||
homog = material_homogenizationAt(el)
|
homog = material_homogenizationAt(el)
|
||||||
instance = thermal_typeInstance(homog)
|
|
||||||
|
|
||||||
TDot = 0.0_pReal
|
TDot = 0.0_pReal
|
||||||
do co = 1, homogenization_Nconstituents(homog)
|
do co = 1, homogenization_Nconstituents(homog)
|
||||||
|
|
Loading…
Reference in New Issue