DAMASK_EICMD/src/phase_damage_isobrittle.f90

152 lines
5.1 KiB
Fortran
Raw Normal View History

!--------------------------------------------------------------------------------------------------
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
!> @brief material subroutine incoprorating isotropic brittle damage source mechanism
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(phase:damage) isobrittle
2020-08-15 19:32:10 +05:30
type :: tParameters !< container type for internal constitutive parameters
2019-06-11 19:06:04 +05:30
real(pReal) :: &
2020-09-07 15:18:26 +05:30
W_crit !< critical elastic strain energy
character(len=pStringLen), allocatable, dimension(:) :: &
output
2019-06-11 19:06:04 +05:30
end type tParameters
2021-07-18 12:40:33 +05:30
type :: tIsobrittleState
real(pReal), pointer, dimension(:) :: & !< vectors along Nmembers
r_W !< ratio between actual and critical strain energy density
end type tIsobrittleState
type(tParameters), allocatable, dimension(:) :: param !< containers of constitutive parameters (len Ninstances)
type(tIsobrittleState), allocatable, dimension(:) :: &
deltaState, &
state
2019-06-11 19:06:04 +05:30
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2021-02-13 17:14:47 +05:30
module function isobrittle_init() result(mySources)
2021-02-13 17:14:47 +05:30
logical, dimension(:), allocatable :: mySources
2020-08-15 19:32:10 +05:30
type(tDict), pointer :: &
2020-08-15 19:32:10 +05:30
phases, &
phase, &
src
2021-04-06 15:08:44 +05:30
integer :: Nmembers,ph
character(len=:), allocatable :: extmsg
2020-02-26 23:07:17 +05:30
2021-02-13 17:14:47 +05:30
mySources = source_active('isobrittle')
if (count(mySources) == 0) return
2021-02-13 17:37:35 +05:30
print'(/,1x,a)', '<<<+- phase:damage:isobrittle init -+>>>'
print'(/,a,i0)', ' # phases: ',count(mySources); flush(IO_STDOUT)
2021-02-13 17:37:35 +05:30
2020-02-26 23:07:17 +05:30
phases => config_material%get_dict('phase')
2021-02-13 14:41:39 +05:30
allocate(param(phases%length))
2021-07-18 12:40:33 +05:30
allocate(state(phases%length))
allocate(deltaState(phases%length))
extmsg = ''
2020-08-15 19:32:10 +05:30
2021-04-06 15:08:44 +05:30
do ph = 1, phases%length
if (mySources(ph)) then
phase => phases%get_dict(ph)
src => phase%get_dict('damage')
2021-02-13 17:14:47 +05:30
2021-07-18 12:40:33 +05:30
associate(prm => param(ph), dlt => deltaState(ph), stt => state(ph))
2020-02-26 23:07:17 +05:30
prm%W_crit = src%get_asFloat('G_crit')/src%get_asFloat('l_c')
2020-02-26 23:07:17 +05:30
2023-02-28 12:25:34 +05:30
print'(a,i0,a)', ' phase ',ph,' '//config_fetchReferences(src)
2020-08-15 19:32:10 +05:30
#if defined (__GFORTRAN__)
2021-03-11 22:30:07 +05:30
prm%output = output_as1dString(src)
2020-08-15 19:32:10 +05:30
#else
2021-03-11 22:30:07 +05:30
prm%output = src%get_as1dString('output',defaultVal=emptyStringArray)
2020-08-15 19:32:10 +05:30
#endif
2021-01-19 14:51:51 +05:30
2020-08-15 19:32:10 +05:30
! sanity checks
2020-09-07 15:18:26 +05:30
if (prm%W_crit <= 0.0_pReal) extmsg = trim(extmsg)//' W_crit'
2020-03-15 00:33:57 +05:30
2023-01-23 13:01:59 +05:30
Nmembers = count(material_ID_phase==ph)
2022-07-02 22:29:21 +05:30
call phase_allocateState(damageState(ph),Nmembers,1,0,1)
2021-06-25 16:56:08 +05:30
damageState(ph)%atol = src%get_asFloat('atol_phi',defaultVal=1.0e-9_pReal)
if (any(damageState(ph)%atol < 0.0_pReal)) extmsg = trim(extmsg)//' atol_phi'
2020-02-26 23:07:17 +05:30
2021-07-18 12:40:33 +05:30
stt%r_W => damageState(ph)%state(1,:)
dlt%r_W => damageState(ph)%deltaState(1,:)
2021-07-17 02:11:38 +05:30
end associate
2020-03-15 00:33:57 +05:30
2021-07-17 02:11:38 +05:30
if (extmsg /= '') call IO_error(211,ext_msg=trim(extmsg)//'(damage_isobrittle)')
end if
2021-02-13 17:14:47 +05:30
end do
2020-03-15 00:33:57 +05:30
2020-02-26 23:07:17 +05:30
2021-01-26 04:08:32 +05:30
end function isobrittle_init
2020-02-29 11:55:36 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief
!--------------------------------------------------------------------------------------------------
module subroutine isobrittle_deltaState(C, Fe, ph,en)
integer, intent(in) :: ph,en
2019-06-11 19:06:04 +05:30
real(pReal), intent(in), dimension(3,3) :: &
Fe
real(pReal), intent(in), dimension(6,6) :: &
C
2020-02-29 11:55:36 +05:30
real(pReal), dimension(6) :: &
2021-07-18 12:40:33 +05:30
epsilon
2019-06-11 19:06:04 +05:30
real(pReal) :: &
2021-07-18 12:40:33 +05:30
r_W
2019-06-11 19:06:04 +05:30
epsilon = math_33toVoigt6_strain(0.5_pReal*(matmul(transpose(Fe),Fe)-math_I3))
2021-07-18 12:40:33 +05:30
associate(prm => param(ph), stt => state(ph), dlt => deltaState(ph))
r_W = (0.5_pReal*dot_product(epsilon,matmul(C,epsilon)))/prm%W_crit
dlt%r_W(en) = merge(r_W - stt%r_W(en), 0.0_pReal, r_W > stt%r_W(en))
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
end associate
2020-02-26 23:07:17 +05:30
2021-02-13 15:31:08 +05:30
end subroutine isobrittle_deltaState
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief Write results to HDF5 output file.
!--------------------------------------------------------------------------------------------------
2023-01-19 22:07:45 +05:30
module subroutine isobrittle_result(phase,group)
integer, intent(in) :: phase
2020-02-26 23:07:17 +05:30
character(len=*), intent(in) :: group
integer :: o
2021-02-13 14:41:39 +05:30
2021-07-18 12:40:33 +05:30
associate(prm => param(phase), stt => damageState(phase)%state) ! point to state and output r_W (is scalar, not 1D vector)
2021-02-13 14:41:39 +05:30
outputsLoop: do o = 1,size(prm%output)
select case(trim(prm%output(o)))
case ('f_phi')
2023-01-19 22:07:45 +05:30
call result_writeDataset(stt,group,trim(prm%output(o)),'driving force','-')
2021-02-13 14:41:39 +05:30
end select
end do outputsLoop
2021-07-18 12:40:33 +05:30
end associate
2023-01-19 22:07:45 +05:30
end subroutine isobrittle_result
end submodule isobrittle