2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2016-02-29 18:56:06 +05:30
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @brief material subroutine incoprorating isotropic ductile damage source mechanism
|
|
|
|
!> @details to be done
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module source_damage_isoDuctile
|
2020-02-26 23:18:33 +05:30
|
|
|
use prec
|
|
|
|
use debug
|
|
|
|
use IO
|
|
|
|
use discretization
|
|
|
|
use material
|
|
|
|
use config
|
|
|
|
use results
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer, dimension(:), allocatable :: &
|
|
|
|
source_damage_isoDuctile_offset, & !< which source is my current damage mechanism?
|
|
|
|
source_damage_isoDuctile_instance !< instance of damage source mechanism
|
|
|
|
|
|
|
|
type, private :: tParameters !< container type for internal constitutive parameters
|
|
|
|
real(pReal) :: &
|
|
|
|
critPlasticStrain, &
|
|
|
|
N, &
|
|
|
|
aTol
|
2020-02-28 15:28:11 +05:30
|
|
|
character(len=pStringLen), allocatable, dimension(:) :: &
|
|
|
|
output
|
2020-02-26 23:18:33 +05:30
|
|
|
end type tParameters
|
|
|
|
|
|
|
|
type(tParameters), dimension(:), allocatable, private :: param !< containers of constitutive parameters (len Ninstance)
|
|
|
|
|
|
|
|
|
|
|
|
public :: &
|
|
|
|
source_damage_isoDuctile_init, &
|
|
|
|
source_damage_isoDuctile_dotState, &
|
|
|
|
source_damage_isoDuctile_getRateAndItsTangent, &
|
|
|
|
source_damage_isoDuctile_Results
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-02-13 13:35:07 +05:30
|
|
|
subroutine source_damage_isoDuctile_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
integer :: Ninstance,source,sourceOffset,NofMyPhase,p
|
2020-02-26 23:18:33 +05:30
|
|
|
character(len=pStringLen) :: &
|
|
|
|
extmsg = ''
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- source_'//SOURCE_DAMAGE_ISODUCTILE_LABEL//' init -+>>>'; flush(6)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
Ninstance = count(phase_source == SOURCE_DAMAGE_ISODUCTILE_ID)
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2018-12-31 01:38:48 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
allocate(source_damage_isoDuctile_offset (size(config_phase)), source=0)
|
|
|
|
allocate(source_damage_isoDuctile_instance(size(config_phase)), source=0)
|
|
|
|
allocate(param(Ninstance))
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
do p = 1, size(config_phase)
|
|
|
|
source_damage_isoDuctile_instance(p) = count(phase_source(:,1:p) == SOURCE_DAMAGE_ISODUCTILE_ID)
|
|
|
|
do source = 1, phase_Nsources(p)
|
|
|
|
if (phase_source(source,p) == SOURCE_DAMAGE_ISODUCTILE_ID) &
|
|
|
|
source_damage_isoDuctile_offset(p) = source
|
|
|
|
enddo
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
if (all(phase_source(:,p) /= SOURCE_DAMAGE_ISODUCTILE_ID)) cycle
|
|
|
|
associate(prm => param(source_damage_isoDuctile_instance(p)), &
|
|
|
|
config => config_phase(p))
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
prm%aTol = config%getFloat('isoductile_atol',defaultVal = 1.0e-3_pReal)
|
|
|
|
prm%N = config%getFloat('isoductile_ratesensitivity')
|
|
|
|
prm%critPlasticStrain = config%getFloat('isoductile_criticalplasticstrain')
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
! sanity checks
|
2020-02-29 11:55:36 +05:30
|
|
|
if (prm%aTol < 0.0_pReal) extmsg = trim(extmsg)//' isoductile_atol'
|
|
|
|
if (prm%N <= 0.0_pReal) extmsg = trim(extmsg)//' isoductile_ratesensitivity'
|
|
|
|
if (prm%critPlasticStrain <= 0.0_pReal) extmsg = trim(extmsg)//' isoductile_criticalplasticstrain'
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2019-02-13 12:36:22 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! exit if any parameter is out of range
|
2020-02-26 23:18:33 +05:30
|
|
|
if (extmsg /= '') &
|
|
|
|
call IO_error(211,ext_msg=trim(extmsg)//'('//SOURCE_DAMAGE_ISODUCTILE_LABEL//')')
|
2019-02-13 12:36:22 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! output pararameters
|
2020-02-28 15:28:11 +05:30
|
|
|
prm%output = config%getStrings('(output)',defaultVal=emptyStringArray)
|
2019-02-13 10:58:29 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
NofMyPhase=count(material_phaseAt==p) * discretization_nIP
|
|
|
|
sourceOffset = source_damage_isoDuctile_offset(p)
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
call material_allocateSourceState(p,sourceOffset,NofMyPhase,1,1,0)
|
2020-02-29 11:55:36 +05:30
|
|
|
sourceState(p)%p(sourceOffset)%aTolState=prm%aTol
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-28 14:55:07 +05:30
|
|
|
end associate
|
2020-02-26 23:18:33 +05:30
|
|
|
enddo
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine source_damage_isoDuctile_init
|
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates derived quantities from state
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine source_damage_isoDuctile_dotState(ipc, ip, el)
|
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer, intent(in) :: &
|
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
|
|
|
el !< element
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer :: &
|
2020-02-29 11:55:36 +05:30
|
|
|
phase, &
|
|
|
|
constituent, &
|
|
|
|
sourceOffset, &
|
|
|
|
damageOffset, &
|
|
|
|
homog
|
2020-02-26 23:18:33 +05:30
|
|
|
|
|
|
|
phase = material_phaseAt(ipc,el)
|
|
|
|
constituent = material_phasememberAt(ipc,ip,el)
|
|
|
|
sourceOffset = source_damage_isoDuctile_offset(phase)
|
|
|
|
homog = material_homogenizationAt(el)
|
|
|
|
damageOffset = damageMapping(homog)%p(ip,el)
|
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
associate(prm => param(source_damage_isoDuctile_instance(phase)))
|
2020-02-26 23:18:33 +05:30
|
|
|
sourceState(phase)%p(sourceOffset)%dotState(1,constituent) = &
|
2020-02-29 11:55:36 +05:30
|
|
|
sum(plasticState(phase)%slipRate(:,constituent))/(damage(homog)%p(damageOffset)**prm%N)/prm%critPlasticStrain
|
|
|
|
end associate
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine source_damage_isoDuctile_dotState
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief returns local part of nonlocal damage driving force
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:38:48 +05:30
|
|
|
subroutine source_damage_isoDuctile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, phase, constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +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
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer :: &
|
|
|
|
sourceOffset
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
sourceOffset = source_damage_isoDuctile_offset(phase)
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-26 23:18:33 +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_isoDuctile_getRateAndItsTangent
|
2019-12-10 11:15:00 +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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-12-10 11:15:00 +05:30
|
|
|
subroutine source_damage_isoDuctile_results(phase,group)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
integer, intent(in) :: phase
|
2020-02-26 23:07:17 +05:30
|
|
|
character(len=*), intent(in) :: group
|
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
integer :: o
|
2019-12-10 11:15:00 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
associate(prm => param(source_damage_isoDuctile_instance(phase)), &
|
|
|
|
stt => sourceState(phase)%p(source_damage_isoDuctile_offset(phase))%state)
|
|
|
|
outputsLoop: do o = 1,size(prm%output)
|
|
|
|
select case(trim(prm%output(o)))
|
|
|
|
case ('isoductile_drivingforce')
|
|
|
|
call results_writeDataset(group,stt,'tbd','driving force','tbd')
|
|
|
|
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_isoDuctile_results
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end module source_damage_isoDuctile
|