DAMASK_EICMD/src/phase_damage_isoductile.f90

128 lines
4.4 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
2020-06-26 15:14:17 +05:30
!> @brief material subroutine incorporating isotropic ductile damage source mechanism
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(phase:damage) isoductile
2020-02-29 11:55:36 +05:30
2020-08-15 19:32:10 +05:30
type:: tParameters !< container type for internal constitutive parameters
2020-02-26 23:18:33 +05:30
real(pReal) :: &
2020-09-23 04:38:13 +05:30
gamma_crit, & !< critical plastic strain
q
character(len=pStringLen), allocatable, dimension(:) :: &
output
2020-02-26 23:18:33 +05:30
end type tParameters
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstances)
2020-02-26 23:18:33 +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 isoductile_init() result(mySources)
2021-02-13 17:14:47 +05:30
logical, dimension(:), allocatable :: mySources
2020-08-15 19:32:10 +05:30
class(tNode), pointer :: &
phases, &
phase, &
sources, &
src
2021-04-06 15:08:44 +05:30
integer :: Ninstances,Nmembers,ph
2020-02-29 14:50:38 +05:30
character(len=pStringLen) :: extmsg = ''
2020-08-15 19:32:10 +05:30
2021-02-13 17:14:47 +05:30
mySources = source_active('isoductile')
2021-02-13 17:37:35 +05:30
if(count(mySources) == 0) return
print'(/,a)', ' <<<+- phase:damage:isoductile init -+>>>'
print'(a,i0)', ' # phases: ',count(mySources); flush(IO_STDOUT)
phases => config_material%get('phase')
2021-02-13 14:41:39 +05:30
allocate(param(phases%length))
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(ph)
2021-02-13 17:14:47 +05:30
sources => phase%get('damage')
2021-04-06 15:08:44 +05:30
associate(prm => param(ph))
2021-02-13 17:14:47 +05:30
src => sources%get(1)
2020-03-15 00:33:57 +05:30
2020-09-23 04:38:13 +05:30
prm%q = src%get_asFloat('q')
prm%gamma_crit = src%get_asFloat('gamma_crit')
2020-02-26 23:07:17 +05:30
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 15:09:16 +05:30
2020-08-15 19:32:10 +05:30
! sanity checks
2020-09-23 04:38:13 +05:30
if (prm%q <= 0.0_pReal) extmsg = trim(extmsg)//' q'
if (prm%gamma_crit <= 0.0_pReal) extmsg = trim(extmsg)//' gamma_crit'
2020-02-26 23:07:17 +05:30
2021-04-06 15:08:44 +05:30
Nmembers=count(material_phaseID==ph)
call phase_allocateState(damageState(ph),Nmembers,1,1,0)
2021-05-22 01:35:09 +05:30
damageState(ph)%atol = src%get_asFloat('isoductile_atol',defaultVal=1.0e-3_pReal)
2021-04-06 15:08:44 +05:30
if(any(damageState(ph)%atol < 0.0_pReal)) extmsg = trim(extmsg)//' isoductile_atol'
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
end associate
2020-03-15 00:33:57 +05:30
!--------------------------------------------------------------------------------------------------
! exit if any parameter is out of range
2021-05-22 01:35:09 +05:30
if (extmsg /= '') call IO_error(211,ext_msg=trim(extmsg)//'(damage_isoductile)')
2020-08-15 19:32:10 +05:30
endif
enddo
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 isoductile_init
2020-02-26 23:18:33 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief calculates derived quantities from state
!--------------------------------------------------------------------------------------------------
2021-02-13 15:31:08 +05:30
module subroutine isoductile_dotState(ph, me)
2020-02-26 23:18:33 +05:30
integer, intent(in) :: &
2021-01-19 15:09:16 +05:30
ph, &
me
2020-02-26 23:18:33 +05:30
2021-02-13 14:41:39 +05:30
associate(prm => param(ph))
2021-02-13 15:31:08 +05:30
damageState(ph)%dotState(1,me) = sum(plasticState(ph)%slipRate(:,me)) &
/ (prm%gamma_crit*damage_phi(ph,me)**prm%q)
2020-02-29 11:55:36 +05:30
end associate
2021-01-26 04:08:32 +05:30
end subroutine isoductile_dotState
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief writes results to HDF5 output file
!--------------------------------------------------------------------------------------------------
2021-01-26 04:08:32 +05:30
module subroutine isoductile_results(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
associate(prm => param(phase), stt => damageState(phase)%state)
outputsLoop: do o = 1,size(prm%output)
select case(trim(prm%output(o)))
case ('f_phi')
2021-06-01 20:35:13 +05:30
call results_writeDataset(stt,group,trim(prm%output(o)),'driving force','J/m³')
2021-02-13 14:41:39 +05:30
end select
enddo outputsLoop
end associate
2021-01-26 04:08:32 +05:30
end subroutine isoductile_results
end submodule isoductile