2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-04-06 15:11:45 +05:30
|
|
|
submodule(phase:damage) isobrittle
|
2020-02-29 00:16:18 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
type :: tParameters !< container type for internal constitutive parameters
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL) :: &
|
2020-09-07 15:18:26 +05:30
|
|
|
W_crit !< critical elastic strain energy
|
2023-06-04 10:47:38 +05:30
|
|
|
character(len=pSTRLEN), allocatable, dimension(:) :: &
|
2020-02-28 15:28:11 +05:30
|
|
|
output
|
2019-06-11 19:06:04 +05:30
|
|
|
end type tParameters
|
|
|
|
|
2021-07-18 12:40:33 +05:30
|
|
|
type :: tIsobrittleState
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL), pointer, dimension(:) :: & !< vectors along Nmembers
|
2021-07-18 12:40:33 +05:30
|
|
|
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
|
|
|
|
2015-05-28 22:32:23 +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)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-02-13 17:14:47 +05:30
|
|
|
logical, dimension(:), allocatable :: mySources
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2022-10-25 21:39:36 +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
|
2023-03-01 01:27:44 +05:30
|
|
|
character(len=:), allocatable :: &
|
|
|
|
refs, &
|
|
|
|
extmsg
|
2020-02-26 23:07:17 +05:30
|
|
|
|
|
|
|
|
2021-02-13 17:14:47 +05:30
|
|
|
mySources = source_active('isobrittle')
|
2021-11-15 23:05:44 +05:30
|
|
|
if (count(mySources) == 0) return
|
2021-02-13 17:37:35 +05:30
|
|
|
|
2021-11-15 23:05:44 +05:30
|
|
|
print'(/,1x,a)', '<<<+- phase:damage:isobrittle init -+>>>'
|
2023-08-29 07:11:48 +05:30
|
|
|
print'(/,1x,a,1x,i0)', '# phases:',count(mySources); flush(IO_STDOUT)
|
2021-02-13 17:37:35 +05:30
|
|
|
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2022-10-25 21:39:36 +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))
|
2023-01-10 16:24:13 +05:30
|
|
|
extmsg = ''
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2021-04-06 15:08:44 +05:30
|
|
|
do ph = 1, phases%length
|
2021-11-15 23:05:44 +05:30
|
|
|
if (mySources(ph)) then
|
2022-10-25 21:39:36 +05:30
|
|
|
phase => phases%get_dict(ph)
|
2022-12-17 11:28:01 +05:30
|
|
|
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
|
|
|
|
2023-06-03 20:36:32 +05:30
|
|
|
prm%W_crit = src%get_asReal('G_crit')/src%get_asReal('l_c')
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2023-08-29 07:11:48 +05:30
|
|
|
print'(/,1x,a,1x,i0,a)', 'phase',ph,': '//phases%key(ph)
|
2023-03-01 01:27:44 +05:30
|
|
|
refs = config_listReferences(src,indent=3)
|
|
|
|
if (len(refs) > 0) print'(/,1x,a)', refs
|
2023-02-25 17:13:10 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
#if defined (__GFORTRAN__)
|
2023-06-04 10:47:38 +05:30
|
|
|
prm%output = output_as1dStr(src)
|
2020-08-15 19:32:10 +05:30
|
|
|
#else
|
2023-06-04 10:47:38 +05:30
|
|
|
prm%output = src%get_as1dStr('output',defaultVal=emptyStrArray)
|
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
|
2023-06-04 10:52:25 +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)
|
2023-06-04 10:52:25 +05:30
|
|
|
damageState(ph)%atol = src%get_asReal('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)')
|
2021-11-15 23:05:44 +05:30
|
|
|
end if
|
2021-02-13 17:14:47 +05:30
|
|
|
|
2021-11-15 23:05:44 +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
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2023-01-07 17:33:12 +05:30
|
|
|
!> @brief
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-07-18 13:14:52 +05:30
|
|
|
module subroutine isobrittle_deltaState(C, Fe, ph,en)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-07-18 13:14:52 +05:30
|
|
|
integer, intent(in) :: ph,en
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL), intent(in), dimension(3,3) :: &
|
2019-06-11 19:06:04 +05:30
|
|
|
Fe
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL), intent(in), dimension(6,6) :: &
|
2019-06-11 19:06:04 +05:30
|
|
|
C
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL), dimension(6) :: &
|
2021-07-18 12:40:33 +05:30
|
|
|
epsilon
|
2023-06-04 10:52:25 +05:30
|
|
|
real(pREAL) :: &
|
2021-07-18 12:40:33 +05:30
|
|
|
r_W
|
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
|
2023-06-04 10:52:25 +05:30
|
|
|
epsilon = math_33toVoigt6_strain(0.5_pREAL*(matmul(transpose(Fe),Fe)-math_I3))
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-07-18 12:40:33 +05:30
|
|
|
associate(prm => param(ph), stt => state(ph), dlt => deltaState(ph))
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2023-06-04 10:52:25 +05:30
|
|
|
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
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2023-01-07 17:33:12 +05:30
|
|
|
!> @brief Write results to HDF5 output file.
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2023-01-19 22:07:45 +05:30
|
|
|
module subroutine isobrittle_result(phase,group)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
integer, intent(in) :: phase
|
2020-02-26 23:07:17 +05:30
|
|
|
character(len=*), intent(in) :: group
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
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)))
|
2023-03-09 17:01:20 +05:30
|
|
|
case ('r_W')
|
|
|
|
call result_writeDataset(stt,group,trim(prm%output(o)),'ratio between actual and critical strain energy density','-')
|
2021-02-13 14:41:39 +05:30
|
|
|
end select
|
2021-11-15 23:05:44 +05:30
|
|
|
end do outputsLoop
|
2021-07-18 12:40:33 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
end associate
|
2019-12-10 11:15:00 +05:30
|
|
|
|
2023-01-19 22:07:45 +05:30
|
|
|
end subroutine isobrittle_result
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-01-27 01:22:48 +05:30
|
|
|
end submodule isobrittle
|