2013-01-28 22:06:26 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-11-03 21:10:17 +05:30
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
2013-01-28 22:06:26 +05:30
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief Isostrain (full constraint Taylor assuption) homogenization scheme
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-04-06 01:12:07 +05:30
|
|
|
submodule(homogenization) homogenization_mech_isostrain
|
2019-01-13 02:34:03 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
implicit none
|
2019-04-06 01:12:07 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
enum, bind(c)
|
|
|
|
enumerator :: &
|
|
|
|
parallel_ID, &
|
|
|
|
average_ID
|
|
|
|
end enum
|
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
type :: tParameters !< container type for internal constitutive parameters
|
2019-04-06 00:18:20 +05:30
|
|
|
integer :: &
|
|
|
|
Nconstituents
|
|
|
|
integer(kind(average_ID)) :: &
|
|
|
|
mapping
|
|
|
|
end type
|
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstance)
|
|
|
|
|
2010-02-25 23:09:11 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
contains
|
2013-01-28 22:06:26 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief allocates all neccessary fields, reads information from material configuration file
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-04-06 01:12:07 +05:30
|
|
|
module subroutine mech_isostrain_init
|
2019-04-06 00:18:20 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_HOMOGENIZATION, &
|
|
|
|
debug_level, &
|
|
|
|
debug_levelBasic
|
|
|
|
use IO, only: &
|
|
|
|
IO_error
|
|
|
|
use config, only: &
|
|
|
|
config_homogenization
|
2018-08-25 14:33:43 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
implicit none
|
|
|
|
integer :: &
|
|
|
|
Ninstance, &
|
|
|
|
h, &
|
|
|
|
NofMyHomog
|
|
|
|
character(len=65536) :: &
|
|
|
|
tag = ''
|
|
|
|
|
|
|
|
write(6,'(/,a)') ' <<<+- homogenization_'//HOMOGENIZATION_ISOSTRAIN_label//' init -+>>>'
|
|
|
|
|
|
|
|
Ninstance = count(homogenization_type == HOMOGENIZATION_ISOSTRAIN_ID)
|
|
|
|
if (iand(debug_level(debug_HOMOGENIZATION),debug_levelBasic) /= 0) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
|
|
|
|
|
|
|
allocate(param(Ninstance)) ! one container of parameters per instance
|
|
|
|
|
|
|
|
do h = 1, size(homogenization_type)
|
|
|
|
if (homogenization_type(h) /= HOMOGENIZATION_ISOSTRAIN_ID) cycle
|
|
|
|
|
|
|
|
associate(prm => param(homogenization_typeInstance(h)),&
|
|
|
|
config => config_homogenization(h))
|
2019-01-13 02:34:03 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
prm%Nconstituents = config_homogenization(h)%getInt('nconstituents')
|
|
|
|
tag = 'sum'
|
|
|
|
select case(trim(config%getString('mapping',defaultVal = tag)))
|
|
|
|
case ('sum')
|
|
|
|
prm%mapping = parallel_ID
|
|
|
|
case ('avg')
|
|
|
|
prm%mapping = average_ID
|
|
|
|
case default
|
|
|
|
call IO_error(211,ext_msg=trim(tag)//' ('//HOMOGENIZATION_isostrain_label//')')
|
|
|
|
end select
|
|
|
|
|
|
|
|
NofMyHomog = count(material_homogenizationAt == h)
|
|
|
|
homogState(h)%sizeState = 0
|
|
|
|
homogState(h)%sizePostResults = 0
|
|
|
|
allocate(homogState(h)%state0 (0,NofMyHomog))
|
|
|
|
allocate(homogState(h)%subState0(0,NofMyHomog))
|
|
|
|
allocate(homogState(h)%state (0,NofMyHomog))
|
|
|
|
|
|
|
|
end associate
|
|
|
|
|
|
|
|
enddo
|
2014-09-10 19:44:03 +05:30
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
end subroutine mech_isostrain_init
|
2010-02-25 23:09:11 +05:30
|
|
|
|
|
|
|
|
2013-01-28 22:06:26 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief partitions the deformation gradient onto the constituents
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-04-06 01:12:07 +05:30
|
|
|
module subroutine mech_isostrain_partitionDeformation(F,avgF)
|
2019-04-06 00:18:20 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
real(pReal), dimension (:,:,:), intent(out) :: F !< partitioned deformation gradient
|
|
|
|
|
|
|
|
real(pReal), dimension (3,3), intent(in) :: avgF !< average deformation gradient at material point
|
2019-01-13 02:34:03 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
F = spread(avgF,3,size(F,3))
|
2013-10-11 21:31:53 +05:30
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
end subroutine mech_isostrain_partitionDeformation
|
2010-02-25 23:09:11 +05:30
|
|
|
|
|
|
|
|
2013-01-28 22:06:26 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief derive average stress and stiffness from constituent quantities
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-04-06 01:12:07 +05:30
|
|
|
module subroutine mech_isostrain_averageStressAndItsTangent(avgP,dAvgPdAvgF,P,dPdF,instance)
|
2019-04-06 00:18:20 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
real(pReal), dimension (3,3), intent(out) :: avgP !< average stress at material point
|
|
|
|
real(pReal), dimension (3,3,3,3), intent(out) :: dAvgPdAvgF !< average stiffness at material point
|
2019-01-13 02:34:03 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
real(pReal), dimension (:,:,:), intent(in) :: P !< partitioned stresses
|
|
|
|
real(pReal), dimension (:,:,:,:,:), intent(in) :: dPdF !< partitioned stiffnesses
|
|
|
|
integer, intent(in) :: instance
|
2019-04-06 01:12:07 +05:30
|
|
|
|
2019-04-06 00:18:20 +05:30
|
|
|
associate(prm => param(instance))
|
|
|
|
|
|
|
|
select case (prm%mapping)
|
|
|
|
case (parallel_ID)
|
|
|
|
avgP = sum(P,3)
|
|
|
|
dAvgPdAvgF = sum(dPdF,5)
|
|
|
|
case (average_ID)
|
|
|
|
avgP = sum(P,3) /real(prm%Nconstituents,pReal)
|
|
|
|
dAvgPdAvgF = sum(dPdF,5)/real(prm%Nconstituents,pReal)
|
|
|
|
end select
|
|
|
|
|
|
|
|
end associate
|
2010-02-25 23:09:11 +05:30
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
end subroutine mech_isostrain_averageStressAndItsTangent
|
2010-02-25 23:09:11 +05:30
|
|
|
|
2019-04-06 01:12:07 +05:30
|
|
|
end submodule homogenization_mech_isostrain
|