DAMASK_EICMD/src/source_damage_anisoDuctile.f90

188 lines
7.7 KiB
Fortran
Raw Normal View History

!--------------------------------------------------------------------------------------------------
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
!> @brief material subroutine incorporating anisotropic ductile damage source mechanism
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(constitutive:constitutive_damage) source_damage_anisoDuctile
2020-02-26 23:07:17 +05:30
integer, dimension(:), allocatable :: &
2019-06-14 01:54:51 +05:30
source_damage_anisoDuctile_offset, & !< which source is my current damage mechanism?
source_damage_anisoDuctile_instance !< instance of damage source mechanism
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
type :: tParameters !< container type for internal constitutive parameters
2019-06-14 01:54:51 +05:30
real(pReal) :: &
2020-09-23 04:38:13 +05:30
q !< damage rate sensitivity
2019-06-14 01:54:51 +05:30
real(pReal), dimension(:), allocatable :: &
2020-09-23 04:38:13 +05:30
gamma_crit !< critical plastic strain per slip system
character(len=pStringLen), allocatable, dimension(:) :: &
output
2019-06-14 01:54:51 +05:30
end type tParameters
2020-02-26 23:07:17 +05:30
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstances)
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2020-08-15 19:32:10 +05:30
module function source_damage_anisoDuctile_init(source_length) result(mySources)
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
integer, intent(in) :: source_length
logical, dimension(:,:), allocatable :: mySources
class(tNode), pointer :: &
phases, &
phase, &
2020-11-03 16:21:57 +05:30
mech, &
2020-08-15 19:32:10 +05:30
pl, &
sources, &
src
integer :: Ninstances,sourceOffset,Nconstituents,p
2020-03-17 04:01:43 +05:30
integer, dimension(:), allocatable :: N_sl
2020-02-29 14:50:38 +05:30
character(len=pStringLen) :: extmsg = ''
2020-02-26 23:07:17 +05:30
2020-09-18 02:27:56 +05:30
print'(/,a)', ' <<<+- source_damage_anisoDuctile init -+>>>'
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
mySources = source_active('damage_anisoDuctile',source_length)
Ninstances = count(mySources)
print'(a,i2)', ' # instances: ',Ninstances; flush(IO_STDOUT)
if(Ninstances == 0) return
2020-02-26 23:07:17 +05:30
phases => config_material%get('phase')
allocate(param(Ninstances))
2020-08-15 19:32:10 +05:30
allocate(source_damage_anisoDuctile_offset (phases%length), source=0)
allocate(source_damage_anisoDuctile_instance(phases%length), source=0)
do p = 1, phases%length
2020-11-03 16:21:57 +05:30
phase => phases%get(p)
2020-08-15 19:32:10 +05:30
if(any(mySources(:,p))) source_damage_anisoDuctile_instance(p) = count(mySources(:,1:p))
if(count(mySources(:,p)) == 0) cycle
2020-11-18 01:54:40 +05:30
mech => phase%get('mechanics')
2020-11-03 16:21:57 +05:30
pl => mech%get('plasticity')
2020-08-15 19:32:10 +05:30
sources => phase%get('source')
do sourceOffset = 1, sources%length
if(mySources(sourceOffset,p)) then
2020-02-29 12:33:06 +05:30
source_damage_anisoDuctile_offset(p) = sourceOffset
2020-08-15 19:32:10 +05:30
associate(prm => param(source_damage_anisoDuctile_instance(p)))
src => sources%get(sourceOffset)
2020-03-15 00:33:57 +05:30
2020-09-23 04:38:13 +05:30
N_sl = pl%get_asInts('N_sl',defaultVal=emptyIntArray)
prm%q = src%get_asFloat('q')
prm%gamma_crit = src%get_asFloats('gamma_crit',requiredSize=size(N_sl))
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
! expand: family => system
2020-09-23 04:38:13 +05:30
prm%gamma_crit = math_expand(prm%gamma_crit,N_sl)
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
! sanity checks
2020-09-23 04:38:13 +05:30
if (prm%q <= 0.0_pReal) extmsg = trim(extmsg)//' q'
if (any(prm%gamma_crit < 0.0_pReal)) extmsg = trim(extmsg)//' gamma_crit'
2020-02-26 23:07:17 +05:30
Nconstituents=count(material_phaseAt==p) * discretization_nIPs
call constitutive_allocateState(sourceState(p)%p(sourceOffset),Nconstituents,1,1,0)
2020-08-15 19:32:10 +05:30
sourceState(p)%p(sourceOffset)%atol = src%get_asFloat('anisoDuctile_atol',defaultVal=1.0e-3_pReal)
if(any(sourceState(p)%p(sourceOffset)%atol < 0.0_pReal)) extmsg = trim(extmsg)//' anisoductile_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_anisoDuctile)')
endif
enddo
enddo
2020-03-15 00:33:57 +05:30
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
end function source_damage_anisoDuctile_init
2019-06-14 01:54:51 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief calculates derived quantities from state
!--------------------------------------------------------------------------------------------------
2020-12-23 11:37:18 +05:30
module subroutine source_damage_anisoDuctile_dotState(co, ip, el)
2019-06-14 01:54:51 +05:30
integer, intent(in) :: &
2020-12-23 11:37:18 +05:30
co, & !< component-ID of integration point
2019-06-14 01:54:51 +05:30
ip, & !< integration point
el !< element
2020-02-29 11:55:36 +05:30
2019-06-14 01:54:51 +05:30
integer :: &
phase, &
constituent, &
sourceOffset, &
2020-02-29 11:55:36 +05:30
damageOffset, &
2020-03-17 04:13:59 +05:30
homog
2020-02-26 23:07:17 +05:30
2020-12-23 11:37:18 +05:30
phase = material_phaseAt(co,el)
constituent = material_phasememberAt(co,ip,el)
2019-06-14 01:54:51 +05:30
sourceOffset = source_damage_anisoDuctile_offset(phase)
homog = material_homogenizationAt(el)
2020-12-16 00:25:55 +05:30
damageOffset = material_homogenizationMemberAt(ip,el)
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
associate(prm => param(source_damage_anisoDuctile_instance(phase)))
2020-03-17 04:13:59 +05:30
sourceState(phase)%p(sourceOffset)%dotState(1,constituent) &
2020-09-23 04:38:13 +05:30
= sum(plasticState(phase)%slipRate(:,constituent)/(damage(homog)%p(damageOffset)**prm%q)/prm%gamma_crit)
2020-02-29 11:55:36 +05:30
end associate
2020-02-26 23:07:17 +05:30
end subroutine source_damage_anisoDuctile_dotState
2019-06-14 01:54:51 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief returns local part of nonlocal damage driving force
!--------------------------------------------------------------------------------------------------
module subroutine source_damage_anisoDuctile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, phase, constituent)
2019-06-14 01:54:51 +05:30
integer, intent(in) :: &
phase, &
constituent
real(pReal), intent(in) :: &
phi
real(pReal), intent(out) :: &
localphiDot, &
dLocalphiDot_dPhi
2020-02-29 11:55:36 +05:30
2019-06-14 01:54:51 +05:30
integer :: &
sourceOffset
2020-02-26 23:07:17 +05:30
2019-06-14 01:54:51 +05:30
sourceOffset = source_damage_anisoDuctile_offset(phase)
2020-02-26 23:07:17 +05:30
2019-06-14 01:54:51 +05:30
dLocalphiDot_dPhi = -sourceState(phase)%p(sourceOffset)%state(1,constituent)
2020-02-26 23:07:17 +05:30
2020-02-29 11:55:36 +05:30
localphiDot = 1.0_pReal &
+ dLocalphiDot_dPhi*phi
end subroutine source_damage_anisoDuctile_getRateAndItsTangent
2019-06-14 01:54:51 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief writes results to HDF5 output file
!--------------------------------------------------------------------------------------------------
module subroutine source_damage_anisoDuctile_results(phase,group)
integer, intent(in) :: phase
character(len=*), intent(in) :: group
integer :: o
associate(prm => param(source_damage_anisoDuctile_instance(phase)), &
stt => sourceState(phase)%p(source_damage_anisoDuctile_offset(phase))%state)
outputsLoop: do o = 1,size(prm%output)
select case(trim(prm%output(o)))
2020-08-15 19:32:10 +05:30
case ('f_phi')
call results_writeDataset(group,stt,trim(prm%output(o)),'driving force','J/m³')
end select
enddo outputsLoop
end associate
end subroutine source_damage_anisoDuctile_results
end submodule source_damage_anisoDuctile