DAMASK_EICMD/src/homogenization.f90

476 lines
16 KiB
Fortran
Raw Normal View History

2012-08-10 21:28:17 +05:30
!--------------------------------------------------------------------------------------------------
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
!> @author Denny Tjahjanto, Max-Planck-Institut für Eisenforschung GmbH
!> @brief homogenization manager, organizing deformation partitioning and stress homogenization
2012-08-10 21:28:17 +05:30
!--------------------------------------------------------------------------------------------------
module homogenization
2019-06-15 20:12:16 +05:30
use prec
2022-02-20 02:12:38 +05:30
use math
use constants
2019-06-15 20:12:16 +05:30
use IO
use config
use material
use phase
2019-06-15 20:12:16 +05:30
use discretization
2021-07-08 17:57:04 +05:30
use HDF5
2020-12-30 04:44:48 +05:30
use HDF5_utilities
2023-01-19 22:07:45 +05:30
use result
2023-07-15 23:58:57 +05:30
use crystal
2020-03-17 05:09:32 +05:30
implicit none(type,external)
2019-06-15 20:12:16 +05:30
private
2019-06-11 13:18:07 +05:30
2022-03-06 12:58:48 +05:30
type :: tState
integer :: &
sizeState = 0 !< size of state
! http://stackoverflow.com/questions/3948210
real(pREAL), pointer, dimension(:,:), contiguous :: & !< is basically an allocatable+target, but in a type needs to be pointer
2022-03-06 12:58:48 +05:30
state0, &
state
end type
2021-02-12 20:01:43 +05:30
enum, bind(c); enumerator :: &
2022-02-24 16:39:47 +05:30
THERMAL_UNDEFINED_ID, &
THERMAL_PASS_ID, &
THERMAL_ISOTEMPERATURE_ID
2021-02-12 20:01:43 +05:30
end enum
2022-02-24 16:39:47 +05:30
integer(kind(THERMAL_UNDEFINED_ID)), dimension(:), allocatable :: &
thermal_type !< type of each homogenization
2021-02-12 20:01:43 +05:30
type(tState), allocatable, dimension(:), public :: &
2021-02-12 20:01:43 +05:30
homogState, &
damageState_h
logical, allocatable, dimension(:) :: &
thermal_active, &
damage_active
2021-02-12 20:01:43 +05:30
2020-04-14 13:08:32 +05:30
!--------------------------------------------------------------------------------------------------
! General variables for the homogenization at a material point
real(pREAL), dimension(:,:,:), allocatable, public :: &
2020-12-16 15:51:24 +05:30
homogenization_F !< def grad of IP to be reached at end of FE increment
2024-01-13 11:27:15 +05:30
real(pREAL), dimension(:,:,:), allocatable, public, protected :: &
2020-12-16 15:51:24 +05:30
homogenization_P !< first P--K stress of IP
2024-01-13 11:27:15 +05:30
real(pREAL), dimension(:,:,:,:,:), allocatable, public, protected :: &
2020-12-16 15:51:24 +05:30
homogenization_dPdF !< tangent of first P--K stress at IP
2019-06-15 20:12:16 +05:30
2020-12-16 15:51:24 +05:30
!--------------------------------------------------------------------------------------------------
interface
2020-03-17 05:09:32 +05:30
module subroutine mechanical_init()
2021-02-09 03:51:53 +05:30
end subroutine mechanical_init
2020-12-16 15:51:24 +05:30
module subroutine thermal_init()
2020-12-30 16:30:47 +05:30
end subroutine thermal_init
module subroutine damage_init()
2021-01-21 01:24:31 +05:30
end subroutine damage_init
2021-02-15 23:13:51 +05:30
module subroutine mechanical_partition(subF,ce)
real(pREAL), intent(in), dimension(3,3) :: &
2020-12-16 15:51:24 +05:30
subF
integer, intent(in) :: &
ce
2021-02-09 03:51:53 +05:30
end subroutine mechanical_partition
2020-03-17 05:09:32 +05:30
2021-01-24 17:56:01 +05:30
module subroutine thermal_partition(ce)
integer, intent(in) :: ce
2021-01-08 02:45:18 +05:30
end subroutine thermal_partition
module subroutine damage_partition(ce)
2021-01-21 01:24:31 +05:30
integer, intent(in) :: ce
end subroutine damage_partition
2021-07-17 15:20:21 +05:30
module subroutine mechanical_homogenize(Delta_t,ce)
real(pREAL), intent(in) :: Delta_t
2020-12-16 15:51:24 +05:30
integer, intent(in) :: &
2021-02-26 02:12:40 +05:30
ce !< cell
2021-02-09 03:51:53 +05:30
end subroutine mechanical_homogenize
2020-03-17 05:09:32 +05:30
2023-01-19 22:07:45 +05:30
module subroutine mechanical_result(group_base,ho)
2020-12-16 15:51:24 +05:30
character(len=*), intent(in) :: group_base
integer, intent(in) :: ho
2023-01-19 22:07:45 +05:30
end subroutine mechanical_result
2020-03-17 05:09:32 +05:30
2023-01-19 22:07:45 +05:30
module subroutine damage_result(ho,group)
2021-04-07 10:56:54 +05:30
integer, intent(in) :: ho
character(len=*), intent(in) :: group
2023-01-19 22:07:45 +05:30
end subroutine damage_result
2021-04-07 10:56:54 +05:30
2023-01-19 22:07:45 +05:30
module subroutine thermal_result(ho,group)
2021-04-07 10:56:54 +05:30
integer, intent(in) :: ho
character(len=*), intent(in) :: group
2023-01-19 22:07:45 +05:30
end subroutine thermal_result
2021-04-07 10:56:54 +05:30
module function mechanical_updateState(subdt,subF,ce) result(doneAndHappy)
real(pREAL), intent(in) :: &
2021-02-22 20:47:32 +05:30
subdt !< current time step
real(pREAL), intent(in), dimension(3,3) :: &
2020-12-28 14:25:54 +05:30
subF
integer, intent(in) :: &
ce !< cell
2020-12-28 14:25:54 +05:30
logical, dimension(2) :: doneAndHappy
2021-02-09 03:51:53 +05:30
end function mechanical_updateState
2019-06-15 20:12:16 +05:30
module function homogenization_thermal_active() result(active)
logical :: active
end function homogenization_thermal_active
2021-04-11 12:02:13 +05:30
module function homogenization_mu_T(ce) result(mu)
integer, intent(in) :: ce
real(pREAL) :: mu
2021-04-11 12:02:13 +05:30
end function homogenization_mu_T
2021-01-24 17:56:01 +05:30
2021-04-09 03:10:20 +05:30
module function homogenization_K_T(ce) result(K)
integer, intent(in) :: ce
real(pREAL), dimension(3,3) :: K
2021-04-09 03:10:20 +05:30
end function homogenization_K_T
2021-01-24 17:56:01 +05:30
2021-04-11 12:02:13 +05:30
module function homogenization_f_T(ce) result(f)
2021-01-24 17:56:01 +05:30
integer, intent(in) :: ce
real(pREAL) :: f
2021-04-11 12:02:13 +05:30
end function homogenization_f_T
2021-01-24 17:56:01 +05:30
2023-07-21 03:03:43 +05:30
module subroutine homogenization_thermal_setField(T,dot_T)
real(pREAL), dimension(:), intent(in) :: T, dot_T
2021-01-24 17:56:01 +05:30
end subroutine homogenization_thermal_setField
module function homogenization_damage_active() result(active)
logical :: active
end function homogenization_damage_active
2021-04-09 03:10:20 +05:30
module function homogenization_mu_phi(ce) result(mu)
integer, intent(in) :: ce
real(pREAL) :: mu
2021-04-08 17:01:21 +05:30
end function homogenization_mu_phi
2021-01-24 23:17:19 +05:30
2021-04-11 11:18:54 +05:30
module function homogenization_K_phi(ce) result(K)
integer, intent(in) :: ce
real(pREAL), dimension(3,3) :: K
2021-04-11 11:18:54 +05:30
end function homogenization_K_phi
2021-04-09 03:10:20 +05:30
module function homogenization_f_phi(phi,ce) result(f)
integer, intent(in) :: ce
real(pREAL), intent(in) :: phi
real(pREAL) :: f
2021-04-08 17:01:21 +05:30
end function homogenization_f_phi
2021-01-25 19:43:17 +05:30
2023-07-21 03:03:43 +05:30
module subroutine homogenization_set_phi(phi)
real(pREAL), dimension(:), intent(in) :: phi
2021-04-08 00:36:29 +05:30
end subroutine homogenization_set_phi
2021-01-25 19:43:17 +05:30
2019-06-15 20:12:16 +05:30
end interface
2019-06-15 20:12:16 +05:30
public :: &
homogenization_init, &
2021-07-17 15:20:21 +05:30
homogenization_mechanical_response, &
homogenization_thermal_response, &
homogenization_thermal_active, &
2021-04-09 03:10:20 +05:30
homogenization_mu_T, &
homogenization_K_T, &
2021-04-08 02:11:49 +05:30
homogenization_f_T, &
2021-04-11 12:02:13 +05:30
homogenization_thermal_setfield, &
homogenization_damage_active, &
2021-04-08 17:01:21 +05:30
homogenization_mu_phi, &
2021-04-11 12:02:13 +05:30
homogenization_K_phi, &
2021-04-08 17:01:21 +05:30
homogenization_f_phi, &
2021-04-08 00:36:29 +05:30
homogenization_set_phi, &
2020-12-23 11:28:54 +05:30
homogenization_forward, &
2023-01-19 22:07:45 +05:30
homogenization_result, &
2020-12-30 04:44:48 +05:30
homogenization_restartRead, &
homogenization_restartWrite
2012-08-10 21:28:17 +05:30
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!--------------------------------------------------------------------------------------------------
2021-01-21 01:24:31 +05:30
subroutine homogenization_init()
type(tDict) , pointer :: &
2020-06-16 22:17:19 +05:30
num_homog, &
num_homogGeneric
2020-07-02 01:50:22 +05:30
print'(/,1x,a)', '<<<+- homogenization init -+>>>'; flush(IO_STDOUT)
2020-12-16 15:51:24 +05:30
2021-02-12 20:01:43 +05:30
allocate(homogState (size(material_name_homogenization)))
allocate(damageState_h (size(material_name_homogenization)))
call parseHomogenization()
call mechanical_init()
2021-01-08 02:45:18 +05:30
call thermal_init()
2021-01-21 01:24:31 +05:30
call damage_init()
2020-12-16 15:51:24 +05:30
2012-08-10 21:28:17 +05:30
end subroutine homogenization_init
2012-08-10 21:28:17 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief
2012-08-10 21:28:17 +05:30
!--------------------------------------------------------------------------------------------------
2024-01-09 16:33:25 +05:30
subroutine homogenization_mechanical_response(status,Delta_t,cell_start,cell_end)
2024-01-09 16:33:25 +05:30
integer(kind(STATUS_OK)), intent(out) :: status
real(pREAL), intent(in) :: Delta_t !< time increment
integer, intent(in) :: &
cell_start, cell_end
2019-06-15 20:12:16 +05:30
integer :: &
2021-07-17 15:20:21 +05:30
co, ce, ho, en
2020-12-23 21:44:26 +05:30
logical :: &
2020-04-15 16:39:05 +05:30
converged
2020-12-23 21:44:26 +05:30
logical, dimension(2) :: &
2020-04-15 16:39:05 +05:30
doneAndHappy
2020-07-03 20:15:11 +05:30
2024-01-09 16:33:25 +05:30
status = STATUS_OK
!$OMP PARALLEL DO PRIVATE(en,ho,co,converged,doneAndHappy)
do ce = cell_start, cell_end
2021-05-23 13:40:25 +05:30
2023-01-23 13:01:59 +05:30
en = material_entry_homogenization(ce)
ho = material_ID_homogenization(ce)
2021-01-24 14:09:40 +05:30
call phase_restore(ce,.false.) ! wrong name (is more a forward function)
2020-03-17 05:09:32 +05:30
2022-12-07 22:59:03 +05:30
if (homogState(ho)%sizeState > 0) homogState(ho)%state(:,en) = homogState(ho)%state0(:,en)
if (damageState_h(ho)%sizeState > 0) damageState_h(ho)%state(:,en) = damageState_h(ho)%state0(:,en)
call damage_partition(ce)
2019-06-15 20:12:16 +05:30
doneAndHappy = [.false.,.true.]
convergenceLooping: do while (status == STATUS_OK .and. .not. doneAndHappy(1))
2019-06-15 20:12:16 +05:30
call mechanical_partition(homogenization_F(1:3,1:3,ce),ce)
converged = all([(phase_mechanical_constitutive(Delta_t,co,ce) == STATUS_OK,co=1,homogenization_Nconstituents(ho))])
if (converged) then
doneAndHappy = mechanical_updateState(Delta_t,homogenization_F(1:3,1:3,ce),ce)
converged = all(doneAndHappy)
else
doneAndHappy = [.true.,.false.]
end if
end do convergenceLooping
if (.not. converged) then
2024-01-09 16:33:25 +05:30
if (status == STATUS_OK) print*, ' Cell ', ce, ' failed (mechanics)'
2024-01-13 12:57:17 +05:30
status = STATUS_FAIL_PHASE_MECHANICAL
end if
converged = converged .and. all([(phase_damage_constitutive(Delta_t,co,ce)==STATUS_OK,co=1,homogenization_Nconstituents(ho))])
2021-07-17 18:55:00 +05:30
if (.not. converged) then
if (status == STATUS_OK) print*, ' Cell ', ce, ' failed (damage)'
2024-01-13 12:57:17 +05:30
status = STATUS_FAIL_PHASE_DAMAGE
end if
end do
!$OMP END PARALLEL DO
2024-01-09 16:33:25 +05:30
if (status /= STATUS_OK) return
2023-12-29 13:44:50 +05:30
!$OMP PARALLEL DO PRIVATE(ho)
2023-12-29 13:44:50 +05:30
do ce = cell_start, cell_end
ho = material_ID_homogenization(ce)
do co = 1, homogenization_Nconstituents(ho)
call crystallite_orientations(co,ce)
end do
call mechanical_homogenize(Delta_t,ce)
end do
!$OMP END PARALLEL DO
2021-07-17 15:20:21 +05:30
end subroutine homogenization_mechanical_response
!--------------------------------------------------------------------------------------------------
!> @brief
!--------------------------------------------------------------------------------------------------
2024-01-09 17:25:02 +05:30
subroutine homogenization_thermal_response(status, &
Delta_t,cell_start,cell_end)
2024-01-09 17:25:02 +05:30
integer(kind(STATUS_OK)), intent(out) :: status
real(pREAL), intent(in) :: Delta_t !< time increment
integer, intent(in) :: &
cell_start, cell_end
2023-12-29 01:58:57 +05:30
integer :: &
2021-07-17 15:20:21 +05:30
co, ce, ho
2020-12-23 19:07:12 +05:30
2024-01-09 17:25:02 +05:30
status = STATUS_OK
!$OMP PARALLEL DO PRIVATE(ho)
do ce = cell_start, cell_end
if (status /= STATUS_OK) continue
2023-01-23 13:01:59 +05:30
ho = material_ID_homogenization(ce)
do co = 1, homogenization_Nconstituents(ho)
if (phase_thermal_constitutive(Delta_t,material_ID_phase(co,ce),material_entry_phase(co,ce)) /= STATUS_OK) then
if (status == STATUS_OK) print*, ' Cell ', ce, ' failed (thermal)'
2024-01-13 12:57:17 +05:30
status = STATUS_FAIL_PHASE_THERMAL
end if
end do
end do
2021-07-17 00:13:08 +05:30
!$OMP END PARALLEL DO
2021-07-17 15:20:21 +05:30
end subroutine homogenization_thermal_response
2021-07-17 00:13:08 +05:30
2019-04-30 22:15:16 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief writes homogenization results to HDF5 output file
!--------------------------------------------------------------------------------------------------
2023-12-29 01:58:57 +05:30
subroutine homogenization_result()
2020-03-17 05:09:32 +05:30
2020-12-28 13:57:48 +05:30
integer :: ho
2020-11-06 05:29:12 +05:30
character(len=:), allocatable :: group_base,group
2020-03-17 05:09:32 +05:30
2020-12-28 13:48:20 +05:30
2023-01-19 22:07:45 +05:30
call result_closeGroup(result_addGroup('current/homogenization/'))
2020-03-17 05:09:32 +05:30
2020-12-28 13:57:48 +05:30
do ho=1,size(material_name_homogenization)
group_base = 'current/homogenization/'//trim(material_name_homogenization(ho))
2023-01-19 22:07:45 +05:30
call result_closeGroup(result_addGroup(group_base))
2020-03-17 05:09:32 +05:30
2023-01-19 22:07:45 +05:30
call mechanical_result(group_base,ho)
if (damage_active(ho)) then
group = trim(group_base)//'/damage'
2023-01-19 22:07:45 +05:30
call result_closeGroup(result_addGroup(group))
call damage_result(ho,group)
end if
2020-03-17 05:09:32 +05:30
if (thermal_active(ho)) then
group = trim(group_base)//'/thermal'
2023-01-19 22:07:45 +05:30
call result_closeGroup(result_addGroup(group))
call thermal_result(ho,group)
end if
2020-03-17 05:09:32 +05:30
2022-06-09 02:36:01 +05:30
end do
2019-12-19 00:35:51 +05:30
2023-01-19 22:07:45 +05:30
end subroutine homogenization_result
2019-04-30 22:15:16 +05:30
2020-12-23 11:28:54 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief Forward data after successful increment.
! ToDo: Any guessing for the current states possible?
!--------------------------------------------------------------------------------------------------
2023-12-29 01:58:57 +05:30
subroutine homogenization_forward()
2020-12-23 11:28:54 +05:30
2020-12-23 14:35:02 +05:30
integer :: ho
2020-12-23 11:28:54 +05:30
2020-12-28 13:48:20 +05:30
2020-12-23 11:28:54 +05:30
do ho = 1, size(material_name_homogenization)
homogState (ho)%state0 = homogState (ho)%state
2022-12-07 22:59:03 +05:30
if (damageState_h(ho)%sizeState > 0) &
2021-02-12 14:01:02 +05:30
damageState_h(ho)%state0 = damageState_h(ho)%state
2022-06-09 02:36:01 +05:30
end do
2020-12-23 11:28:54 +05:30
end subroutine homogenization_forward
2020-12-30 04:44:48 +05:30
!--------------------------------------------------------------------------------------------------
!--------------------------------------------------------------------------------------------------
subroutine homogenization_restartWrite(fileHandle)
integer(HID_T), intent(in) :: fileHandle
integer(HID_T), dimension(2) :: groupHandle
integer :: ho
groupHandle(1) = HDF5_addGroup(fileHandle,'homogenization')
do ho = 1, size(material_name_homogenization)
groupHandle(2) = HDF5_addGroup(groupHandle(1),material_name_homogenization(ho))
2022-02-03 03:52:44 +05:30
call HDF5_write(homogState(ho)%state,groupHandle(2),'omega_mechanical') ! ToDo: should be done by mech
2020-12-30 04:44:48 +05:30
2022-12-07 22:59:03 +05:30
if (damageState_h(ho)%sizeState > 0) &
call HDF5_write(damageState_h(ho)%state,groupHandle(2),'omega_damage') ! ToDo: should be done by mech
2020-12-30 04:44:48 +05:30
call HDF5_closeGroup(groupHandle(2))
2022-06-09 02:36:01 +05:30
end do
2020-12-30 04:44:48 +05:30
call HDF5_closeGroup(groupHandle(1))
end subroutine homogenization_restartWrite
!--------------------------------------------------------------------------------------------------
!--------------------------------------------------------------------------------------------------
subroutine homogenization_restartRead(fileHandle)
integer(HID_T), intent(in) :: fileHandle
integer(HID_T), dimension(2) :: groupHandle
integer :: ho
groupHandle(1) = HDF5_openGroup(fileHandle,'homogenization')
do ho = 1, size(material_name_homogenization)
groupHandle(2) = HDF5_openGroup(groupHandle(1),material_name_homogenization(ho))
2022-02-03 03:52:44 +05:30
call HDF5_read(homogState(ho)%state0,groupHandle(2),'omega_mechanical') ! ToDo: should be done by mech
2020-12-30 04:44:48 +05:30
2022-12-07 22:59:03 +05:30
if (damageState_h(ho)%sizeState > 0) &
call HDF5_read(damageState_h(ho)%state0,groupHandle(2),'omega_damage') ! ToDo: should be done by mech
2020-12-30 04:44:48 +05:30
call HDF5_closeGroup(groupHandle(2))
2022-06-09 02:36:01 +05:30
end do
2020-12-30 04:44:48 +05:30
call HDF5_closeGroup(groupHandle(1))
end subroutine homogenization_restartRead
2021-02-12 20:01:43 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief parses the homogenization part from the material configuration
!--------------------------------------------------------------------------------------------------
subroutine parseHomogenization
2021-02-12 20:01:43 +05:30
type(tDict), pointer :: &
2021-02-12 20:01:43 +05:30
material_homogenization, &
homog, &
homogThermal, &
homogDamage
integer :: h
material_homogenization => config_material%get_dict('homogenization')
2021-02-12 20:01:43 +05:30
2022-02-24 16:39:47 +05:30
allocate(thermal_type(size(material_name_homogenization)),source=THERMAL_UNDEFINED_ID)
allocate(thermal_active(size(material_name_homogenization)),source=.false.)
allocate(damage_active(size(material_name_homogenization)),source=.false.)
2021-02-12 20:01:43 +05:30
do h=1, size(material_name_homogenization)
homog => material_homogenization%get_dict(h)
2021-02-12 20:01:43 +05:30
if (homog%contains('thermal')) then
homogThermal => homog%get_dict('thermal')
2023-06-04 10:47:38 +05:30
select case (homogThermal%get_asStr('type'))
2022-02-24 16:39:47 +05:30
case('pass')
thermal_type(h) = THERMAL_PASS_ID
thermal_active(h) = .true.
case('isotemperature')
thermal_type(h) = THERMAL_ISOTEMPERATURE_ID
thermal_active(h) = .true.
2021-02-12 20:01:43 +05:30
case default
2023-06-04 10:47:38 +05:30
call IO_error(500,ext_msg=homogThermal%get_asStr('type'))
2021-02-12 20:01:43 +05:30
end select
2022-06-09 02:36:01 +05:30
end if
2021-02-12 20:01:43 +05:30
if (homog%contains('damage')) then
homogDamage => homog%get_dict('damage')
2023-06-04 10:47:38 +05:30
select case (homogDamage%get_asStr('type'))
2021-03-01 10:46:16 +05:30
case('pass')
damage_active(h) = .true.
2021-02-12 20:01:43 +05:30
case default
2023-06-04 10:47:38 +05:30
call IO_error(500,ext_msg=homogDamage%get_asStr('type'))
2021-02-12 20:01:43 +05:30
end select
2022-06-09 02:36:01 +05:30
end if
end do
2021-02-12 20:01:43 +05:30
end subroutine parseHomogenization
2021-02-12 20:01:43 +05:30
2012-08-10 21:28:17 +05:30
end module homogenization