2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief material subroutine incoprorating isotropic brittle damage source mechanism
|
|
|
|
!> @details to be done
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
submodule(constitutive:constitutive_damage) source_damage_isoBrittle
|
2020-02-29 00:16:18 +05:30
|
|
|
|
2019-12-21 12:25:42 +05:30
|
|
|
integer, dimension(:), allocatable :: &
|
2019-06-11 19:06:04 +05:30
|
|
|
source_damage_isoBrittle_offset, &
|
|
|
|
source_damage_isoBrittle_instance
|
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
type :: tParameters !< container type for internal constitutive parameters
|
2019-06-11 19:06:04 +05:30
|
|
|
real(pReal) :: &
|
2020-09-07 15:16:12 +05:30
|
|
|
critStrainEnergy !< critical elastic strain energy
|
2020-02-28 15:28:11 +05:30
|
|
|
character(len=pStringLen), allocatable, dimension(:) :: &
|
|
|
|
output
|
2019-06-11 19:06:04 +05:30
|
|
|
end type tParameters
|
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstance)
|
2019-06-11 19:06:04 +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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-08-15 19:32:10 +05:30
|
|
|
module function source_damage_isoBrittle_init(source_length) result(mySources)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
integer, intent(in) :: source_length
|
|
|
|
logical, dimension(:,:), allocatable :: mySources
|
|
|
|
|
|
|
|
class(tNode), pointer :: &
|
|
|
|
phases, &
|
|
|
|
phase, &
|
|
|
|
sources, &
|
|
|
|
src
|
2020-03-16 22:59:15 +05:30
|
|
|
integer :: Ninstance,sourceOffset,NipcMyPhase,p
|
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_isoBrittle init -+>>>'
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
mySources = source_active('damage_isoBrittle',source_length)
|
|
|
|
|
|
|
|
Ninstance = count(mySources)
|
2020-07-02 00:16:26 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance; flush(6)
|
2020-08-15 19:32:10 +05:30
|
|
|
if(Ninstance == 0) return
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
phases => material_root%get('phase')
|
2019-06-11 19:06:04 +05:30
|
|
|
allocate(param(Ninstance))
|
2020-08-15 19:32:10 +05:30
|
|
|
allocate(source_damage_isoBrittle_offset (phases%length), source=0)
|
|
|
|
allocate(source_damage_isoBrittle_instance(phases%length), source=0)
|
|
|
|
|
|
|
|
do p = 1, phases%length
|
|
|
|
phase => phases%get(p)
|
|
|
|
if(any(mySources(:,p))) source_damage_isoBrittle_instance(p) = count(mySources(:,1:p))
|
|
|
|
if(count(mySources(:,p)) == 0) cycle
|
|
|
|
sources => phase%get('source')
|
|
|
|
do sourceOffset = 1, sources%length
|
|
|
|
if(mySources(sourceOffset,p)) then
|
2020-02-29 12:33:06 +05:30
|
|
|
source_damage_isoBrittle_offset(p) = sourceOffset
|
2020-08-15 19:32:10 +05:30
|
|
|
associate(prm => param(source_damage_isoBrittle_instance(p)))
|
|
|
|
src => sources%get(sourceOffset)
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
prm%critStrainEnergy = src%get_asFloat('W_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
|
|
|
|
|
|
|
|
! sanity checks
|
|
|
|
if (prm%critStrainEnergy <= 0.0_pReal) extmsg = trim(extmsg)//' W_crit'
|
2020-03-15 00:33:57 +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,1)
|
|
|
|
sourceState(p)%p(sourceOffset)%atol = src%get_asFloat('isoBrittle_atol',defaultVal=1.0e-3_pReal)
|
|
|
|
if(any(sourceState(p)%p(sourceOffset)%atol < 0.0_pReal)) extmsg = trim(extmsg)//' isobrittle_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_isoBrittle)')
|
|
|
|
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_isoBrittle_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 11:55:36 +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_isoBrittle_deltaState(C, Fe, ipc, ip, el)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
integer, intent(in) :: &
|
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
|
|
|
el !< element
|
|
|
|
real(pReal), intent(in), dimension(3,3) :: &
|
|
|
|
Fe
|
|
|
|
real(pReal), intent(in), dimension(6,6) :: &
|
|
|
|
C
|
2020-02-29 11:55:36 +05:30
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
integer :: &
|
2020-02-29 11:55:36 +05:30
|
|
|
phase, &
|
|
|
|
constituent, &
|
|
|
|
sourceOffset
|
|
|
|
real(pReal), dimension(6) :: &
|
|
|
|
strain
|
2019-06-11 19:06:04 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
strainenergy
|
|
|
|
|
2020-02-29 19:04:19 +05:30
|
|
|
phase = material_phaseAt(ipc,el) !< phase ID at ipc,ip,el
|
|
|
|
constituent = material_phasememberAt(ipc,ip,el) !< state array offset for phase ID at ipc,ip,el
|
2019-06-11 19:06:04 +05:30
|
|
|
sourceOffset = source_damage_isoBrittle_offset(phase)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
strain = 0.5_pReal*math_sym33to6(matmul(transpose(Fe),Fe)-math_I3)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
associate(prm => param(source_damage_isoBrittle_instance(phase)))
|
|
|
|
strainenergy = 2.0_pReal*sum(strain*matmul(C,strain))/prm%critStrainEnergy
|
2019-06-11 19:06:04 +05:30
|
|
|
! ToDo: check strainenergy = 2.0_pReal*dot_product(strain,matmul(C,strain))/param(instance)%critStrainEnergy
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
if (strainenergy > sourceState(phase)%p(sourceOffset)%subState0(1,constituent)) then
|
|
|
|
sourceState(phase)%p(sourceOffset)%deltaState(1,constituent) = &
|
|
|
|
strainenergy - sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
|
|
|
else
|
|
|
|
sourceState(phase)%p(sourceOffset)%deltaState(1,constituent) = &
|
|
|
|
sourceState(phase)%p(sourceOffset)%subState0(1,constituent) - &
|
|
|
|
sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
|
|
|
endif
|
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_isoBrittle_deltaState
|
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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module subroutine source_damage_isoBrittle_getRateAndItsTangent(localphiDot, dLocalphiDot_dPhi, phi, phase, constituent)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-11 19:06:04 +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-11 19:06:04 +05:30
|
|
|
integer :: &
|
2020-02-29 11:55:36 +05:30
|
|
|
sourceOffset
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-06-11 19:06:04 +05:30
|
|
|
sourceOffset = source_damage_isoBrittle_offset(phase)
|
2020-02-26 23:07:17 +05:30
|
|
|
|
2020-02-29 11:55:36 +05:30
|
|
|
associate(prm => param(source_damage_isoBrittle_instance(phase)))
|
2020-09-07 15:16:12 +05:30
|
|
|
localphiDot = 1.0_pReal &
|
2020-02-29 19:04:19 +05:30
|
|
|
- phi*sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
2020-09-07 15:16:12 +05:30
|
|
|
dLocalphiDot_dPhi = - sourceState(phase)%p(sourceOffset)%state(1,constituent)
|
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_isoBrittle_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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module subroutine source_damage_isoBrittle_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
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-28 15:28:11 +05:30
|
|
|
integer :: o
|
|
|
|
|
|
|
|
associate(prm => param(source_damage_isoBrittle_instance(phase)), &
|
|
|
|
stt => sourceState(phase)%p(source_damage_isoBrittle_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
|
2019-12-10 11:15:00 +05:30
|
|
|
|
|
|
|
end subroutine source_damage_isoBrittle_results
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-07-09 04:31:08 +05:30
|
|
|
end submodule source_damage_isoBrittle
|