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-08-15 19:32:10 +05:30
n !< damage rate sensitivity
2019-06-14 01:54:51 +05:30
real(pReal), dimension(:), allocatable :: &
2020-08-15 19:32:10 +05:30
critPlasticStrain !< 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
2020-08-15 19:32:10 +05:30
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstance)
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, &
pl, &
sources, &
src
2020-03-16 22:59:15 +05:30
integer :: Ninstance,sourceOffset,NipcMyPhase,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-08-15 19:32:10 +05:30
write(6,'(/,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)
Ninstance = count(mySources)
2020-07-02 00:16:26 +05:30
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance; flush(6)
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
if(Ninstance == 0) return
2020-02-26 23:07:17 +05:30
phases => config_material%get('phase')
2020-08-15 19:32:10 +05:30
allocate(param(Ninstance))
allocate(source_damage_anisoDuctile_offset (phases%length), source=0)
allocate(source_damage_anisoDuctile_instance(phases%length), source=0)
do p = 1, phases%length
phase => phases%get(p)
if(any(mySources(:,p))) source_damage_anisoDuctile_instance(p) = count(mySources(:,1:p))
if(count(mySources(:,p)) == 0) cycle
sources => phase%get('source')
pl => phase%get('plasticity')
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-08-15 19:32:10 +05:30
N_sl = pl%get_asInts('N_sl',defaultVal=emptyIntArray)
prm%n = src%get_asFloat('q')
prm%critPlasticStrain = 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
prm%critPlasticStrain = math_expand(prm%critPlasticStrain,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
if (prm%n <= 0.0_pReal) extmsg = trim(extmsg)//' q'
if (any(prm%critPlasticStrain < 0.0_pReal)) extmsg = trim(extmsg)//' gamma_crit'
2020-02-26 23:07:17 +05:30
2020-08-15 19:32:10 +05:30
NipcMyPhase=count(material_phaseAt==p) * discretization_nIP
call constitutive_allocateState(sourceState(p)%p(sourceOffset),NipcMyPhase,1,1,0)
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
!--------------------------------------------------------------------------------------------------
module subroutine source_damage_anisoDuctile_dotState(ipc, ip, el)
2019-06-14 01:54:51 +05:30
integer, intent(in) :: &
ipc, & !< component-ID of integration point
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
phase = material_phaseAt(ipc,el)
constituent = material_phasememberAt(ipc,ip,el)
2019-06-14 01:54:51 +05:30
sourceOffset = source_damage_anisoDuctile_offset(phase)
homog = material_homogenizationAt(el)
damageOffset = damageMapping(homog)%p(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) &
= sum(plasticState(phase)%slipRate(:,constituent)/(damage(homog)%p(damageOffset)**prm%n)/prm%critPlasticStrain)
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