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
|
2020-06-26 15:14:17 +05:30
|
|
|
!> @brief material subroutine incorporating isotropic ductile damage source mechanism
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @details to be done
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-01-27 01:22:48 +05:30
|
|
|
submodule(phase:damagee) isoductile
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
type:: tParameters !< container type for internal constitutive parameters
|
2020-02-26 23:18:33 +05:30
|
|
|
real(pReal) :: &
|
2020-09-23 04:38:13 +05:30
|
|
|
gamma_crit, & !< critical plastic strain
|
|
|
|
q
|
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
|
|
|
|
|
2020-10-28 02:03:30 +05:30
|
|
|
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstances)
|
2020-02-26 23:18:33 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-02-13 17:14:47 +05:30
|
|
|
module function isoductile_init() result(mySources)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-02-13 17:14:47 +05:30
|
|
|
logical, dimension(:), allocatable :: mySources
|
2020-08-15 19:32:10 +05:30
|
|
|
|
|
|
|
class(tNode), pointer :: &
|
|
|
|
phases, &
|
|
|
|
phase, &
|
|
|
|
sources, &
|
|
|
|
src
|
2021-02-13 17:14:47 +05:30
|
|
|
integer :: Ninstances,Nconstituents,p
|
2020-02-29 14:50:38 +05:30
|
|
|
character(len=pStringLen) :: extmsg = ''
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2021-02-13 17:14:47 +05:30
|
|
|
mySources = source_active('isoductile')
|
2021-02-13 17:37:35 +05:30
|
|
|
if(count(mySources) == 0) return
|
|
|
|
|
|
|
|
print'(/,a)', ' <<<+- phase:damage:isoductile init -+>>>'
|
|
|
|
print'(a,i0)', ' # phases: ',count(mySources); flush(IO_STDOUT)
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
phases => config_material%get('phase')
|
2021-02-13 14:41:39 +05:30
|
|
|
allocate(param(phases%length))
|
2020-08-15 19:32:10 +05:30
|
|
|
|
|
|
|
do p = 1, phases%length
|
2021-02-13 17:14:47 +05:30
|
|
|
if(mySources(p)) then
|
|
|
|
phase => phases%get(p)
|
|
|
|
sources => phase%get('damage')
|
|
|
|
|
2021-02-13 14:41:39 +05:30
|
|
|
associate(prm => param(p))
|
2021-02-13 17:14:47 +05:30
|
|
|
src => sources%get(1)
|
2020-03-15 00:33:57 +05:30
|
|
|
|
2020-09-23 04:38:13 +05:30
|
|
|
prm%q = src%get_asFloat('q')
|
|
|
|
prm%gamma_crit = src%get_asFloat('gamma_crit')
|
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
|
2021-01-19 15:09:16 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
! sanity checks
|
2020-09-23 04:38:13 +05:30
|
|
|
if (prm%q <= 0.0_pReal) extmsg = trim(extmsg)//' q'
|
|
|
|
if (prm%gamma_crit <= 0.0_pReal) extmsg = trim(extmsg)//' gamma_crit'
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2021-02-13 17:14:47 +05:30
|
|
|
Nconstituents=count(material_phaseAt2==p)
|
2021-02-13 13:02:43 +05:30
|
|
|
call phase_allocateState(damageState(p),Nconstituents,1,1,0)
|
|
|
|
damageState(p)%atol = src%get_asFloat('isoDuctile_atol',defaultVal=1.0e-3_pReal)
|
|
|
|
if(any(damageState(p)%atol < 0.0_pReal)) extmsg = trim(extmsg)//' isoductile_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_isoDuctile)')
|
|
|
|
endif
|
|
|
|
enddo
|
2020-03-15 00:33:57 +05:30
|
|
|
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2021-01-26 04:08:32 +05:30
|
|
|
end function isoductile_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates derived quantities from state
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-02-13 15:31:08 +05:30
|
|
|
module subroutine isoductile_dotState(ph, me)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer, intent(in) :: &
|
2021-01-19 15:09:16 +05:30
|
|
|
ph, &
|
2021-02-13 13:02:43 +05:30
|
|
|
me
|
2020-02-26 23:18:33 +05:30
|
|
|
|
|
|
|
|
2021-02-13 14:41:39 +05:30
|
|
|
associate(prm => param(ph))
|
2021-02-13 15:31:08 +05:30
|
|
|
damageState(ph)%dotState(1,me) = sum(plasticState(ph)%slipRate(:,me)) &
|
|
|
|
/ (prm%gamma_crit*damage_phi(ph,me)**prm%q)
|
2020-02-29 11:55:36 +05:30
|
|
|
end associate
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-01-26 04:08:32 +05:30
|
|
|
end subroutine 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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-02-13 15:31:08 +05:30
|
|
|
module subroutine isoductile_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, ph, me)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-26 23:18:33 +05:30
|
|
|
integer, intent(in) :: &
|
2021-02-13 15:31:08 +05:30
|
|
|
ph, &
|
|
|
|
me
|
2020-02-26 23:18:33 +05:30
|
|
|
real(pReal), intent(in) :: &
|
|
|
|
phi
|
|
|
|
real(pReal), intent(out) :: &
|
|
|
|
localphiDot, &
|
|
|
|
dLocalphiDot_dPhi
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2021-02-13 15:31:08 +05:30
|
|
|
dLocalphiDot_dPhi = -damageState(ph)%state(1,me)
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
localphiDot = 1.0_pReal &
|
|
|
|
+ dLocalphiDot_dPhi*phi
|
|
|
|
|
2021-02-13 15:31:08 +05:30
|
|
|
end subroutine 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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2021-01-26 04:08:32 +05:30
|
|
|
module subroutine 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
|
|
|
|
2021-02-13 14:41:39 +05:30
|
|
|
associate(prm => param(phase), stt => damageState(phase)%state)
|
|
|
|
outputsLoop: do o = 1,size(prm%output)
|
|
|
|
select case(trim(prm%output(o)))
|
|
|
|
case ('f_phi')
|
|
|
|
call results_writeDataset(group,stt,trim(prm%output(o)),'driving force','J/m³')
|
|
|
|
end select
|
|
|
|
enddo outputsLoop
|
2020-02-28 15:28:11 +05:30
|
|
|
end associate
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-01-26 04:08:32 +05:30
|
|
|
end subroutine isoductile_results
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-01-27 01:22:48 +05:30
|
|
|
end submodule isoductile
|