DAMASK_EICMD/src/phase_damage_isoductile.f90

151 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
2020-06-26 15:14:17 +05:30
!> @brief material subroutine incorporating isotropic ductile damage source mechanism
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(phase:damagee) 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-03-05 01:46:36 +05:30
integer :: Ninstances,Nmembers,p
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
do p = 1, phases%length
2021-02-13 17:14:47 +05:30
if(mySources(p)) then
phase => phases%get(p)
sources => phase%get('damage')
2021-02-13 14:41:39 +05:30
associate(prm => param(p))
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__)
prm%output = output_asStrings(src)
#else
prm%output = src%get_asStrings('output',defaultVal=emptyStringArray)
#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-03-05 01:46:36 +05:30
Nmembers=count(material_phaseAt2==p)
call phase_allocateState(damageState(p),Nmembers,1,1,0)
damageState(p)%atol = src%get_asFloat('isoDuctile_atol',defaultVal=1.0e-3_pReal)
if(any(damageState(p)%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
2020-08-15 19:32:10 +05:30
if (extmsg /= '') call IO_error(211,ext_msg=trim(extmsg)//'(damage_isoDuctile)')
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 returns local part of nonlocal damage driving force
!--------------------------------------------------------------------------------------------------
2021-02-13 15:31:08 +05:30
module subroutine isoductile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, ph, me)
2020-02-26 23:18:33 +05:30
integer, intent(in) :: &
2021-02-13 15:31:08 +05:30
ph, &
me
2020-02-26 23:18:33 +05:30
real(pReal), intent(in) :: &
phi
real(pReal), intent(out) :: &
localphiDot, &
dLocalphiDot_dPhi
2020-02-29 11:55:36 +05:30
2020-02-26 23:07:17 +05:30
2021-02-13 15:31:08 +05:30
dLocalphiDot_dPhi = -damageState(ph)%state(1,me)
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
localphiDot = 1.0_pReal &
+ dLocalphiDot_dPhi*phi
2021-02-13 15:31:08 +05:30
end subroutine isoductile_getRateAndItsTangent
!--------------------------------------------------------------------------------------------------
!> @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')
call results_writeDataset(group,stt,trim(prm%output(o)),'driving force','J/m³')
end select
enddo outputsLoop
end associate
2021-01-26 04:08:32 +05:30
end subroutine isoductile_results
end submodule isoductile