2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @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
|
|
|
|
use prec, only: &
|
|
|
|
pReal, &
|
|
|
|
pInt
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2019-02-13 04:05:22 +05:30
|
|
|
|
|
|
|
!type, private :: tParameters
|
|
|
|
! real(pReal), allocatable, dimension(:) :: &
|
|
|
|
!end type tParameters
|
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
public :: &
|
|
|
|
kinematics_thermal_expansion_init, &
|
2015-07-24 20:17:18 +05:30
|
|
|
kinematics_thermal_expansion_initialStrain, &
|
2015-05-28 22:32:23 +05:30
|
|
|
kinematics_thermal_expansion_LiAndItsTangent
|
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:28:38 +05:30
|
|
|
subroutine kinematics_thermal_expansion_init()
|
2018-02-02 17:06:09 +05:30
|
|
|
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
|
2017-10-05 20:05:34 +05:30
|
|
|
use, intrinsic :: iso_fortran_env, only: &
|
|
|
|
compiler_version, &
|
|
|
|
compiler_options
|
|
|
|
#endif
|
2015-05-28 22:32:23 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level,&
|
|
|
|
debug_constitutive,&
|
|
|
|
debug_levelBasic
|
|
|
|
use IO, only: &
|
2018-12-31 01:28:38 +05:30
|
|
|
IO_timeStamp
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_kinematics, &
|
|
|
|
KINEMATICS_thermal_expansion_label, &
|
2018-06-10 21:31:52 +05:30
|
|
|
KINEMATICS_thermal_expansion_ID
|
2018-06-14 10:09:49 +05:30
|
|
|
use config, only: &
|
2018-12-31 01:28:38 +05:30
|
|
|
config_phase
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
implicit none
|
2019-02-13 04:05:22 +05:30
|
|
|
integer(pInt) :: &
|
|
|
|
Ninstance, &
|
|
|
|
p
|
2018-12-31 01:28:38 +05:30
|
|
|
|
2017-11-21 19:38:45 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- kinematics_'//KINEMATICS_thermal_expansion_LABEL//' init -+>>>'
|
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2015-05-28 22:32:23 +05:30
|
|
|
#include "compilation_info.f90"
|
|
|
|
|
2019-02-13 04:05:22 +05:30
|
|
|
Ninstance = int(count(phase_kinematics == KINEMATICS_thermal_expansion_ID),pInt)
|
|
|
|
if (Ninstance == 0_pInt) return
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0_pInt) &
|
2019-02-13 04:05:22 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-02-13 04:05:22 +05:30
|
|
|
do p = 1_pInt, size(phase_kinematics)
|
|
|
|
if (all(phase_kinematics(:,p) /= KINEMATICS_thermal_expansion_ID)) cycle
|
|
|
|
enddo
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine kinematics_thermal_expansion_init
|
|
|
|
|
2015-07-23 21:29:25 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief report initial thermal strain based on current temperature deviation from reference
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-02-13 04:05:22 +05:30
|
|
|
pure function kinematics_thermal_expansion_initialStrain(homog,phase,offset)
|
2015-07-23 21:29:25 +05:30
|
|
|
use material, only: &
|
2019-02-13 04:05:22 +05:30
|
|
|
temperature
|
2015-07-23 21:29:25 +05:30
|
|
|
use lattice, only: &
|
|
|
|
lattice_thermalExpansion33, &
|
|
|
|
lattice_referenceTemperature
|
|
|
|
|
|
|
|
implicit none
|
2015-07-24 00:52:03 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2015-07-23 21:29:25 +05:30
|
|
|
phase, &
|
|
|
|
homog, offset
|
2019-02-13 04:05:22 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
kinematics_thermal_expansion_initialStrain !< initial thermal strain (should be small strain, though)
|
|
|
|
|
2015-07-23 21:29:25 +05:30
|
|
|
|
2015-07-24 20:17:18 +05:30
|
|
|
kinematics_thermal_expansion_initialStrain = &
|
2018-02-26 00:44:03 +05:30
|
|
|
(temperature(homog)%p(offset) - lattice_referenceTemperature(phase))**1 / 1. * &
|
|
|
|
lattice_thermalExpansion33(1:3,1:3,1,phase) + & ! constant coefficient
|
|
|
|
(temperature(homog)%p(offset) - lattice_referenceTemperature(phase))**2 / 2. * &
|
|
|
|
lattice_thermalExpansion33(1:3,1:3,2,phase) + & ! linear coefficient
|
|
|
|
(temperature(homog)%p(offset) - lattice_referenceTemperature(phase))**3 / 3. * &
|
|
|
|
lattice_thermalExpansion33(1:3,1:3,3,phase) ! quadratic coefficient
|
2015-07-23 21:29:25 +05:30
|
|
|
|
2015-07-24 20:17:18 +05:30
|
|
|
end function kinematics_thermal_expansion_initialStrain
|
2015-07-23 21:29:25 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief contains the constitutive equation for calculating the velocity gradient
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:28:38 +05:30
|
|
|
subroutine kinematics_thermal_expansion_LiAndItsTangent(Li, dLi_dTstar, ipc, ip, el)
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
|
|
|
material_phase, &
|
|
|
|
material_homog, &
|
2015-08-05 19:42:54 +05:30
|
|
|
temperature, &
|
2015-05-28 22:32:23 +05:30
|
|
|
temperatureRate, &
|
|
|
|
thermalMapping
|
2015-07-23 21:29:25 +05:30
|
|
|
use lattice, only: &
|
2015-08-05 19:42:54 +05:30
|
|
|
lattice_thermalExpansion33, &
|
|
|
|
lattice_referenceTemperature
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
ipc, & !< grain number
|
|
|
|
ip, & !< integration point number
|
|
|
|
el !< element number
|
|
|
|
real(pReal), intent(out), dimension(3,3) :: &
|
|
|
|
Li !< thermal velocity gradient
|
|
|
|
real(pReal), intent(out), dimension(3,3,3,3) :: &
|
2018-12-31 01:28:38 +05:30
|
|
|
dLi_dTstar !< derivative of Li with respect to Tstar (4th-order tensor defined to be zero)
|
2015-05-28 22:32:23 +05:30
|
|
|
integer(pInt) :: &
|
|
|
|
phase, &
|
|
|
|
homog, offset
|
2015-08-05 19:42:54 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
T, TRef, TDot
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
phase = material_phase(ipc,ip,el)
|
|
|
|
homog = material_homog(ip,el)
|
|
|
|
offset = thermalMapping(homog)%p(ip,el)
|
2015-08-05 19:42:54 +05:30
|
|
|
T = temperature(homog)%p(offset)
|
|
|
|
TDot = temperatureRate(homog)%p(offset)
|
|
|
|
TRef = lattice_referenceTemperature(phase)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2018-02-26 00:44:03 +05:30
|
|
|
Li = TDot * ( &
|
|
|
|
lattice_thermalExpansion33(1:3,1:3,1,phase)*(T - TRef)**0 & ! constant coefficient
|
|
|
|
+ lattice_thermalExpansion33(1:3,1:3,2,phase)*(T - TRef)**1 & ! linear coefficient
|
|
|
|
+ lattice_thermalExpansion33(1:3,1:3,3,phase)*(T - TRef)**2 & ! quadratic coefficient
|
|
|
|
) / &
|
2018-12-05 13:29:32 +05:30
|
|
|
(1.0_pReal &
|
2018-02-26 00:44:03 +05:30
|
|
|
+ lattice_thermalExpansion33(1:3,1:3,1,phase)*(T - TRef)**1 / 1. &
|
|
|
|
+ lattice_thermalExpansion33(1:3,1:3,2,phase)*(T - TRef)**2 / 2. &
|
|
|
|
+ lattice_thermalExpansion33(1:3,1:3,3,phase)*(T - TRef)**3 / 3. &
|
|
|
|
)
|
2018-12-31 01:28:38 +05:30
|
|
|
dLi_dTstar = 0.0_pReal
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine kinematics_thermal_expansion_LiAndItsTangent
|
|
|
|
|
|
|
|
end module kinematics_thermal_expansion
|