2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
submodule(constitutive:constitutive_damage) source_damage_anisoDuctile
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2019-12-21 12:25:42 +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
|
2020-02-28 15:28:11 +05:30
|
|
|
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)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
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-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)
|
|
|
|
Ninstance = count(mySources)
|
2020-09-22 16:39:12 +05:30
|
|
|
print'(a,i2)', ' # instances: ',Ninstance; flush(IO_STDOUT)
|
2020-08-15 19:32:10 +05:30
|
|
|
if(Ninstance == 0) return
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-09-13 14:09: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-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
|
|
|
|
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
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-14 01:54:51 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates derived quantities from state
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module subroutine source_damage_anisoDuctile_dotState(ipc, ip, el)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
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
|
|
|
|
2019-06-14 12:32:28 +05:30
|
|
|
phase = material_phaseAt(ipc,el)
|
2019-06-14 12:39:16 +05:30
|
|
|
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) &
|
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
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine source_damage_anisoDuctile_dotState
|
|
|
|
|
2019-06-14 01:54:51 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief returns local part of nonlocal damage driving force
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module subroutine source_damage_anisoDuctile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, phase, constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
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
|
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine source_damage_anisoDuctile_getRateAndItsTangent
|
2019-06-14 01:54:51 +05:30
|
|
|
|
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-12-10 11:15:00 +05:30
|
|
|
!> @brief writes results to HDF5 output file
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module subroutine source_damage_anisoDuctile_results(phase,group)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
integer, intent(in) :: phase
|
2019-12-10 11:15:00 +05:30
|
|
|
character(len=*), intent(in) :: group
|
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
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³')
|
2020-02-28 15:28:11 +05:30
|
|
|
end select
|
|
|
|
enddo outputsLoop
|
|
|
|
end associate
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-12-10 11:15:00 +05:30
|
|
|
end subroutine source_damage_anisoDuctile_results
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-07-09 04:31:08 +05:30
|
|
|
end submodule source_damage_anisoDuctile
|