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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module source_damage_anisoDuctile
|
|
|
|
use prec, only: &
|
|
|
|
pReal, &
|
|
|
|
pInt
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
|
|
|
integer(pInt), dimension(:), allocatable, public, protected :: &
|
|
|
|
source_damage_anisoDuctile_offset, & !< which source is my current damage mechanism?
|
|
|
|
source_damage_anisoDuctile_instance !< instance of damage source mechanism
|
|
|
|
|
|
|
|
integer(pInt), dimension(:,:), allocatable, target, public :: &
|
|
|
|
source_damage_anisoDuctile_sizePostResult !< size of each post result output
|
|
|
|
|
|
|
|
character(len=64), dimension(:,:), allocatable, target, public :: &
|
|
|
|
source_damage_anisoDuctile_output !< name of each post result output
|
|
|
|
|
|
|
|
|
|
|
|
enum, bind(c)
|
|
|
|
enumerator :: undefined_ID, &
|
|
|
|
damage_drivingforce_ID
|
|
|
|
end enum
|
|
|
|
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
type, private :: tParameters !< container type for internal constitutive parameters
|
|
|
|
real(pReal) :: &
|
|
|
|
aTol, &
|
|
|
|
N
|
|
|
|
real(pReal), dimension(:), allocatable :: &
|
2019-02-13 14:27:12 +05:30
|
|
|
critPlasticStrain
|
2019-03-09 17:20:05 +05:30
|
|
|
integer :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
totalNslip
|
2019-03-09 17:20:05 +05:30
|
|
|
integer, dimension(:), allocatable :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
Nslip
|
2019-02-13 12:36:22 +05:30
|
|
|
integer(kind(undefined_ID)), allocatable, dimension(:) :: &
|
|
|
|
outputID
|
2018-12-31 01:38:48 +05:30
|
|
|
end type tParameters
|
|
|
|
|
|
|
|
type(tParameters), dimension(:), allocatable, private :: param !< containers of constitutive parameters (len Ninstance)
|
|
|
|
|
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
public :: &
|
|
|
|
source_damage_anisoDuctile_init, &
|
|
|
|
source_damage_anisoDuctile_dotState, &
|
|
|
|
source_damage_anisoDuctile_getRateAndItsTangent, &
|
|
|
|
source_damage_anisoDuctile_postResults
|
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-02-13 14:27:12 +05:30
|
|
|
subroutine source_damage_anisoDuctile_init
|
2019-02-13 10:58:29 +05:30
|
|
|
use prec, only: &
|
|
|
|
pStringLen
|
2015-05-28 22:32:23 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level,&
|
|
|
|
debug_constitutive,&
|
|
|
|
debug_levelBasic
|
|
|
|
use IO, only: &
|
2019-02-13 14:33:28 +05:30
|
|
|
IO_error
|
2019-03-09 05:37:26 +05:30
|
|
|
use math, only: &
|
2019-02-13 13:46:06 +05:30
|
|
|
math_expand
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
2019-02-13 11:52:37 +05:30
|
|
|
material_allocateSourceState, &
|
2015-05-28 22:32:23 +05:30
|
|
|
phase_source, &
|
|
|
|
phase_Nsources, &
|
|
|
|
phase_Noutput, &
|
|
|
|
SOURCE_damage_anisoDuctile_label, &
|
|
|
|
SOURCE_damage_anisoDuctile_ID, &
|
|
|
|
material_phase, &
|
2018-06-10 21:31:52 +05:30
|
|
|
sourceState
|
2018-06-14 10:09:49 +05:30
|
|
|
use config, only: &
|
2019-03-09 17:20:05 +05:30
|
|
|
config_phase
|
|
|
|
|
2019-02-13 14:27:12 +05:30
|
|
|
|
|
|
|
integer(pInt) :: Ninstance,phase,instance,source,sourceOffset
|
2019-02-13 12:36:22 +05:30
|
|
|
integer(pInt) :: NofMyPhase,p ,i
|
2019-02-13 14:27:12 +05:30
|
|
|
|
2019-02-13 10:58:29 +05:30
|
|
|
integer(pInt), dimension(0), parameter :: emptyIntArray = [integer(pInt)::]
|
2019-02-13 12:36:22 +05:30
|
|
|
character(len=65536), dimension(0), parameter :: emptyStringArray = [character(len=65536)::]
|
|
|
|
integer(kind(undefined_ID)) :: &
|
|
|
|
outputID
|
|
|
|
|
|
|
|
character(len=pStringLen) :: &
|
|
|
|
extmsg = ''
|
|
|
|
character(len=65536), dimension(:), allocatable :: &
|
|
|
|
outputs
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-02-13 12:36:22 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- source_'//SOURCE_DAMAGE_ANISODUCTILE_LABEL//' init -+>>>'
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 05:37:26 +05:30
|
|
|
Ninstance = count(phase_source == SOURCE_damage_anisoDuctile_ID)
|
2018-12-31 01:38:48 +05:30
|
|
|
if (Ninstance == 0_pInt) return
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0_pInt) &
|
2018-12-31 01:38:48 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
allocate(source_damage_anisoDuctile_offset(size(config_phase)), source=0_pInt)
|
|
|
|
allocate(source_damage_anisoDuctile_instance(size(config_phase)), source=0_pInt)
|
|
|
|
do phase = 1, size(config_phase)
|
2015-05-28 22:32:23 +05:30
|
|
|
source_damage_anisoDuctile_instance(phase) = count(phase_source(:,1:phase) == source_damage_anisoDuctile_ID)
|
|
|
|
do source = 1, phase_Nsources(phase)
|
|
|
|
if (phase_source(source,phase) == source_damage_anisoDuctile_ID) &
|
|
|
|
source_damage_anisoDuctile_offset(phase) = source
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
allocate(source_damage_anisoDuctile_sizePostResult(maxval(phase_Noutput),Ninstance),source=0_pInt)
|
|
|
|
allocate(source_damage_anisoDuctile_output(maxval(phase_Noutput),Ninstance))
|
2015-05-28 22:32:23 +05:30
|
|
|
source_damage_anisoDuctile_output = ''
|
2018-12-31 01:38:48 +05:30
|
|
|
|
|
|
|
|
2019-02-13 10:58:29 +05:30
|
|
|
allocate(param(Ninstance))
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
do p=1, size(config_phase)
|
2019-02-13 10:58:29 +05:30
|
|
|
if (all(phase_source(:,p) /= SOURCE_DAMAGE_ANISODUCTILE_ID)) cycle
|
|
|
|
associate(prm => param(source_damage_anisoDuctile_instance(p)), &
|
|
|
|
config => config_phase(p))
|
|
|
|
|
|
|
|
prm%aTol = config%getFloat('anisoductile_atol',defaultVal = 1.0e-3_pReal)
|
|
|
|
|
|
|
|
prm%N = config%getFloat('anisoductile_ratesensitivity')
|
2019-03-09 17:20:05 +05:30
|
|
|
prm%totalNslip = sum(prm%Nslip)
|
2019-02-13 10:58:29 +05:30
|
|
|
! sanity checks
|
|
|
|
if (prm%aTol < 0.0_pReal) extmsg = trim(extmsg)//' anisoductile_atol'
|
|
|
|
|
|
|
|
if (prm%N <= 0.0_pReal) extmsg = trim(extmsg)//' anisoductile_ratesensitivity'
|
|
|
|
|
|
|
|
prm%Nslip = config%getInts('nslip',defaultVal=emptyIntArray)
|
|
|
|
|
2019-02-13 13:46:06 +05:30
|
|
|
prm%critPlasticStrain = config%getFloats('anisoductile_criticalplasticstrain',requiredSize=size(prm%Nslip))
|
|
|
|
|
|
|
|
! expand: family => system
|
|
|
|
prm%critPlasticStrain = math_expand(prm%critPlasticStrain, prm%Nslip)
|
2019-02-13 14:27:12 +05:30
|
|
|
|
|
|
|
if (any(prm%critPlasticStrain < 0.0_pReal)) extmsg = trim(extmsg)//' anisoductile_criticalplasticstrain'
|
2019-02-13 13:46:06 +05:30
|
|
|
|
2019-02-13 12:36:22 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! exit if any parameter is out of range
|
|
|
|
if (extmsg /= '') &
|
|
|
|
call IO_error(211_pInt,ext_msg=trim(extmsg)//'('//SOURCE_DAMAGE_ANISODUCTILE_LABEL//')')
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! output pararameters
|
|
|
|
outputs = config%getStrings('(output)',defaultVal=emptyStringArray)
|
|
|
|
allocate(prm%outputID(0))
|
|
|
|
do i=1_pInt, size(outputs)
|
|
|
|
outputID = undefined_ID
|
|
|
|
select case(outputs(i))
|
2019-02-13 13:35:07 +05:30
|
|
|
|
2019-02-13 12:36:22 +05:30
|
|
|
case ('anisoductile_drivingforce')
|
2019-02-13 13:35:07 +05:30
|
|
|
source_damage_anisoDuctile_sizePostResult(i,source_damage_anisoDuctile_instance(p)) = 1_pInt
|
|
|
|
source_damage_anisoDuctile_output(i,source_damage_anisoDuctile_instance(p)) = outputs(i)
|
|
|
|
prm%outputID = [prm%outputID, damage_drivingforce_ID]
|
2019-02-13 12:36:22 +05:30
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
enddo
|
|
|
|
|
2019-02-13 10:58:29 +05:30
|
|
|
end associate
|
|
|
|
|
2019-02-13 13:35:07 +05:30
|
|
|
phase = p
|
|
|
|
|
|
|
|
NofMyPhase=count(material_phase==phase)
|
|
|
|
instance = source_damage_anisoDuctile_instance(phase)
|
|
|
|
sourceOffset = source_damage_anisoDuctile_offset(phase)
|
|
|
|
|
2019-02-13 14:41:25 +05:30
|
|
|
call material_allocateSourceState(phase,sourceOffset,NofMyPhase,1_pInt,1_pInt,0_pInt)
|
2019-02-13 13:35:07 +05:30
|
|
|
sourceState(phase)%p(sourceOffset)%sizePostResults = sum(source_damage_anisoDuctile_sizePostResult(:,instance))
|
|
|
|
sourceState(phase)%p(sourceOffset)%aTolState=param(instance)%aTol
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
enddo
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine source_damage_anisoDuctile_init
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates derived quantities from state
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine source_damage_anisoDuctile_dotState(ipc, ip, el)
|
|
|
|
use material, only: &
|
2016-01-15 05:49:44 +05:30
|
|
|
phaseAt, phasememberAt, &
|
2015-05-28 22:32:23 +05:30
|
|
|
plasticState, &
|
|
|
|
sourceState, &
|
2019-03-10 15:32:32 +05:30
|
|
|
material_homogenizationAt, &
|
2015-05-28 22:32:23 +05:30
|
|
|
damage, &
|
|
|
|
damageMapping
|
|
|
|
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
|
|
|
el !< element
|
|
|
|
integer(pInt) :: &
|
|
|
|
phase, &
|
|
|
|
constituent, &
|
|
|
|
sourceOffset, &
|
|
|
|
homog, damageOffset, &
|
|
|
|
instance, &
|
2019-03-09 17:20:05 +05:30
|
|
|
f, i
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
phase = phaseAt(ipc,ip,el)
|
|
|
|
constituent = phasememberAt(ipc,ip,el)
|
2015-05-28 22:32:23 +05:30
|
|
|
instance = source_damage_anisoDuctile_instance(phase)
|
|
|
|
sourceOffset = source_damage_anisoDuctile_offset(phase)
|
2019-03-10 15:32:32 +05:30
|
|
|
homog = material_homogenizationAt(el)
|
2015-05-28 22:32:23 +05:30
|
|
|
damageOffset = damageMapping(homog)%p(ip,el)
|
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
|
|
|
|
do i = 1, param(instance)%totalNslip
|
2015-05-28 22:32:23 +05:30
|
|
|
sourceState(phase)%p(sourceOffset)%dotState(1,constituent) = &
|
|
|
|
sourceState(phase)%p(sourceOffset)%dotState(1,constituent) + &
|
2019-03-09 17:20:05 +05:30
|
|
|
plasticState(phase)%slipRate(i,constituent)/ &
|
|
|
|
((damage(homog)%p(damageOffset))**param(instance)%N)/param(instance)%critPlasticStrain(i)
|
2015-05-28 22:32:23 +05:30
|
|
|
enddo
|
|
|
|
|
|
|
|
end subroutine source_damage_anisoDuctile_dotState
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief returns local part of nonlocal damage driving force
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:38:48 +05:30
|
|
|
subroutine source_damage_anisoDuctile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, phase, constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
|
|
|
sourceState
|
|
|
|
|
|
|
|
integer(pInt), intent(in) :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
phase, &
|
|
|
|
constituent
|
2015-05-28 22:32:23 +05:30
|
|
|
real(pReal), intent(in) :: &
|
|
|
|
phi
|
|
|
|
real(pReal), intent(out) :: &
|
|
|
|
localphiDot, &
|
|
|
|
dLocalphiDot_dPhi
|
|
|
|
integer(pInt) :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
sourceOffset
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
sourceOffset = source_damage_anisoDuctile_offset(phase)
|
|
|
|
|
2019-02-13 14:46:06 +05:30
|
|
|
localphiDot = 1.0_pReal &
|
|
|
|
- sourceState(phase)%p(sourceOffset)%state(1,constituent) * phi
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2015-06-11 14:33:51 +05:30
|
|
|
dLocalphiDot_dPhi = -sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine source_damage_anisoDuctile_getRateAndItsTangent
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief return array of local damage results
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:38:48 +05:30
|
|
|
function source_damage_anisoDuctile_postResults(phase, constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
|
|
|
sourceState
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
phase, &
|
|
|
|
constituent
|
2019-02-13 13:35:07 +05:30
|
|
|
real(pReal), dimension(sum(source_damage_anisoDuctile_sizePostResult(:, &
|
|
|
|
source_damage_anisoDuctile_instance(phase)))) :: &
|
2015-05-28 22:32:23 +05:30
|
|
|
source_damage_anisoDuctile_postResults
|
|
|
|
|
|
|
|
integer(pInt) :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
instance, sourceOffset, o, c
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
instance = source_damage_anisoDuctile_instance(phase)
|
|
|
|
sourceOffset = source_damage_anisoDuctile_offset(phase)
|
|
|
|
|
|
|
|
c = 0_pInt
|
|
|
|
|
2019-02-13 13:35:07 +05:30
|
|
|
do o = 1_pInt,size(param(instance)%outputID)
|
|
|
|
select case(param(instance)%outputID(o))
|
2015-05-28 22:32:23 +05:30
|
|
|
case (damage_drivingforce_ID)
|
|
|
|
source_damage_anisoDuctile_postResults(c+1_pInt) = &
|
|
|
|
sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
|
|
|
c = c + 1_pInt
|
|
|
|
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
end function source_damage_anisoDuctile_postResults
|
|
|
|
|
|
|
|
end module source_damage_anisoDuctile
|