DAMASK_EICMD/src/kinematics_thermal_expansio...

146 lines
6.3 KiB
Fortran
Raw Normal View History

!--------------------------------------------------------------------------------------------------
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
!> @brief material subroutine incorporating kinematics resulting from thermal expansion
!> @details to be done
!--------------------------------------------------------------------------------------------------
module kinematics_thermal_expansion
2019-05-15 02:42:32 +05:30
use prec
2019-05-17 02:44:47 +05:30
use IO
use config
use debug
use math
use lattice
use material
2020-02-28 14:55:07 +05:30
implicit none
private
2020-02-28 14:55:07 +05:30
2020-02-29 14:06:42 +05:30
integer, dimension(:), allocatable :: kinematics_thermal_expansion_instance
2019-05-17 02:44:47 +05:30
type :: tParameters
2020-02-29 15:40:23 +05:30
real(pReal) :: &
T_ref
2020-02-29 16:51:03 +05:30
real(pReal), dimension(3,3,3) :: &
expansion = 0.0_pReal
end type tParameters
2020-02-28 14:55:07 +05:30
type(tParameters), dimension(:), allocatable :: param
2020-02-28 14:55:07 +05:30
public :: &
kinematics_thermal_expansion_init, &
kinematics_thermal_expansion_initialStrain, &
kinematics_thermal_expansion_LiAndItsTangent
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2019-05-17 02:44:47 +05:30
subroutine kinematics_thermal_expansion_init
2020-02-28 14:55:07 +05:30
2020-02-29 02:14:40 +05:30
integer :: Ninstance,p,i
2020-02-29 19:04:19 +05:30
real(pReal), dimension(:), allocatable :: temp
2020-02-28 14:55:07 +05:30
2020-01-10 05:58:32 +05:30
write(6,'(/,a)') ' <<<+- kinematics_'//KINEMATICS_thermal_expansion_LABEL//' init -+>>>'; flush(6)
2020-02-28 14:55:07 +05:30
2019-05-17 02:44:47 +05:30
Ninstance = count(phase_kinematics == KINEMATICS_thermal_expansion_ID)
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0) &
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
2020-02-28 14:55:07 +05:30
2020-02-29 14:06:42 +05:30
allocate(kinematics_thermal_expansion_instance(size(config_phase)), source=0)
allocate(param(Ninstance))
2020-02-28 14:55:07 +05:30
do p = 1, size(config_phase)
2020-02-29 14:06:42 +05:30
kinematics_thermal_expansion_instance(p) = count(phase_kinematics(:,1:p) == KINEMATICS_thermal_expansion_ID)
if (all(phase_kinematics(:,p) /= KINEMATICS_thermal_expansion_ID)) cycle
2020-02-28 14:55:07 +05:30
2020-02-29 15:40:23 +05:30
associate(prm => param(kinematics_thermal_expansion_instance(p)), &
config => config_phase(p))
prm%T_ref = config%getFloat('reference_temperature', defaultVal=0.0_pReal)
2020-02-29 16:51:03 +05:30
! read up to three parameters (constant, linear, quadratic with T)
2020-02-28 14:55:07 +05:30
temp = config%getFloats('thermal_expansion11')
2020-02-29 16:51:03 +05:30
prm%expansion(1,1,1:size(temp)) = temp
temp = config%getFloats('thermal_expansion22',defaultVal=[(0.0_pReal, i=1,size(temp))],requiredSize=size(temp))
prm%expansion(2,2,1:size(temp)) = temp
temp = config%getFloats('thermal_expansion33',defaultVal=[(0.0_pReal, i=1,size(temp))],requiredSize=size(temp))
prm%expansion(3,3,1:size(temp)) = temp
2020-02-29 17:27:19 +05:30
do i=1, size(prm%expansion,3)
prm%expansion(1:3,1:3,i) = lattice_symmetrize33(prm%expansion(1:3,1:3,i),config%getString('lattice_structure'))
enddo
2020-02-29 16:51:03 +05:30
2020-02-28 14:55:07 +05:30
end associate
enddo
end subroutine kinematics_thermal_expansion_init
!--------------------------------------------------------------------------------------------------
!> @brief report initial thermal strain based on current temperature deviation from reference
!--------------------------------------------------------------------------------------------------
pure function kinematics_thermal_expansion_initialStrain(homog,phase,offset)
2020-02-28 14:55:07 +05:30
2019-05-17 02:44:47 +05:30
integer, intent(in) :: &
phase, &
2020-02-29 14:06:42 +05:30
homog, &
offset
2020-02-29 19:04:19 +05:30
real(pReal), dimension(3,3) :: &
2020-02-29 14:06:42 +05:30
kinematics_thermal_expansion_initialStrain !< initial thermal strain (should be small strain, though)
2020-02-28 14:55:07 +05:30
2020-02-29 15:40:23 +05:30
associate(prm => param(kinematics_thermal_expansion_instance(phase)))
kinematics_thermal_expansion_initialStrain = &
2020-02-29 17:27:19 +05:30
(temperature(homog)%p(offset) - prm%T_ref)**1 / 1. * prm%expansion(1:3,1:3,1) + & ! constant coefficient
(temperature(homog)%p(offset) - prm%T_ref)**2 / 2. * prm%expansion(1:3,1:3,2) + & ! linear coefficient
(temperature(homog)%p(offset) - prm%T_ref)**3 / 3. * prm%expansion(1:3,1:3,3) ! quadratic coefficient
2020-02-29 15:40:23 +05:30
end associate
2020-02-28 14:55:07 +05:30
end function kinematics_thermal_expansion_initialStrain
!--------------------------------------------------------------------------------------------------
2020-02-28 14:55:07 +05:30
!> @brief contains the constitutive equation for calculating the velocity gradient
!--------------------------------------------------------------------------------------------------
subroutine kinematics_thermal_expansion_LiAndItsTangent(Li, dLi_dTstar, ipc, ip, el)
2020-02-28 14:55:07 +05:30
2019-05-17 02:44:47 +05:30
integer, intent(in) :: &
2019-06-16 00:02:53 +05:30
ipc, & !< grain number
ip, & !< integration point number
el !< element number
real(pReal), intent(out), dimension(3,3) :: &
2019-06-16 00:02:53 +05:30
Li !< thermal velocity gradient
real(pReal), intent(out), dimension(3,3,3,3) :: &
2019-06-16 00:02:53 +05:30
dLi_dTstar !< derivative of Li with respect to Tstar (4th-order tensor defined to be zero)
2020-02-29 14:06:42 +05:30
2019-05-17 02:44:47 +05:30
integer :: &
phase, &
2020-02-29 14:06:42 +05:30
homog
real(pReal) :: &
2020-02-29 15:40:23 +05:30
T, TDot
2020-02-28 14:55:07 +05:30
phase = material_phaseAt(ipc,el)
2019-03-10 15:32:32 +05:30
homog = material_homogenizationAt(el)
2020-02-29 14:06:42 +05:30
T = temperature(homog)%p(thermalMapping(homog)%p(ip,el))
TDot = temperatureRate(homog)%p(thermalMapping(homog)%p(ip,el))
2020-02-28 14:55:07 +05:30
2020-02-29 15:40:23 +05:30
associate(prm => param(kinematics_thermal_expansion_instance(phase)))
Li = TDot * ( &
2020-02-29 17:27:19 +05:30
prm%expansion(1:3,1:3,1)*(T - prm%T_ref)**0 & ! constant coefficient
+ prm%expansion(1:3,1:3,2)*(T - prm%T_ref)**1 & ! linear coefficient
+ prm%expansion(1:3,1:3,3)*(T - prm%T_ref)**2 & ! quadratic coefficient
) / &
(1.0_pReal &
2020-02-29 17:27:19 +05:30
+ prm%expansion(1:3,1:3,1)*(T - prm%T_ref)**1 / 1. &
+ prm%expansion(1:3,1:3,2)*(T - prm%T_ref)**2 / 2. &
+ prm%expansion(1:3,1:3,3)*(T - prm%T_ref)**3 / 3. &
)
2020-02-29 15:40:23 +05:30
end associate
2020-02-28 14:55:07 +05:30
dLi_dTstar = 0.0_pReal
end subroutine kinematics_thermal_expansion_LiAndItsTangent
end module kinematics_thermal_expansion