2009-03-05 21:45:24 +05:30
|
|
|
|
|
|
|
!************************************
|
|
|
|
!* Module: CONSTITUTIVE *
|
|
|
|
!************************************
|
|
|
|
!* contains: *
|
|
|
|
!* - constitutive equations *
|
|
|
|
!* - parameters definition *
|
|
|
|
!* - orientations *
|
|
|
|
!************************************
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
! [TWIP steel FeMnC]
|
|
|
|
|
|
|
|
! C11 175.0e9 # elastic constants in Pa
|
|
|
|
! C12 115.0e9
|
|
|
|
! C44 135.0e9
|
|
|
|
! lattice_structure fcc
|
|
|
|
! Nslip 12
|
|
|
|
! Ntwin 12
|
|
|
|
! constitution dislobased
|
2009-07-28 15:38:13 +05:30
|
|
|
! (output) dislocationdensity
|
2009-07-24 17:32:20 +05:30
|
|
|
! (output) shearrate_slip
|
2009-07-28 15:38:13 +05:30
|
|
|
! (output) mfp_slip # mean free path
|
2009-07-24 17:32:20 +05:30
|
|
|
! (output) resolvedstress_slip
|
2009-07-28 15:38:13 +05:30
|
|
|
! (output) resistance_slip # passing stress
|
|
|
|
! (output) volumefraction
|
2009-07-24 17:32:20 +05:30
|
|
|
! (output) shearrate_twin
|
2009-07-28 15:38:13 +05:30
|
|
|
! (output) mfp_twin # mean free path
|
2009-07-24 17:32:20 +05:30
|
|
|
! (output) resolvedstress_twin
|
2009-07-28 15:38:13 +05:30
|
|
|
! (output) resistance_twin # "nucleation barrier"
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
! ### dislocation density-based constitutive parameters ###
|
|
|
|
! burgers 2.56e-10 # Burgers vector [m]
|
|
|
|
! Qedge 5.5e-19 # Activation energy for dislocation glide [J/K] (0.5*G*b^3)
|
|
|
|
! grainsize 2.0e-5 # Average grain size [m]
|
|
|
|
! stacksize 5.0e-8 # Twin stack mean thickness [m]
|
|
|
|
! interaction_slipslip 1.0 2.2 3.0 1.6 3.8 4.5 # Dislocation interaction coefficients
|
|
|
|
! interaction_sliptwin 0.0 1.0 # Dislocation interaction coefficients
|
|
|
|
! interaction_twintwin 0.0 1.0 # Dislocation interaction coefficients
|
2009-07-28 15:38:13 +05:30
|
|
|
! # dislocation glide
|
2009-07-24 17:32:20 +05:30
|
|
|
! rho0 2.5e12 # Initial dislocation density [m/m³]
|
|
|
|
! Cmfpslip 1.0 # Adjustable parameter controlling dislocation mean free path
|
|
|
|
! Cactivolume 1.0 # Adjustable parameter controlling activation volume
|
|
|
|
! Cthresholdslip 0.1 # Adjustable parameter controlling threshold stress for dislocation motion
|
|
|
|
! Cstorage 0.02 # Adjustable parameter controlling dislocation storage
|
|
|
|
! Carecovery 15.0 # Adjustable parameter controlling athermal recovery
|
2009-07-28 15:38:13 +05:30
|
|
|
! # mechanical twinning
|
2009-07-24 17:32:20 +05:30
|
|
|
! Ndot0 0.0 # Number of potential twin source per volume per time [1/m³.s]
|
|
|
|
! fmax 1.0 # Maximum admissible twin volume fraction
|
|
|
|
! Cmfptwin 1.0 # Adjustable parameter controlling twin mean free path
|
|
|
|
! Cthresholdtwin 1.0 # Adjustable parameter controlling threshold stress for deformation twinning
|
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
MODULE constitutive_dislobased
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 21:45:24 +05:30
|
|
|
!*** Include other modules ***
|
|
|
|
use prec, only: pReal,pInt
|
|
|
|
implicit none
|
2009-03-05 22:06:31 +05:30
|
|
|
|
|
|
|
character (len=*), parameter :: constitutive_dislobased_label = 'dislobased'
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
integer(pInt), dimension(:), allocatable :: constitutive_dislobased_sizeDotState, &
|
|
|
|
constitutive_dislobased_sizeState, &
|
|
|
|
constitutive_dislobased_sizePostResults
|
|
|
|
integer(pInt), dimension(:,:), allocatable,target :: constitutive_dislobased_sizePostResult
|
|
|
|
character(len=64), dimension(:,:), allocatable,target :: constitutive_dislobased_output
|
|
|
|
|
|
|
|
character(len=32), dimension(:), allocatable :: constitutive_dislobased_structureName
|
2009-07-28 15:38:13 +05:30
|
|
|
integer(pInt), dimension(:), allocatable :: constitutive_dislobased_structure, &
|
|
|
|
constitutive_dislobased_totalNslip, &
|
|
|
|
constitutive_dislobased_totalNtwin
|
|
|
|
integer(pInt), dimension(:,:), allocatable :: constitutive_dislobased_Nslip, &
|
|
|
|
constitutive_dislobased_Ntwin, &
|
|
|
|
constitutive_dislobased_slipFamily, &
|
|
|
|
constitutive_dislobased_twinFamily
|
|
|
|
|
|
|
|
real(pReal), dimension(:), allocatable :: constitutive_dislobased_CoverA, &
|
|
|
|
constitutive_dislobased_C11, &
|
|
|
|
constitutive_dislobased_C12, &
|
|
|
|
constitutive_dislobased_C13, &
|
|
|
|
constitutive_dislobased_C33, &
|
|
|
|
constitutive_dislobased_C44, &
|
|
|
|
constitutive_dislobased_Gmod
|
2009-07-24 17:32:20 +05:30
|
|
|
real(pReal), dimension(:,:,:), allocatable :: constitutive_dislobased_Cslip_66
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: constitutive_dislobased_Ctwin_66
|
|
|
|
real(pReal), dimension(:,:,:,:,:), allocatable :: constitutive_dislobased_Cslip_3333
|
|
|
|
real(pReal), dimension(:,:,:,:,:,:), allocatable :: constitutive_dislobased_Ctwin_3333
|
2009-07-28 15:38:13 +05:30
|
|
|
real(pReal), dimension(:,:), allocatable :: constitutive_dislobased_rho0, &
|
|
|
|
constitutive_dislobased_Burgers, &
|
|
|
|
constitutive_dislobased_Qedge, &
|
|
|
|
constitutive_dislobased_stacksize, &
|
|
|
|
constitutive_dislobased_Ndot0, &
|
|
|
|
|
|
|
|
constitutive_dislobased_interaction_slipslip, &
|
|
|
|
constitutive_dislobased_interaction_sliptwin, &
|
|
|
|
constitutive_dislobased_interaction_twinslip, &
|
|
|
|
constitutive_dislobased_interaction_twintwin
|
|
|
|
real(pReal), dimension(:), allocatable :: constitutive_dislobased_grainsize, &
|
|
|
|
constitutive_dislobased_fmax, &
|
|
|
|
constitutive_dislobased_Cmfpslip, &
|
|
|
|
constitutive_dislobased_Cmfptwin, &
|
|
|
|
constitutive_dislobased_Cthresholdslip, &
|
|
|
|
constitutive_dislobased_Cthresholdtwin, &
|
|
|
|
constitutive_dislobased_Cactivolume, &
|
|
|
|
constitutive_dislobased_Carecovery, &
|
|
|
|
constitutive_dislobased_Cstorage
|
|
|
|
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:), allocatable :: constitutive_dislobased_parall_interaction, &
|
|
|
|
constitutive_dislobased_forest_interaction, &
|
|
|
|
constitutive_dislobased_hardeningMatrix_sliptwin, &
|
|
|
|
constitutive_dislobased_hardeningMatrix_twinslip, &
|
|
|
|
constitutive_dislobased_hardeningMatrix_twintwin
|
2009-03-05 21:45:24 +05:30
|
|
|
|
|
|
|
!*************************************
|
|
|
|
!* Definition of material properties *
|
|
|
|
!*************************************
|
|
|
|
!* Physical parameter, attack_frequency != Debye frequency
|
|
|
|
real(pReal), parameter :: attack_frequency = 1.0e10_pReal
|
|
|
|
!* Physical parameter, Boltzmann constant in J/Kelvin
|
|
|
|
real(pReal), parameter :: kB = 1.38e-23_pReal
|
|
|
|
!* Physical parameter, Avogadro number in 1/mol
|
|
|
|
real(pReal), parameter :: avogadro = 6.022e23_pReal
|
|
|
|
!* Physical parameter, Gas constant in J.mol/Kelvin
|
2009-07-28 15:38:13 +05:30
|
|
|
real(pReal), parameter :: Rgas = 8.314_pReal
|
2009-03-05 21:45:24 +05:30
|
|
|
|
|
|
|
CONTAINS
|
|
|
|
!****************************************
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - constitutive_init
|
2009-07-24 17:32:20 +05:30
|
|
|
!* - constitutive_stateInit
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - constitutive_homogenizedC
|
|
|
|
!* - constitutive_microstructure
|
|
|
|
!* - constitutive_LpAndItsTangent
|
|
|
|
!* - consistutive_dotState
|
2009-07-24 17:32:20 +05:30
|
|
|
!* - constitutive_dotTemperature
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - consistutive_postResults
|
|
|
|
!****************************************
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
subroutine constitutive_dislobased_init(file)
|
|
|
|
!**************************************
|
|
|
|
!* Module initialization *
|
|
|
|
!**************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pInt,pReal
|
|
|
|
use math, only: math_Mandel3333to66,math_Voigt66to3333,math_mul3x3
|
2009-03-05 22:06:31 +05:30
|
|
|
use IO
|
|
|
|
use material
|
2009-07-28 15:38:13 +05:30
|
|
|
use lattice
|
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
integer(pInt), intent(in) :: file
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt), parameter :: maxNchunks = 21
|
2009-03-05 22:06:31 +05:30
|
|
|
integer(pInt), dimension(1+2*maxNchunks) :: positions
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) section,maxNinstance,i,j,k,l,m,n,o,p,q,r,s,output,mySize
|
2009-03-05 22:06:31 +05:30
|
|
|
character(len=64) tag
|
|
|
|
character(len=1024) line
|
|
|
|
real(pReal) x,y
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
write(6,*)
|
|
|
|
write(6,'(a20,a20,a12)') '<<<+- constitutive_',constitutive_dislobased_label,' init -+>>>'
|
|
|
|
write(6,*)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
maxNinstance = count(phase_constitution == constitutive_dislobased_label)
|
|
|
|
if (maxNinstance == 0) return
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_sizeDotState(maxNinstance)) ; constitutive_dislobased_sizeDotState = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_sizeState(maxNinstance)) ; constitutive_dislobased_sizeState = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_sizePostResults(maxNinstance)) ; constitutive_dislobased_sizePostResults = 0_pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
allocate(constitutive_dislobased_sizePostResult(maxval(phase_Noutput), &
|
2009-07-24 17:32:20 +05:30
|
|
|
maxNinstance)) ; constitutive_dislobased_sizePostResult = 0_pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
allocate(constitutive_dislobased_output(maxval(phase_Noutput), &
|
2009-07-24 17:32:20 +05:30
|
|
|
maxNinstance)) ; constitutive_dislobased_output = ''
|
|
|
|
|
|
|
|
allocate(constitutive_dislobased_structureName(maxNinstance)) ; constitutive_dislobased_structureName = ''
|
|
|
|
allocate(constitutive_dislobased_structure(maxNinstance)) ; constitutive_dislobased_structure = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_Nslip(lattice_maxNslipFamily,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_Nslip = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_Ntwin(lattice_maxNtwinFamily,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_Ntwin = 0_pInt
|
|
|
|
|
2009-07-28 15:38:13 +05:30
|
|
|
allocate(constitutive_dislobased_slipFamily(lattice_maxNslip,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_slipFamily = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_twinFamily(lattice_maxNtwin,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_twinFamily = 0_pInt
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_totalNslip(maxNinstance)) ; constitutive_dislobased_totalNslip = 0_pInt
|
|
|
|
allocate(constitutive_dislobased_totalNtwin(maxNinstance)) ; constitutive_dislobased_totalNtwin = 0_pInt
|
|
|
|
|
|
|
|
allocate(constitutive_dislobased_CoverA(maxNinstance)) ; constitutive_dislobased_CoverA = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_C11(maxNinstance)) ; constitutive_dislobased_C11 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_C12(maxNinstance)) ; constitutive_dislobased_C12 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_C13(maxNinstance)) ; constitutive_dislobased_C13 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_C33(maxNinstance)) ; constitutive_dislobased_C33 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_C44(maxNinstance)) ; constitutive_dislobased_C44 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Gmod(maxNinstance)) ; constitutive_dislobased_Gmod = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cslip_66(6,6,maxNinstance)) ; constitutive_dislobased_Cslip_66 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cslip_3333(3,3,3,3,maxNinstance)) ; constitutive_dislobased_Cslip_3333 = 0.0_pReal
|
|
|
|
|
2009-07-28 15:38:13 +05:30
|
|
|
allocate(constitutive_dislobased_rho0(lattice_maxNslipFamily, &
|
|
|
|
maxNinstance)) ; constitutive_dislobased_rho0 = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Burgers(lattice_maxNslipFamily, &
|
|
|
|
maxNinstance)) ; constitutive_dislobased_Burgers = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Qedge(lattice_maxNslipFamily, &
|
|
|
|
maxNinstance)) ; constitutive_dislobased_Qedge = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_grainsize(maxNinstance)) ; constitutive_dislobased_grainsize = 0.0_pReal
|
2009-07-28 15:38:13 +05:30
|
|
|
allocate(constitutive_dislobased_stacksize(lattice_maxNtwinFamily, &
|
|
|
|
maxNinstance)) ; constitutive_dislobased_stacksize = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_fmax(maxNinstance)) ; constitutive_dislobased_fmax = 0.0_pReal
|
2009-07-28 15:38:13 +05:30
|
|
|
allocate(constitutive_dislobased_Ndot0(lattice_maxNtwinFamily, &
|
|
|
|
maxNinstance)) ; constitutive_dislobased_Ndot0 = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_Cmfpslip(maxNinstance)) ; constitutive_dislobased_Cmfpslip = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cmfptwin(maxNinstance)) ; constitutive_dislobased_Cmfptwin = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cthresholdslip(maxNinstance)) ; constitutive_dislobased_Cthresholdslip = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cthresholdtwin(maxNinstance)) ; constitutive_dislobased_Cthresholdtwin = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Cactivolume(maxNinstance)) ; constitutive_dislobased_Cactivolume = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_Carecovery(maxNinstance)) ; constitutive_dislobased_Carecovery = 0.0_pReal
|
2009-07-28 15:38:13 +05:30
|
|
|
allocate(constitutive_dislobased_Cstorage(maxNinstance)) ; constitutive_dislobased_Cstorage = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
allocate(constitutive_dislobased_interaction_slipslip(lattice_maxNinteraction,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_interaction_slipslip = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_interaction_sliptwin(lattice_maxNinteraction,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_interaction_sliptwin = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_interaction_twinslip(lattice_maxNinteraction,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_interaction_twinslip = 0.0_pReal
|
|
|
|
allocate(constitutive_dislobased_interaction_twintwin(lattice_maxNinteraction,&
|
|
|
|
maxNinstance)) ; constitutive_dislobased_interaction_twintwin = 0.0_pReal
|
2009-03-05 22:06:31 +05:30
|
|
|
|
|
|
|
rewind(file)
|
|
|
|
line = ''
|
|
|
|
section = 0
|
|
|
|
|
|
|
|
do while (IO_lc(IO_getTag(line,'<','>')) /= 'phase') ! wind forward to <phase>
|
|
|
|
read(file,'(a1024)',END=100) line
|
|
|
|
enddo
|
|
|
|
|
|
|
|
do ! read thru sections of phase part
|
|
|
|
read(file,'(a1024)',END=100) line
|
|
|
|
if (IO_isBlank(line)) cycle ! skip empty lines
|
|
|
|
if (IO_getTag(line,'<','>') /= '') exit ! stop at next part
|
|
|
|
if (IO_getTag(line,'[',']') /= '') then ! next section
|
|
|
|
section = section + 1
|
|
|
|
output = 0 ! reset output counter
|
|
|
|
endif
|
|
|
|
if (section > 0 .and. phase_constitution(section) == constitutive_dislobased_label) then ! one of my sections
|
|
|
|
i = phase_constitutionInstance(section) ! which instance of my constitution is present phase
|
|
|
|
positions = IO_stringPos(line,maxNchunks)
|
|
|
|
tag = IO_lc(IO_stringValue(line,positions,1)) ! extract key
|
|
|
|
select case(tag)
|
|
|
|
case ('(output)')
|
|
|
|
output = output + 1
|
|
|
|
constitutive_dislobased_output(output,i) = IO_lc(IO_stringValue(line,positions,2))
|
|
|
|
case ('lattice_structure')
|
2009-03-20 20:04:24 +05:30
|
|
|
constitutive_dislobased_structureName(i) = IO_lc(IO_stringValue(line,positions,2))
|
|
|
|
case ('covera_ratio')
|
|
|
|
constitutive_dislobased_CoverA(i) = IO_floatValue(line,positions,2)
|
2009-03-05 22:06:31 +05:30
|
|
|
case ('c11')
|
|
|
|
constitutive_dislobased_C11(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('c12')
|
|
|
|
constitutive_dislobased_C12(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('c13')
|
|
|
|
constitutive_dislobased_C13(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('c33')
|
|
|
|
constitutive_dislobased_C33(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('c44')
|
|
|
|
constitutive_dislobased_C44(i) = IO_floatValue(line,positions,2)
|
2009-07-24 17:32:20 +05:30
|
|
|
case ('nslip')
|
|
|
|
forall (j = 1:lattice_maxNslipFamily) constitutive_dislobased_Nslip(j,i) = IO_intValue(line,positions,1+j)
|
|
|
|
case ('ntwin')
|
|
|
|
forall (j = 1:lattice_maxNtwinFamily) constitutive_dislobased_Ntwin(j,i) = IO_intValue(line,positions,1+j)
|
2009-03-05 22:06:31 +05:30
|
|
|
case ('rho0')
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (j = 1:lattice_maxNslipFamily) constitutive_dislobased_rho0(j,i) = IO_floatValue(line,positions,1+j)
|
2009-03-05 22:06:31 +05:30
|
|
|
case ('burgers')
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (j = 1:lattice_maxNslipFamily) constitutive_dislobased_Burgers(j,i) = IO_floatValue(line,positions,1+j)
|
2009-03-10 04:11:53 +05:30
|
|
|
case ('qedge')
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (j = 1:lattice_maxNslipFamily) constitutive_dislobased_Qedge(j,i) = IO_floatValue(line,positions,1+j)
|
2009-07-24 17:32:20 +05:30
|
|
|
case ('grainsize')
|
|
|
|
constitutive_dislobased_grainsize(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('stacksize')
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (j = 1:lattice_maxNtwinFamily) constitutive_dislobased_stacksize(j,i) = IO_floatValue(line,positions,1+j)
|
2009-07-24 17:32:20 +05:30
|
|
|
case ('fmax')
|
|
|
|
constitutive_dislobased_fmax(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('ndot0')
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (j = 1:lattice_maxNtwinFamily) constitutive_dislobased_Ndot0(j,i) = IO_floatValue(line,positions,1+j)
|
2009-07-24 17:32:20 +05:30
|
|
|
case ('cmfpslip')
|
|
|
|
constitutive_dislobased_Cmfpslip(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('cmfptwin')
|
|
|
|
constitutive_dislobased_Cmfptwin(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('cthresholdslip')
|
|
|
|
constitutive_dislobased_Cthresholdslip(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('cthresholdtwin')
|
|
|
|
constitutive_dislobased_Cthresholdtwin(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('cactivolume')
|
|
|
|
constitutive_dislobased_Cactivolume(i) = IO_floatValue(line,positions,2)
|
|
|
|
case ('carecovery')
|
|
|
|
constitutive_dislobased_Carecovery(i) = IO_floatValue(line,positions,2)
|
2009-07-28 15:38:13 +05:30
|
|
|
case ('cstorage')
|
|
|
|
constitutive_dislobased_Cstorage(i) = IO_floatValue(line,positions,2)
|
2009-07-24 17:32:20 +05:30
|
|
|
case ('interaction_slipslip')
|
|
|
|
forall (j = 1:lattice_maxNinteraction) &
|
|
|
|
constitutive_dislobased_interaction_slipslip(j,i) = IO_floatValue(line,positions,1+j)
|
|
|
|
case ('interaction_sliptwin')
|
|
|
|
forall (j = 1:lattice_maxNinteraction) &
|
|
|
|
constitutive_dislobased_interaction_sliptwin(j,i) = IO_floatValue(line,positions,1+j)
|
|
|
|
case ('interaction_twinslip')
|
|
|
|
forall (j = 1:lattice_maxNinteraction) &
|
|
|
|
constitutive_dislobased_interaction_twinslip(j,i) = IO_floatValue(line,positions,1+j)
|
|
|
|
case ('interaction_twintwin')
|
|
|
|
forall (j = 1:lattice_maxNinteraction) &
|
|
|
|
constitutive_dislobased_interaction_twintwin(j,i) = IO_floatValue(line,positions,1+j)
|
2009-03-05 22:06:31 +05:30
|
|
|
end select
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
|
|
|
|
2009-03-20 20:04:24 +05:30
|
|
|
100 do i = 1,maxNinstance
|
|
|
|
constitutive_dislobased_structure(i) = lattice_initializeStructure(constitutive_dislobased_structureName(i), &
|
|
|
|
constitutive_dislobased_CoverA(i))
|
2009-07-24 17:32:20 +05:30
|
|
|
constitutive_dislobased_Nslip(:,i) = min(lattice_NslipSystem(:,constitutive_dislobased_structure(i)),&
|
|
|
|
constitutive_dislobased_Nslip(:,i))
|
|
|
|
constitutive_dislobased_Ntwin(:,i) = min(lattice_NtwinSystem(:,constitutive_dislobased_structure(i)),&
|
|
|
|
constitutive_dislobased_Ntwin(:,i))
|
|
|
|
constitutive_dislobased_totalNslip(i) = sum(constitutive_dislobased_Nslip(:,i))
|
|
|
|
constitutive_dislobased_totalNtwin(i) = sum(constitutive_dislobased_Ntwin(:,i))
|
|
|
|
|
|
|
|
! sanity checks (still under construction)
|
|
|
|
if (constitutive_dislobased_structure(i) < 1 .or. & ! sanity checks
|
|
|
|
constitutive_dislobased_structure(i) > 3) call IO_error(205)
|
2009-07-28 15:38:13 +05:30
|
|
|
if (any(constitutive_dislobased_rho0(:,i) < 0.0_pReal)) call IO_error(220)
|
|
|
|
if (any(constitutive_dislobased_Burgers(:,i) <= 0.0_pReal .and. &
|
|
|
|
constitutive_dislobased_Nslip(:,i) > 0)) call IO_error(221)
|
|
|
|
if (any(constitutive_dislobased_Qedge(:,i) <= 0.0_pReal .and. &
|
|
|
|
constitutive_dislobased_Nslip(:,i) > 0)) call IO_error(222)
|
2009-03-05 22:06:31 +05:30
|
|
|
enddo
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_parall_interaction(maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxNinstance))
|
|
|
|
allocate(constitutive_dislobased_forest_interaction(maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxNinstance))
|
|
|
|
allocate(constitutive_dislobased_hardeningMatrix_sliptwin(maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxval(constitutive_dislobased_totalNtwin),&
|
|
|
|
maxNinstance))
|
|
|
|
allocate(constitutive_dislobased_hardeningMatrix_twinslip(maxval(constitutive_dislobased_totalNtwin),&
|
|
|
|
maxval(constitutive_dislobased_totalNslip),&
|
|
|
|
maxNinstance))
|
|
|
|
allocate(constitutive_dislobased_hardeningMatrix_twintwin(maxval(constitutive_dislobased_totalNtwin),&
|
|
|
|
maxval(constitutive_dislobased_totalNtwin),&
|
|
|
|
maxNinstance))
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_parall_interaction = 0.0_pReal
|
|
|
|
constitutive_dislobased_forest_interaction = 0.0_pReal
|
|
|
|
constitutive_dislobased_hardeningMatrix_sliptwin = 0.0_pReal
|
|
|
|
constitutive_dislobased_hardeningMatrix_twinslip = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
constitutive_dislobased_hardeningMatrix_twintwin = 0.0_pReal
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
allocate(constitutive_dislobased_Ctwin_66(6,6,maxval(constitutive_dislobased_totalNtwin),maxNinstance))
|
|
|
|
constitutive_dislobased_Ctwin_66 = 0.0_pReal
|
|
|
|
|
|
|
|
allocate(constitutive_dislobased_Ctwin_3333(3,3,3,3,maxval(constitutive_dislobased_totalNtwin),maxNinstance))
|
|
|
|
constitutive_dislobased_Ctwin_3333 = 0.0_pReal
|
|
|
|
|
|
|
|
do i = 1,maxNinstance
|
2009-03-05 22:06:31 +05:30
|
|
|
do j = 1,maxval(phase_Noutput)
|
2009-07-24 17:32:20 +05:30
|
|
|
select case(constitutive_dislobased_output(j,i))
|
2009-07-28 15:38:13 +05:30
|
|
|
case('dislocationdensity', &
|
|
|
|
'shearrate_slip', &
|
|
|
|
'mfp_slip', &
|
|
|
|
'resolvedstress_slip', &
|
|
|
|
'resistance_slip' &
|
|
|
|
)
|
2009-07-24 17:32:20 +05:30
|
|
|
mySize = constitutive_dislobased_totalNslip(i)
|
2009-07-28 15:38:13 +05:30
|
|
|
case('volumefraction', &
|
|
|
|
'shearrate_twin', &
|
|
|
|
'mfp_twin', &
|
|
|
|
'resolvedstress_twin', &
|
|
|
|
'resistance_twin' &
|
|
|
|
)
|
2009-07-24 17:32:20 +05:30
|
|
|
mySize = constitutive_dislobased_totalNtwin(i)
|
2009-07-22 21:37:19 +05:30
|
|
|
case default
|
|
|
|
mySize = 0_pInt
|
2009-07-24 17:32:20 +05:30
|
|
|
end select
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2009-07-28 15:38:13 +05:30
|
|
|
if (mySize > 0_pInt) then ! any meaningful output found
|
2009-07-22 21:37:19 +05:30
|
|
|
constitutive_dislobased_sizePostResult(j,i) = mySize
|
2009-07-24 17:32:20 +05:30
|
|
|
constitutive_dislobased_sizePostResults(i) = constitutive_dislobased_sizePostResults(i) + mySize
|
2009-07-22 21:37:19 +05:30
|
|
|
endif
|
2009-03-05 22:06:31 +05:30
|
|
|
enddo
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
constitutive_dislobased_sizeDotState(i) = constitutive_dislobased_totalNslip(i) + constitutive_dislobased_totalNtwin(i)
|
|
|
|
constitutive_dislobased_sizeState(i) = 10*constitutive_dislobased_totalNslip(i) + 5*constitutive_dislobased_totalNtwin(i)
|
2009-03-05 22:06:31 +05:30
|
|
|
|
|
|
|
constitutive_dislobased_Gmod(i) = constitutive_dislobased_C44(i)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
select case (constitutive_dislobased_structure(i))
|
|
|
|
case(1:2) ! cubic(s)
|
|
|
|
forall(k=1:3)
|
|
|
|
forall(j=1:3) &
|
|
|
|
constitutive_dislobased_Cslip_66(k,j,i) = constitutive_dislobased_C12(i)
|
|
|
|
constitutive_dislobased_Cslip_66(k,k,i) = constitutive_dislobased_C11(i)
|
|
|
|
constitutive_dislobased_Cslip_66(k+3,k+3,i) = constitutive_dislobased_C44(i)
|
|
|
|
end forall
|
2009-03-20 20:04:24 +05:30
|
|
|
case(3:) ! all hex
|
2009-03-05 22:06:31 +05:30
|
|
|
constitutive_dislobased_Cslip_66(1,1,i) = constitutive_dislobased_C11(i)
|
|
|
|
constitutive_dislobased_Cslip_66(2,2,i) = constitutive_dislobased_C11(i)
|
|
|
|
constitutive_dislobased_Cslip_66(3,3,i) = constitutive_dislobased_C33(i)
|
|
|
|
constitutive_dislobased_Cslip_66(1,2,i) = constitutive_dislobased_C12(i)
|
|
|
|
constitutive_dislobased_Cslip_66(2,1,i) = constitutive_dislobased_C12(i)
|
|
|
|
constitutive_dislobased_Cslip_66(1,3,i) = constitutive_dislobased_C13(i)
|
|
|
|
constitutive_dislobased_Cslip_66(3,1,i) = constitutive_dislobased_C13(i)
|
|
|
|
constitutive_dislobased_Cslip_66(2,3,i) = constitutive_dislobased_C13(i)
|
|
|
|
constitutive_dislobased_Cslip_66(3,2,i) = constitutive_dislobased_C13(i)
|
|
|
|
constitutive_dislobased_Cslip_66(4,4,i) = constitutive_dislobased_C44(i)
|
|
|
|
constitutive_dislobased_Cslip_66(5,5,i) = constitutive_dislobased_C44(i)
|
|
|
|
constitutive_dislobased_Cslip_66(6,6,i) = 0.5_pReal*(constitutive_dislobased_C11(i)- &
|
|
|
|
constitutive_dislobased_C12(i))
|
|
|
|
end select
|
2009-07-24 17:32:20 +05:30
|
|
|
constitutive_dislobased_Cslip_66(:,:,i) = math_Mandel3333to66(math_Voigt66to3333(constitutive_dislobased_Cslip_66(:,:,i)))
|
|
|
|
constitutive_dislobased_Cslip_3333(:,:,:,:,i) = math_Voigt66to3333(constitutive_dislobased_Cslip_66(:,:,i))
|
2009-07-28 15:38:13 +05:30
|
|
|
|
|
|
|
!* Inverse lookup of my slip system family
|
|
|
|
l = 0_pInt
|
|
|
|
do j = 1,lattice_maxNslipFamily
|
|
|
|
do k = 1,constitutive_dislobased_Nslip(j,i)
|
|
|
|
l = l + 1
|
|
|
|
constitutive_dislobased_slipFamily(l,i) = j
|
|
|
|
enddo; enddo
|
|
|
|
|
|
|
|
!* Inverse lookup of my twin system family
|
|
|
|
l = 0_pInt
|
|
|
|
do j = 1,lattice_maxNtwinFamily
|
|
|
|
do k = 1,constitutive_dislobased_Ntwin(j,i)
|
|
|
|
l = l + 1
|
|
|
|
constitutive_dislobased_twinFamily(l,i) = j
|
|
|
|
enddo; enddo
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Construction of the twin elasticity matrices
|
|
|
|
do j=1,lattice_maxNtwinFamily
|
|
|
|
do k=1,constitutive_dislobased_Ntwin(j,i)
|
|
|
|
do l=1,3 ; do m=1,3 ; do n=1,3 ; do o=1,3 ; do p=1,3 ; do q=1,3 ; do r=1,3 ; do s=1,3
|
|
|
|
constitutive_dislobased_Ctwin_3333(l,m,n,o,sum(constitutive_dislobased_Nslip(1:j-1,i))+k,i) = &
|
|
|
|
constitutive_dislobased_Ctwin_3333(l,m,n,o,sum(constitutive_dislobased_Nslip(1:j-1,i))+k,i) + &
|
|
|
|
constitutive_dislobased_Cslip_3333(p,q,r,s,i)*&
|
|
|
|
lattice_Qtwin(l,p,sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k,constitutive_dislobased_structure(i))* &
|
|
|
|
lattice_Qtwin(m,q,sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k,constitutive_dislobased_structure(i))* &
|
|
|
|
lattice_Qtwin(n,r,sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k,constitutive_dislobased_structure(i))* &
|
|
|
|
lattice_Qtwin(o,s,sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k,constitutive_dislobased_structure(i))
|
|
|
|
enddo ; enddo ; enddo ; enddo ; enddo ; enddo ; enddo ; enddo
|
|
|
|
constitutive_dislobased_Ctwin_66(:,:,k,i) = math_Mandel3333to66(constitutive_dislobased_Ctwin_3333(:,:,:,:,k,i))
|
|
|
|
enddo
|
|
|
|
enddo
|
2009-03-05 21:45:24 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
!* Construction of the hardening matrices
|
|
|
|
!* Iteration over the systems
|
2009-07-24 17:32:20 +05:30
|
|
|
do j=1,lattice_maxNslipFamily
|
|
|
|
do k=1,constitutive_dislobased_Nslip(j,i)
|
|
|
|
do l=1,lattice_maxNslipFamily
|
|
|
|
do m=1,constitutive_dislobased_Nslip(l,i)
|
|
|
|
!* Projection of the dislocation *
|
|
|
|
x = math_mul3x3(lattice_sn(:,sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
constitutive_dislobased_structure(i)), &
|
|
|
|
lattice_st(:,sum(lattice_NslipSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)))
|
|
|
|
y = 1.0_pReal-x**(2.0_pReal)
|
|
|
|
!* Interaction matrix *
|
|
|
|
constitutive_dislobased_forest_interaction(sum(constitutive_dislobased_Nslip(1:j-1,i))+k, &
|
|
|
|
sum(constitutive_dislobased_Nslip(1:l-1,i))+m,i) = &
|
|
|
|
abs(x)*constitutive_dislobased_interaction_slipslip(lattice_interactionSlipSlip( &
|
|
|
|
sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
sum(lattice_NslipSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)),i)
|
|
|
|
if (y>0.0_pReal) &
|
|
|
|
constitutive_dislobased_parall_interaction(sum(constitutive_dislobased_Nslip(1:j-1,i))+k, &
|
|
|
|
sum(constitutive_dislobased_Nslip(1:l-1,i))+m,i) = &
|
|
|
|
sqrt(y)*constitutive_dislobased_interaction_slipslip(lattice_interactionSlipSlip( &
|
|
|
|
sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
sum(lattice_NslipSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)),i)
|
|
|
|
enddo; enddo; enddo; enddo
|
|
|
|
|
|
|
|
do j=1,lattice_maxNslipFamily
|
|
|
|
do k=1,constitutive_dislobased_Nslip(j,i)
|
|
|
|
do l=1,lattice_maxNtwinFamily
|
|
|
|
do m=1,constitutive_dislobased_Ntwin(l,i)
|
|
|
|
constitutive_dislobased_hardeningMatrix_sliptwin(sum(constitutive_dislobased_Nslip(1:j-1,i))+k,&
|
|
|
|
sum(constitutive_dislobased_Ntwin(1:l-1,i))+m,i) = &
|
|
|
|
constitutive_dislobased_interaction_sliptwin(lattice_interactionSlipTwin( &
|
|
|
|
sum(lattice_NslipSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
sum(lattice_NtwinSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)),i)
|
|
|
|
enddo; enddo; enddo; enddo
|
|
|
|
|
|
|
|
do j=1,lattice_maxNtwinFamily
|
|
|
|
do k=1,constitutive_dislobased_Ntwin(j,i)
|
|
|
|
do l=1,lattice_maxNslipFamily
|
|
|
|
do m=1,constitutive_dislobased_Nslip(l,i)
|
|
|
|
constitutive_dislobased_hardeningMatrix_twinslip(sum(constitutive_dislobased_Ntwin(1:j-1,i))+k,&
|
|
|
|
sum(constitutive_dislobased_Nslip(1:l-1,i))+m,i) = &
|
|
|
|
constitutive_dislobased_interaction_twinslip(lattice_interactionTwinSlip( &
|
|
|
|
sum(lattice_NtwinSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
sum(lattice_NslipSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)),i)
|
|
|
|
enddo; enddo; enddo; enddo
|
|
|
|
|
|
|
|
do j=1,lattice_maxNtwinFamily
|
|
|
|
do k=1,constitutive_dislobased_Ntwin(j,i)
|
|
|
|
do l=1,lattice_maxNtwinFamily
|
|
|
|
do m=1,constitutive_dislobased_Ntwin(l,i)
|
|
|
|
constitutive_dislobased_hardeningMatrix_twintwin(sum(constitutive_dislobased_Ntwin(1:j-1,i))+k,&
|
|
|
|
sum(constitutive_dislobased_Ntwin(1:l-1,i))+m,i) = &
|
|
|
|
constitutive_dislobased_interaction_twintwin(lattice_interactionTwinTwin( &
|
|
|
|
sum(lattice_NtwinSystem(1:j-1,constitutive_dislobased_structure(i)))+k, &
|
|
|
|
sum(lattice_NtwinSystem(1:l-1,constitutive_dislobased_structure(i)))+m, &
|
|
|
|
constitutive_dislobased_structure(i)), i )
|
|
|
|
enddo; enddo; enddo; enddo
|
2009-03-05 22:06:31 +05:30
|
|
|
|
|
|
|
enddo
|
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine
|
2009-03-05 21:45:24 +05:30
|
|
|
|
2009-03-20 20:04:24 +05:30
|
|
|
|
2009-03-26 14:13:31 +05:30
|
|
|
function constitutive_dislobased_stateInit(myInstance)
|
2009-03-05 22:06:31 +05:30
|
|
|
!*********************************************************************
|
|
|
|
!* initial microstructural state *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt
|
|
|
|
use lattice, only: lattice_maxNslipFamily,lattice_maxNtwinFamily
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Definition of variables
|
2009-03-26 14:13:31 +05:30
|
|
|
integer(pInt), intent(in) :: myInstance
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) i
|
|
|
|
real(pReal), dimension(constitutive_dislobased_sizeState(myInstance)) :: constitutive_dislobased_stateInit
|
|
|
|
|
|
|
|
constitutive_dislobased_stateInit = 0.0_pReal
|
|
|
|
|
|
|
|
do i = 1,lattice_maxNslipFamily
|
|
|
|
constitutive_dislobased_stateInit(1+sum(constitutive_dislobased_Nslip(1:i-1,myInstance)) : &
|
|
|
|
sum(constitutive_dislobased_Nslip(1:i ,myInstance))) = &
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_rho0(i,myInstance)
|
2009-07-24 17:32:20 +05:30
|
|
|
enddo
|
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
return
|
|
|
|
end function
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
function constitutive_dislobased_homogenizedC(state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
!* calculates homogenized elacticity matrix *
|
|
|
|
!* - state : microstructure quantities *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
|
|
|
use material, only: homogenization_maxNgrains,material_phase,phase_constitutionInstance
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Definition of variables
|
2009-03-05 22:06:31 +05:30
|
|
|
integer(pInt), intent(in) :: ipc,ip,el
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) matID,ns,nt,i
|
|
|
|
real(pReal) sumf
|
2009-03-05 22:06:31 +05:30
|
|
|
real(pReal), dimension(6,6) :: constitutive_dislobased_homogenizedC
|
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Shortened notation
|
2009-03-05 22:06:31 +05:30
|
|
|
matID = phase_constitutionInstance(material_phase(ipc,ip,el))
|
2009-07-24 17:32:20 +05:30
|
|
|
ns = constitutive_dislobased_totalNslip(matID)
|
|
|
|
nt = constitutive_dislobased_totalNtwin(matID)
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Total twin volume fraction
|
2009-07-28 15:38:13 +05:30
|
|
|
sumf = sum(state(ipc,ip,el)%p((ns+1):(ns+nt))) ! safe for nt == 0
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* Homogenized elasticity matrix
|
|
|
|
constitutive_dislobased_homogenizedC = (1.0_pReal-sumf)*constitutive_dislobased_Cslip_66(:,:,matID)
|
|
|
|
do i=1,nt
|
|
|
|
constitutive_dislobased_homogenizedC = constitutive_dislobased_homogenizedC + &
|
|
|
|
state(ipc,ip,el)%p(ns+i)*constitutive_dislobased_Ctwin_66(:,:,i,matID)
|
|
|
|
enddo
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
return
|
2009-03-05 22:06:31 +05:30
|
|
|
end function
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_dislobased_microstructure(Temperature,state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
!* calculates quantities characterizing the microstructure *
|
|
|
|
!* - Temperature : temperature *
|
|
|
|
!* - state : microstructure quantities *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - ipc : component-ID of current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use math, only: pi
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
|
|
|
use material, only: homogenization_maxNgrains,material_phase,phase_constitutionInstance
|
|
|
|
use lattice, only: lattice_interactionSlipTwin,lattice_interactionTwinTwin
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt), intent(in) :: ipc,ip,el
|
|
|
|
integer(pInt) matID,ns,nt,i
|
|
|
|
real(pReal) Temperature,sumf
|
2009-07-28 15:38:13 +05:30
|
|
|
real(pReal), dimension(constitutive_dislobased_totalNtwin(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: fOverStacksize
|
2009-03-05 22:06:31 +05:30
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Shortened notation
|
2009-03-05 22:06:31 +05:30
|
|
|
matID = phase_constitutionInstance(material_phase(ipc,ip,el))
|
2009-07-24 17:32:20 +05:30
|
|
|
ns = constitutive_dislobased_totalNslip(matID)
|
|
|
|
nt = constitutive_dislobased_totalNtwin(matID)
|
|
|
|
!* State: 1 : ns rho_ssd
|
|
|
|
!* State: ns+1 : ns+nt f
|
|
|
|
!* State: ns+nt+1 : 2*ns+nt rho_forest
|
|
|
|
!* State: 2*ns+nt+1 : 3*ns+nt rho_parallel
|
|
|
|
!* State: 3*ns+nt+1 : 4*ns+nt 1/lambda_slip
|
|
|
|
!* State: 4*ns+nt+1 : 5*ns+nt 1/lambda_sliptwin
|
|
|
|
!* State: 5*ns+nt+1 : 5*ns+2*nt 1/lambda_twin
|
|
|
|
!* State: 5*ns+2*nt+1 : 6*ns+2*nt mfp_slip
|
|
|
|
!* State: 6*ns+2*nt+1 : 6*ns+3*nt mfp_twin
|
|
|
|
!* State: 6*ns+3*nt+1 : 7*ns+3*nt threshold_stress_slip
|
|
|
|
!* State: 7*ns+3*nt+1 : 7*ns+4*nt threshold_stress_twin
|
|
|
|
!* State: 7*ns+4*nt+1 : 8*ns+4*nt activation volume
|
|
|
|
!* State: 8*ns+4*nt+1 : 8*ns+5*nt twin volume
|
|
|
|
!* State: 8*ns+5*nt+1 : 9*ns+5*nt rho_mobile
|
|
|
|
!* State: 9*ns+5*nt+1 : 10*ns+5*nt initial shear rate
|
|
|
|
|
|
|
|
!* Total twin volume fraction
|
2009-07-28 15:38:13 +05:30
|
|
|
sumf = sum(state(ipc,ip,el)%p((ns+1):(ns+nt))) ! safe for nt == 0
|
|
|
|
|
|
|
|
!* rescaled twin volume fraction for topology
|
|
|
|
forall (i = 1:nt) &
|
|
|
|
fOverStacksize(i) = state(ipc,ip,el)%p(ns+i)/constitutive_dislobased_stacksize(constitutive_dislobased_twinFamily(i,matID),matID)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* Forest and parallel dislocation densities
|
2009-07-14 16:56:52 +05:30
|
|
|
!$OMP CRITICAL (evilmatmul)
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p((ns+nt+1):(2*ns+nt)) = &
|
|
|
|
matmul(constitutive_dislobased_forest_interaction(1:ns,1:ns,matID),state(ipc,ip,el)%p(1:ns))
|
|
|
|
state(ipc,ip,el)%p((2*ns+nt+1):(3*ns+nt)) = &
|
|
|
|
matmul(constitutive_dislobased_parall_interaction(1:ns,1:ns,matID),state(ipc,ip,el)%p(1:ns))
|
2009-07-14 16:56:52 +05:30
|
|
|
!$OMP END CRITICAL (evilmatmul)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* 1/mean free distance between 2 forest dislocations seen by a moving dislocation
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:ns) state(ipc,ip,el)%p(3*ns+nt+i) = sqrt(state(ipc,ip,el)%p(ns+nt+i))
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* 1/mean free distance between 2 twin stacks from different systems seen by a moving dislocation
|
|
|
|
!$OMP CRITICAL (evilmatmul)
|
|
|
|
state(ipc,ip,el)%p((4*ns+nt+1):(5*ns+nt)) = 0.0_pReal
|
|
|
|
if (nt > 0_pInt) state(ipc,ip,el)%p((4*ns+nt+1):(5*ns+nt)) = &
|
2009-07-28 15:38:13 +05:30
|
|
|
matmul(constitutive_dislobased_hardeningMatrix_sliptwin(1:ns,1:nt,matID),fOverStacksize(1:nt))/&
|
|
|
|
(2.0_pReal*(1.0_pReal-sumf))
|
2009-07-24 17:32:20 +05:30
|
|
|
!$OMP END CRITICAL (evilmatmul)
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* 1/mean free distance between 2 twin stacks from different systems seen by a growing twin
|
|
|
|
!$OMP CRITICAL (evilmatmul)
|
|
|
|
if (nt > 0_pInt) state(ipc,ip,el)%p((5*ns+nt+1):(5*ns+2*nt)) = &
|
2009-07-28 15:38:13 +05:30
|
|
|
matmul(constitutive_dislobased_hardeningMatrix_twintwin(1:nt,1:nt,matID),fOverStacksize(1:nt))/&
|
|
|
|
(2.0_pReal*(1.0_pReal-sumf))
|
2009-07-24 17:32:20 +05:30
|
|
|
!$OMP END CRITICAL (evilmatmul)
|
2009-07-01 15:59:35 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* mean free path between 2 obstacles seen by a moving dislocation
|
|
|
|
do i=1,ns
|
|
|
|
if (nt > 0_pInt) then
|
|
|
|
state(ipc,ip,el)%p(5*ns+2*nt+i) = (constitutive_dislobased_Cmfpslip(matID)*constitutive_dislobased_grainsize(matID))/&
|
|
|
|
(1.0_pReal+constitutive_dislobased_grainsize(matID)*&
|
|
|
|
(state(ipc,ip,el)%p(3*ns+nt+i)+state(ipc,ip,el)%p(4*ns+nt+i)))
|
|
|
|
else
|
|
|
|
state(ipc,ip,el)%p(5*ns+i) = (constitutive_dislobased_Cmfpslip(matID)*constitutive_dislobased_grainsize(matID))/&
|
|
|
|
(1.0_pReal+constitutive_dislobased_grainsize(matID)*(state(ipc,ip,el)%p(3*ns+i)))
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
|
|
|
!* mean free path between 2 obstacles seen by a growing twin
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:nt) &
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p(6*ns+2*nt+i) = (constitutive_dislobased_Cmfptwin(matID)*constitutive_dislobased_grainsize(matID))/&
|
|
|
|
(1.0_pReal+constitutive_dislobased_grainsize(matID)*state(ipc,ip,el)%p(5*ns+nt+i))
|
2009-03-20 20:04:24 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* threshold stress for dislocation motion
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:ns) &
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p(6*ns+3*nt+i) = constitutive_dislobased_Cthresholdslip(matID)*&
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_Burgers(constitutive_dislobased_slipFamily(i,matID),matID)*&
|
|
|
|
constitutive_dislobased_Gmod(matID)*sqrt(state(ipc,ip,el)%p(2*ns+nt+i))
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* threshold stress for growing twin
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:nt) &
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p(7*ns+3*nt+i) = constitutive_dislobased_Cthresholdtwin(matID)*(sqrt(3.0_pReal)/3.0_pReal)*(&
|
2009-07-28 15:38:13 +05:30
|
|
|
(0.0002_pReal*Temperature-0.0396_pReal)/constitutive_dislobased_Burgers(constitutive_dislobased_slipFamily(i,matID),matID)+&
|
|
|
|
(constitutive_dislobased_Burgers(constitutive_dislobased_slipFamily(i,matID),matID)*&
|
|
|
|
constitutive_dislobased_Gmod(matID))/state(ipc,ip,el)%p(5*ns+2*nt+i))
|
2009-07-14 16:56:52 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* activation volume for dislocation glide
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:ns) &
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p(7*ns+4*nt+i) = constitutive_dislobased_Cactivolume(matID)*&
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_Burgers(constitutive_dislobased_slipFamily(i,matID),matID)**2*state(ipc,ip,el)%p(5*ns+2*nt+i)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* final twin volume after growth
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:nt) &
|
|
|
|
state(ipc,ip,el)%p(8*ns+4*nt+i) = (pi/6.0_pReal)*&
|
|
|
|
constitutive_dislobased_stacksize(constitutive_dislobased_twinFamily(i,matID),matID)*&
|
|
|
|
state(ipc,ip,el)%p(6*ns+2*nt+i)*state(ipc,ip,el)%p(6*ns+2*nt+i)
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* mobile dislocation densities
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:ns) &
|
2009-07-24 17:32:20 +05:30
|
|
|
state(ipc,ip,el)%p(8*ns+5*nt+i) = (2.0_pReal*kB*Temperature*state(ipc,ip,el)%p(2*ns+nt+i))/&
|
2009-07-28 15:38:13 +05:30
|
|
|
(state(ipc,ip,el)%p(6*ns+3*nt+i)*state(ipc,ip,el)%p(7*ns+4*nt+i))
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* initial shear rate for slip
|
2009-07-28 15:38:13 +05:30
|
|
|
forall (i=1:ns) &
|
|
|
|
state(ipc,ip,el)%p(9*ns+5*nt+i) = state(ipc,ip,el)%p(8*ns+5*nt+i)*&
|
|
|
|
constitutive_dislobased_Burgers(constitutive_dislobased_slipFamily(i,matID),matID)*&
|
|
|
|
attack_frequency*state(ipc,ip,el)%p(5*ns+2*nt+i)*&
|
|
|
|
exp(-constitutive_dislobased_Qedge(constitutive_dislobased_slipFamily(i,matID),matID)/&
|
|
|
|
! --------------------
|
|
|
|
(kB*Temperature))
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
subroutine constitutive_dislobased_LpAndItsTangent(Lp,dLp_dTstar,Tstar_v,Temperature,state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
!* calculates plastic velocity gradient and its tangent *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* INPUT: *
|
2009-07-24 17:32:20 +05:30
|
|
|
!* - Temperature : temperature *
|
|
|
|
!* - state : microstructure quantities *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - ipc : component-ID at current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - Lp : plastic velocity gradient *
|
|
|
|
!* - dLp_dTstar : derivative of Lp (4th-rank tensor) *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use math, only: math_Plain3333to99
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
|
|
|
use material, only: homogenization_maxNgrains,material_phase,phase_constitutionInstance
|
|
|
|
use lattice, only: lattice_Sslip,lattice_Sslip_v,lattice_Stwin,lattice_Stwin_v,lattice_maxNslipFamily,lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem,lattice_NtwinSystem,lattice_shearTwin
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Definition of variables
|
2009-03-05 22:06:31 +05:30
|
|
|
integer(pInt) ipc,ip,el
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) matID,structID,ns,nt,f,i,j,k,l,m,n,index_myFamily
|
|
|
|
real(pReal) Temperature,sumf
|
2009-03-05 22:06:31 +05:30
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state
|
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
|
|
|
real(pReal), dimension(3,3) :: Lp
|
|
|
|
real(pReal), dimension(3,3,3,3) :: dLp_dTstar3333
|
|
|
|
real(pReal), dimension(9,9) :: dLp_dTstar
|
2009-07-24 17:32:20 +05:30
|
|
|
real(pReal), dimension(constitutive_dislobased_totalNslip(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
2009-03-05 22:06:31 +05:30
|
|
|
gdot_slip,dgdot_dtauslip,tau_slip
|
2009-07-24 17:32:20 +05:30
|
|
|
real(pReal), dimension(constitutive_dislobased_totalNtwin(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
|
|
|
gdot_twin,dgdot_dtautwin,tau_twin
|
2009-03-05 22:06:31 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Shortened notation
|
|
|
|
matID = phase_constitutionInstance(material_phase(ipc,ip,el))
|
|
|
|
structID = constitutive_dislobased_structure(matID)
|
|
|
|
ns = constitutive_dislobased_totalNslip(matID)
|
|
|
|
nt = constitutive_dislobased_totalNtwin(matID)
|
|
|
|
|
|
|
|
!* Total twin volume fraction
|
2009-07-28 15:38:13 +05:30
|
|
|
sumf = sum(state(ipc,ip,el)%p((ns+1):(ns+nt))) ! safe for nt == 0
|
2009-07-14 16:56:52 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
Lp = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
dLp_dTstar3333 = 0.0_pReal
|
|
|
|
dLp_dTstar = 0.0_pReal
|
|
|
|
|
|
|
|
!* Dislocation glide part
|
2009-03-20 20:04:24 +05:30
|
|
|
gdot_slip = 0.0_pReal
|
2009-07-24 17:32:20 +05:30
|
|
|
dgdot_dtauslip = 0.0_pReal
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNslipFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Nslip(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j+1_pInt
|
|
|
|
|
|
|
|
!* Calculation of Lp
|
|
|
|
tau_slip(j) = dot_product(Tstar_v,lattice_Sslip_v(:,index_myFamily+i,structID))
|
|
|
|
if ( abs(tau_slip(j)) > state(ipc,ip,el)%p(6*ns+3*nt+j) ) then
|
|
|
|
|
|
|
|
gdot_slip(j) = state(ipc,ip,el)%p(9*ns+5*nt+j)*sign(1.0_pReal,tau_slip(j))*&
|
|
|
|
sinh(((abs(tau_slip(j))-state(ipc,ip,el)%p(6*ns+3*nt+j))*state(ipc,ip,el)%p(7*ns+4*nt+j))/(kB*Temperature))
|
|
|
|
|
|
|
|
dgdot_dtauslip(j) = (state(ipc,ip,el)%p(9*ns+5*nt+j)*state(ipc,ip,el)%p(7*ns+4*nt+j))/(kB*Temperature)*&
|
|
|
|
cosh(((abs(tau_slip(j))-state(ipc,ip,el)%p(6*ns+3*nt+j))*state(ipc,ip,el)%p(7*ns+4*nt+j))/(kB*Temperature))
|
|
|
|
|
|
|
|
endif
|
|
|
|
Lp = Lp + (1.0_pReal - sumf)*gdot_slip(j)*lattice_Sslip(:,:,index_myFamily+i,structID)
|
2009-03-20 20:04:24 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Calculation of the tangent of Lp
|
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
|
|
|
|
dLp_dTstar3333(k,l,m,n) = dLp_dTstar3333(k,l,m,n) + dgdot_dtauslip(j)*lattice_Sslip(k,l,index_myFamily+i,structID) &
|
|
|
|
*lattice_Sslip(m,n,index_myFamily+i,structID)
|
|
|
|
enddo
|
2009-07-14 16:56:52 +05:30
|
|
|
enddo
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Mechanical twinning part
|
|
|
|
gdot_twin = 0.0_pReal
|
|
|
|
dgdot_dtautwin = 0.0_pReal
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNtwinFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Ntwin(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j+1_pInt
|
|
|
|
|
|
|
|
!* Calculation of Lp
|
|
|
|
tau_twin(j) = dot_product(Tstar_v,lattice_Stwin_v(:,index_myFamily+i,structID))
|
|
|
|
if ( tau_twin(j) > 0.0_pReal ) then
|
|
|
|
|
|
|
|
gdot_twin(j) = (constitutive_dislobased_fmax(matID) - sumf)*lattice_shearTwin(index_myFamily+i,structID)*&
|
2009-07-28 15:38:13 +05:30
|
|
|
state(ipc,ip,el)%p(8*ns+4*nt+j)*constitutive_dislobased_Ndot0(f,matID)*&
|
2009-07-24 17:32:20 +05:30
|
|
|
exp(-(state(ipc,ip,el)%p(7*ns+3*nt+j)/tau_twin(j))**10.0_pReal)
|
|
|
|
|
|
|
|
dgdot_dtautwin(j) = (gdot_twin(j)*10.0_pReal*state(ipc,ip,el)%p(7*ns+3*nt+j)**10.0_pReal)/(tau_twin(j)**11.0_pReal)
|
|
|
|
|
|
|
|
endif
|
|
|
|
Lp = Lp + gdot_twin(j)*lattice_Stwin(:,:,index_myFamily+i,structID)
|
|
|
|
|
|
|
|
!* Calculation of the tangent of Lp
|
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
|
|
|
|
dLp_dTstar3333(k,l,m,n) = dLp_dTstar3333(k,l,m,n) + dgdot_dtautwin(j)*lattice_Stwin(k,l,index_myFamily+i,structID) &
|
|
|
|
*lattice_Stwin(m,n,index_myFamily+i,structID)
|
|
|
|
enddo
|
2009-03-05 22:06:31 +05:30
|
|
|
enddo
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
dLp_dTstar = math_Plain3333to99(dLp_dTstar3333)
|
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine
|
|
|
|
|
|
|
|
|
|
|
|
function constitutive_dislobased_dotState(Tstar_v,Temperature,state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* rate of change of microstructure *
|
|
|
|
!* INPUT: *
|
2009-07-24 17:32:20 +05:30
|
|
|
!* - Temperature : temperature *
|
|
|
|
!* - state : microstructure quantities *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - ipc : component-ID at current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - constitutive_dotState : evolution of state variable *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
2009-03-05 22:06:31 +05:30
|
|
|
use material, only: homogenization_maxNgrains,material_phase, phase_constitutionInstance
|
2009-07-24 17:32:20 +05:30
|
|
|
use lattice, only: lattice_Sslip,lattice_Sslip_v,lattice_Stwin,lattice_Stwin_v,lattice_maxNslipFamily,lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem,lattice_NtwinSystem,lattice_shearTwin
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) matID,structID,ns,nt,f,i,j,k,index_myFamily
|
|
|
|
real(pReal) Temperature,sumf
|
2009-03-05 22:06:31 +05:30
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state
|
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
2009-07-24 17:32:20 +05:30
|
|
|
real(pReal), dimension(constitutive_dislobased_totalNslip(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
|
|
|
gdot_slip,tau_slip,storage,arecovery
|
|
|
|
real(pReal), dimension(constitutive_dislobased_totalNtwin(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
|
|
|
gdot_twin,tau_twin
|
|
|
|
real(pReal), dimension(constitutive_dislobased_sizeDotState(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
2009-03-05 22:06:31 +05:30
|
|
|
constitutive_dislobased_dotState
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* Shortened notation
|
|
|
|
matID = phase_constitutionInstance(material_phase(ipc,ip,el))
|
|
|
|
structID = constitutive_dislobased_structure(matID)
|
|
|
|
ns = constitutive_dislobased_totalNslip(matID)
|
|
|
|
nt = constitutive_dislobased_totalNtwin(matID)
|
2009-07-14 16:56:52 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Total twin volume fraction
|
2009-07-28 15:38:13 +05:30
|
|
|
sumf = sum(state(ipc,ip,el)%p((ns+1):(ns+nt))) ! safe for nt == 0
|
2009-03-05 22:06:31 +05:30
|
|
|
|
|
|
|
constitutive_dislobased_dotState = 0.0_pReal
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Dislocation density evolution
|
|
|
|
gdot_slip = 0.0_pReal
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNslipFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Nslip(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j+1_pInt
|
|
|
|
|
|
|
|
!* Calculation of Lp
|
|
|
|
tau_slip(j) = dot_product(Tstar_v,lattice_Sslip_v(:,index_myFamily+i,structID))
|
|
|
|
if ( abs(tau_slip(j)) > state(ipc,ip,el)%p(6*ns+3*nt+j) ) then
|
|
|
|
|
|
|
|
gdot_slip(j) = state(ipc,ip,el)%p(9*ns+5*nt+j)*sign(1.0_pReal,tau_slip(j))* &
|
2009-07-28 15:38:13 +05:30
|
|
|
sinh(((abs(tau_slip(j))-state(ipc,ip,el)%p(6*ns+3*nt+j))*state(ipc,ip,el)%p(7*ns+4*nt+j))/(kB*Temperature))
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
storage(j) = (constitutive_dislobased_Cstorage(matID)*abs(gdot_slip(j)))/&
|
2009-07-28 15:38:13 +05:30
|
|
|
(constitutive_dislobased_Burgers(f,matID)*state(ipc,ip,el)%p(5*ns+2*nt+j))
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
arecovery(j) = constitutive_dislobased_Carecovery(matID)*state(ipc,ip,el)%p(j)*abs(gdot_slip(j))
|
|
|
|
|
|
|
|
constitutive_dislobased_dotState(j) = storage(j) - arecovery(j)
|
|
|
|
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
!* Twin volume fraction evolution
|
|
|
|
gdot_twin = 0.0_pReal
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNtwinFamily ! loop over all twin families
|
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Ntwin(f,matID) ! process each (active) twin system in family
|
|
|
|
j = j+1_pInt
|
|
|
|
|
|
|
|
!* Calculation of Lp
|
|
|
|
tau_twin(j) = dot_product(Tstar_v,lattice_Stwin_v(:,index_myFamily+i,structID))
|
|
|
|
if ( tau_twin(j) > 0.0_pReal ) &
|
|
|
|
constitutive_dislobased_dotState(ns+j) = (constitutive_dislobased_fmax(matID) - sumf)* &
|
2009-07-28 15:38:13 +05:30
|
|
|
lattice_shearTwin(index_myFamily+i,structID)*state(ipc,ip,el)%p(8*ns+4*nt+j)*constitutive_dislobased_Ndot0(f,matID)*&
|
2009-07-24 17:32:20 +05:30
|
|
|
exp(-(state(ipc,ip,el)%p(7*ns+3*nt+j)/tau_twin(j))**10.0_pReal)
|
|
|
|
enddo
|
2009-07-14 16:56:52 +05:30
|
|
|
enddo
|
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
return
|
|
|
|
end function
|
|
|
|
|
2009-07-01 15:59:35 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
function constitutive_dislobased_dotTemperature(Tstar_v,Temperature,state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* rate of change of microstructure *
|
|
|
|
!* INPUT: *
|
|
|
|
!* - Temperature : temperature *
|
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - ipc : component-ID at current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!* OUTPUT: *
|
|
|
|
!* - constitutive_dotTemperature : evolution of Temperature *
|
|
|
|
!*********************************************************************
|
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
|
|
|
use material, only: homogenization_maxNgrains
|
|
|
|
implicit none
|
2009-07-01 15:59:35 +05:30
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt) ipc,ip,el
|
|
|
|
real(pReal) Temperature
|
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state
|
|
|
|
real(pReal), dimension(6) :: Tstar_v
|
|
|
|
real(pReal) constitutive_dislobased_dotTemperature
|
|
|
|
|
|
|
|
constitutive_dislobased_dotTemperature = 0.0_pReal
|
|
|
|
|
|
|
|
return
|
|
|
|
end function
|
2009-07-01 15:59:35 +05:30
|
|
|
|
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
pure function constitutive_dislobased_postResults(Tstar_v,Temperature,dt,state,ipc,ip,el)
|
|
|
|
!*********************************************************************
|
|
|
|
!* return array of constitutive results *
|
|
|
|
!* INPUT: *
|
2009-07-24 17:32:20 +05:30
|
|
|
!* - Temperature : temperature *
|
2009-03-05 22:06:31 +05:30
|
|
|
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
|
|
|
|
!* - dt : current time increment *
|
|
|
|
!* - ipc : component-ID at current integration point *
|
|
|
|
!* - ip : current integration point *
|
|
|
|
!* - el : current element *
|
|
|
|
!*********************************************************************
|
2009-07-24 17:32:20 +05:30
|
|
|
use prec, only: pReal,pInt,p_vec
|
|
|
|
use mesh, only: mesh_NcpElems,mesh_maxNips
|
2009-03-05 22:06:31 +05:30
|
|
|
use material, only: homogenization_maxNgrains,material_phase,phase_constitutionInstance,phase_Noutput
|
2009-07-24 17:32:20 +05:30
|
|
|
use lattice, only: lattice_Sslip_v,lattice_Stwin_v,lattice_maxNslipFamily,lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem,lattice_NtwinSystem,lattice_shearTwin
|
2009-03-05 22:06:31 +05:30
|
|
|
implicit none
|
|
|
|
|
|
|
|
!* Definition of variables
|
|
|
|
integer(pInt), intent(in) :: ipc,ip,el
|
|
|
|
real(pReal), intent(in) :: dt,Temperature
|
|
|
|
real(pReal), dimension(6), intent(in) :: Tstar_v
|
|
|
|
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems), intent(in) :: state
|
2009-07-24 17:32:20 +05:30
|
|
|
integer(pInt) matID,structID,ns,nt,f,o,i,c,j,index_myFamily
|
|
|
|
real(pReal) sumf,tau
|
2009-03-05 22:06:31 +05:30
|
|
|
real(pReal), dimension(constitutive_dislobased_sizePostResults(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: &
|
|
|
|
constitutive_dislobased_postResults
|
|
|
|
|
2009-07-24 17:32:20 +05:30
|
|
|
!* Shortened notation
|
|
|
|
matID = phase_constitutionInstance(material_phase(ipc,ip,el))
|
|
|
|
structID = constitutive_dislobased_structure(matID)
|
|
|
|
ns = constitutive_dislobased_totalNslip(matID)
|
|
|
|
nt = constitutive_dislobased_totalNtwin(matID)
|
|
|
|
|
|
|
|
!* Total twin volume fraction
|
2009-07-28 15:38:13 +05:30
|
|
|
sumf = sum(state(ipc,ip,el)%p((ns+1):(ns+nt))) ! safe for nt == 0
|
2009-07-24 17:32:20 +05:30
|
|
|
|
|
|
|
!* Required output
|
2009-03-05 22:06:31 +05:30
|
|
|
c = 0_pInt
|
|
|
|
constitutive_dislobased_postResults = 0.0_pReal
|
|
|
|
|
|
|
|
do o = 1,phase_Noutput(material_phase(ipc,ip,el))
|
|
|
|
select case(constitutive_dislobased_output(o,matID))
|
2009-07-24 17:32:20 +05:30
|
|
|
|
2009-07-28 15:38:13 +05:30
|
|
|
case ('dislocationdensity')
|
2009-07-24 17:32:20 +05:30
|
|
|
constitutive_dislobased_postResults(c+1:c+ns) = state(ipc,ip,el)%p(1:ns)
|
|
|
|
c = c + ns
|
|
|
|
|
|
|
|
case ('shearrate_slip')
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNslipFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Nslip(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j + 1_pInt
|
|
|
|
tau = dot_product(Tstar_v,lattice_Sslip_v(:,index_myFamily+i,structID))
|
|
|
|
if ( abs(tau) > state(ipc,ip,el)%p(6*ns+3*nt+j) ) then
|
|
|
|
constitutive_dislobased_postResults(c+j) = state(ipc,ip,el)%p(9*ns+5*nt+j)*sign(1.0_pReal,tau)* &
|
|
|
|
sinh(((abs(tau)-state(ipc,ip,el)%p(6*ns+3*nt+j))*state(ipc,ip,el)%p(7*ns+4*nt+j))/(kB*Temperature))
|
|
|
|
else
|
|
|
|
constitutive_dislobased_postResults(c+j) = 0.0_pReal
|
|
|
|
endif
|
|
|
|
enddo ; enddo
|
|
|
|
c = c + ns
|
|
|
|
|
|
|
|
case ('mfp_slip')
|
|
|
|
constitutive_dislobased_postResults(c+1:c+ns) = state(ipc,ip,el)%p((5*ns+2*nt+1):(6*ns+2*nt))
|
|
|
|
c = c + ns
|
|
|
|
|
|
|
|
case ('resolvedstress_slip')
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNslipFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Nslip(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j + 1_pInt
|
|
|
|
constitutive_dislobased_postResults(c+j) = dot_product(Tstar_v,lattice_Sslip_v(:,index_myFamily+i,structID))
|
|
|
|
enddo; enddo
|
|
|
|
c = c + ns
|
|
|
|
|
|
|
|
case ('resistance_slip')
|
|
|
|
constitutive_dislobased_postResults(c+1:c+ns) = state(ipc,ip,el)%p((6*ns+3*nt+1):(7*ns+3*nt))
|
|
|
|
c = c + ns
|
|
|
|
|
2009-07-28 15:38:13 +05:30
|
|
|
case ('volumefraction')
|
|
|
|
constitutive_dislobased_postResults(c+1:c+nt) = state(ipc,ip,el)%p((ns+1):(ns+nt))
|
2009-07-24 17:32:20 +05:30
|
|
|
c = c + nt
|
|
|
|
|
|
|
|
case ('shearrate_twin')
|
|
|
|
if (nt > 0_pInt) then
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNtwinFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Ntwin(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j + 1_pInt
|
|
|
|
tau = dot_product(Tstar_v,lattice_Stwin_v(:,index_myFamily+i,structID))
|
|
|
|
if ( tau > 0.0_pReal ) then
|
|
|
|
constitutive_dislobased_postResults(c+j) = (constitutive_dislobased_fmax(matID) - sumf)* &
|
|
|
|
lattice_shearTwin(index_myFamily+i,structID)*state(ipc,ip,el)%p(8*ns+4*nt+j)* &
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_Ndot0(f,matID)*exp(-(state(ipc,ip,el)%p(7*ns+3*nt+j)/tau)**10.0_pReal)
|
2009-07-24 17:32:20 +05:30
|
|
|
else
|
|
|
|
constitutive_dislobased_postResults(c+j) = 0.0_pReal
|
|
|
|
endif
|
|
|
|
enddo ; enddo
|
|
|
|
endif
|
|
|
|
c = c + nt
|
|
|
|
|
|
|
|
case ('mfp_twin')
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_postResults(c+1:c+nt) = state(ipc,ip,el)%p((6*ns+2*nt+1):(6*ns+3*nt))
|
2009-07-24 17:32:20 +05:30
|
|
|
c = c + nt
|
|
|
|
|
|
|
|
case ('resolvedstress_twin')
|
|
|
|
if (nt > 0_pInt) then
|
|
|
|
j = 0_pInt
|
|
|
|
do f = 1,lattice_maxNtwinFamily ! loop over all slip families
|
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1,structID)) ! at which index starts my family
|
|
|
|
do i = 1,constitutive_dislobased_Ntwin(f,matID) ! process each (active) slip system in family
|
|
|
|
j = j + 1_pInt
|
|
|
|
constitutive_dislobased_postResults(c+j) = dot_product(Tstar_v,lattice_Stwin_v(:,index_myFamily+i,structID))
|
|
|
|
enddo; enddo
|
|
|
|
endif
|
|
|
|
c = c + nt
|
|
|
|
|
|
|
|
case ('resistance_twin')
|
2009-07-28 15:38:13 +05:30
|
|
|
constitutive_dislobased_postResults(c+1:c+nt) = state(ipc,ip,el)%p((7*ns+3*nt+1):(7*ns+4*nt))
|
2009-07-24 17:32:20 +05:30
|
|
|
c = c + nt
|
|
|
|
|
2009-03-05 22:06:31 +05:30
|
|
|
end select
|
|
|
|
enddo
|
|
|
|
|
|
|
|
return
|
|
|
|
end function
|
2009-03-05 21:45:24 +05:30
|
|
|
|
|
|
|
END MODULE
|