DAMASK_EICMD/src/homogenization_mechanical.f90

255 lines
12 KiB
Fortran
Raw Normal View History

2020-12-16 15:51:24 +05:30
!--------------------------------------------------------------------------------------------------
!> @author Martin Diehl, KU Leuven
!> @brief Partition F and homogenize P/dPdF
!--------------------------------------------------------------------------------------------------
2021-01-26 16:11:19 +05:30
submodule(homogenization) mechanics
2020-12-16 15:51:24 +05:30
2020-12-23 18:33:15 +05:30
2020-12-16 15:51:24 +05:30
interface
2021-02-09 03:51:53 +05:30
module subroutine mechanical_pass_init
end subroutine mechanical_pass_init
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_isostrain_init
end subroutine mechanical_isostrain_init
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_RGC_init(num_homogMech)
2020-12-16 15:51:24 +05:30
class(tNode), pointer, intent(in) :: &
num_homogMech !< pointer to mechanical homogenization numerics data
2021-02-09 03:51:53 +05:30
end subroutine mechanical_RGC_init
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_isostrain_partitionDeformation(F,avgF)
2020-12-16 15:51:24 +05:30
real(pReal), dimension (:,:,:), intent(out) :: F !< partitioned deformation gradient
real(pReal), dimension (3,3), intent(in) :: avgF !< average deformation gradient at material point
2021-02-09 03:51:53 +05:30
end subroutine mechanical_isostrain_partitionDeformation
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_RGC_partitionDeformation(F,avgF,instance,of)
2020-12-16 15:51:24 +05:30
real(pReal), dimension (:,:,:), intent(out) :: F !< partitioned deformation gradient
real(pReal), dimension (3,3), intent(in) :: avgF !< average deformation gradient at material point
integer, intent(in) :: &
instance, &
of
2021-02-09 03:51:53 +05:30
end subroutine mechanical_RGC_partitionDeformation
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_isostrain_averageStressAndItsTangent(avgP,dAvgPdAvgF,P,dPdF,instance)
2020-12-16 15:51:24 +05:30
real(pReal), dimension (3,3), intent(out) :: avgP !< average stress at material point
real(pReal), dimension (3,3,3,3), intent(out) :: dAvgPdAvgF !< average stiffness at material point
real(pReal), dimension (:,:,:), intent(in) :: P !< partitioned stresses
real(pReal), dimension (:,:,:,:,:), intent(in) :: dPdF !< partitioned stiffnesses
integer, intent(in) :: instance
2021-02-09 03:51:53 +05:30
end subroutine mechanical_isostrain_averageStressAndItsTangent
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_RGC_averageStressAndItsTangent(avgP,dAvgPdAvgF,P,dPdF,instance)
2020-12-16 15:51:24 +05:30
real(pReal), dimension (3,3), intent(out) :: avgP !< average stress at material point
real(pReal), dimension (3,3,3,3), intent(out) :: dAvgPdAvgF !< average stiffness at material point
real(pReal), dimension (:,:,:), intent(in) :: P !< partitioned stresses
real(pReal), dimension (:,:,:,:,:), intent(in) :: dPdF !< partitioned stiffnesses
integer, intent(in) :: instance
2021-02-09 03:51:53 +05:30
end subroutine mechanical_RGC_averageStressAndItsTangent
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
module function mechanical_RGC_updateState(P,F,avgF,dt,dPdF,ip,el) result(doneAndHappy)
2020-12-28 14:25:54 +05:30
logical, dimension(2) :: doneAndHappy
real(pReal), dimension(:,:,:), intent(in) :: &
P,& !< partitioned stresses
F !< partitioned deformation gradients
2020-12-28 14:25:54 +05:30
real(pReal), dimension(:,:,:,:,:), intent(in) :: dPdF !< partitioned stiffnesses
real(pReal), dimension(3,3), intent(in) :: avgF !< average F
real(pReal), intent(in) :: dt !< time increment
integer, intent(in) :: &
ip, & !< integration point number
el !< element number
2021-02-09 03:51:53 +05:30
end function mechanical_RGC_updateState
2020-12-28 14:25:54 +05:30
2021-02-09 03:51:53 +05:30
module subroutine mechanical_RGC_results(instance,group)
2020-12-16 15:51:24 +05:30
integer, intent(in) :: instance !< homogenization instance
character(len=*), intent(in) :: group !< group name in HDF5 file
2021-02-09 03:51:53 +05:30
end subroutine mechanical_RGC_results
2020-12-16 15:51:24 +05:30
end interface
contains
!--------------------------------------------------------------------------------------------------
!> @brief Allocate variables and set parameters.
!--------------------------------------------------------------------------------------------------
2021-02-09 03:51:53 +05:30
module subroutine mechanical_init(num_homog)
2020-12-16 15:51:24 +05:30
class(tNode), pointer, intent(in) :: &
num_homog
class(tNode), pointer :: &
num_homogMech
2021-01-27 15:14:03 +05:30
print'(/,a)', ' <<<+- homogenization:mechanics init -+>>>'
2020-12-16 15:51:24 +05:30
allocate(homogenization_dPdF(3,3,3,3,discretization_nIPs*discretization_Nelems), source=0.0_pReal)
homogenization_F0 = spread(math_I3,3,discretization_nIPs*discretization_Nelems) ! initialize to identity
homogenization_F = homogenization_F0 ! initialize to identity
allocate(homogenization_P(3,3,discretization_nIPs*discretization_Nelems), source=0.0_pReal)
2020-12-16 15:51:24 +05:30
num_homogMech => num_homog%get('mech',defaultVal=emptyDict)
2021-02-09 03:51:53 +05:30
if (any(homogenization_type == HOMOGENIZATION_NONE_ID)) call mechanical_pass_init
if (any(homogenization_type == HOMOGENIZATION_ISOSTRAIN_ID)) call mechanical_isostrain_init
if (any(homogenization_type == HOMOGENIZATION_RGC_ID)) call mechanical_RGC_init(num_homogMech)
2020-12-16 15:51:24 +05:30
2021-02-09 03:51:53 +05:30
end subroutine mechanical_init
2020-12-16 15:51:24 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief Partition F onto the individual constituents.
!--------------------------------------------------------------------------------------------------
2021-02-09 03:51:53 +05:30
module subroutine mechanical_partition(subF,ip,el)
2020-12-16 15:51:24 +05:30
real(pReal), intent(in), dimension(3,3) :: &
subF
integer, intent(in) :: &
ip, & !< integration point
el !< element number
2020-12-30 15:33:13 +05:30
2020-12-29 16:55:03 +05:30
integer :: co
2020-12-31 12:16:26 +05:30
real(pReal), dimension (3,3,homogenization_Nconstituents(material_homogenizationAt(el))) :: Fs
2020-12-29 16:55:03 +05:30
2020-12-16 15:51:24 +05:30
chosenHomogenization: select case(homogenization_type(material_homogenizationAt(el)))
case (HOMOGENIZATION_NONE_ID) chosenHomogenization
2020-12-31 12:16:26 +05:30
Fs(1:3,1:3,1) = subF
2020-12-16 15:51:24 +05:30
case (HOMOGENIZATION_ISOSTRAIN_ID) chosenHomogenization
2021-02-09 03:51:53 +05:30
call mechanical_isostrain_partitionDeformation(Fs,subF)
2020-12-16 15:51:24 +05:30
case (HOMOGENIZATION_RGC_ID) chosenHomogenization
2021-02-09 03:51:53 +05:30
call mechanical_RGC_partitionDeformation(Fs,subF,ip,el)
2020-12-16 15:51:24 +05:30
end select chosenHomogenization
2020-12-29 16:55:03 +05:30
do co = 1,homogenization_Nconstituents(material_homogenizationAt(el))
2021-02-09 03:51:53 +05:30
call phase_mechanical_setF(Fs(1:3,1:3,co),co,ip,el)
2020-12-29 16:55:03 +05:30
enddo
2021-02-09 03:51:53 +05:30
end subroutine mechanical_partition
2020-12-16 15:51:24 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief Average P and dPdF from the individual constituents.
!--------------------------------------------------------------------------------------------------
2021-02-09 03:51:53 +05:30
module subroutine mechanical_homogenize(dt,ip,el)
2020-12-16 15:51:24 +05:30
real(pReal), intent(in) :: dt
2020-12-16 15:51:24 +05:30
integer, intent(in) :: &
ip, & !< integration point
el !< element number
2020-12-27 14:17:20 +05:30
integer :: co,ce
2020-12-16 15:51:24 +05:30
real(pReal) :: dPdFs(3,3,3,3,homogenization_Nconstituents(material_homogenizationAt(el)))
2020-12-30 15:33:13 +05:30
real(pReal) :: Ps(3,3,homogenization_Nconstituents(material_homogenizationAt(el)))
2020-12-16 15:51:24 +05:30
2020-12-27 14:17:20 +05:30
ce = (el-1)* discretization_nIPs + ip
2020-12-16 15:51:24 +05:30
chosenHomogenization: select case(homogenization_type(material_homogenizationAt(el)))
case (HOMOGENIZATION_NONE_ID) chosenHomogenization
2021-02-09 03:51:53 +05:30
homogenization_P(1:3,1:3,ce) = phase_mechanical_getP(1,ip,el)
homogenization_dPdF(1:3,1:3,1:3,1:3,ce) = phase_mechanical_dPdF(dt,1,ip,el)
2020-12-16 15:51:24 +05:30
case (HOMOGENIZATION_ISOSTRAIN_ID) chosenHomogenization
2020-12-27 14:17:20 +05:30
do co = 1, homogenization_Nconstituents(material_homogenizationAt(el))
2021-02-09 03:51:53 +05:30
dPdFs(:,:,:,:,co) = phase_mechanical_dPdF(dt,co,ip,el)
Ps(:,:,co) = phase_mechanical_getP(co,ip,el)
2020-12-16 15:51:24 +05:30
enddo
2021-02-09 03:51:53 +05:30
call mechanical_isostrain_averageStressAndItsTangent(&
2020-12-27 14:17:20 +05:30
homogenization_P(1:3,1:3,ce), &
homogenization_dPdF(1:3,1:3,1:3,1:3,ce),&
2020-12-30 15:33:13 +05:30
Ps,dPdFs, &
2020-12-16 15:51:24 +05:30
homogenization_typeInstance(material_homogenizationAt(el)))
case (HOMOGENIZATION_RGC_ID) chosenHomogenization
2020-12-27 14:17:20 +05:30
do co = 1, homogenization_Nconstituents(material_homogenizationAt(el))
2021-02-09 03:51:53 +05:30
dPdFs(:,:,:,:,co) = phase_mechanical_dPdF(dt,co,ip,el)
Ps(:,:,co) = phase_mechanical_getP(co,ip,el)
2020-12-16 15:51:24 +05:30
enddo
2021-02-09 03:51:53 +05:30
call mechanical_RGC_averageStressAndItsTangent(&
2020-12-27 14:17:20 +05:30
homogenization_P(1:3,1:3,ce), &
homogenization_dPdF(1:3,1:3,1:3,1:3,ce),&
2020-12-30 15:33:13 +05:30
Ps,dPdFs, &
2020-12-16 15:51:24 +05:30
homogenization_typeInstance(material_homogenizationAt(el)))
end select chosenHomogenization
2021-02-09 03:51:53 +05:30
end subroutine mechanical_homogenize
2020-12-16 15:51:24 +05:30
2020-12-28 14:25:54 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief update the internal state of the homogenization scheme and tell whether "done" and
!> "happy" with result
!--------------------------------------------------------------------------------------------------
2021-02-09 03:51:53 +05:30
module function mechanical_updateState(subdt,subF,ip,el) result(doneAndHappy)
2020-12-28 14:25:54 +05:30
real(pReal), intent(in) :: &
subdt !< current time step
real(pReal), intent(in), dimension(3,3) :: &
subF
integer, intent(in) :: &
ip, & !< integration point
el !< element number
logical, dimension(2) :: doneAndHappy
integer :: co
real(pReal) :: dPdFs(3,3,3,3,homogenization_Nconstituents(material_homogenizationAt(el)))
2020-12-29 22:57:24 +05:30
real(pReal) :: Fs(3,3,homogenization_Nconstituents(material_homogenizationAt(el)))
2020-12-30 15:33:13 +05:30
real(pReal) :: Ps(3,3,homogenization_Nconstituents(material_homogenizationAt(el)))
2020-12-28 14:25:54 +05:30
if (homogenization_type(material_homogenizationAt(el)) == HOMOGENIZATION_RGC_ID) then
do co = 1, homogenization_Nconstituents(material_homogenizationAt(el))
2021-02-09 03:51:53 +05:30
dPdFs(:,:,:,:,co) = phase_mechanical_dPdF(subdt,co,ip,el)
Fs(:,:,co) = phase_mechanical_getF(co,ip,el)
Ps(:,:,co) = phase_mechanical_getP(co,ip,el)
2020-12-28 14:25:54 +05:30
enddo
2021-02-09 03:51:53 +05:30
doneAndHappy = mechanical_RGC_updateState(Ps,Fs,subF,subdt,dPdFs,ip,el)
2020-12-28 14:25:54 +05:30
else
doneAndHappy = .true.
endif
2021-02-09 03:51:53 +05:30
end function mechanical_updateState
2020-12-28 14:25:54 +05:30
2020-12-16 15:51:24 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief Write results to file.
!--------------------------------------------------------------------------------------------------
2021-02-09 03:51:53 +05:30
module subroutine mechanical_results(group_base,h)
2020-12-16 15:51:24 +05:30
character(len=*), intent(in) :: group_base
integer, intent(in) :: h
character(len=:), allocatable :: group
group = trim(group_base)//'/mech'
call results_closeGroup(results_addGroup(group))
2021-02-12 20:01:43 +05:30
select case(homogenization_type(h))
2020-12-16 15:51:24 +05:30
case(HOMOGENIZATION_rgc_ID)
2021-02-09 03:51:53 +05:30
call mechanical_RGC_results(homogenization_typeInstance(h),group)
2020-12-16 15:51:24 +05:30
end select
!temp = reshape(homogenization_F,[3,3,discretization_nIPs*discretization_Nelems])
!call results_writeDataset(group,temp,'F',&
! 'deformation gradient','1')
!temp = reshape(homogenization_P,[3,3,discretization_nIPs*discretization_Nelems])
!call results_writeDataset(group,temp,'P',&
! '1st Piola-Kirchhoff stress','Pa')
2021-02-09 03:51:53 +05:30
end subroutine mechanical_results
2020-12-16 15:51:24 +05:30
2021-01-26 16:11:19 +05:30
end submodule mechanics