2012-10-11 20:19:12 +05:30
|
|
|
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
2018-06-22 02:44:30 +05:30
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
2015-10-14 00:22:01 +05:30
|
|
|
!> @brief material subroutine for phenomenological crystal plasticity formulation using a powerlaw
|
2013-07-01 11:40:42 +05:30
|
|
|
!! fitting
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-12-08 21:25:30 +05:30
|
|
|
module plastic_phenopowerlaw
|
2013-07-01 11:40:42 +05:30
|
|
|
use prec, only: &
|
|
|
|
pReal,&
|
2013-09-18 19:37:55 +05:30
|
|
|
pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
implicit none
|
2012-04-11 19:31:02 +05:30
|
|
|
private
|
2013-12-12 03:33:09 +05:30
|
|
|
integer(pInt), dimension(:,:), allocatable, target, public :: &
|
2018-06-02 02:26:20 +05:30
|
|
|
plastic_phenopowerlaw_sizePostResult !< size of each post result output
|
2015-10-14 00:22:01 +05:30
|
|
|
character(len=64), dimension(:,:), allocatable, target, public :: &
|
2018-06-02 02:26:20 +05:30
|
|
|
plastic_phenopowerlaw_output !< name of each post result output
|
2014-03-09 02:20:31 +05:30
|
|
|
|
2015-10-14 00:22:01 +05:30
|
|
|
enum, bind(c)
|
2018-06-02 02:26:20 +05:30
|
|
|
enumerator :: &
|
|
|
|
undefined_ID, &
|
|
|
|
resistance_slip_ID, &
|
|
|
|
accumulatedshear_slip_ID, &
|
|
|
|
shearrate_slip_ID, &
|
|
|
|
resolvedstress_slip_ID, &
|
|
|
|
totalshear_ID, &
|
|
|
|
resistance_twin_ID, &
|
|
|
|
accumulatedshear_twin_ID, &
|
|
|
|
shearrate_twin_ID, &
|
|
|
|
resolvedstress_twin_ID, &
|
|
|
|
totalvolfrac_twin_ID
|
2013-11-27 17:09:28 +05:30
|
|
|
end enum
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-04-24 21:01:05 +05:30
|
|
|
type, private :: tParameters !< container type for internal constitutive parameters
|
|
|
|
real(pReal) :: &
|
|
|
|
gdot0_slip, & !< reference shear strain rate for slip
|
|
|
|
gdot0_twin, & !< reference shear strain rate for twin
|
|
|
|
n_slip, & !< stress exponent for slip
|
|
|
|
n_twin, & !< stress exponent for twin
|
|
|
|
spr, & !< push-up factor for slip saturation due to twinning
|
|
|
|
twinB, &
|
|
|
|
twinC, &
|
|
|
|
twinD, &
|
|
|
|
twinE, &
|
|
|
|
h0_SlipSlip, & !< reference hardening slip - slip
|
|
|
|
h0_TwinSlip, & !< reference hardening twin - slip
|
|
|
|
h0_TwinTwin, & !< reference hardening twin - twin
|
|
|
|
a_slip, &
|
2018-06-02 02:26:20 +05:30
|
|
|
aTolResistance, & ! default absolute tolerance 1 Pa
|
|
|
|
aTolShear, & ! default absolute tolerance 1e-6
|
|
|
|
aTolTwinfrac ! default absolute tolerance 1e-6
|
2018-04-24 21:01:05 +05:30
|
|
|
integer(pInt), dimension(:), allocatable :: &
|
|
|
|
Nslip, & !< active number of slip systems per family
|
|
|
|
Ntwin !< active number of twin systems per family
|
|
|
|
real(pReal), dimension(:), allocatable :: &
|
|
|
|
tau0_slip, & !< initial critical shear stress for slip
|
|
|
|
tau0_twin, & !< initial critical shear stress for twin
|
|
|
|
tausat_slip, & !< maximum critical shear stress for slip
|
|
|
|
nonSchmidCoeff, &
|
|
|
|
H_int, & !< per family hardening activity (optional)
|
|
|
|
interaction_SlipSlip, & !< slip resistance from slip activity
|
|
|
|
interaction_SlipTwin, & !< slip resistance from twin activity
|
|
|
|
interaction_TwinSlip, & !< twin resistance from slip activity
|
|
|
|
interaction_TwinTwin !< twin resistance from twin activity
|
2018-06-02 02:26:20 +05:30
|
|
|
real(pReal), dimension(:,:), allocatable :: &
|
|
|
|
matrix_SlipSlip, & !< slip resistance from slip activity
|
|
|
|
matrix_SlipTwin, & !< slip resistance from twin activity
|
|
|
|
matrix_TwinSlip, & !< twin resistance from slip activity
|
|
|
|
matrix_TwinTwin !< twin resistance from twin activity
|
|
|
|
|
|
|
|
integer(kind(undefined_ID)), dimension(:), allocatable :: &
|
|
|
|
outputID !< ID of each post result output
|
2018-04-24 21:01:05 +05:30
|
|
|
end type
|
2018-06-02 02:26:20 +05:30
|
|
|
|
|
|
|
type(tParameters), dimension(:), allocatable, target, private :: param !< containers of constitutive parameters (len Ninstance)
|
2018-04-24 21:01:05 +05:30
|
|
|
|
2015-10-30 21:18:30 +05:30
|
|
|
type, private :: tPhenopowerlawState
|
|
|
|
real(pReal), pointer, dimension(:,:) :: &
|
|
|
|
s_slip, &
|
|
|
|
s_twin, &
|
|
|
|
accshear_slip, &
|
|
|
|
accshear_twin
|
|
|
|
real(pReal), pointer, dimension(:) :: &
|
|
|
|
sumGamma, &
|
|
|
|
sumF
|
|
|
|
end type
|
|
|
|
|
|
|
|
type(tPhenopowerlawState), allocatable, dimension(:), private :: &
|
|
|
|
dotState, &
|
2018-04-25 23:11:18 +05:30
|
|
|
state
|
2015-10-30 21:18:30 +05:30
|
|
|
|
2012-04-11 19:31:02 +05:30
|
|
|
public :: &
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_init, &
|
|
|
|
plastic_phenopowerlaw_LpAndItsTangent, &
|
|
|
|
plastic_phenopowerlaw_dotState, &
|
|
|
|
plastic_phenopowerlaw_postResults
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
contains
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-07-01 11:40:42 +05:30
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-06-02 02:26:20 +05:30
|
|
|
subroutine plastic_phenopowerlaw_init
|
2018-02-02 17:06:09 +05:30
|
|
|
#if defined(__GFORTRAN__) || __INTEL_COMPILER >= 1800
|
2017-10-05 20:05:34 +05:30
|
|
|
use, intrinsic :: iso_fortran_env, only: &
|
|
|
|
compiler_version, &
|
|
|
|
compiler_options
|
|
|
|
#endif
|
2016-05-29 14:15:03 +05:30
|
|
|
use prec, only: &
|
2016-10-29 13:09:08 +05:30
|
|
|
dEq0
|
2013-07-01 11:40:42 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level, &
|
|
|
|
debug_constitutive,&
|
|
|
|
debug_levelBasic
|
2013-12-19 14:19:47 +05:30
|
|
|
use math, only: &
|
|
|
|
math_Mandel3333to66, &
|
2018-04-25 23:11:18 +05:30
|
|
|
math_Voigt66to3333, &
|
|
|
|
math_expand
|
2013-12-19 14:19:47 +05:30
|
|
|
use IO, only: &
|
|
|
|
IO_warning, &
|
|
|
|
IO_error, &
|
2018-06-02 09:09:40 +05:30
|
|
|
IO_timeStamp
|
2013-12-19 14:19:47 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_plasticity, &
|
|
|
|
phase_plasticityInstance, &
|
|
|
|
phase_Noutput, &
|
|
|
|
PLASTICITY_PHENOPOWERLAW_label, &
|
|
|
|
PLASTICITY_PHENOPOWERLAW_ID, &
|
2014-07-02 17:57:39 +05:30
|
|
|
material_phase, &
|
2018-06-10 21:31:52 +05:30
|
|
|
plasticState
|
2018-06-14 10:09:49 +05:30
|
|
|
use config, only: &
|
2018-06-19 23:13:41 +05:30
|
|
|
MATERIAL_partPhase, &
|
|
|
|
phaseConfig
|
2013-02-08 21:25:53 +05:30
|
|
|
use lattice
|
2014-05-22 20:46:05 +05:30
|
|
|
use numerics,only: &
|
|
|
|
numerics_integrator
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
implicit none
|
2013-07-01 11:40:42 +05:30
|
|
|
|
|
|
|
integer(pInt) :: &
|
|
|
|
maxNinstance, &
|
2018-06-02 02:26:20 +05:30
|
|
|
instance,phase,j,k, f,o, i,&
|
|
|
|
NipcMyPhase, outputSize, &
|
2015-01-05 00:56:33 +05:30
|
|
|
offset_slip, index_myFamily, index_otherFamily, &
|
2018-06-02 09:09:40 +05:30
|
|
|
sizeState,sizeDotState, &
|
2015-10-30 21:18:30 +05:30
|
|
|
startIndex, endIndex
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
integer(pInt), dimension(0), parameter :: emptyInt = [integer(pInt)::]
|
2018-06-02 09:09:40 +05:30
|
|
|
real(pReal), dimension(0), parameter :: emptyReal = [real(pReal)::]
|
2018-06-25 17:36:13 +05:30
|
|
|
character(len=65536), dimension(0), parameter :: emptyString = [character(len=65536)::]
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
type(tParameters), pointer :: prm
|
2018-06-02 02:26:20 +05:30
|
|
|
|
|
|
|
integer(kind(undefined_ID)) :: &
|
|
|
|
outputID !< ID of each post result output
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-06-02 09:09:40 +05:30
|
|
|
character(len=512) :: &
|
2018-04-25 23:11:18 +05:30
|
|
|
extmsg = ''
|
2018-06-22 21:44:14 +05:30
|
|
|
character(len=65536), dimension(:), allocatable :: outputs
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-07-25 23:42:00 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- constitutive_'//PLASTICITY_PHENOPOWERLAW_label//' init -+>>>'
|
|
|
|
write(6,'(a15,a)') ' Current time: ',IO_timeStamp()
|
2012-02-01 00:48:55 +05:30
|
|
|
#include "compilation_info.f90"
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
maxNinstance = int(count(phase_plasticity == PLASTICITY_PHENOPOWERLAW_ID),pInt)
|
2013-07-01 11:40:42 +05:30
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0_pInt) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',maxNinstance
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2018-05-31 22:01:44 +05:30
|
|
|
allocate(plastic_phenopowerlaw_sizePostResult(maxval(phase_Noutput),maxNinstance),source=0_pInt)
|
2014-12-08 21:25:30 +05:30
|
|
|
allocate(plastic_phenopowerlaw_output(maxval(phase_Noutput),maxNinstance))
|
2018-05-31 22:01:44 +05:30
|
|
|
plastic_phenopowerlaw_output = ''
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-05-02 20:14:27 +05:30
|
|
|
allocate(param(maxNinstance)) ! one container of parameters per instance
|
2018-06-02 02:26:20 +05:30
|
|
|
allocate(state(maxNinstance))
|
|
|
|
allocate(dotState(maxNinstance))
|
2013-12-12 03:33:09 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
do phase = 1_pInt, size(phase_plasticityInstance)
|
|
|
|
if (phase_plasticity(phase) == PLASTICITY_PHENOPOWERLAW_ID) then
|
2018-05-31 22:01:44 +05:30
|
|
|
instance = phase_plasticityInstance(phase)
|
2018-06-19 23:13:41 +05:30
|
|
|
prm => param(instance)
|
2018-06-02 02:26:20 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
prm%Nslip = phaseConfig(phase)%getInts('nslip',defaultVal=emptyInt)
|
2018-06-02 02:26:20 +05:30
|
|
|
!if (size > Nchunks_SlipFamilies + 1_pInt) call IO_error(150_pInt,ext_msg=extmsg)
|
2018-06-19 23:13:41 +05:30
|
|
|
if (sum(prm%Nslip) > 0_pInt) then
|
|
|
|
prm%tau0_slip = phaseConfig(phase)%getFloats('tau0_slip')
|
|
|
|
prm%tausat_slip = phaseConfig(phase)%getFloats('tausat_slip')
|
|
|
|
prm%interaction_SlipSlip = phaseConfig(phase)%getFloats('interaction_slipslip')
|
|
|
|
prm%H_int = phaseConfig(phase)%getFloats('h_int',&
|
|
|
|
defaultVal=[(0.0_pReal,i=1_pInt,size(prm%Nslip))])
|
|
|
|
prm%nonSchmidCoeff = phaseConfig(phase)%getFloats('nonschmid_coefficients',&
|
2018-06-25 17:36:13 +05:30
|
|
|
defaultVal = emptyReal )
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
prm%gdot0_slip = phaseConfig(phase)%getFloat('gdot0_slip')
|
|
|
|
prm%n_slip = phaseConfig(phase)%getFloat('n_slip')
|
|
|
|
prm%a_slip = phaseConfig(phase)%getFloat('a_slip')
|
|
|
|
prm%h0_SlipSlip = phaseConfig(phase)%getFloat('h0_slipslip')
|
2018-06-02 02:26:20 +05:30
|
|
|
endif
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
prm%Ntwin = phaseConfig(phase)%getInts('ntwin', defaultVal=emptyInt)
|
2018-06-02 02:26:20 +05:30
|
|
|
!if (size > Nchunks_SlipFamilies + 1_pInt) call IO_error(150_pInt,ext_msg=extmsg)
|
2018-06-19 23:13:41 +05:30
|
|
|
if (sum(prm%Ntwin) > 0_pInt) then
|
|
|
|
prm%tau0_twin = phaseConfig(phase)%getFloats('tau0_twin')
|
|
|
|
prm%interaction_TwinTwin = phaseConfig(phase)%getFloats('interaction_twintwin')
|
|
|
|
|
|
|
|
prm%gdot0_twin = phaseConfig(phase)%getFloat('gdot0_twin')
|
|
|
|
prm%n_twin = phaseConfig(phase)%getFloat('n_twin')
|
|
|
|
prm%spr = phaseConfig(phase)%getFloat('s_pr')
|
|
|
|
prm%twinB = phaseConfig(phase)%getFloat('twin_b')
|
|
|
|
prm%twinC = phaseConfig(phase)%getFloat('twin_c')
|
|
|
|
prm%twinD = phaseConfig(phase)%getFloat('twin_d')
|
|
|
|
prm%twinE = phaseConfig(phase)%getFloat('twin_e')
|
|
|
|
prm%h0_TwinTwin = phaseConfig(phase)%getFloat('h0_twintwin')
|
2018-06-02 09:09:40 +05:30
|
|
|
endif
|
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
if (sum(prm%Nslip) > 0_pInt .and. sum(prm%Ntwin) > 0_pInt) then
|
|
|
|
prm%interaction_SlipTwin = phaseConfig(phase)%getFloats('interaction_sliptwin')
|
|
|
|
prm%interaction_TwinSlip = phaseConfig(phase)%getFloats('interaction_twinslip')
|
|
|
|
prm%h0_TwinSlip = phaseConfig(phase)%getFloat('h0_twinslip')
|
2018-06-02 02:26:20 +05:30
|
|
|
endif
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
allocate(prm%matrix_SlipSlip(sum(prm%Nslip),sum(prm%Nslip)),source =0.0_pReal)
|
|
|
|
allocate(prm%matrix_SlipTwin(sum(prm%Nslip),sum(prm%Ntwin)),source =0.0_pReal)
|
|
|
|
allocate(prm%matrix_TwinSlip(sum(prm%Ntwin),sum(prm%Nslip)),source =0.0_pReal)
|
|
|
|
allocate(prm%matrix_TwinTwin(sum(prm%Ntwin),sum(prm%Ntwin)),source =0.0_pReal)
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
prm%aTolResistance = phaseConfig(phase)%getFloat('atol_resistance',defaultVal=1.0_pReal)
|
|
|
|
prm%aTolShear = phaseConfig(phase)%getFloat('atol_shear',defaultVal=1.0e-6_pReal)
|
|
|
|
prm%aTolTwinfrac = phaseConfig(phase)%getFloat('atol_twinfrac',defaultVal=1.0e-6_pReal)
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-06-25 17:36:13 +05:30
|
|
|
outputs = phaseConfig(phase)%getStrings('(output)',defaultVal=emptyString)
|
2018-06-19 23:13:41 +05:30
|
|
|
allocate(prm%outputID(0))
|
2018-06-02 02:26:20 +05:30
|
|
|
do i=1_pInt, size(outputs)
|
|
|
|
outputID = undefined_ID
|
|
|
|
select case(outputs(i))
|
|
|
|
case ('resistance_slip')
|
|
|
|
outputID = resistance_slip_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Nslip)
|
2018-06-25 14:03:22 +05:30
|
|
|
case ('accumulatedshear_slip')
|
2018-06-02 02:26:20 +05:30
|
|
|
outputID = accumulatedshear_slip_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Nslip)
|
2018-06-02 02:26:20 +05:30
|
|
|
case ('shearrate_slip')
|
|
|
|
outputID = shearrate_slip_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Nslip)
|
2018-06-02 02:26:20 +05:30
|
|
|
case ('resolvedstress_slip')
|
|
|
|
outputID = resolvedstress_slip_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Nslip)
|
2018-06-02 02:26:20 +05:30
|
|
|
|
|
|
|
case ('resistance_twin')
|
|
|
|
outputID = resistance_twin_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Ntwin)
|
2018-06-25 14:03:22 +05:30
|
|
|
case ('accumulatedshear_twin')
|
2018-06-02 02:26:20 +05:30
|
|
|
outputID = accumulatedshear_twin_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Ntwin)
|
2018-06-02 02:26:20 +05:30
|
|
|
case ('shearrate_twin')
|
|
|
|
outputID = shearrate_twin_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Ntwin)
|
2018-06-02 02:26:20 +05:30
|
|
|
case ('resolvedstress_twin')
|
|
|
|
outputID = resolvedstress_twin_ID
|
2018-06-19 23:13:41 +05:30
|
|
|
outputSize = sum(prm%Ntwin)
|
2018-06-02 02:26:20 +05:30
|
|
|
|
|
|
|
case ('totalvolfrac_twin')
|
|
|
|
outputID = totalvolfrac_twin_ID
|
|
|
|
outputSize = 1_pInt
|
|
|
|
case ('totalshear')
|
|
|
|
outputID = totalshear_ID
|
|
|
|
outputSize = 1_pInt
|
|
|
|
end select
|
|
|
|
|
|
|
|
if (outputID /= undefined_ID) then
|
|
|
|
plastic_phenopowerlaw_output(i,instance) = outputs(i)
|
|
|
|
plastic_phenopowerlaw_sizePostResult(i,instance) = outputSize
|
2018-06-19 23:13:41 +05:30
|
|
|
prm%outputID = [prm%outputID , outputID]
|
2018-06-02 02:26:20 +05:30
|
|
|
endif
|
|
|
|
|
2018-06-02 13:49:22 +05:30
|
|
|
end do
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-06-02 13:49:22 +05:30
|
|
|
extmsg = ''
|
2018-06-19 23:13:41 +05:30
|
|
|
if (sum(prm%Nslip) > 0_pInt) then
|
2018-06-23 18:18:32 +05:30
|
|
|
if (size(prm%tau0_slip) /= size(prm%Nslip)) call IO_error(211_pInt,ip=instance, &
|
|
|
|
ext_msg='shape(tau0_slip) ('//PLASTICITY_PHENOPOWERLAW_label//')')
|
|
|
|
if (size(prm%tausat_slip) /= size(prm%Nslip)) call IO_error(211_pInt,ip=instance, &
|
|
|
|
ext_msg='shape(tausat_slip) ('//PLASTICITY_PHENOPOWERLAW_label//')')
|
|
|
|
if (size(prm%H_int) /= size(prm%Nslip)) call IO_error(211_pInt,ip=instance, &
|
|
|
|
ext_msg='shape(H_int) ('//PLASTICITY_PHENOPOWERLAW_label//')')
|
2018-06-02 13:49:22 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
if (any(prm%tau0_slip < 0.0_pReal .and. prm%Nslip > 0_pInt)) &
|
2018-06-23 18:18:32 +05:30
|
|
|
extmsg = trim(extmsg)//"tau0_slip "
|
2018-06-19 23:13:41 +05:30
|
|
|
if (any(prm%tausat_slip < prm%tau0_slip .and. prm%Nslip > 0_pInt)) &
|
2018-06-23 18:18:32 +05:30
|
|
|
extmsg = trim(extmsg)//"tausat_slip "
|
2018-06-02 13:49:22 +05:30
|
|
|
|
2018-06-23 18:18:32 +05:30
|
|
|
if (prm%gdot0_slip <= 0.0_pReal) extmsg = trim(extmsg)//" gdot0_slip "
|
2018-06-19 23:13:41 +05:30
|
|
|
if (dEq0(prm%a_slip)) extmsg = trim(extmsg)//" a_slip " ! ToDo: negative values ok?
|
|
|
|
if (dEq0(prm%n_slip)) extmsg = trim(extmsg)//" n_slip " ! ToDo: negative values ok?
|
2018-06-02 13:49:22 +05:30
|
|
|
endif
|
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
if (sum(prm%Ntwin) > 0_pInt) then
|
2018-06-23 18:18:32 +05:30
|
|
|
if (size(prm%tau0_twin) /= size(prm%ntwin)) call IO_error(211_pInt,ip=instance,&
|
|
|
|
ext_msg='shape(tau0_twin) ('//PLASTICITY_PHENOPOWERLAW_label//')')
|
2018-06-02 13:49:22 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
if (any(prm%tau0_twin < 0.0_pReal .and. prm%Ntwin > 0_pInt)) &
|
2018-06-23 18:18:32 +05:30
|
|
|
extmsg = trim(extmsg)//"tau0_twin "
|
2018-06-02 13:49:22 +05:30
|
|
|
|
2018-06-23 18:18:32 +05:30
|
|
|
if (prm%gdot0_twin <= 0.0_pReal) extmsg = trim(extmsg)//"gdot0_twin "
|
|
|
|
if (dEq0(prm%n_twin)) extmsg = trim(extmsg)//"n_twin " ! ToDo: negative values ok?
|
2018-06-02 13:49:22 +05:30
|
|
|
endif
|
|
|
|
|
2018-06-23 18:18:32 +05:30
|
|
|
if (prm%aTolResistance <= 0.0_pReal) extmsg = trim(extmsg)//"aTolresistance "
|
|
|
|
if (prm%aTolShear <= 0.0_pReal) extmsg = trim(extmsg)//"aTolShear "
|
|
|
|
if (prm%aTolTwinfrac <= 0.0_pReal) extmsg = trim(extmsg)//"atoltwinfrac "
|
2009-10-22 14:28:14 +05:30
|
|
|
|
2018-06-02 13:49:22 +05:30
|
|
|
if (extmsg /= '') call IO_error(211_pInt,ip=instance,&
|
|
|
|
ext_msg=trim(extmsg)//'('//PLASTICITY_PHENOPOWERLAW_label//')')
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2014-07-02 17:57:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! allocate state arrays
|
2018-06-02 09:09:40 +05:30
|
|
|
NipcMyPhase = count(material_phase == phase) ! number of IPCs containing my phase
|
2018-06-19 23:13:41 +05:30
|
|
|
sizeState = size(['tau_slip ','accshear_slip']) * sum(prm%nslip) &
|
|
|
|
+ size(['tau_twin ','accshear_twin']) * sum(prm%ntwin) &
|
2018-06-02 02:26:20 +05:30
|
|
|
+ size(['sum(gamma)', 'sum(f) '])
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2014-06-11 22:22:18 +05:30
|
|
|
sizeDotState = sizeState
|
2014-07-08 20:28:23 +05:30
|
|
|
plasticState(phase)%sizeState = sizeState
|
|
|
|
plasticState(phase)%sizeDotState = sizeDotState
|
2018-06-22 02:44:30 +05:30
|
|
|
plasticState(phase)%sizePostResults = sum(plastic_phenopowerlaw_sizePostResult(:,instance))
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%nSlip = sum(prm%Nslip)
|
|
|
|
plasticState(phase)%nTwin = sum(prm%Ntwin)
|
2014-11-27 02:53:02 +05:30
|
|
|
allocate(plasticState(phase)%aTolState ( sizeState), source=0.0_pReal)
|
|
|
|
allocate(plasticState(phase)%state0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(phase)%partionedState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(phase)%subState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(phase)%state ( sizeState,NipcMyPhase), source=0.0_pReal)
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2014-11-27 02:53:02 +05:30
|
|
|
allocate(plasticState(phase)%dotState (sizeDotState,NipcMyPhase), source=0.0_pReal)
|
2018-06-02 09:09:40 +05:30
|
|
|
allocate(plasticState(phase)%deltaState (0_pInt,NipcMyPhase), source=0.0_pReal)
|
2014-05-22 20:46:05 +05:30
|
|
|
if (any(numerics_integrator == 1_pInt)) then
|
2014-11-27 02:53:02 +05:30
|
|
|
allocate(plasticState(phase)%previousDotState (sizeDotState,NipcMyPhase),source=0.0_pReal)
|
|
|
|
allocate(plasticState(phase)%previousDotState2(sizeDotState,NipcMyPhase),source=0.0_pReal)
|
2014-05-22 20:46:05 +05:30
|
|
|
endif
|
|
|
|
if (any(numerics_integrator == 4_pInt)) &
|
2014-11-27 02:53:02 +05:30
|
|
|
allocate(plasticState(phase)%RK4dotState (sizeDotState,NipcMyPhase), source=0.0_pReal)
|
2014-05-22 20:46:05 +05:30
|
|
|
if (any(numerics_integrator == 5_pInt)) &
|
2014-11-27 02:53:02 +05:30
|
|
|
allocate(plasticState(phase)%RKCK45dotState (6,sizeDotState,NipcMyPhase), source=0.0_pReal)
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-04-25 23:11:18 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-06-02 02:26:20 +05:30
|
|
|
! calculate hardening matrices
|
2018-06-19 23:13:41 +05:30
|
|
|
mySlipFamilies: do f = 1_pInt,size(prm%Nslip,1) ! >>> interaction slip -- X
|
|
|
|
index_myFamily = sum(prm%Nslip(1:f-1_pInt))
|
|
|
|
|
|
|
|
mySlipSystems: do j = 1_pInt,prm%Nslip(f)
|
|
|
|
otherSlipFamilies: do o = 1_pInt,size(prm%Nslip,1)
|
|
|
|
index_otherFamily = sum(prm%Nslip(1:o-1_pInt))
|
|
|
|
otherSlipSystems: do k = 1_pInt,prm%Nslip(o)
|
|
|
|
prm%matrix_SlipSlip(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_SlipSlip(lattice_interactionSlipSlip( &
|
2014-03-09 02:20:31 +05:30
|
|
|
sum(lattice_NslipSystem(1:f-1,phase))+j, &
|
|
|
|
sum(lattice_NslipSystem(1:o-1,phase))+k, &
|
2018-04-25 23:11:18 +05:30
|
|
|
phase))
|
|
|
|
enddo otherSlipSystems; enddo otherSlipFamilies
|
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
twinFamilies: do o = 1_pInt,size(prm%Ntwin,1)
|
|
|
|
index_otherFamily = sum(prm%Ntwin(1:o-1_pInt))
|
|
|
|
twinSystems: do k = 1_pInt,prm%Ntwin(o)
|
|
|
|
prm%matrix_SlipTwin(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_SlipTwin(lattice_interactionSlipTwin( &
|
2014-03-09 02:20:31 +05:30
|
|
|
sum(lattice_NslipSystem(1:f-1_pInt,phase))+j, &
|
|
|
|
sum(lattice_NtwinSystem(1:o-1_pInt,phase))+k, &
|
2018-04-25 23:11:18 +05:30
|
|
|
phase))
|
|
|
|
enddo twinSystems; enddo twinFamilies
|
|
|
|
enddo mySlipSystems
|
|
|
|
enddo mySlipFamilies
|
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
myTwinFamilies: do f = 1_pInt,size(prm%Ntwin,1) ! >>> interaction twin -- X
|
|
|
|
index_myFamily = sum(prm%Ntwin(1:f-1_pInt))
|
|
|
|
myTwinSystems: do j = 1_pInt,prm%Ntwin(f)
|
|
|
|
slipFamilies: do o = 1_pInt,size(prm%Nslip,1)
|
|
|
|
index_otherFamily = sum(prm%Nslip(1:o-1_pInt))
|
|
|
|
slipSystems: do k = 1_pInt,prm%Nslip(o)
|
|
|
|
prm%matrix_TwinSlip(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_TwinSlip(lattice_interactionTwinSlip( &
|
2014-03-09 02:20:31 +05:30
|
|
|
sum(lattice_NtwinSystem(1:f-1_pInt,phase))+j, &
|
|
|
|
sum(lattice_NslipSystem(1:o-1_pInt,phase))+k, &
|
2018-04-25 23:11:18 +05:30
|
|
|
phase))
|
|
|
|
enddo slipSystems; enddo slipFamilies
|
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
otherTwinFamilies: do o = 1_pInt,size(prm%Ntwin,1)
|
|
|
|
index_otherFamily = sum(prm%Ntwin(1:o-1_pInt))
|
|
|
|
otherTwinSystems: do k = 1_pInt,prm%Ntwin(o)
|
|
|
|
prm%matrix_TwinTwin(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_TwinTwin(lattice_interactionTwinTwin( &
|
2014-03-09 02:20:31 +05:30
|
|
|
sum(lattice_NtwinSystem(1:f-1_pInt,phase))+j, &
|
|
|
|
sum(lattice_NtwinSystem(1:o-1_pInt,phase))+k, &
|
2018-04-25 23:11:18 +05:30
|
|
|
phase))
|
|
|
|
enddo otherTwinSystems; enddo otherTwinFamilies
|
|
|
|
enddo myTwinSystems
|
|
|
|
enddo myTwinFamilies
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-04-25 23:11:18 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! locally defined state aliases and initialization of state0 and aTolState
|
2015-10-30 21:18:30 +05:30
|
|
|
startIndex = 1_pInt
|
2018-06-02 02:26:20 +05:30
|
|
|
endIndex = plasticState(phase)%nSlip
|
2015-10-30 21:18:30 +05:30
|
|
|
state (instance)%s_slip=>plasticState(phase)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%s_slip=>plasticState(phase)%dotState(startIndex:endIndex,:)
|
2018-04-25 23:11:18 +05:30
|
|
|
plasticState(phase)%state0(startIndex:endIndex,:) = &
|
2018-06-19 23:13:41 +05:30
|
|
|
spread(math_expand(prm%tau0_slip, prm%Nslip), 2, NipcMyPhase)
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
2015-10-30 21:18:30 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-06-02 02:26:20 +05:30
|
|
|
endIndex = endIndex + plasticState(phase)%nTwin
|
2015-10-30 21:18:30 +05:30
|
|
|
state (instance)%s_twin=>plasticState(phase)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%s_twin=>plasticState(phase)%dotState(startIndex:endIndex,:)
|
2018-04-25 23:11:18 +05:30
|
|
|
plasticState(phase)%state0(startIndex:endIndex,:) = &
|
2018-06-19 23:13:41 +05:30
|
|
|
spread(math_expand(prm%tau0_twin, prm%Ntwin), 2, NipcMyPhase)
|
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
2015-10-30 21:18:30 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
|
|
|
endIndex = endIndex + 1_pInt
|
|
|
|
state (instance)%sumGamma=>plasticState(phase)%state (startIndex,:)
|
|
|
|
dotState(instance)%sumGamma=>plasticState(phase)%dotState(startIndex,:)
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolShear
|
2015-10-30 21:18:30 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
|
|
|
endIndex = endIndex + 1_pInt
|
|
|
|
state (instance)%sumF=>plasticState(phase)%state (startIndex,:)
|
|
|
|
dotState(instance)%sumF=>plasticState(phase)%dotState(startIndex,:)
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolTwinFrac
|
2015-10-30 21:18:30 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-06-02 02:26:20 +05:30
|
|
|
endIndex = endIndex + plasticState(phase)%nSlip
|
2015-10-30 21:18:30 +05:30
|
|
|
state (instance)%accshear_slip=>plasticState(phase)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%accshear_slip=>plasticState(phase)%dotState(startIndex:endIndex,:)
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolShear
|
2018-04-25 23:11:18 +05:30
|
|
|
! global alias
|
|
|
|
plasticState(phase)%slipRate =>plasticState(phase)%dotState(startIndex:endIndex,:)
|
|
|
|
plasticState(phase)%accumulatedSlip =>plasticState(phase)%state(startIndex:endIndex,:)
|
2015-10-30 21:18:30 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-06-02 02:26:20 +05:30
|
|
|
endIndex = endIndex + plasticState(phase)%nTwin
|
2016-05-19 16:31:13 +05:30
|
|
|
state (instance)%accshear_twin=>plasticState(phase)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%accshear_twin=>plasticState(phase)%dotState(startIndex:endIndex,:)
|
2018-06-19 23:13:41 +05:30
|
|
|
plasticState(phase)%aTolState(startIndex:endIndex) = prm%aTolShear
|
2015-10-30 21:18:30 +05:30
|
|
|
|
2018-06-02 09:09:40 +05:30
|
|
|
offset_slip = plasticState(phase)%nSlip+plasticState(phase)%nTwin+2_pInt
|
|
|
|
plasticState(phase)%slipRate => &
|
|
|
|
plasticState(phase)%dotState(offset_slip+1:offset_slip+plasticState(phase)%nSlip,1:NipcMyPhase)
|
|
|
|
plasticState(phase)%accumulatedSlip => &
|
|
|
|
plasticState(phase)%state(offset_slip+1:offset_slip+plasticState(phase)%nSlip,1:NipcMyPhase)
|
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
endif
|
|
|
|
enddo
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
|
2018-04-25 23:11:18 +05:30
|
|
|
end subroutine plastic_phenopowerlaw_init
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-07-01 11:40:42 +05:30
|
|
|
!> @brief calculates plastic velocity gradient and its tangent
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-01-29 19:26:09 +05:30
|
|
|
subroutine plastic_phenopowerlaw_LpAndItsTangent(Lp,dLp_dTstar99,Tstar_v,ipc,ip,el)
|
2016-05-29 14:15:03 +05:30
|
|
|
use prec, only: &
|
2016-10-29 13:09:08 +05:30
|
|
|
dNeq0
|
2013-07-01 11:40:42 +05:30
|
|
|
use math, only: &
|
|
|
|
math_Plain3333to99, &
|
2014-01-22 21:17:49 +05:30
|
|
|
math_Mandel6to33
|
2013-07-01 11:40:42 +05:30
|
|
|
use lattice, only: &
|
|
|
|
lattice_Sslip, &
|
|
|
|
lattice_Sslip_v, &
|
|
|
|
lattice_Stwin, &
|
|
|
|
lattice_Stwin_v, &
|
|
|
|
lattice_maxNslipFamily, &
|
|
|
|
lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem, &
|
2018-06-02 13:49:22 +05:30
|
|
|
lattice_NtwinSystem
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
2016-01-15 05:49:44 +05:30
|
|
|
phaseAt, phasememberAt, &
|
2013-07-01 11:40:42 +05:30
|
|
|
phase_plasticityInstance
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
implicit none
|
2014-03-13 12:13:49 +05:30
|
|
|
real(pReal), dimension(3,3), intent(out) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
Lp !< plastic velocity gradient
|
2014-03-13 12:13:49 +05:30
|
|
|
real(pReal), dimension(9,9), intent(out) :: &
|
2013-10-08 21:57:26 +05:30
|
|
|
dLp_dTstar99 !< derivative of Lp with respect to 2nd Piola Kirchhoff stress
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2014-03-13 12:13:49 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
|
|
|
el !< element
|
2014-10-28 08:12:25 +05:30
|
|
|
real(pReal), dimension(6), intent(in) :: &
|
|
|
|
Tstar_v !< 2nd Piola Kirchhoff stress tensor in Mandel notation
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
integer(pInt) :: &
|
2015-10-14 00:22:01 +05:30
|
|
|
instance, &
|
2015-10-30 21:18:30 +05:30
|
|
|
index_myFamily, &
|
2014-07-02 17:57:39 +05:30
|
|
|
f,i,j,k,l,m,n, &
|
|
|
|
of, &
|
|
|
|
ph
|
2014-11-06 13:57:48 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
tau_slip_pos,tau_slip_neg, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg, &
|
|
|
|
dgdot_dtauslip_pos,dgdot_dtauslip_neg, &
|
|
|
|
gdot_twin,dgdot_dtautwin,tau_twin
|
2013-07-01 11:40:42 +05:30
|
|
|
real(pReal), dimension(3,3,3,3) :: &
|
|
|
|
dLp_dTstar3333 !< derivative of Lp with respect to Tstar as 4th order tensor
|
|
|
|
real(pReal), dimension(3,3,2) :: &
|
|
|
|
nonSchmid_tensor
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
|
|
|
ph = phaseAt(ipc,ip,el)
|
2014-07-02 17:57:39 +05:30
|
|
|
instance = phase_plasticityInstance(ph)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
Lp = 0.0_pReal
|
|
|
|
dLp_dTstar3333 = 0.0_pReal
|
2013-07-12 12:27:15 +05:30
|
|
|
dLp_dTstar99 = 0.0_pReal
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! Slip part
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
slipFamilies: do f = 1_pInt,size(param(instance)%Nslip,1)
|
2014-11-06 13:57:48 +05:30
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
slipSystems: do i = 1_pInt,param(instance)%Nslip(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
! Calculation of Lp
|
2014-11-06 13:57:48 +05:30
|
|
|
tau_slip_pos = dot_product(Tstar_v,lattice_Sslip_v(1:6,1,index_myFamily+i,ph))
|
|
|
|
tau_slip_neg = tau_slip_pos
|
2014-07-02 17:57:39 +05:30
|
|
|
nonSchmid_tensor(1:3,1:3,1) = lattice_Sslip(1:3,1:3,1,index_myFamily+i,ph)
|
2013-08-05 14:53:21 +05:30
|
|
|
nonSchmid_tensor(1:3,1:3,2) = nonSchmid_tensor(1:3,1:3,1)
|
2018-06-02 02:26:20 +05:30
|
|
|
do k = 1,size(param(instance)%nonSchmidCoeff)
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_pos = tau_slip_pos + param(instance)%nonSchmidCoeff(k)* &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k,index_myFamily+i,ph))
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_neg = tau_slip_neg + param(instance)%nonSchmidCoeff(k)* &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k+1,index_myFamily+i,ph))
|
2018-04-25 23:11:18 +05:30
|
|
|
nonSchmid_tensor(1:3,1:3,1) = nonSchmid_tensor(1:3,1:3,1) + param(instance)%nonSchmidCoeff(k)*&
|
2014-07-02 17:57:39 +05:30
|
|
|
lattice_Sslip(1:3,1:3,2*k,index_myFamily+i,ph)
|
2018-04-25 23:11:18 +05:30
|
|
|
nonSchmid_tensor(1:3,1:3,2) = nonSchmid_tensor(1:3,1:3,2) + param(instance)%nonSchmidCoeff(k)*&
|
2014-07-02 17:57:39 +05:30
|
|
|
lattice_Sslip(1:3,1:3,2*k+1,index_myFamily+i,ph)
|
2013-01-22 04:41:16 +05:30
|
|
|
enddo
|
2018-04-24 21:01:05 +05:30
|
|
|
gdot_slip_pos = 0.5_pReal*param(instance)%gdot0_slip* &
|
2015-10-30 21:18:30 +05:30
|
|
|
((abs(tau_slip_pos)/(state(instance)%s_slip(j,of))) &
|
2018-04-24 21:01:05 +05:30
|
|
|
**param(instance)%n_slip)*sign(1.0_pReal,tau_slip_pos)
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2018-04-24 21:01:05 +05:30
|
|
|
gdot_slip_neg = 0.5_pReal*param(instance)%gdot0_slip* &
|
2015-10-30 21:18:30 +05:30
|
|
|
((abs(tau_slip_neg)/(state(instance)%s_slip(j,of))) &
|
2018-04-24 21:01:05 +05:30
|
|
|
**param(instance)%n_slip)*sign(1.0_pReal,tau_slip_neg)
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2015-10-30 21:18:30 +05:30
|
|
|
Lp = Lp + (1.0_pReal-state(instance)%sumF(of))*& ! 1-F
|
2014-11-06 13:57:48 +05:30
|
|
|
(gdot_slip_pos+gdot_slip_neg)*lattice_Sslip(1:3,1:3,1,index_myFamily+i,ph)
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
! Calculation of the tangent of Lp
|
2016-10-29 13:09:08 +05:30
|
|
|
if (dNeq0(gdot_slip_pos)) then
|
2018-04-24 21:01:05 +05:30
|
|
|
dgdot_dtauslip_pos = gdot_slip_pos*param(instance)%n_slip/tau_slip_pos
|
2013-01-22 04:41:16 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
|
|
|
dLp_dTstar3333(k,l,m,n) = dLp_dTstar3333(k,l,m,n) + &
|
2014-11-06 13:57:48 +05:30
|
|
|
dgdot_dtauslip_pos*lattice_Sslip(k,l,1,index_myFamily+i,ph)* &
|
2013-01-22 04:41:16 +05:30
|
|
|
nonSchmid_tensor(m,n,1)
|
|
|
|
endif
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-10-29 13:09:08 +05:30
|
|
|
if (dNeq0(gdot_slip_neg)) then
|
2018-04-24 21:01:05 +05:30
|
|
|
dgdot_dtauslip_neg = gdot_slip_neg*param(instance)%n_slip/tau_slip_neg
|
2012-02-21 21:30:00 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2009-10-21 18:40:12 +05:30
|
|
|
dLp_dTstar3333(k,l,m,n) = dLp_dTstar3333(k,l,m,n) + &
|
2014-11-06 13:57:48 +05:30
|
|
|
dgdot_dtauslip_neg*lattice_Sslip(k,l,1,index_myFamily+i,ph)* &
|
2013-01-22 04:41:16 +05:30
|
|
|
nonSchmid_tensor(m,n,2)
|
2009-10-21 18:40:12 +05:30
|
|
|
endif
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo slipSystems
|
|
|
|
enddo slipFamilies
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! Twinning part
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
twinFamilies: do f = 1_pInt,size(param(instance)%Ntwin,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
twinSystems: do i = 1_pInt,param(instance)%Ntwin(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
! Calculation of Lp
|
2015-10-14 00:22:01 +05:30
|
|
|
tau_twin = dot_product(Tstar_v,lattice_Stwin_v(1:6,index_myFamily+i,ph))
|
2015-10-30 21:18:30 +05:30
|
|
|
gdot_twin = (1.0_pReal-state(instance)%sumF(of))*& ! 1-F
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%gdot0_twin*&
|
2015-10-30 21:18:30 +05:30
|
|
|
(abs(tau_twin)/state(instance)%s_twin(j,of))**&
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%n_twin*max(0.0_pReal,sign(1.0_pReal,tau_twin))
|
2014-11-06 13:57:48 +05:30
|
|
|
Lp = Lp + gdot_twin*lattice_Stwin(1:3,1:3,index_myFamily+i,ph)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
! Calculation of the tangent of Lp
|
2016-10-29 13:09:08 +05:30
|
|
|
if (dNeq0(gdot_twin)) then
|
2018-04-24 21:01:05 +05:30
|
|
|
dgdot_dtautwin = gdot_twin*param(instance)%n_twin/tau_twin
|
2012-02-21 21:30:00 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2009-10-21 18:40:12 +05:30
|
|
|
dLp_dTstar3333(k,l,m,n) = dLp_dTstar3333(k,l,m,n) + &
|
2014-11-06 13:57:48 +05:30
|
|
|
dgdot_dtautwin*lattice_Stwin(k,l,index_myFamily+i,ph)* &
|
|
|
|
lattice_Stwin(m,n,index_myFamily+i,ph)
|
2009-10-21 18:40:12 +05:30
|
|
|
endif
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo twinSystems
|
|
|
|
enddo twinFamilies
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-07-12 12:27:15 +05:30
|
|
|
dLp_dTstar99 = math_Plain3333to99(dLp_dTstar3333)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end subroutine plastic_phenopowerlaw_LpAndItsTangent
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2013-07-01 11:40:42 +05:30
|
|
|
!> @brief calculates the rate of change of microstructure
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-01-29 19:26:09 +05:30
|
|
|
subroutine plastic_phenopowerlaw_dotState(Tstar_v,ipc,ip,el)
|
2013-07-01 11:40:42 +05:30
|
|
|
use lattice, only: &
|
|
|
|
lattice_Sslip_v, &
|
|
|
|
lattice_Stwin_v, &
|
|
|
|
lattice_maxNslipFamily, &
|
|
|
|
lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem, &
|
|
|
|
lattice_NtwinSystem, &
|
2018-06-25 17:36:13 +05:30
|
|
|
lattice_shearTwin
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
|
|
|
material_phase, &
|
2016-01-15 05:49:44 +05:30
|
|
|
phaseAt, phasememberAt, &
|
2014-07-02 17:57:39 +05:30
|
|
|
plasticState, &
|
2013-07-01 11:40:42 +05:30
|
|
|
phase_plasticityInstance
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
implicit none
|
2014-03-13 12:13:49 +05:30
|
|
|
real(pReal), dimension(6), intent(in) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
Tstar_v !< 2nd Piola Kirchhoff stress tensor in Mandel notation
|
2014-03-13 12:13:49 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
2014-05-22 20:46:05 +05:30
|
|
|
el !< element !< microstructure state
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2013-10-08 21:57:26 +05:30
|
|
|
integer(pInt) :: &
|
2014-07-02 17:57:39 +05:30
|
|
|
instance,ph, &
|
2013-10-08 21:57:26 +05:30
|
|
|
f,i,j,k, &
|
2018-06-02 02:26:20 +05:30
|
|
|
index_myFamily, nslip,ntwin,&
|
2014-07-02 17:57:39 +05:30
|
|
|
of
|
2013-10-08 21:57:26 +05:30
|
|
|
real(pReal) :: &
|
2015-05-06 01:47:50 +05:30
|
|
|
c_SlipSlip,c_TwinSlip,c_TwinTwin, &
|
2014-11-06 13:57:48 +05:30
|
|
|
ssat_offset, &
|
|
|
|
tau_slip_pos,tau_slip_neg,tau_twin
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
real(pReal), dimension(plasticState(material_phase(ipc,ip,el))%Nslip) :: &
|
2014-11-06 13:57:48 +05:30
|
|
|
gdot_slip,left_SlipSlip,left_SlipTwin,right_SlipSlip,right_TwinSlip
|
2018-06-02 02:26:20 +05:30
|
|
|
real(pReal), dimension(plasticState(material_phase(ipc,ip,el))%Ntwin) :: &
|
2014-11-06 13:57:48 +05:30
|
|
|
gdot_twin,left_TwinSlip,left_TwinTwin,right_SlipTwin,right_TwinTwin
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
|
|
|
ph = phaseAt(ipc,ip,el)
|
2014-07-02 17:57:39 +05:30
|
|
|
instance = phase_plasticityInstance(ph)
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
nSlip= sum(param(instance)%nslip)
|
|
|
|
nTwin= sum(param(instance)%nTwin)
|
2018-05-01 01:00:53 +05:30
|
|
|
|
2014-07-07 19:51:58 +05:30
|
|
|
plasticState(ph)%dotState(:,of) = 0.0_pReal
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2012-10-22 20:25:07 +05:30
|
|
|
! system-independent (nonlinear) prefactors to M_Xx (X influenced by x) matrices
|
2018-04-24 21:01:05 +05:30
|
|
|
c_SlipSlip = param(instance)%h0_slipslip*&
|
2018-04-27 23:23:54 +05:30
|
|
|
(1.0_pReal + param(instance)%twinC*state(instance)%sumF(of)**&
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%twinB)
|
|
|
|
c_TwinSlip = param(instance)%h0_TwinSlip*&
|
2018-04-27 23:23:54 +05:30
|
|
|
state(instance)%sumGamma(of)**param(instance)%twinE
|
2018-04-24 21:01:05 +05:30
|
|
|
c_TwinTwin = param(instance)%h0_TwinTwin*&
|
2018-04-27 23:23:54 +05:30
|
|
|
state(instance)%sumF(of)**param(instance)%twinD
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! calculate left and right vectors and calculate dot gammas
|
2018-04-27 23:23:54 +05:30
|
|
|
ssat_offset = param(instance)%spr*sqrt(state(instance)%sumF(of))
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
slipFamilies1: do f =1_pInt,size(param(instance)%Nslip,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
slipSystems1: do i = 1_pInt,param(instance)%Nslip(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
left_SlipSlip(j) = 1.0_pReal + param(instance)%H_int(f) ! modified no system-dependent left part
|
2013-07-01 11:40:42 +05:30
|
|
|
left_SlipTwin(j) = 1.0_pReal ! no system-dependent left part
|
2018-04-27 23:23:54 +05:30
|
|
|
right_SlipSlip(j) = abs(1.0_pReal-state(instance)%s_slip(j,of) / &
|
2018-04-25 23:11:18 +05:30
|
|
|
(param(instance)%tausat_slip(f)+ssat_offset)) &
|
2018-04-24 21:01:05 +05:30
|
|
|
**param(instance)%a_slip&
|
2018-05-02 19:36:30 +05:30
|
|
|
*sign(1.0_pReal,1.0_pReal-state(instance)%s_slip(j,of) / &
|
|
|
|
(param(instance)%tausat_slip(f)+ssat_offset))
|
2013-07-01 11:40:42 +05:30
|
|
|
right_TwinSlip(j) = 1.0_pReal ! no system-dependent part
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2015-10-14 00:22:01 +05:30
|
|
|
! Calculation of dot gamma
|
2014-11-06 13:57:48 +05:30
|
|
|
tau_slip_pos = dot_product(Tstar_v,lattice_Sslip_v(1:6,1,index_myFamily+i,ph))
|
|
|
|
tau_slip_neg = tau_slip_pos
|
2018-06-25 17:36:13 +05:30
|
|
|
nonSchmidSystems: do k = 1,size(param(instance)%nonSchmidCoeff)
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_pos = tau_slip_pos + param(instance)%nonSchmidCoeff(k)* &
|
2014-11-06 13:57:48 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k, index_myFamily+i,ph))
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_neg = tau_slip_neg +param(instance)%nonSchmidCoeff(k)* &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k+1,index_myFamily+i,ph))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo nonSchmidSystems
|
2018-04-24 21:01:05 +05:30
|
|
|
gdot_slip(j) = param(instance)%gdot0_slip*0.5_pReal* &
|
2018-04-27 23:23:54 +05:30
|
|
|
((abs(tau_slip_pos)/(state(instance)%s_slip(j,of)))**param(instance)%n_slip &
|
2016-06-15 01:40:24 +05:30
|
|
|
*sign(1.0_pReal,tau_slip_pos) &
|
2018-04-27 23:23:54 +05:30
|
|
|
+(abs(tau_slip_neg)/(state(instance)%s_slip(j,of)))**param(instance)%n_slip &
|
2016-06-15 01:36:04 +05:30
|
|
|
*sign(1.0_pReal,tau_slip_neg))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo slipSystems1
|
|
|
|
enddo slipFamilies1
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2016-05-12 00:23:05 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
twinFamilies1: do f = 1_pInt,size(param(instance)%Ntwin,1)
|
2014-11-06 13:57:48 +05:30
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
twinSystems1: do i = 1_pInt,param(instance)%Ntwin(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
2015-09-09 01:14:32 +05:30
|
|
|
left_TwinSlip(j) = 1.0_pReal ! no system-dependent left part
|
|
|
|
left_TwinTwin(j) = 1.0_pReal ! no system-dependent left part
|
2012-11-14 15:52:34 +05:30
|
|
|
right_SlipTwin(j) = 1.0_pReal ! no system-dependent right part
|
|
|
|
right_TwinTwin(j) = 1.0_pReal ! no system-dependent right part
|
2012-10-22 20:25:07 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! Calculation of dot vol frac
|
2015-10-14 00:22:01 +05:30
|
|
|
tau_twin = dot_product(Tstar_v,lattice_Stwin_v(1:6,index_myFamily+i,ph))
|
2018-04-27 23:23:54 +05:30
|
|
|
gdot_twin(j) = (1.0_pReal-state(instance)%sumF(of))*& ! 1-F
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%gdot0_twin*&
|
2018-04-27 23:23:54 +05:30
|
|
|
(abs(tau_twin)/state(instance)%s_twin(j,of))**&
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%n_twin*max(0.0_pReal,sign(1.0_pReal,tau_twin))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo twinSystems1
|
|
|
|
enddo twinFamilies1
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! calculate the overall hardening based on above
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
slipFamilies2: do f = 1_pInt,size(param(instance)%Nslip,1)
|
|
|
|
slipSystems2: do i = 1_pInt,param(instance)%Nslip(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
2018-04-27 23:23:54 +05:30
|
|
|
dotState(instance)%s_slip(j,of) = & ! evolution of slip resistance j
|
2012-11-14 15:52:34 +05:30
|
|
|
c_SlipSlip * left_SlipSlip(j) * &
|
2018-06-02 02:26:20 +05:30
|
|
|
dot_product(param(instance)%matrix_SlipSlip(j,1:nslip), &
|
2012-11-14 15:52:34 +05:30
|
|
|
right_SlipSlip*abs(gdot_slip)) + & ! dot gamma_slip modulated by right-side slip factor
|
2018-06-02 02:26:20 +05:30
|
|
|
dot_product(param(instance)%matrix_SlipTwin(j,1:ntwin), &
|
2012-11-14 15:52:34 +05:30
|
|
|
right_SlipTwin*gdot_twin) ! dot gamma_twin modulated by right-side twin factor
|
2018-04-27 23:23:54 +05:30
|
|
|
dotState(instance)%sumGamma(of) = dotState(instance)%sumGamma(of) + &
|
2009-07-22 21:37:19 +05:30
|
|
|
abs(gdot_slip(j))
|
2018-04-27 23:23:54 +05:30
|
|
|
dotState(instance)%accshear_slip(j,of) = abs(gdot_slip(j))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo slipSystems2
|
|
|
|
enddo slipFamilies2
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
twinFamilies2: do f = 1_pInt,size(param(instance)%Ntwin,1)
|
2014-11-06 13:57:48 +05:30
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
twinSystems2: do i = 1_pInt,param(instance)%Ntwin(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j+1_pInt
|
2018-04-27 23:23:54 +05:30
|
|
|
dotState(instance)%s_twin(j,of) = & ! evolution of twin resistance j
|
2012-11-14 15:52:34 +05:30
|
|
|
c_TwinSlip * left_TwinSlip(j) * &
|
2018-06-02 02:26:20 +05:30
|
|
|
dot_product(param(instance)%matrix_TwinSlip(j,1:nslip), &
|
2012-11-14 15:52:34 +05:30
|
|
|
right_TwinSlip*abs(gdot_slip)) + & ! dot gamma_slip modulated by right-side slip factor
|
|
|
|
c_TwinTwin * left_TwinTwin(j) * &
|
2018-06-02 02:26:20 +05:30
|
|
|
dot_product(param(instance)%matrix_TwinTwin(j,1:ntwin), &
|
2012-11-14 15:52:34 +05:30
|
|
|
right_TwinTwin*gdot_twin) ! dot gamma_twin modulated by right-side twin factor
|
2018-04-27 23:23:54 +05:30
|
|
|
if (state(instance)%sumF(of) < 0.98_pReal) & ! ensure twin volume fractions stays below 1.0
|
|
|
|
dotState(instance)%sumF(of) = dotState(instance)%sumF(of) + &
|
2014-07-02 17:57:39 +05:30
|
|
|
gdot_twin(j)/lattice_shearTwin(index_myFamily+i,ph)
|
2018-04-27 23:23:54 +05:30
|
|
|
dotState(instance)%accshear_twin(j,of) = abs(gdot_twin(j))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo twinSystems2
|
|
|
|
enddo twinFamilies2
|
2014-07-07 19:51:58 +05:30
|
|
|
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end subroutine plastic_phenopowerlaw_dotState
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief return array of constitutive results
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2014-12-08 21:25:30 +05:30
|
|
|
function plastic_phenopowerlaw_postResults(Tstar_v,ipc,ip,el)
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
|
|
|
material_phase, &
|
2014-07-02 17:57:39 +05:30
|
|
|
plasticState, &
|
2016-01-15 05:49:44 +05:30
|
|
|
phaseAt, phasememberAt, &
|
2014-11-06 13:57:48 +05:30
|
|
|
phase_plasticityInstance
|
2013-07-01 11:40:42 +05:30
|
|
|
use lattice, only: &
|
|
|
|
lattice_Sslip_v, &
|
|
|
|
lattice_Stwin_v, &
|
|
|
|
lattice_maxNslipFamily, &
|
|
|
|
lattice_maxNtwinFamily, &
|
|
|
|
lattice_NslipSystem, &
|
2013-08-05 14:53:21 +05:30
|
|
|
lattice_NtwinSystem, &
|
2015-10-14 00:22:01 +05:30
|
|
|
lattice_NnonSchmid
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
implicit none
|
2014-03-13 12:13:49 +05:30
|
|
|
real(pReal), dimension(6), intent(in) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
Tstar_v !< 2nd Piola Kirchhoff stress tensor in Mandel notation
|
2014-03-13 12:13:49 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2013-07-01 11:40:42 +05:30
|
|
|
ipc, & !< component-ID of integration point
|
|
|
|
ip, & !< integration point
|
2014-05-22 20:46:05 +05:30
|
|
|
el !< element !< microstructure state
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
real(pReal), dimension(plasticState(material_phase(ipc,ip,el))%sizePostResults) :: &
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
integer(pInt) :: &
|
2014-07-02 17:57:39 +05:30
|
|
|
instance,ph, of, &
|
2013-07-01 11:40:42 +05:30
|
|
|
nSlip,nTwin, &
|
|
|
|
o,f,i,c,j,k, &
|
2018-05-01 01:00:53 +05:30
|
|
|
index_myFamily
|
2013-07-01 11:40:42 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
tau_slip_pos,tau_slip_neg,tau
|
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
|
|
|
ph = phaseAt(ipc,ip,el)
|
2014-07-02 17:57:39 +05:30
|
|
|
instance = phase_plasticityInstance(ph)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
nSlip= sum(param(instance)%nslip)
|
|
|
|
nTwin= sum(param(instance)%nTwin)
|
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults = 0.0_pReal
|
2009-07-22 21:37:19 +05:30
|
|
|
c = 0_pInt
|
|
|
|
|
2018-06-02 02:26:20 +05:30
|
|
|
outputsLoop: do o = 1_pInt,size(param(instance)%outputID)
|
|
|
|
select case(param(instance)%outputID(o))
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resistance_slip_ID)
|
2018-05-02 21:03:42 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt:c+nSlip) = state(instance)%s_slip(1:nSlip,of)
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nSlip
|
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (accumulatedshear_slip_ID)
|
2018-05-02 21:03:42 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt:c+nSlip) = state(instance)%accshear_slip(1:nSlip,of)
|
2013-02-06 23:39:11 +05:30
|
|
|
c = c + nSlip
|
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (shearrate_slip_ID)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
slipFamilies1: do f = 1_pInt,size(param(instance)%Nslip,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
slipSystems1: do i = 1_pInt,param(instance)%Nslip(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j + 1_pInt
|
2014-07-02 17:57:39 +05:30
|
|
|
tau_slip_pos = dot_product(Tstar_v,lattice_Sslip_v(1:6,1,index_myFamily+i,ph))
|
2013-01-22 04:41:16 +05:30
|
|
|
tau_slip_neg = tau_slip_pos
|
2015-10-14 00:22:01 +05:30
|
|
|
do k = 1,lattice_NnonSchmid(ph)
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_pos = tau_slip_pos +param(instance)%nonSchmidCoeff(k)* &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k,index_myFamily+i,ph))
|
2018-04-25 23:11:18 +05:30
|
|
|
tau_slip_neg = tau_slip_neg +param(instance)%nonSchmidCoeff(k)* &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,2*k+1,index_myFamily+i,ph))
|
2013-01-22 04:41:16 +05:30
|
|
|
enddo
|
2018-04-24 21:01:05 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+j) = param(instance)%gdot0_slip*0.5_pReal* &
|
2018-05-01 01:00:53 +05:30
|
|
|
((abs(tau_slip_pos)/state(instance)%s_slip(j,of))**param(instance)%n_slip &
|
2016-07-18 16:33:23 +05:30
|
|
|
*sign(1.0_pReal,tau_slip_pos) &
|
2018-05-01 01:00:53 +05:30
|
|
|
+(abs(tau_slip_neg)/(state(instance)%s_slip(j,of)))**param(instance)%n_slip &
|
2016-07-18 16:33:23 +05:30
|
|
|
*sign(1.0_pReal,tau_slip_neg))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo slipSystems1
|
|
|
|
enddo slipFamilies1
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nSlip
|
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resolvedstress_slip_ID)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-26 22:05:49 +05:30
|
|
|
slipFamilies2: do f = 1_pInt,size(param(instance)%Nslip,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NslipSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
slipSystems2: do i = 1_pInt,param(instance)%Nslip(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j + 1_pInt
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+j) = &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Sslip_v(1:6,1,index_myFamily+i,ph))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo slipSystems2
|
|
|
|
enddo slipFamilies2
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nSlip
|
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (totalshear_ID)
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt) = &
|
2018-05-01 01:00:53 +05:30
|
|
|
state(instance)%sumGamma(of)
|
2012-02-21 21:30:00 +05:30
|
|
|
c = c + 1_pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resistance_twin_ID)
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt:c+nTwin) = &
|
2018-05-02 21:03:42 +05:30
|
|
|
state(instance)%s_twin(1:nTwin,of)
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nTwin
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (accumulatedshear_twin_ID)
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt:c+nTwin) = &
|
2018-05-02 21:03:42 +05:30
|
|
|
state(instance)%accshear_twin(1:nTwin,of)
|
2013-02-06 23:39:11 +05:30
|
|
|
c = c + nTwin
|
2013-11-27 17:09:28 +05:30
|
|
|
case (shearrate_twin_ID)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
twinFamilies1: do f = 1_pInt,size(param(instance)%Ntwin,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
twinSystems1: do i = 1_pInt,param(instance)%Ntwin(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j + 1_pInt
|
2014-07-02 17:57:39 +05:30
|
|
|
tau = dot_product(Tstar_v,lattice_Stwin_v(1:6,index_myFamily+i,ph))
|
2018-05-01 01:00:53 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+j) = (1.0_pReal-state(instance)%sumF(of))*& ! 1-F
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%gdot0_twin*&
|
2018-05-01 01:00:53 +05:30
|
|
|
(abs(tau)/state(instance)%s_twin(j,of))**&
|
2018-04-24 21:01:05 +05:30
|
|
|
param(instance)%n_twin*max(0.0_pReal,sign(1.0_pReal,tau))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo twinSystems1
|
|
|
|
enddo twinFamilies1
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nTwin
|
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resolvedstress_twin_ID)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = 0_pInt
|
2018-04-25 23:11:18 +05:30
|
|
|
twinFamilies2: do f = 1_pInt,size(param(instance)%Ntwin,1)
|
2014-07-02 17:57:39 +05:30
|
|
|
index_myFamily = sum(lattice_NtwinSystem(1:f-1_pInt,ph)) ! at which index starts my family
|
2018-04-25 23:11:18 +05:30
|
|
|
twinSystems2: do i = 1_pInt,param(instance)%Ntwin(f)
|
2009-07-22 21:37:19 +05:30
|
|
|
j = j + 1_pInt
|
2014-12-08 21:25:30 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+j) = &
|
2014-07-02 17:57:39 +05:30
|
|
|
dot_product(Tstar_v,lattice_Stwin_v(1:6,index_myFamily+i,ph))
|
2014-11-06 13:57:48 +05:30
|
|
|
enddo twinSystems2
|
|
|
|
enddo twinFamilies2
|
2009-07-22 21:37:19 +05:30
|
|
|
c = c + nTwin
|
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
case (totalvolfrac_twin_ID)
|
2018-05-01 01:00:53 +05:30
|
|
|
plastic_phenopowerlaw_postResults(c+1_pInt) = state(instance)%sumF(of)
|
2012-02-21 21:30:00 +05:30
|
|
|
c = c + 1_pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
end select
|
2013-07-01 11:40:42 +05:30
|
|
|
enddo outputsLoop
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end function plastic_phenopowerlaw_postResults
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end module plastic_phenopowerlaw
|