2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Module: CONSTITUTIVE *
|
|
|
|
!************************************
|
|
|
|
!* contains: *
|
|
|
|
!* - constitutive equations *
|
|
|
|
!* - parameters definition *
|
|
|
|
!* - orientations *
|
|
|
|
!************************************
|
|
|
|
|
|
|
|
MODULE constitutive
|
|
|
|
|
|
|
|
!*** Include other modules ***
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
! MISSING consistency check after reading 'mattex.mpie'
|
|
|
|
character(len=300), parameter :: mattexFile = 'mattex.mpie'
|
|
|
|
|
|
|
|
!*************************************
|
|
|
|
!* Definition of material properties *
|
|
|
|
!*************************************
|
|
|
|
!* Physical parameter, attack_frequency != Debye frequency
|
|
|
|
real(pReal), parameter :: attack_frequency = 1.0e10_pReal
|
2007-11-15 22:34:30 +05:30
|
|
|
!* Physical parameter, Boltzman constant in J/Kelvin
|
|
|
|
real(pReal), parameter :: Kb = 1.38e-23_pReal
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!*************************************
|
|
|
|
!* Definition of material properties *
|
|
|
|
!*************************************
|
|
|
|
!* Number of materials
|
|
|
|
integer(pInt) material_maxN
|
2007-12-07 19:29:15 +05:30
|
|
|
!* Crystal structure and number of selected slip or twin systems per material
|
|
|
|
integer(pInt), dimension(:) , allocatable :: material_CrystalStructure
|
|
|
|
integer(pInt), dimension(:) , allocatable :: material_Nslip
|
|
|
|
integer(pInt), dimension(:) , allocatable :: material_Ntwin
|
|
|
|
!* Maximum number of selected slip or twin systems over materials
|
2007-10-16 14:31:19 +05:30
|
|
|
integer(pInt) material_maxNslip
|
2007-12-07 19:29:15 +05:30
|
|
|
integer(pInt) material_maxNtwin
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Elastic constants and matrices
|
2007-12-07 19:29:15 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_C11
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_C12
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_C13
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_C33
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_C44
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_Gmod
|
|
|
|
real(pReal), dimension(:,:,:) , allocatable :: material_Cslip_66
|
|
|
|
real(preal), dimension(:,:,:,:) , allocatable :: material_Ctwin_66
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Visco-plastic material parameters
|
2007-12-07 19:29:15 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_rho0
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_bg
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_Qedge
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_tau0
|
2007-12-07 20:42:43 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_GrainSize
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_StackSize
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_twin_ref
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_twin_res
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_twin_sens
|
2007-12-07 19:29:15 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_c1
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_c2
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_c3
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_c4
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_c5
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: material_c6
|
|
|
|
real(pReal), dimension(:) , allocatable :: material_c7
|
2007-12-07 19:29:15 +05:30
|
|
|
real(pReal), dimension(:,:) , allocatable :: material_SlipIntCoeff
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Definition of texture properties *
|
|
|
|
!************************************
|
|
|
|
!* Number of textures, maximum number of Gauss and Fiber components
|
|
|
|
integer(pInt) texture_maxN
|
|
|
|
integer(pInt) texture_maxNGauss
|
|
|
|
integer(pInt) texture_maxNFiber
|
|
|
|
!* Textures definition
|
|
|
|
character(len=80), dimension(:), allocatable :: texture_ODFfile
|
|
|
|
character(len=80), dimension(:), allocatable :: texture_symmetry
|
|
|
|
integer(pInt), dimension(:) , allocatable :: texture_Ngrains
|
|
|
|
integer(pInt), dimension(:) , allocatable :: texture_NGauss
|
|
|
|
integer(pInt),dimension(:) , allocatable :: texture_NFiber
|
|
|
|
integer(pInt),dimension(:) , allocatable :: texture_NRandom
|
|
|
|
integer(pInt),dimension(:) , allocatable :: texture_totalNgrains
|
|
|
|
real(pReal), dimension(:,:,:) , allocatable :: texture_Gauss
|
|
|
|
real(pReal), dimension(:,:,:) , allocatable :: texture_Fiber
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: constitutive_EulerAngles
|
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Grains *
|
|
|
|
!************************************
|
|
|
|
integer(pInt) constitutive_maxNgrains
|
|
|
|
integer(pInt), dimension(:,:) , allocatable :: constitutive_Ngrains
|
|
|
|
integer(pInt), dimension(:,:,:) , allocatable :: constitutive_matID
|
|
|
|
real(pReal), dimension(:,:,:) , allocatable :: constitutive_matVolFrac
|
|
|
|
integer(pInt), dimension(:,:,:) , allocatable :: constitutive_texID
|
|
|
|
real(pReal), dimension(:,:,:) , allocatable :: constitutive_texVolFrac
|
|
|
|
|
2007-12-10 18:25:43 +05:30
|
|
|
!************************************
|
|
|
|
!* Kinetics variables *
|
|
|
|
!************************************
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_tau_slip
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_tau_twin
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_gdot_slip
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_fdot_twin
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_dgdot_dtauslip
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_dfdot_dtautwin
|
|
|
|
real(pReal), dimension(:,:) , allocatable :: constitutive_dfdot_dtauslip
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_locks
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_grainboundaries
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_twinboundaries
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_recovery
|
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
!************************************
|
|
|
|
!* State variables *
|
|
|
|
!************************************
|
|
|
|
integer(pInt) constitutive_maxNstatevars
|
|
|
|
integer(pInt), dimension(:,:,:), allocatable :: constitutive_Nstatevars
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: constitutive_state_old
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: constitutive_state_new
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_passing_stress
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_jump_width
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_activation_volume
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_rho_m
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_rho_f
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_rho_p
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_g0_slip
|
2007-12-07 20:42:43 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_twin_volume
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_inv_intertwin_len
|
|
|
|
real(pReal), dimension(:) , allocatable :: constitutive_twin_mfp
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Interaction matrices *
|
|
|
|
!************************************
|
|
|
|
real(pReal), dimension(:,:,:), allocatable :: constitutive_Pforest
|
|
|
|
real(pReal), dimension(:,:,:), allocatable :: constitutive_Pparallel
|
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Results *
|
|
|
|
!************************************
|
|
|
|
integer(pInt) constitutive_maxNresults
|
|
|
|
integer(pInt), dimension(:,:,:), allocatable :: constitutive_Nresults
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CONTAINS
|
|
|
|
!****************************************
|
|
|
|
!* - constitutive_Init
|
|
|
|
!* - constitutive_CountSections
|
|
|
|
!* - constitutive_Parse_UnknownPart
|
|
|
|
!* - constitutive_Parse_MaterialPart
|
|
|
|
!* - constitutive_Parse_TexturePart
|
|
|
|
!* - constitutive_Parse_MatTexDat
|
|
|
|
!* - constitutive_Assignment
|
|
|
|
!* - constitutive_HomogenizedC
|
|
|
|
!* - constitutive_Microstructure
|
|
|
|
!* - constitutive_LpAndItsTangent
|
|
|
|
!* - consistutive_DotState
|
|
|
|
!****************************************
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_Init()
|
|
|
|
!**************************************
|
|
|
|
!* Module initialization *
|
|
|
|
!**************************************
|
|
|
|
call constitutive_Parse_MatTexDat(mattexFile)
|
|
|
|
call constitutive_Assignment()
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_CountSections(file,count,part)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This subroutine reads a "part" from the input file until the next *
|
|
|
|
!* part is reached and counts the number of "sections" in the part *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - file : file ID *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - part : name of the next "part" *
|
|
|
|
!* - count : number of sections inside the current "part" *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pInt
|
|
|
|
use IO, only: IO_stringPos,IO_stringValue,IO_lc
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=80) part,line,tag
|
|
|
|
integer(pInt) file,count
|
|
|
|
integer(pInt), dimension(3) :: positions
|
|
|
|
|
|
|
|
count=0
|
|
|
|
part=''
|
|
|
|
|
|
|
|
do
|
|
|
|
read(file,'(a80)',END=100) line
|
|
|
|
positions=IO_stringPos(line,1)
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,1))
|
|
|
|
if (tag(1:1)=='#' .OR. positions(1)==0) then ! skip comment and empty lines
|
|
|
|
cycle
|
|
|
|
elseif (tag(1:1)=='<'.AND.tag(len_trim(tag):len_trim(tag))=='>') then
|
|
|
|
part=tag(2:len_trim(tag)-1)
|
|
|
|
exit
|
|
|
|
elseif (tag(1:1)=='[') then
|
|
|
|
count=count+1
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
100 return
|
|
|
|
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
character(len=80) function constitutive_assignNGaussAndFiber(file)
|
|
|
|
!*********************************************************************
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pInt
|
|
|
|
use IO, only: IO_stringPos,IO_stringValue,IO_lc
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=80) line,tag
|
|
|
|
integer(pInt) file,section
|
|
|
|
integer(pInt), dimension(3) :: positions
|
|
|
|
|
|
|
|
constitutive_assignNGaussAndFiber=''
|
|
|
|
section = 0_pInt
|
|
|
|
|
|
|
|
do
|
|
|
|
read(file,'(a80)',END=100) line
|
|
|
|
positions=IO_stringPos(line,1)
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,1))
|
|
|
|
if (tag(1:1)=='#' .OR. positions(1)==0) then ! skip comment and empty lines
|
|
|
|
cycle
|
|
|
|
elseif (tag(1:1)=='<'.AND.tag(len_trim(tag):len_trim(tag))=='>') then
|
|
|
|
constitutive_assignNGaussAndFiber=tag(2:len_trim(tag)-1)
|
|
|
|
exit
|
|
|
|
elseif (tag(1:1)=='[') then
|
|
|
|
section=section+1
|
|
|
|
texture_NGauss(section) = 0_pInt
|
|
|
|
texture_NFiber(section) = 0_pInt
|
|
|
|
elseif (tag=='(gauss)') then
|
|
|
|
texture_NGauss(section)=texture_NGauss(section)+1
|
|
|
|
elseif (tag=='(fiber)') then
|
|
|
|
texture_NFiber(section)=texture_NFiber(section)+1
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
100 return
|
|
|
|
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
character(len=80) function constitutive_Parse_UnknownPart(file)
|
|
|
|
!*********************************************************************
|
|
|
|
!* read an unknown "part" from the input file until *
|
|
|
|
!* the next part is reached *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - file : file ID *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pInt
|
|
|
|
use IO, only: IO_stringPos,IO_stringValue,IO_lc
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=80) line,tag
|
|
|
|
integer(pInt), parameter :: maxNchunks = 1
|
|
|
|
integer(pInt) file
|
|
|
|
integer(pInt), dimension(1+2*maxNchunks) :: positions
|
|
|
|
|
|
|
|
constitutive_parse_unknownPart=''
|
|
|
|
|
|
|
|
do
|
|
|
|
read(file,'(a80)',END=100) line
|
|
|
|
positions=IO_stringPos(line,maxNchunks)
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,1))
|
|
|
|
if (tag(1:1)=='#' .OR. positions(1)==0) then ! skip comment and empty lines
|
|
|
|
cycle
|
|
|
|
elseif (tag(1:1)=='<'.AND.tag(len_trim(tag):len_trim(tag))=='>') then
|
|
|
|
constitutive_Parse_UnknownPart=tag(2:len_trim(tag)-1)
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
100 return
|
|
|
|
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
character(len=80) function constitutive_Parse_MaterialPart(file)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This function reads a material "part" from the input file until *
|
|
|
|
!* the next part is reached *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - file : file ID *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pInt,pReal
|
|
|
|
use IO
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=80) line,tag
|
2007-10-22 21:02:45 +05:30
|
|
|
integer(pInt), parameter :: maxNchunks = 7
|
2007-10-16 14:31:19 +05:30
|
|
|
integer(pInt) i,file,section
|
|
|
|
integer(pInt), dimension(1+2*maxNchunks) :: positions
|
|
|
|
|
|
|
|
section = 0
|
|
|
|
constitutive_parse_materialPart = ''
|
|
|
|
|
|
|
|
do while(.true.)
|
|
|
|
read(file,'(a80)',END=100) line
|
|
|
|
positions=IO_stringPos(line,maxNchunks) ! parse leading chunks
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,1))
|
|
|
|
if (tag(1:1)=='#' .OR. positions(1)==0) then ! skip comment and empty lines
|
|
|
|
cycle
|
|
|
|
elseif (tag(1:1)=='<'.AND.tag(len_trim(tag):len_trim(tag))=='>') then
|
|
|
|
constitutive_parse_materialPart=tag(2:len_trim(tag)-1)
|
|
|
|
exit
|
|
|
|
elseif (tag(1:1)=='[') then
|
|
|
|
section=section+1
|
|
|
|
else
|
|
|
|
if (section>0) then
|
|
|
|
select case(tag)
|
|
|
|
case ('crystal_structure')
|
|
|
|
material_CrystalStructure(section)=IO_intValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'crystal_structure', material_CrystalStructure(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('nslip')
|
|
|
|
material_Nslip(section)=IO_intValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'nslip', material_Nslip(section)
|
2007-12-07 19:29:15 +05:30
|
|
|
case ('ntwin')
|
|
|
|
material_Ntwin(section)=IO_intValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'ntwin', material_Ntwin(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c11')
|
|
|
|
material_C11(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c11', material_C11(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c12')
|
|
|
|
material_C12(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c12', material_C12(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c13')
|
|
|
|
material_C13(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c13', material_C13(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c33')
|
|
|
|
material_C33(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c33', material_C33(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c44')
|
|
|
|
material_C44(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c44', material_C44(section)
|
2007-11-15 22:34:30 +05:30
|
|
|
case ('rho0')
|
|
|
|
material_rho0(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'rho0', material_rho0(section)
|
2007-10-16 17:20:51 +05:30
|
|
|
case ('interaction_coefficients')
|
2007-10-22 21:02:45 +05:30
|
|
|
do i=1,6
|
2007-10-16 14:31:19 +05:30
|
|
|
material_SlipIntCoeff(i,section)=IO_floatValue(line,positions,i+1)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'interaction_coefficients', material_SlipIntCoeff(i,section)
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo
|
2007-11-15 22:34:30 +05:30
|
|
|
case ('burgers')
|
2007-12-11 20:00:21 +05:30
|
|
|
material_bg(section)=IO_floatValue(line,positions,2)
|
|
|
|
write(6,*) 'burgers', material_bg(section)
|
2007-11-15 22:34:30 +05:30
|
|
|
case ('Qedge')
|
|
|
|
material_Qedge(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'Qedge', material_Qedge(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('tau0')
|
|
|
|
material_tau0(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'tau0', material_tau0(section)
|
2007-12-07 20:42:43 +05:30
|
|
|
case ('grain_size')
|
|
|
|
material_GrainSize(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'grain_size', material_GrainSize(section)
|
2007-12-07 20:42:43 +05:30
|
|
|
case ('stack_size')
|
|
|
|
material_StackSize(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'stack_size', material_StackSize(section)
|
2007-12-10 18:25:43 +05:30
|
|
|
case ('twin_reference')
|
|
|
|
material_twin_ref(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'twin_reference', material_twin_ref(section)
|
2007-12-10 18:25:43 +05:30
|
|
|
case ('twin_resistance')
|
|
|
|
material_twin_res(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'twin_resistance', material_twin_res(section)
|
2007-12-10 18:25:43 +05:30
|
|
|
case ('twin_sensitivity')
|
|
|
|
material_twin_sens(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'twin_sensitivity', material_twin_sens(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c1')
|
|
|
|
material_c1(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c1', material_c1(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c2')
|
|
|
|
material_c2(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c2', material_c2(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c3')
|
|
|
|
material_c3(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c3', material_c3(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c4')
|
|
|
|
material_c4(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c4', material_c4(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
case ('c5')
|
|
|
|
material_c5(section)=IO_floatValue(line,positions,2)
|
2007-12-11 20:00:21 +05:30
|
|
|
write(6,*) 'c5', material_c5(section)
|
2007-12-10 18:25:43 +05:30
|
|
|
case ('c6')
|
2007-12-11 20:00:21 +05:30
|
|
|
material_c6(section)=IO_floatValue(line,positions,2)
|
|
|
|
write(6,*) 'c6', material_c6(section)
|
2007-12-10 18:25:43 +05:30
|
|
|
case ('c7')
|
2007-12-11 20:00:21 +05:30
|
|
|
material_c7(section)=IO_floatValue(line,positions,2)
|
|
|
|
write(6,*) 'c7', material_c7(section)
|
2007-10-16 14:31:19 +05:30
|
|
|
end select
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
100 return
|
|
|
|
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
character(len=80) function constitutive_Parse_TexturePart(file)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This function reads a texture "part" from the input file until *
|
|
|
|
!* the next part is reached *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - file : file ID *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pInt
|
|
|
|
use IO
|
|
|
|
use math, only: inRad
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=80) line,tag
|
|
|
|
integer(pInt), parameter :: maxNchunks = 13 ! may be more than 10 chunks ..?
|
|
|
|
integer(pInt) file,section,gaussCount,fiberCount,i
|
|
|
|
integer(pInt), dimension(1+2*maxNchunks) :: positions
|
|
|
|
|
|
|
|
section = 0
|
|
|
|
gaussCount = 0
|
|
|
|
fiberCount = 0
|
|
|
|
constitutive_parse_texturePart = ''
|
|
|
|
|
|
|
|
do while(.true.)
|
|
|
|
read(file,'(a80)',END=100) line
|
|
|
|
positions=IO_stringPos(line,maxNchunks) ! parse leading chunks
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,1))
|
|
|
|
if (tag(1:1)=='#' .OR. positions(1)==0) then ! skip comment and empty lines
|
|
|
|
cycle
|
|
|
|
elseif (tag(1:1)=='<'.AND.tag(len_trim(tag):len_trim(tag))=='>') then
|
|
|
|
constitutive_parse_texturePart=tag(2:len_trim(tag)-1)
|
|
|
|
exit
|
|
|
|
elseif (tag(1:1)=='[') then
|
|
|
|
section=section+1
|
|
|
|
gaussCount=0
|
|
|
|
fiberCount=0
|
|
|
|
else
|
|
|
|
if (section>0) then
|
|
|
|
select case(tag)
|
|
|
|
case ('hybridIA')
|
|
|
|
texture_ODFfile(section)=IO_stringValue(line,positions,2)
|
|
|
|
case ('(gauss)')
|
|
|
|
gaussCount=gaussCount+1
|
|
|
|
do i=2,10,2
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,i))
|
|
|
|
select case (tag)
|
|
|
|
case('phi1')
|
|
|
|
texture_Gauss(1,gaussCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('phi')
|
|
|
|
texture_Gauss(2,gaussCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('phi2')
|
|
|
|
texture_Gauss(3,gaussCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('scatter')
|
|
|
|
texture_Gauss(4,gaussCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('fraction')
|
|
|
|
texture_Gauss(5,gaussCount,section)=IO_floatValue(line,positions,i+1)
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
case ('(fiber)')
|
|
|
|
fiberCount=fiberCount+1
|
|
|
|
do i=2,12,2
|
|
|
|
tag=IO_lc(IO_stringValue(line,positions,i))
|
|
|
|
select case (tag)
|
|
|
|
case('alpha1')
|
|
|
|
texture_fiber(1,fiberCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('alpha2')
|
|
|
|
texture_fiber(2,fiberCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('beta1')
|
|
|
|
texture_fiber(3,fiberCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('beta2')
|
|
|
|
texture_fiber(4,fiberCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('scatter')
|
|
|
|
texture_fiber(5,fiberCount,section)=IO_floatValue(line,positions,i+1)*inRad
|
|
|
|
case('fraction')
|
|
|
|
texture_fiber(6,fiberCount,section)=IO_floatValue(line,positions,i+1)
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
case ('ngrains')
|
|
|
|
texture_Ngrains(section)=IO_intValue(line,positions,2)
|
|
|
|
case ('symmetry')
|
|
|
|
texture_symmetry(section)=IO_stringValue(line,positions,2)
|
|
|
|
end select
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
100 return
|
|
|
|
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_Parse_MatTexDat(filename)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This function reads the material and texture input file *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - filename : name of input file *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
use IO, only: IO_error, IO_open_file
|
|
|
|
use math, only: math_Mandel3333to66, math_Voigt66to3333
|
2007-12-07 19:29:15 +05:30
|
|
|
use crystal, only: crystal_MaxMaxNslipOfStructure,crystal_MaxMaxNtwinOfStructure
|
2007-10-16 14:31:19 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
character(len=*) filename
|
|
|
|
character(len=80) part,formerPart
|
|
|
|
integer(pInt) sectionCount,i,j,k, fileunit
|
|
|
|
|
|
|
|
! set fileunit
|
|
|
|
fileunit=200
|
|
|
|
!-----------------------------
|
|
|
|
!* First reading: number of materials and textures
|
|
|
|
!-----------------------------
|
|
|
|
!* determine material_maxN and texture_maxN from last respective parts
|
|
|
|
if(IO_open_file(fileunit,filename)==.false.) goto 100
|
|
|
|
part = '_dummy_'
|
|
|
|
do while (part/='')
|
|
|
|
formerPart = part
|
|
|
|
call constitutive_CountSections(fileunit,sectionCount,part)
|
|
|
|
select case (formerPart)
|
|
|
|
case ('materials')
|
|
|
|
material_maxN = sectionCount
|
|
|
|
case ('textures')
|
|
|
|
texture_maxN = sectionCount
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
!* Array allocation
|
2007-12-07 19:29:15 +05:30
|
|
|
allocate(material_CrystalStructure(material_maxN)) ; material_CrystalStructure=0_pInt
|
|
|
|
allocate(material_Nslip(material_maxN)) ; material_Nslip=0_pInt
|
2007-12-11 20:00:21 +05:30
|
|
|
allocate(material_Ntwin(material_maxN)) ; material_Ntwin=0_pInt
|
2007-12-07 19:29:15 +05:30
|
|
|
allocate(material_C11(material_maxN)) ; material_C11=0.0_pReal
|
|
|
|
allocate(material_C12(material_maxN)) ; material_C12=0.0_pReal
|
|
|
|
allocate(material_C13(material_maxN)) ; material_C13=0.0_pReal
|
|
|
|
allocate(material_C33(material_maxN)) ; material_C33=0.0_pReal
|
|
|
|
allocate(material_C44(material_maxN)) ; material_C44=0.0_pReal
|
|
|
|
allocate(material_Gmod(material_maxN)) ; material_Gmod=0.0_pReal
|
|
|
|
allocate(material_Cslip_66(6,6,material_maxN)) ; material_Cslip_66=0.0_pReal
|
|
|
|
allocate(material_Ctwin_66(6,6,crystal_MaxMaxNtwinOfStructure,material_maxN)) ; material_Ctwin_66=0.0_pReal
|
|
|
|
allocate(material_rho0(material_maxN)) ; material_rho0=0.0_pReal
|
|
|
|
allocate(material_SlipIntCoeff(crystal_MaxMaxNslipOfStructure,material_maxN)) ; material_SlipIntCoeff=0.0_pReal
|
|
|
|
allocate(material_bg(material_maxN)) ; material_bg=0.0_pReal
|
|
|
|
allocate(material_Qedge(material_maxN)) ; material_Qedge=0.0_pReal
|
|
|
|
allocate(material_tau0(material_maxN)) ; material_tau0=0.0_pReal
|
2007-12-07 20:42:43 +05:30
|
|
|
allocate(material_GrainSize(material_maxN)) ; material_GrainSize=0.0_pReal
|
|
|
|
allocate(material_StackSize(material_maxN)) ; material_StackSize=0.0_pReal
|
2007-12-10 18:25:43 +05:30
|
|
|
allocate(material_twin_ref(material_maxN)) ; material_twin_ref=0.0_pReal
|
|
|
|
allocate(material_twin_res(material_maxN)) ; material_twin_res=0.0_pReal
|
|
|
|
allocate(material_twin_sens(material_maxN)) ; material_twin_sens=0.0_pReal
|
2007-12-07 19:29:15 +05:30
|
|
|
allocate(material_c1(material_maxN)) ; material_c1=0.0_pReal
|
|
|
|
allocate(material_c2(material_maxN)) ; material_c2=0.0_pReal
|
|
|
|
allocate(material_c3(material_maxN)) ; material_c3=0.0_pReal
|
|
|
|
allocate(material_c4(material_maxN)) ; material_c4=0.0_pReal
|
|
|
|
allocate(material_c5(material_maxN)) ; material_c5=0.0_pReal
|
2007-12-10 18:25:43 +05:30
|
|
|
allocate(material_c6(material_maxN)) ; material_c5=0.0_pReal
|
|
|
|
allocate(material_c7(material_maxN)) ; material_c5=0.0_pReal
|
2007-12-07 19:29:15 +05:30
|
|
|
allocate(texture_ODFfile(texture_maxN)) ; texture_ODFfile=''
|
|
|
|
allocate(texture_Ngrains(texture_maxN)) ; texture_Ngrains=0_pInt
|
|
|
|
allocate(texture_symmetry(texture_maxN)) ; texture_symmetry=''
|
|
|
|
allocate(texture_NGauss(texture_maxN)) ; texture_NGauss=0_pInt
|
|
|
|
allocate(texture_NFiber(texture_maxN)) ; texture_NFiber=0_pInt
|
|
|
|
allocate(texture_NRandom(texture_maxN)) ; texture_NRandom=0_pInt
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!-----------------------------
|
|
|
|
!* Second reading: number of Gauss and Fiber
|
|
|
|
!-----------------------------
|
|
|
|
rewind(fileunit)
|
|
|
|
part = '_dummy_'
|
|
|
|
do while (part/='')
|
|
|
|
select case (part)
|
|
|
|
case ('textures')
|
|
|
|
part = constitutive_assignNGaussAndFiber(fileunit)
|
|
|
|
case default
|
|
|
|
part = constitutive_Parse_UnknownPart(fileunit)
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
!* Array allocation
|
|
|
|
texture_maxNGauss=maxval(texture_NGauss)
|
|
|
|
texture_maxNFiber=maxval(texture_NFiber)
|
|
|
|
allocate(texture_Gauss(5,texture_maxNGauss,texture_maxN)) ; texture_Gauss=0.0_pReal
|
|
|
|
allocate(texture_Fiber(6,texture_maxNFiber,texture_maxN)) ; texture_Fiber=0.0_pReal
|
|
|
|
|
|
|
|
!-----------------------------
|
|
|
|
!* Third reading: materials and textures are stored
|
|
|
|
!-----------------------------
|
|
|
|
rewind(fileunit)
|
|
|
|
part='_dummy_'
|
|
|
|
do while (part/='')
|
|
|
|
select case (part)
|
|
|
|
case ('materials')
|
|
|
|
part=constitutive_Parse_MaterialPart(fileunit)
|
|
|
|
case ('textures')
|
|
|
|
part=constitutive_Parse_TexturePart(fileunit)
|
|
|
|
case default
|
|
|
|
part=constitutive_Parse_UnknownPart(fileunit)
|
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
close(fileunit)
|
|
|
|
|
2007-12-11 20:00:21 +05:30
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Construction of the elasticity matrices
|
|
|
|
do i=1,material_maxN
|
|
|
|
select case (material_CrystalStructure(i))
|
|
|
|
case(1:2) ! cubic(s)
|
2007-12-07 19:29:15 +05:30
|
|
|
material_Gmod(i)=material_C44(i)
|
2007-12-07 16:24:19 +05:30
|
|
|
forall(k=1:3)
|
|
|
|
forall(j=1:3)
|
2007-10-16 14:31:19 +05:30
|
|
|
material_Cslip_66(k,j,i)=material_C12(i)
|
2007-12-07 16:24:19 +05:30
|
|
|
endforall
|
2007-10-16 14:31:19 +05:30
|
|
|
material_Cslip_66(k,k,i)=material_C11(i)
|
|
|
|
material_Cslip_66(k+3,k+3,i)=material_C44(i)
|
2007-12-07 16:24:19 +05:30
|
|
|
endforall
|
2007-10-16 14:31:19 +05:30
|
|
|
case(3) ! hcp
|
2007-12-07 19:29:15 +05:30
|
|
|
material_Gmod(i)=material_C44(i)
|
|
|
|
!* MISSING: Warning message: C44 in hexagonal structures?
|
2007-10-16 14:31:19 +05:30
|
|
|
material_Cslip_66(1,1,i)=material_C11(i)
|
|
|
|
material_Cslip_66(2,2,i)=material_C11(i)
|
|
|
|
material_Cslip_66(3,3,i)=material_C33(i)
|
|
|
|
material_Cslip_66(1,2,i)=material_C12(i)
|
|
|
|
material_Cslip_66(2,1,i)=material_C12(i)
|
|
|
|
material_Cslip_66(1,3,i)=material_C13(i)
|
|
|
|
material_Cslip_66(3,1,i)=material_C13(i)
|
|
|
|
material_Cslip_66(2,3,i)=material_C13(i)
|
|
|
|
material_Cslip_66(3,2,i)=material_C13(i)
|
|
|
|
material_Cslip_66(4,4,i)=material_C44(i)
|
|
|
|
material_Cslip_66(5,5,i)=material_C44(i)
|
|
|
|
material_Cslip_66(6,6,i)=0.5_pReal*(material_C11(i)-material_C12(i))
|
|
|
|
end select
|
2007-12-10 18:25:43 +05:30
|
|
|
material_Cslip_66(:,:,i) = math_Mandel3333to66(math_Voigt66to3333(material_Cslip_66(:,:,i)))
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo
|
|
|
|
|
|
|
|
! MISSING some consistency checks may be..?
|
|
|
|
! if ODFfile present then set NGauss NFiber =0
|
|
|
|
return
|
|
|
|
100 call IO_error(200) ! corrupt materials_textures file
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_Assignment()
|
|
|
|
!*********************************************************************
|
|
|
|
!* This subroutine assign material parameters according to ipc,ip,el *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
2007-12-07 19:29:15 +05:30
|
|
|
use math, only: math_sampleGaussOri,math_sampleFiberOri,math_sampleRandomOri,math_symmetricEulers,math_EulerToR,&
|
2007-12-10 18:25:43 +05:30
|
|
|
math_Mandel3333to66,math_Mandel66to3333
|
2007-10-16 14:31:19 +05:30
|
|
|
use mesh, only: mesh_NcpElems,FE_Nips,FE_mapElemtype,mesh_maxNips,mesh_element
|
|
|
|
use IO, only: IO_hybridIA
|
2007-12-07 19:29:15 +05:30
|
|
|
use crystal, only: crystal_SlipIntType,crystal_sn,crystal_st,crystal_Qtwin
|
2007-10-16 14:31:19 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
2007-12-07 19:29:15 +05:30
|
|
|
integer(pInt) e,g,i,j,k,l,m,n,o,p,q,r,s
|
2007-10-16 14:31:19 +05:30
|
|
|
integer(pInt) matID,texID
|
2007-10-24 20:54:49 +05:30
|
|
|
real(pReal) x,y
|
2007-10-16 14:31:19 +05:30
|
|
|
integer(pInt), dimension(:,:,:), allocatable :: hybridIA_population
|
2007-11-07 20:32:54 +05:30
|
|
|
integer(pInt), dimension(texture_maxN) :: Ncomponents,Nsym,multiplicity,ODFmap,sampleCount
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(3,4*(1+texture_maxNGauss+texture_maxNfiber)) :: Euler
|
|
|
|
real(pReal), dimension(4*(1+texture_maxNGauss+texture_maxNfiber)) :: texVolfrac
|
2007-11-07 20:32:54 +05:30
|
|
|
real(pReal), dimension(texture_maxN) :: sumVolfrac
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(3,3,3,3) :: C_3333,Ctwin_3333
|
|
|
|
real(pReal), dimension(3,3) :: Qtwin
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
! process textures
|
|
|
|
o = 0_pInt ! ODF counter
|
|
|
|
ODFmap = 0_pInt ! blank mapping
|
|
|
|
sampleCount = 0_pInt ! count orientations assigned per texture
|
|
|
|
|
|
|
|
do texID=1,texture_maxN
|
2007-10-24 20:43:10 +05:30
|
|
|
select case (texture_symmetry(texID)) ! set symmetry factor
|
|
|
|
case ('orthotropic')
|
|
|
|
Nsym(texID) = 4_pInt
|
|
|
|
case ('monoclinic')
|
|
|
|
Nsym(texID) = 2_pInt
|
|
|
|
case default
|
|
|
|
Nsym(texID) = 1_pInt
|
|
|
|
end select
|
|
|
|
if (texture_ODFfile(texID)=='') then ! texture components
|
2007-10-16 14:31:19 +05:30
|
|
|
sumVolfrac(texID) = sum(texture_gauss(5,:,texID))+sum(texture_fiber(6,:,texID))
|
|
|
|
if (sumVolfrac(texID)<1.0_pReal) texture_NRandom(texID) = 1_pInt ! check whether random component missing
|
|
|
|
Ncomponents(texID) = texture_NGauss(texID)+texture_NFiber(texID)+texture_NRandom(texID)
|
|
|
|
else ! hybrid IA
|
|
|
|
o = o+1
|
|
|
|
ODFmap(texID) = o ! remember mapping
|
|
|
|
Ncomponents(texID) = 1_pInt ! single "component"
|
|
|
|
endif
|
|
|
|
! adjust multiplicity and number of grains per IP of components
|
|
|
|
multiplicity(texID) = max(1_pInt,texture_Ngrains(texID)/Ncomponents(texID)/Nsym(texID))
|
|
|
|
if (mod(texture_Ngrains(texID),Ncomponents(texID)*Nsym(texID)) /= 0_pInt) then
|
|
|
|
texture_Ngrains(texID) = multiplicity(texID)*Ncomponents(texID)*Nsym(texID)
|
|
|
|
write (6,*) 'changed Ngrains to',texture_Ngrains(texID),' for texture',texID
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
|
|
|
!* publish globals
|
|
|
|
constitutive_maxNgrains = maxval(texture_Ngrains)
|
2007-12-07 19:29:15 +05:30
|
|
|
material_maxNslip = maxval(material_Nslip) ! max of slip systems among materials present
|
|
|
|
material_maxNtwin = maxval(material_Ntwin) ! max of twin systems among materials present
|
|
|
|
constitutive_maxNstatevars = maxval(material_Nslip) + maxval(material_Ntwin)
|
2007-12-10 18:25:43 +05:30
|
|
|
! -----------------------------------------------------------------------------------------------------------------------
|
2007-10-16 14:31:19 +05:30
|
|
|
constitutive_maxNresults = 1_pInt
|
2007-12-10 18:25:43 +05:30
|
|
|
! -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!* calc texture_totalNgrains
|
|
|
|
allocate(texture_totalNgrains(texture_maxN)) ; texture_totalNgrains=0_pInt
|
|
|
|
do i=1,mesh_NcpElems
|
|
|
|
texID = mesh_element(4,i)
|
|
|
|
texture_totalNgrains(texID) = texture_totalNgrains(texID) + FE_Nips(FE_mapElemtype(mesh_element(2,i)))*texture_Ngrains(texID)
|
|
|
|
enddo
|
|
|
|
|
|
|
|
! generate hybridIA samplings for ODFfile textures to later draw from these populations
|
2007-10-24 20:43:10 +05:30
|
|
|
allocate(hybridIA_population(3,maxval(texture_totalNgrains/Nsym,ODFmap /= 0),o))
|
2007-10-16 14:31:19 +05:30
|
|
|
do texID = 1,texture_maxN
|
|
|
|
if (ODFmap(texID) > 0) &
|
2007-10-24 20:43:10 +05:30
|
|
|
hybridIA_population(:,:,ODFmap(texID)) = IO_hybridIA(texture_totalNgrains(texID)/Nsym(texID),texture_ODFfile(texID))
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo
|
|
|
|
|
|
|
|
!* Array allocation
|
|
|
|
allocate(constitutive_Ngrains(mesh_maxNips,mesh_NcpElems)) ; constitutive_Ngrains=0_pInt
|
|
|
|
allocate(constitutive_matID(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_matID=0_pInt
|
|
|
|
allocate(constitutive_texID(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_texID=0_pInt
|
|
|
|
allocate(constitutive_MatVolFrac(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_MatVolFrac=0.0_pReal
|
|
|
|
allocate(constitutive_TexVolFrac(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_TexVolFrac=0.0_pReal
|
|
|
|
allocate(constitutive_EulerAngles(3,constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_EulerAngles=0.0_pReal
|
|
|
|
allocate(constitutive_Nresults(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_Nresults=0_pInt
|
|
|
|
allocate(constitutive_Nstatevars(constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems)) ; constitutive_Nstatevars=0_pInt
|
|
|
|
allocate(constitutive_state_old(constitutive_maxNstatevars,constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems))
|
|
|
|
constitutive_state_old=0.0_pReal
|
|
|
|
allocate(constitutive_state_new(constitutive_maxNstatevars,constitutive_maxNgrains,mesh_maxNips,mesh_NcpElems))
|
|
|
|
constitutive_state_new=0.0_pReal
|
2007-10-24 20:54:49 +05:30
|
|
|
allocate(constitutive_Pforest(material_maxNslip,material_maxNslip,material_maxN))
|
2007-10-16 14:31:19 +05:30
|
|
|
constitutive_Pforest=0.0_pReal
|
2007-10-22 21:02:45 +05:30
|
|
|
allocate(constitutive_Pparallel(material_maxNslip,material_maxNslip,material_maxN))
|
2007-10-16 14:31:19 +05:30
|
|
|
constitutive_Pparallel=0.0_pReal
|
2007-10-22 21:02:45 +05:30
|
|
|
allocate(constitutive_rho_p(material_maxNslip)) ; constitutive_rho_p=0.0_pReal
|
|
|
|
allocate(constitutive_rho_f(material_maxNslip)) ; constitutive_rho_f=0.0_pReal
|
|
|
|
allocate(constitutive_rho_m(material_maxNslip)) ; constitutive_rho_m=0.0_pReal
|
|
|
|
allocate(constitutive_passing_stress(material_maxNslip)) ; constitutive_passing_stress=0.0_pReal
|
|
|
|
allocate(constitutive_jump_width(material_maxNslip)) ; constitutive_jump_width=0.0_pReal
|
|
|
|
allocate(constitutive_activation_volume(material_maxNslip)) ; constitutive_activation_volume=0.0_pReal
|
|
|
|
allocate(constitutive_g0_slip(material_maxNslip)) ; constitutive_g0_slip=0.0_pReal
|
2007-12-07 20:42:43 +05:30
|
|
|
allocate(constitutive_twin_volume(material_maxNtwin)) ; constitutive_twin_volume=0.0_pReal
|
2007-12-10 18:25:43 +05:30
|
|
|
allocate(constitutive_inv_intertwin_len(material_maxNtwin)) ; constitutive_inv_intertwin_len=0.0_pReal
|
|
|
|
allocate(constitutive_twin_mfp(material_maxNtwin)) ; constitutive_twin_mfp=0.0_pReal
|
|
|
|
allocate(constitutive_tau_slip(material_maxNslip)) ; constitutive_tau_slip=0.0_pReal
|
|
|
|
allocate(constitutive_tau_twin(material_maxNtwin)) ; constitutive_tau_twin=0.0_pReal
|
|
|
|
allocate(constitutive_gdot_slip(material_maxNslip)) ; constitutive_gdot_slip=0.0_pReal
|
|
|
|
allocate(constitutive_fdot_twin(material_maxNtwin)) ; constitutive_fdot_twin=0.0_pReal
|
|
|
|
allocate(constitutive_dgdot_dtauslip(material_maxNslip)) ; constitutive_dgdot_dtauslip=0.0_pReal
|
|
|
|
allocate(constitutive_dfdot_dtautwin(material_maxNtwin)) ; constitutive_dfdot_dtautwin=0.0_pReal
|
|
|
|
allocate(constitutive_dfdot_dtauslip(material_maxNtwin,material_maxNslip)) ; constitutive_dfdot_dtauslip=0.0_pReal
|
|
|
|
allocate(constitutive_locks(material_maxNslip)) ; constitutive_locks=0.0_pReal
|
|
|
|
allocate(constitutive_grainboundaries(material_maxNslip)) ; constitutive_grainboundaries=0.0_pReal
|
|
|
|
allocate(constitutive_twinboundaries(material_maxNslip)) ; constitutive_twinboundaries=0.0_pReal
|
|
|
|
allocate(constitutive_recovery(material_maxNslip)) ; constitutive_locks=0.0_pReal
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!* Assignment of all grains in all IPs of all cp-elements
|
|
|
|
do e=1,mesh_NcpElems
|
|
|
|
matID=mesh_element(3,e)
|
|
|
|
texID=mesh_element(4,e)
|
|
|
|
do i=1,FE_Nips(FE_mapElemtype(mesh_element(2,e)))
|
|
|
|
g = 0_pInt ! grain counter
|
|
|
|
do m = 1,multiplicity(texID)
|
|
|
|
o = 0_pInt ! component counter
|
|
|
|
if (texture_ODFfile(texID)=='') then
|
|
|
|
do k = 1,texture_nGauss(texID) ! *** gauss ***
|
|
|
|
o = o+1
|
|
|
|
Euler(:,o) = math_sampleGaussOri(texture_Gauss(1:3,k,texID),texture_Gauss(4,k,texID))
|
|
|
|
texVolFrac(o) = texture_Gauss(5,k,texID)
|
|
|
|
enddo
|
|
|
|
do k = 1,texture_nFiber(texID) ! *** fiber ***
|
|
|
|
o = o+1
|
|
|
|
Euler(:,o) = math_sampleFiberOri(texture_Fiber(1:2,k,texID),texture_Fiber(3:4,k,texID),texture_Fiber(5,k,texID))
|
|
|
|
texVolFrac(o) = texture_Fiber(6,k,texID)
|
|
|
|
enddo
|
|
|
|
do k = 1,texture_nRandom(texID) ! *** random ***
|
|
|
|
o = o+1
|
|
|
|
Euler(:,o) = math_sampleRandomOri()
|
|
|
|
texVolfrac(o) = 1.0_pReal-sumVolfrac(texID)
|
|
|
|
enddo
|
|
|
|
else ! *** hybrid IA ***
|
|
|
|
o = 1 ! only singular orientation, i.e. single "component"
|
|
|
|
Euler(:,o) = hybridIA_population(:,1+sampleCount(texID),ODFmap(texID))
|
|
|
|
texVolfrac(o) = 1.0_pReal
|
|
|
|
endif
|
|
|
|
if (Nsym(texID) > 1) then ! symmetry generates additional orientations
|
|
|
|
forall (k=1:o)
|
|
|
|
Euler(:,1+o+(Nsym(texID)-1)*(k-1):3+o+(Nsym(texID)-1)*(k-1)) = &
|
|
|
|
math_symmetricEulers(texture_symmetry(texID),Euler(:,k))
|
|
|
|
texVolfrac(1+o+(Nsym(texID)-1)*(k-1):3+o+(Nsym(texID)-1)*(k-1)) = texVolfrac(k)
|
|
|
|
end forall
|
|
|
|
endif
|
|
|
|
do s = 1,Nsym(texID)*o ! loop over orientations to be assigned to ip (ex multiplicity)
|
|
|
|
g = g+1 ! next "grain"
|
|
|
|
constitutive_matID(g,i,e) = matID ! copy matID of element
|
|
|
|
constitutive_texID(g,i,e) = texID ! copy texID of element
|
|
|
|
constitutive_MatVolFrac(g,i,e) = 1.0_pReal ! singular material (so far)
|
|
|
|
constitutive_TexVolFrac(g,i,e) = texVolfrac(s)/multiplicity(texID)/Nsym(texID)
|
2007-12-11 20:00:21 +05:30
|
|
|
constitutive_Nstatevars(g,i,e) = material_Nslip(matID) + material_Ntwin(matID)! number of state variables (i.e. tau_c of each slip system)
|
2007-12-10 18:25:43 +05:30
|
|
|
! -----------------------------------------------------------------------------------------------------------------------
|
|
|
|
constitutive_Nresults(g,i,e) = 0 ! number of constitutive results output by constitutive_post_results
|
|
|
|
! -----------------------------------------------------------------------------------------------------------------------
|
2007-10-16 14:31:19 +05:30
|
|
|
constitutive_EulerAngles(:,g,i,e) = Euler(:,s) ! store initial orientation
|
|
|
|
forall (l=1:constitutive_Nstatevars(g,i,e)) ! initialize state variables
|
|
|
|
constitutive_state_old(l,g,i,e) = material_rho0(matID)
|
|
|
|
constitutive_state_new(l,g,i,e) = material_rho0(matID)
|
|
|
|
end forall
|
|
|
|
enddo ! components
|
2007-10-24 20:43:10 +05:30
|
|
|
sampleCount(texID) = sampleCount(texID)+1 ! next member of hybrid IA population
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo ! multiplicity
|
|
|
|
enddo ! ip
|
|
|
|
enddo ! cp_element
|
|
|
|
|
2007-12-07 19:29:15 +05:30
|
|
|
!* Construction of the rotated elasticity matrices for twinning
|
|
|
|
do i=1,material_maxN
|
2007-12-10 18:25:43 +05:30
|
|
|
C_3333=math_Mandel66to3333(material_Cslip_66(:,:,i))
|
2007-12-07 19:29:15 +05:30
|
|
|
do j=1,material_Ntwin(i)
|
2007-12-10 18:25:43 +05:30
|
|
|
Qtwin=crystal_Qtwin(:,:,j,material_CrystalStructure(i))
|
2007-12-07 19:29:15 +05:30
|
|
|
do k=1,3
|
|
|
|
do l=1,3
|
|
|
|
do m=1,3
|
|
|
|
do n=1,3
|
2007-12-10 18:25:43 +05:30
|
|
|
Ctwin_3333(k,l,m,n)=0.0_pReal
|
2007-12-07 19:29:15 +05:30
|
|
|
do p=1,3
|
|
|
|
do q=1,3
|
|
|
|
do r=1,3
|
|
|
|
do s=1,3
|
2007-12-10 18:25:43 +05:30
|
|
|
Ctwin_3333(k,l,m,n)=Ctwin_3333(k,l,m,n)+C_3333(p,q,r,s)*Qtwin(k,p)*Qtwin(l,q)*Qtwin(m,r)*Qtwin(n,s)
|
2007-12-07 19:29:15 +05:30
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
2007-12-10 18:25:43 +05:30
|
|
|
!* Mapping back to 66-format of the matrices
|
|
|
|
material_Ctwin_66(:,:,j,i) = math_Mandel3333to66(Ctwin_3333)
|
2007-12-07 19:29:15 +05:30
|
|
|
enddo
|
|
|
|
enddo
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!* Construction of the hardening matrices
|
|
|
|
do i=1,material_maxN
|
|
|
|
!* Iteration over the systems
|
2007-10-22 21:02:45 +05:30
|
|
|
do j=1,material_Nslip(i)
|
|
|
|
do k=1,material_Nslip(i)
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Projection of the dislocation *
|
|
|
|
x=dot_product(crystal_sn(:,j,i),crystal_st(:,k,i))
|
|
|
|
y=1.0_pReal-x**(2.0_pReal)
|
|
|
|
!* Interaction matrix *
|
2007-10-22 21:02:45 +05:30
|
|
|
constitutive_Pforest(j,k,i)=abs(x)*material_SlipIntCoeff(crystal_SlipIntType(j,k,i),i)
|
2007-10-16 14:31:19 +05:30
|
|
|
if (y>0.0_pReal) then
|
2007-10-22 21:02:45 +05:30
|
|
|
constitutive_Pparallel(j,k,i)=sqrt(y)*material_SlipIntCoeff(crystal_SlipIntType(j,k,i),i)
|
2007-10-16 14:31:19 +05:30
|
|
|
else
|
|
|
|
constitutive_Pparallel(j,k,i)=0.0_pReal
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
2007-12-07 16:07:06 +05:30
|
|
|
function constitutive_HomogenizedC(state,ipc,ip,el)
|
2007-10-16 14:31:19 +05:30
|
|
|
!*********************************************************************
|
|
|
|
!* This function returns the homogenized elacticity matrix *
|
|
|
|
!* INPUT: *
|
2007-12-07 16:07:06 +05:30
|
|
|
!* - state : state variables *
|
2007-10-16 14:31:19 +05:30
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
2007-12-10 18:25:43 +05:30
|
|
|
integer(pInt) matID,i,startIdxTwin
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(6,6) :: constitutive_homogenizedC
|
2007-12-07 16:24:19 +05:30
|
|
|
real(pReal), dimension(constitutive_Nstatevars(ipc,ip,el)) :: state
|
2007-10-16 14:31:19 +05:30
|
|
|
|
2007-12-07 19:47:42 +05:30
|
|
|
!* Get the material-ID from the triplet(ipc,ip,el)
|
|
|
|
matID = constitutive_matID(ipc,ip,el)
|
2007-12-10 18:25:43 +05:30
|
|
|
startIdxTwin = material_Nslip(matID)
|
2007-12-07 19:47:42 +05:30
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Homogenization scheme
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_homogenizedC=(1-sum(state((startIdxTwin+1):(startIdxTwin+material_Ntwin(matID)))))*&
|
|
|
|
material_Cslip_66(:,:,matID)
|
2007-12-07 19:47:42 +05:30
|
|
|
do i=1,material_Ntwin(matID)
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_homogenizedC=constitutive_homogenizedC+state(startIdxTwin+i)*material_Ctwin_66(:,:,i,matID)
|
2007-12-07 19:47:42 +05:30
|
|
|
enddo
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
return
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_Microstructure(state,Tp,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This function calculates from state needed variables *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - state : state variables *
|
|
|
|
!* - Tp : temperature *
|
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
2007-12-07 20:42:43 +05:30
|
|
|
use math, only: pi
|
|
|
|
use crystal, only: crystal_TwinIntType
|
2007-10-16 14:31:19 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
2007-12-10 18:25:43 +05:30
|
|
|
integer(pInt) matID,i,j,startIdxTwin
|
|
|
|
real(pReal) Tp,Ftwin
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(constitutive_Nstatevars(ipc,ip,el)) :: state
|
|
|
|
|
|
|
|
!* Get the material-ID from the triplet(ipc,ip,el)
|
|
|
|
matID = constitutive_matID(ipc,ip,el)
|
2007-12-10 18:25:43 +05:30
|
|
|
startIdxTwin = material_Nslip(matID)
|
2007-10-16 14:31:19 +05:30
|
|
|
|
2007-12-10 18:25:43 +05:30
|
|
|
!* Quantities derived from state - slip
|
2007-10-22 21:02:45 +05:30
|
|
|
constitutive_rho_f=matmul(constitutive_Pforest (1:material_Nslip(matID),1:material_Nslip(matID),matID),state)
|
|
|
|
constitutive_rho_p=matmul(constitutive_Pparallel(1:material_Nslip(matID),1:material_Nslip(matID),matID),state)
|
2007-10-16 14:31:19 +05:30
|
|
|
do i=1,material_Nslip(matID)
|
|
|
|
constitutive_passing_stress(i)=material_tau0(matID)+material_c1(matID)*material_Gmod(matID)*material_bg(matID)*&
|
|
|
|
sqrt(constitutive_rho_p(i))
|
|
|
|
constitutive_jump_width(i)=material_c2(matID)/sqrt(constitutive_rho_f(i))
|
|
|
|
constitutive_activation_volume(i)=material_c3(matID)*constitutive_jump_width(i)*material_bg(matID)**2.0_pReal
|
|
|
|
constitutive_rho_m(i)=(2.0_pReal*Kb*Tp*sqrt(constitutive_rho_p(i)))/&
|
2007-12-07 19:29:15 +05:30
|
|
|
(material_c1(matID)*material_c3(matID)*material_Gmod(matID)*constitutive_jump_width(i)*&
|
|
|
|
material_bg(matID)**3.0_pReal)
|
2007-10-16 14:31:19 +05:30
|
|
|
constitutive_g0_slip(i)=constitutive_rho_m(i)*material_bg(matID)*attack_frequency*constitutive_jump_width(i)*&
|
|
|
|
exp(-(material_Qedge(matID)+constitutive_passing_stress(i)*constitutive_activation_volume(i))/&
|
|
|
|
(Kb*Tp))
|
|
|
|
enddo
|
|
|
|
|
2007-12-10 18:25:43 +05:30
|
|
|
!* Quantities derived from state - twin
|
|
|
|
Ftwin = sum(state((startIdxTwin+1):(startIdxTwin+material_Ntwin(matID))))
|
2007-12-07 20:42:43 +05:30
|
|
|
do i=1,material_Ntwin(matID)
|
|
|
|
!* Inverse of the average distance between 2 twins of the same familly
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_inv_intertwin_len(i)=0.0_pReal
|
2007-12-07 20:42:43 +05:30
|
|
|
do j=1,material_Ntwin(matID)
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_inv_intertwin_len(i)=constitutive_inv_intertwin_len(i)+&
|
|
|
|
(crystal_TwinIntType(i,j,material_CrystalStructure(matID))*state(startIdxTwin+j))/&
|
|
|
|
(2.0_pReal*material_StackSize(matID)*(1.0_pReal-Ftwin))
|
2007-12-07 20:42:43 +05:30
|
|
|
enddo
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_twin_mfp(i)=(1.0_pReal)/((1.0_pReal/material_GrainSize(matID))+constitutive_inv_intertwin_len(i))
|
|
|
|
constitutive_twin_volume(i)=(pi/6.0_pReal)*material_StackSize(matID)*constitutive_twin_mfp(i)**2.0_pReal
|
2007-12-07 20:42:43 +05:30
|
|
|
enddo
|
|
|
|
|
2007-12-11 20:00:21 +05:30
|
|
|
!write(6,*) 'rho_f', constitutive_rho_f
|
|
|
|
!write(6,*) 'rho_p', constitutive_rho_p
|
|
|
|
!write(6,*) 'passing', constitutive_passing_stress
|
|
|
|
!write(6,*) 'jump_width', constitutive_jump_width
|
|
|
|
!write(6,*) 'activation_volume', constitutive_activation_volume
|
|
|
|
!write(6,*) 'Temperature', Tp
|
|
|
|
!write(6,*) 'rho_m', constitutive_rho_m
|
|
|
|
!write(6,*) 'g0_slip', constitutive_g0_slip
|
|
|
|
|
2007-12-07 20:42:43 +05:30
|
|
|
return
|
2007-10-16 14:31:19 +05:30
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_LpAndItsTangent(Lp,dLp_dTstar,Tstar_v,state,Tp,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This subroutine contains the constitutive equation for *
|
|
|
|
!* calculating the velocity gradient *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - state : current microstructure *
|
|
|
|
!* - Tp : temperature *
|
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - Lp : plastic velocity gradient *
|
|
|
|
!* - dLp_dTstar : derivative of Lp (4th-order tensor) *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
2007-12-10 18:25:43 +05:30
|
|
|
use crystal, only: crystal_Sslip,crystal_Sslip_v,crystal_Stwin,crystal_Stwin_v,crystal_TwinShear
|
2007-10-16 14:31:19 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
2007-12-10 18:25:43 +05:30
|
|
|
integer(pInt) matID,startIdxTwin,i,j,k,l,m,n
|
|
|
|
real(pReal) Tp,Ftwin
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(3,3) :: Lp,Sslip,Stwin
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(3,3,3,3) :: dLp_dTstar
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal), dimension(constitutive_Nstatevars(ipc,ip,el)) :: state
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!* Get the material-ID from the triplet(ipc,ip,el)
|
|
|
|
matID = constitutive_matID(ipc,ip,el)
|
2007-12-10 18:25:43 +05:30
|
|
|
startIdxTwin = material_Nslip(matID)
|
|
|
|
|
|
|
|
!* Recompute arrays from the microstructure (may be not needed)
|
|
|
|
call constitutive_Microstructure(state,Tp,ipc,ip,el)
|
2007-10-16 14:31:19 +05:30
|
|
|
|
2007-12-10 18:25:43 +05:30
|
|
|
!* Calculation of Lp - slip
|
|
|
|
Ftwin = sum(state((startIdxTwin+1):(startIdxTwin+material_Ntwin(matID))))
|
2007-10-16 14:31:19 +05:30
|
|
|
Lp = 0.0_pReal
|
|
|
|
do i=1,material_Nslip(matID)
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_tau_slip(i)=dot_product(Tstar_v,crystal_Sslip_v(:,i,material_CrystalStructure(matID)))
|
|
|
|
constitutive_gdot_slip(i)=constitutive_g0_slip(i)*sinh((abs(constitutive_tau_slip(i))*&
|
|
|
|
constitutive_activation_volume(i))/(Kb*Tp))*sign(1.0_pReal,constitutive_tau_slip(i))
|
|
|
|
constitutive_dgdot_dtauslip(i)=((constitutive_g0_slip(i)*constitutive_activation_volume(i))/(Kb*Tp))*&
|
|
|
|
cosh((abs(constitutive_tau_slip(i))*constitutive_activation_volume(i))/(Kb*Tp))
|
|
|
|
Lp=Lp+(1.0_pReal-Ftwin)*constitutive_gdot_slip(i)*crystal_Sslip(:,:,i,material_CrystalStructure(matID))
|
|
|
|
enddo
|
|
|
|
|
|
|
|
!* Calculation of Lp - twin
|
|
|
|
do i=1,material_Ntwin(matID)
|
|
|
|
constitutive_tau_twin(i)=dot_product(Tstar_v,crystal_Stwin_v(:,i,material_CrystalStructure(matID)))
|
|
|
|
if (constitutive_tau_twin(i)>0.0_pReal) then
|
|
|
|
constitutive_fdot_twin(i)=(1.0_pReal-Ftwin)*constitutive_twin_volume(i)*&
|
|
|
|
((material_twin_ref(matID)*sum(state(1:material_Nslip(matID)))**(1.5_pReal))/material_bg(matID))*&
|
|
|
|
sum(abs(constitutive_gdot_slip))*(constitutive_tau_twin(i)/material_twin_res(matID))**&
|
|
|
|
material_twin_sens(matID)
|
|
|
|
constitutive_dfdot_dtautwin(i)=(1.0_pReal-Ftwin)*constitutive_twin_volume(i)*&
|
|
|
|
((material_twin_ref(matID)*sum(state(1:material_Nslip(matID)))**(1.5_pReal))/material_bg(matID))*&
|
|
|
|
sum(abs(constitutive_gdot_slip))*(material_twin_sens(matID)/material_twin_res(matID))*&
|
|
|
|
(constitutive_tau_twin(i)/material_twin_res(matID))**(material_twin_sens(matID)-1.0_pReal)
|
|
|
|
do j=1,material_Nslip(matID)
|
|
|
|
constitutive_dfdot_dtauslip(i,j)=(1.0_pReal-Ftwin)*constitutive_twin_volume(i)*&
|
|
|
|
((material_twin_ref(matID)*sum(state(1:material_Nslip(matID)))**(1.5_pReal))/material_bg(matID))*&
|
|
|
|
abs(constitutive_dgdot_dtauslip(j))*(constitutive_tau_twin(i)/material_twin_res(matID))**&
|
|
|
|
material_twin_sens(matID)
|
|
|
|
enddo
|
|
|
|
else
|
|
|
|
constitutive_fdot_twin(i)=0.0_pReal
|
|
|
|
constitutive_dfdot_dtautwin(i)=0.0_pReal
|
|
|
|
do j=1,material_Nslip(matID)
|
|
|
|
constitutive_dfdot_dtauslip(i,j)=0.0_pReal
|
|
|
|
enddo
|
|
|
|
endif
|
|
|
|
Lp=Lp+state(material_Nslip(matID)+i)*crystal_TwinShear(material_CrystalStructure(matID))*constitutive_fdot_twin(i)*&
|
|
|
|
crystal_Stwin(:,:,i,material_CrystalStructure(matID))
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo
|
|
|
|
|
2007-12-11 20:00:21 +05:30
|
|
|
!write(6,*) 'constitutive_gdot_slip'
|
|
|
|
!write(6,*) constitutive_gdot_slip
|
2007-12-07 16:07:06 +05:30
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Calculation of the tangent of Lp
|
|
|
|
dLp_dTstar=0.0_pReal
|
|
|
|
do i=1,material_Nslip(matID)
|
2007-12-10 18:25:43 +05:30
|
|
|
Sslip = crystal_Sslip(:,:,i,material_CrystalStructure(matID))
|
2007-10-16 14:31:19 +05:30
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3)
|
|
|
|
dLp_dTstar(k,l,m,n) = dLp_dTstar(k,l,m,n)+ &
|
2007-12-10 18:25:43 +05:30
|
|
|
(1-Ftwin)*constitutive_dgdot_dtauslip(i)*Sslip(k,l)*(Sslip(m,n)+Sslip(n,m))/2.0_pReal !force m,n symmetry
|
2007-10-16 14:31:19 +05:30
|
|
|
endforall
|
|
|
|
enddo
|
2007-12-10 18:25:43 +05:30
|
|
|
do i=1,material_Ntwin(matID)
|
|
|
|
Stwin = crystal_Stwin(:,:,i,material_CrystalStructure(matID))
|
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3)
|
|
|
|
dLp_dTstar(k,l,m,n) = dLp_dTstar(k,l,m,n)+ &
|
|
|
|
state(material_Nslip(matID)+i)*crystal_TwinShear(material_CrystalStructure(matID))*&
|
|
|
|
constitutive_dfdot_dtautwin(i)*Stwin(k,l)*(Stwin(m,n)+Stwin(n,m))/2.0_pReal !force m,n symmetry
|
|
|
|
endforall
|
|
|
|
do j=1,material_Nslip(matID)
|
|
|
|
Sslip = crystal_Sslip(:,:,j,material_CrystalStructure(matID))
|
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3)
|
|
|
|
dLp_dTstar(k,l,m,n) = dLp_dTstar(k,l,m,n)+ &
|
|
|
|
state(material_Nslip(matID)+i)*crystal_TwinShear(material_CrystalStructure(matID))*&
|
|
|
|
constitutive_dfdot_dtauslip(i,j)*Stwin(k,l)*(Sslip(m,n)+Sslip(n,m))/2.0_pReal !force m,n symmetry
|
|
|
|
endforall
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
function constitutive_dotState(Tstar_v,state,Tp,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* This subroutine contains the constitutive equation for *
|
2007-12-07 16:07:06 +05:30
|
|
|
!* calculating rate of change of microstructure *
|
2007-10-16 14:31:19 +05:30
|
|
|
!* INPUT: *
|
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - state : current microstructure *
|
|
|
|
!* - Tp : temperature *
|
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - constitutive_DotState : evolution of state variable *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
use crystal, only: crystal_Sslip_v
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
|
|
|
integer(pInt) matID,i
|
2007-12-10 18:25:43 +05:30
|
|
|
real(pReal) Tp,tau_slip,gdot_slip
|
2007-10-16 14:31:19 +05:30
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
2007-12-07 16:07:06 +05:30
|
|
|
real(pReal), dimension(constitutive_Nstatevars(ipc,ip,el)) :: constitutive_dotState,state
|
2007-10-16 14:31:19 +05:30
|
|
|
|
|
|
|
!* Get the material-ID from the triplet(ipc,ip,el)
|
|
|
|
matID = constitutive_matID(ipc,ip,el)
|
|
|
|
|
2007-12-10 18:25:43 +05:30
|
|
|
!* Recompute arrays from the microstructure (may be not needed)
|
|
|
|
call constitutive_Microstructure(state,Tp,ipc,ip,el)
|
|
|
|
|
2007-10-16 14:31:19 +05:30
|
|
|
!* Hardening of each system
|
2007-12-07 16:07:06 +05:30
|
|
|
do i=1,material_Nslip(matID)
|
2007-10-16 14:31:19 +05:30
|
|
|
tau_slip = dot_product(Tstar_v,crystal_Sslip_v(:,i,material_CrystalStructure(matID)))
|
|
|
|
gdot_slip = constitutive_g0_slip(i)*sinh((abs(tau_slip)*constitutive_activation_volume(i))/(Kb*Tp))*&
|
2007-11-15 22:34:30 +05:30
|
|
|
sign(1.0_pReal,tau_slip)
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_locks(i)=(sqrt(constitutive_rho_f(i))*abs(gdot_slip))/(material_c4(matID)*material_bg(matID))
|
|
|
|
constitutive_grainboundaries(i)=(abs(gdot_slip))/(material_c5(matID)*material_bg(matID)*material_GrainSize(matID))
|
2007-12-11 20:00:21 +05:30
|
|
|
! constitutive_twinboundaries(i)=(abs(gdot_slip)*constitutive_inv_intertwin_len(i))/(material_c6(matID)*material_bg(matID))
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_recovery(i)=material_c7(matID)*state(i)*abs(gdot_slip)
|
2007-12-11 20:00:21 +05:30
|
|
|
constitutive_dotState(i)=constitutive_locks(i)+constitutive_grainboundaries(i)-& !+constitutive_twinboundaries(i)-&
|
2007-12-10 18:25:43 +05:30
|
|
|
constitutive_recovery(i)
|
2007-10-16 14:31:19 +05:30
|
|
|
enddo
|
|
|
|
|
|
|
|
return
|
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
function constitutive_post_results(Tstar_v,state,dt,Tp,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* return array of constitutive results *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - state : current microstructure *
|
|
|
|
!* - dt : current time increment *
|
|
|
|
!* - Tp : temperature *
|
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
2007-12-10 18:25:43 +05:30
|
|
|
!* constitutive_Nresults has to be set accordingly in _Assignment *
|
2007-10-16 14:31:19 +05:30
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
use crystal, only: crystal_Sslip_v
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
|
|
|
integer(pInt) matID,i
|
|
|
|
real(pReal) dt,Tp,tau_slip
|
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
|
|
|
real(pReal), dimension(constitutive_Nstatevars(ipc,ip,el)) :: state
|
|
|
|
real(pReal), dimension(constitutive_Nresults(ipc,ip,el)) :: constitutive_post_results
|
|
|
|
|
|
|
|
!* Get the material-ID from the triplet(ipc,ip,el)
|
|
|
|
matID = constitutive_matID(ipc,ip,el)
|
|
|
|
|
|
|
|
if(constitutive_Nresults(ipc,ip,el)==0) return
|
|
|
|
|
|
|
|
do i=1,material_Nslip(matID)
|
|
|
|
constitutive_post_results(i) = state(i)
|
|
|
|
tau_slip=dot_product(Tstar_v,crystal_Sslip_v(:,i,material_CrystalStructure(matID)))
|
|
|
|
constitutive_post_results(i+material_Nslip(matID)) = &
|
|
|
|
dt*constitutive_g0_slip(i)*sinh((abs(tau_slip)*constitutive_activation_volume(i))/(Kb*Tp))*&
|
|
|
|
sign(1.0_pReal,tau_slip)
|
|
|
|
enddo
|
|
|
|
return
|
|
|
|
|
|
|
|
end function
|
|
|
|
|
|
|
|
END MODULE
|