2018-06-30 17:07:13 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
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
|
2018-06-27 13:31:36 +05:30
|
|
|
integer(pInt) :: &
|
|
|
|
totalNslip, &
|
|
|
|
totalNtwin
|
2018-04-24 21:01:05 +05:30
|
|
|
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, &
|
2018-08-26 00:57:14 +05:30
|
|
|
H_int, & !< per family hardening activity (optional) !ToDo: Better name!
|
|
|
|
shear_twin !< characteristic shear for twins
|
2018-06-27 13:31:36 +05:30
|
|
|
real(pReal), dimension(:,:), allocatable :: &
|
2018-04-24 21:01:05 +05:30
|
|
|
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-08-04 02:33:51 +05:30
|
|
|
real(pReal), dimension(:,:,:), allocatable :: &
|
2018-08-26 00:25:15 +05:30
|
|
|
Schmid_slip, &
|
|
|
|
Schmid_twin
|
2018-08-04 02:33:51 +05:30
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: &
|
|
|
|
nonSchmid_pos, &
|
|
|
|
nonSchmid_neg
|
2018-06-02 02:26:20 +05:30
|
|
|
integer(kind(undefined_ID)), dimension(:), allocatable :: &
|
2018-07-17 01:32:31 +05:30
|
|
|
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
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters), dimension(:), allocatable, 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, &
|
2018-06-30 17:07:13 +05:30
|
|
|
accshear_twin, &
|
|
|
|
whole
|
2015-10-30 21:18:30 +05:30
|
|
|
real(pReal), pointer, dimension(:) :: &
|
|
|
|
sumGamma, &
|
|
|
|
sumF
|
|
|
|
end type
|
|
|
|
|
2018-07-17 01:52:21 +05:30
|
|
|
type(tPhenopowerlawState), allocatable, dimension(:), private :: &
|
2015-10-30 21:18:30 +05:30
|
|
|
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: &
|
2018-04-25 23:11:18 +05:30
|
|
|
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, &
|
2018-06-27 00:38:13 +05:30
|
|
|
config_phase
|
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-27 12:42:33 +05:30
|
|
|
instance,p,j,k, f,o, i,&
|
2018-06-02 02:26:20 +05:30
|
|
|
NipcMyPhase, outputSize, &
|
2018-06-30 17:07:13 +05:30
|
|
|
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-27 13:31:36 +05:30
|
|
|
real(pReal), dimension(:,:), allocatable :: temp1, temp2
|
|
|
|
|
2018-06-27 12:42:33 +05:30
|
|
|
integer(pInt), dimension(0), parameter :: emptyIntArray = [integer(pInt)::]
|
|
|
|
real(pReal), dimension(0), parameter :: emptyRealArray = [real(pReal)::]
|
|
|
|
character(len=65536), dimension(0), parameter :: emptyStringArray = [character(len=65536)::]
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
2018-06-02 02:26:20 +05:30
|
|
|
|
2018-08-26 00:57:14 +05:30
|
|
|
integer(kind(undefined_ID)) :: &
|
2018-06-02 02:26:20 +05:30
|
|
|
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-27 12:42:33 +05:30
|
|
|
do p = 1_pInt, size(phase_plasticityInstance)
|
2018-06-27 13:31:36 +05:30
|
|
|
if (phase_plasticity(p) /= PLASTICITY_PHENOPOWERLAW_ID) cycle
|
|
|
|
instance = phase_plasticityInstance(p)
|
2018-07-17 01:32:31 +05:30
|
|
|
associate(prm => param(instance))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-08-04 02:33:51 +05:30
|
|
|
prm%Nslip = config_phase(p)%getInts('nslip',defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
if (size(prm%Nslip) > count(lattice_NslipSystem(:,p) > 0_pInt)) call IO_error(150_pInt,ext_msg='Nslip')
|
|
|
|
if (any(lattice_NslipSystem(1:size(prm%Nslip),p)-prm%Nslip < 0_pInt)) call IO_error(150_pInt,ext_msg='Nslip')
|
|
|
|
prm%totalNslip = sum(prm%Nslip)
|
|
|
|
|
|
|
|
if (prm%totalNslip > 0_pInt) then
|
|
|
|
prm%tau0_slip = config_phase(p)%getFloats('tau0_slip')
|
|
|
|
prm%tausat_slip = config_phase(p)%getFloats('tausat_slip')
|
|
|
|
prm%interaction_SlipSlip = spread(config_phase(p)%getFloats('interaction_slipslip'),2,1)
|
|
|
|
prm%H_int = config_phase(p)%getFloats('h_int',&
|
|
|
|
defaultVal=[(0.0_pReal,i=1_pInt,size(prm%Nslip))])
|
|
|
|
prm%nonSchmidCoeff = config_phase(p)%getFloats('nonschmid_coefficients',&
|
|
|
|
defaultVal = emptyRealArray )
|
|
|
|
|
|
|
|
prm%gdot0_slip = config_phase(p)%getFloat('gdot0_slip')
|
|
|
|
prm%n_slip = config_phase(p)%getFloat('n_slip')
|
|
|
|
prm%a_slip = config_phase(p)%getFloat('a_slip')
|
|
|
|
prm%h0_SlipSlip = config_phase(p)%getFloat('h0_slipslip')
|
|
|
|
endif
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-08-04 02:33:51 +05:30
|
|
|
prm%Ntwin = config_phase(p)%getInts('ntwin', defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
if (size(prm%Ntwin) > count(lattice_NtwinSystem(:,p) > 0_pInt)) call IO_error(150_pInt,ext_msg='Ntwin')
|
|
|
|
if (any(lattice_NtwinSystem(1:size(prm%Ntwin),p)-prm%Ntwin < 0_pInt)) call IO_error(150_pInt,ext_msg='Ntwin')
|
|
|
|
prm%totalNtwin = sum(prm%Ntwin)
|
|
|
|
|
|
|
|
if (prm%totalNtwin > 0_pInt) then
|
|
|
|
prm%tau0_twin = config_phase(p)%getFloats('tau0_twin')
|
|
|
|
prm%interaction_TwinTwin = spread(config_phase(p)%getFloats('interaction_twintwin'),2,1)
|
|
|
|
|
|
|
|
prm%gdot0_twin = config_phase(p)%getFloat('gdot0_twin')
|
|
|
|
prm%n_twin = config_phase(p)%getFloat('n_twin')
|
|
|
|
prm%spr = config_phase(p)%getFloat('s_pr')
|
|
|
|
prm%twinB = config_phase(p)%getFloat('twin_b')
|
|
|
|
prm%twinC = config_phase(p)%getFloat('twin_c')
|
|
|
|
prm%twinD = config_phase(p)%getFloat('twin_d')
|
|
|
|
prm%twinE = config_phase(p)%getFloat('twin_e')
|
|
|
|
prm%h0_TwinTwin = config_phase(p)%getFloat('h0_twintwin')
|
|
|
|
endif
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-06-27 13:31:36 +05:30
|
|
|
if (prm%totalNslip > 0_pInt .and. prm%totalNtwin > 0_pInt) then
|
|
|
|
prm%interaction_SlipTwin = spread(config_phase(p)%getFloats('interaction_sliptwin'),2,1)
|
|
|
|
prm%interaction_TwinSlip = spread(config_phase(p)%getFloats('interaction_twinslip'),2,1)
|
|
|
|
prm%h0_TwinSlip = config_phase(p)%getFloat('h0_twinslip')
|
|
|
|
endif
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%aTolResistance = config_phase(p)%getFloat('atol_resistance',defaultVal=1.0_pReal)
|
|
|
|
prm%aTolShear = config_phase(p)%getFloat('atol_shear',defaultVal=1.0e-6_pReal)
|
|
|
|
prm%aTolTwinfrac = config_phase(p)%getFloat('atol_twinfrac',defaultVal=1.0e-6_pReal)
|
|
|
|
|
|
|
|
outputs = config_phase(p)%getStrings('(output)',defaultVal=emptyStringArray)
|
|
|
|
allocate(prm%outputID(0))
|
|
|
|
do i=1_pInt, size(outputs)
|
|
|
|
outputID = undefined_ID
|
|
|
|
select case(outputs(i))
|
|
|
|
case ('resistance_slip')
|
|
|
|
outputID = resistance_slip_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('accumulatedshear_slip')
|
|
|
|
outputID = accumulatedshear_slip_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('shearrate_slip')
|
|
|
|
outputID = shearrate_slip_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('resolvedstress_slip')
|
|
|
|
outputID = resolvedstress_slip_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
case ('resistance_twin')
|
|
|
|
outputID = resistance_twin_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('accumulatedshear_twin')
|
|
|
|
outputID = accumulatedshear_twin_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('shearrate_twin')
|
|
|
|
outputID = shearrate_twin_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('resolvedstress_twin')
|
|
|
|
outputID = resolvedstress_twin_ID
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +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
|
|
|
|
prm%outputID = [prm%outputID , outputID]
|
|
|
|
endif
|
|
|
|
|
|
|
|
end do
|
|
|
|
|
|
|
|
extmsg = ''
|
2018-08-04 02:33:51 +05:30
|
|
|
if (prm%totalNslip > 0_pInt) then
|
2018-06-27 13:31:36 +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//')')
|
|
|
|
|
|
|
|
if (any(prm%tau0_slip < 0.0_pReal .and. prm%Nslip > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"tau0_slip "
|
|
|
|
if (any(prm%tausat_slip < prm%tau0_slip .and. prm%Nslip > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"tausat_slip "
|
|
|
|
|
|
|
|
if (prm%gdot0_slip <= 0.0_pReal) extmsg = trim(extmsg)//" gdot0_slip "
|
|
|
|
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-08-26 00:57:14 +05:30
|
|
|
|
|
|
|
prm%H_int = math_expand(prm%H_int,prm%Nslip)
|
|
|
|
prm%tausat_slip = math_expand(prm%tausat_slip,prm%Nslip)
|
2018-06-27 13:31:36 +05:30
|
|
|
endif
|
|
|
|
|
2018-08-04 02:33:51 +05:30
|
|
|
if (prm%totalNtwin > 0_pInt) then
|
2018-06-27 13:31:36 +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//')')
|
|
|
|
|
|
|
|
if (any(prm%tau0_twin < 0.0_pReal .and. prm%Ntwin > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"tau0_twin "
|
|
|
|
|
|
|
|
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?
|
|
|
|
endif
|
|
|
|
|
|
|
|
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-27 13:31:36 +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-08-03 18:23:40 +05:30
|
|
|
NipcMyPhase = count(material_phase == p) ! number of IPCs containing my phase
|
2018-06-27 13:39:19 +05:30
|
|
|
sizeState = size(['tau_slip ','accshear_slip']) * prm%TotalNslip &
|
|
|
|
+ size(['tau_twin ','accshear_twin']) * prm%TotalNtwin &
|
2018-06-27 13:31:36 +05:30
|
|
|
+ size(['sum(gamma)', 'sum(f) '])
|
|
|
|
|
|
|
|
sizeDotState = sizeState
|
|
|
|
plasticState(p)%sizeState = sizeState
|
|
|
|
plasticState(p)%sizeDotState = sizeDotState
|
|
|
|
plasticState(p)%sizePostResults = sum(plastic_phenopowerlaw_sizePostResult(:,instance))
|
2018-08-04 02:33:51 +05:30
|
|
|
plasticState(p)%nSlip = prm%totalNslip
|
|
|
|
plasticState(p)%nTwin = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
allocate(plasticState(p)%aTolState ( sizeState), source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%state0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%partionedState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%subState0 ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%state ( sizeState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
|
|
|
|
allocate(plasticState(p)%dotState (sizeDotState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%deltaState (0_pInt,NipcMyPhase), source=0.0_pReal)
|
|
|
|
if (any(numerics_integrator == 1_pInt)) then
|
|
|
|
allocate(plasticState(p)%previousDotState (sizeDotState,NipcMyPhase),source=0.0_pReal)
|
|
|
|
allocate(plasticState(p)%previousDotState2(sizeDotState,NipcMyPhase),source=0.0_pReal)
|
|
|
|
endif
|
|
|
|
if (any(numerics_integrator == 4_pInt)) &
|
|
|
|
allocate(plasticState(p)%RK4dotState (sizeDotState,NipcMyPhase), source=0.0_pReal)
|
|
|
|
if (any(numerics_integrator == 5_pInt)) &
|
|
|
|
allocate(plasticState(p)%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-08-04 02:33:51 +05:30
|
|
|
allocate(temp1(prm%totalNslip,prm%totalNslip),source = 0.0_pReal)
|
|
|
|
allocate(temp2(prm%totalNslip,prm%totalNtwin),source = 0.0_pReal)
|
2018-08-25 22:58:09 +05:30
|
|
|
allocate(prm%Schmid_slip(3,3,prm%totalNslip),source = 0.0_pReal)
|
2018-08-29 15:37:51 +05:30
|
|
|
allocate(prm%nonSchmid_pos(3,3,size(prm%nonSchmidCoeff),prm%totalNslip),source = 0.0_pReal)
|
|
|
|
allocate(prm%nonSchmid_neg(3,3,size(prm%nonSchmidCoeff),prm%totalNslip),source = 0.0_pReal)
|
2018-08-04 02:33:51 +05:30
|
|
|
i = 0_pInt
|
2018-06-27 13:31:36 +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)
|
2018-08-04 02:33:51 +05:30
|
|
|
i = i + 1_pInt
|
2018-08-29 11:48:32 +05:30
|
|
|
prm%Schmid_slip(1:3,1:3,i) = lattice_Sslip(1:3,1:3,1,sum(lattice_Nslipsystem(1:f-1,p))+j,p)
|
2018-08-29 15:37:51 +05:30
|
|
|
do k = 1,size(prm%nonSchmidCoeff)
|
2018-08-30 04:27:15 +05:30
|
|
|
prm%nonSchmid_pos(1:3,1:3,k,i) = lattice_Sslip(1:3,1:3,2*k, index_myFamily+j,p) &
|
2018-08-29 15:37:51 +05:30
|
|
|
* prm%nonSchmidCoeff(k)
|
2018-08-30 04:27:15 +05:30
|
|
|
prm%nonSchmid_neg(1:3,1:3,k,i) = lattice_Sslip(1:3,1:3,2*k+1,index_myFamily+j,p) &
|
2018-08-29 15:37:51 +05:30
|
|
|
* prm%nonSchmidCoeff(k)
|
|
|
|
enddo
|
2018-06-27 13:31:36 +05:30
|
|
|
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)
|
|
|
|
temp1(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_SlipSlip(lattice_interactionSlipSlip( &
|
|
|
|
sum(lattice_NslipSystem(1:f-1,p))+j, &
|
|
|
|
sum(lattice_NslipSystem(1:o-1,p))+k, &
|
|
|
|
p),1)
|
|
|
|
enddo otherSlipSystems; enddo otherSlipFamilies
|
|
|
|
|
|
|
|
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)
|
|
|
|
temp2(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_SlipTwin(lattice_interactionSlipTwin( &
|
|
|
|
sum(lattice_NslipSystem(1:f-1_pInt,p))+j, &
|
|
|
|
sum(lattice_NtwinSystem(1:o-1_pInt,p))+k, &
|
|
|
|
p),1)
|
|
|
|
enddo twinSystems; enddo twinFamilies
|
|
|
|
enddo mySlipSystems
|
|
|
|
enddo mySlipFamilies
|
|
|
|
prm%interaction_SlipSlip = temp1; deallocate(temp1)
|
|
|
|
prm%interaction_SlipTwin = temp2; deallocate(temp2)
|
|
|
|
|
|
|
|
|
2018-08-26 00:57:14 +05:30
|
|
|
allocate(temp1(prm%totalNtwin,prm%totalNslip),source = 0.0_pReal)
|
|
|
|
allocate(temp2(prm%totalNtwin,prm%totalNtwin),source = 0.0_pReal)
|
|
|
|
allocate(prm%Schmid_twin(3,3,prm%totalNtwin),source = 0.0_pReal)
|
|
|
|
allocate(prm%shear_twin(prm%totalNtwin),source = 0.0_pReal)
|
2018-08-26 00:25:15 +05:30
|
|
|
i = 0_pInt
|
2018-06-27 13:31:36 +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)
|
2018-08-26 00:25:15 +05:30
|
|
|
i = i + 1_pInt
|
2018-08-29 11:48:32 +05:30
|
|
|
prm%Schmid_twin(1:3,1:3,i) = lattice_Stwin(1:3,1:3,sum(lattice_NTwinsystem(1:f-1,p))+j,p)
|
|
|
|
prm%shear_twin(i) = lattice_shearTwin(sum(lattice_Ntwinsystem(1:f-1,p))+j,p)
|
2018-06-27 13:31:36 +05:30
|
|
|
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)
|
|
|
|
temp1(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_TwinSlip(lattice_interactionTwinSlip( &
|
|
|
|
sum(lattice_NtwinSystem(1:f-1_pInt,p))+j, &
|
|
|
|
sum(lattice_NslipSystem(1:o-1_pInt,p))+k, &
|
|
|
|
p),1)
|
|
|
|
enddo slipSystems; enddo slipFamilies
|
|
|
|
|
|
|
|
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)
|
|
|
|
temp2(index_myFamily+j,index_otherFamily+k) = &
|
|
|
|
prm%interaction_TwinTwin(lattice_interactionTwinTwin( &
|
|
|
|
sum(lattice_NtwinSystem(1:f-1_pInt,p))+j, &
|
|
|
|
sum(lattice_NtwinSystem(1:o-1_pInt,p))+k, &
|
|
|
|
p),1)
|
|
|
|
enddo otherTwinSystems; enddo otherTwinFamilies
|
|
|
|
enddo myTwinSystems
|
|
|
|
enddo myTwinFamilies
|
|
|
|
prm%interaction_TwinSlip = temp1; deallocate(temp1)
|
|
|
|
prm%interaction_TwinTwin = temp2; deallocate(temp2)
|
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
|
2018-06-27 13:31:36 +05:30
|
|
|
startIndex = 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = prm%totalNslip
|
|
|
|
state (instance)%s_slip => plasticState(p)%state (startIndex:endIndex,:)
|
2018-09-12 15:17:35 +05:30
|
|
|
state (instance)%s_slip = spread(math_expand(prm%tau0_slip, prm%Nslip), 2, NipcMyPhase)
|
2018-08-14 04:37:06 +05:30
|
|
|
dotState(instance)%s_slip => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%state0(startIndex:endIndex,:) = &
|
|
|
|
spread(math_expand(prm%tau0_slip, prm%Nslip), 2, NipcMyPhase)
|
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = endIndex + prm%totalNtwin
|
|
|
|
state (instance)%s_twin => plasticState(p)%state (startIndex:endIndex,:)
|
2018-09-12 15:17:35 +05:30
|
|
|
state (instance)%s_twin = spread(math_expand(prm%tau0_twin, prm%Ntwin), 2, NipcMyPhase)
|
2018-08-14 04:37:06 +05:30
|
|
|
dotState(instance)%s_twin => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%state0(startIndex:endIndex,:) = &
|
|
|
|
spread(math_expand(prm%tau0_twin, prm%Ntwin), 2, NipcMyPhase)
|
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
|
|
|
endIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
state (instance)%sumGamma => plasticState(p)%state (startIndex,:)
|
|
|
|
dotState(instance)%sumGamma => plasticState(p)%dotState(startIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolShear
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
|
|
|
endIndex = endIndex + 1_pInt
|
|
|
|
state (instance)%sumF=>plasticState(p)%state (startIndex,:)
|
|
|
|
dotState(instance)%sumF=>plasticState(p)%dotState(startIndex,:)
|
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolTwinFrac
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = endIndex + prm%totalNslip
|
|
|
|
state (instance)%accshear_slip => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%accshear_slip => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolShear
|
|
|
|
! global alias
|
2018-08-14 04:37:06 +05:30
|
|
|
plasticState(p)%slipRate => plasticState(p)%dotState(startIndex:endIndex,:)
|
|
|
|
plasticState(p)%accumulatedSlip => plasticState(p)%state(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = endIndex + prm%totalNtwin
|
|
|
|
state (instance)%accshear_twin => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
dotState(instance)%accshear_twin => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolShear
|
2018-06-30 17:07:13 +05:30
|
|
|
|
2018-08-14 04:37:06 +05:30
|
|
|
dotState(instance)%whole => plasticState(p)%dotState
|
2018-07-17 01:32:31 +05:30
|
|
|
|
|
|
|
end associate
|
2018-06-02 02:26:20 +05:30
|
|
|
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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-29 11:48:32 +05:30
|
|
|
subroutine plastic_phenopowerlaw_LpAndItsTangent(Lp,dLp_dMstar99,Mstar_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: &
|
2018-08-29 15:33:31 +05:30
|
|
|
math_Mandel6to33, &
|
2018-08-26 00:02:01 +05:30
|
|
|
math_Plain3333to99
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
2018-06-30 17:07:13 +05:30
|
|
|
phasememberAt, &
|
|
|
|
material_phase, &
|
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
|
2018-08-03 18:23:40 +05:30
|
|
|
real(pReal), dimension(9,9), intent(out) :: &
|
|
|
|
dLp_dMstar99 !< derivative of Lp with respect to the Mandel 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
|
2018-08-29 11:48:32 +05:30
|
|
|
real(pReal), dimension(6), intent(in) :: &
|
2018-08-31 20:47:45 +05:30
|
|
|
Mstar_v !< Mandel stress
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
integer(pInt) :: &
|
2015-10-30 21:18:30 +05:30
|
|
|
index_myFamily, &
|
2018-08-26 00:43:32 +05:30
|
|
|
j,k,l,m,n, &
|
|
|
|
of
|
2014-11-06 13:57:48 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
dgdot_dtauslip_pos,dgdot_dtauslip_neg, &
|
2018-09-12 12:53:11 +05:30
|
|
|
dgdot_dtautwin
|
2018-08-29 15:33:31 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
S !< Second-Piola Kirchhoff stress
|
2013-07-01 11:40:42 +05:30
|
|
|
real(pReal), dimension(3,3,3,3) :: &
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dS !< derivative of Lp with respect to Mstar as 4th order tensor
|
2018-09-12 12:53:11 +05:30
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNslip) :: &
|
|
|
|
tau_slip_pos,tau_slip_neg, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg
|
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNtwin) :: &
|
|
|
|
gdot_twin,tau_twin
|
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
|
|
|
type(tPhenopowerlawState) :: stt
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-08-26 00:43:32 +05:30
|
|
|
associate(prm => param(phase_plasticityInstance(material_phase(ipc,ip,el))),&
|
|
|
|
stt => state(phase_plasticityInstance(material_phase(ipc,ip,el))))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
Lp = 0.0_pReal
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dS = 0.0_pReal
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2018-08-29 15:33:31 +05:30
|
|
|
S = math_Mandel6to33(Mstar_v)
|
2018-08-31 20:47:45 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
|
|
|
call shearRates_slip(prm,stt,of,tau_slip_pos,tau_slip_neg,gdot_slip_pos,gdot_slip_neg)
|
2018-08-31 20:47:45 +05:30
|
|
|
slipSystems: do j = 1_pInt, prm%totalNslip
|
2018-09-12 12:53:11 +05:30
|
|
|
Lp = Lp + (1.0_pReal-stt%sumF(of))*(gdot_slip_pos(j)+gdot_slip_neg(j))*prm%Schmid_slip(1:3,1:3,j)
|
|
|
|
if (dNeq0(tau_slip_pos(j))) then
|
|
|
|
dgdot_dtauslip_pos = gdot_slip_pos(j)*prm%n_slip/tau_slip_pos(j)
|
2018-08-25 23:36:19 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dS(k,l,m,n) = dLp_dS(k,l,m,n) &
|
|
|
|
+ dgdot_dtauslip_pos * prm%Schmid_slip(k,l,j) &
|
|
|
|
*(prm%Schmid_slip(m,n,j) + sum(prm%nonSchmid_pos(m,n,:,j)))
|
2018-08-25 23:36:19 +05:30
|
|
|
endif
|
2018-09-12 12:53:11 +05:30
|
|
|
if (dNeq0(tau_slip_neg(j))) then
|
|
|
|
dgdot_dtauslip_neg = gdot_slip_neg(j)*prm%n_slip/tau_slip_neg(j)
|
2018-08-25 23:36:19 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dS(k,l,m,n) = dLp_dS(k,l,m,n) &
|
|
|
|
+ dgdot_dtauslip_neg * prm%Schmid_slip(k,l,j) &
|
|
|
|
*(prm%Schmid_slip(m,n,j) + sum(prm%nonSchmid_neg(m,n,:,j)))
|
2018-08-25 23:36:19 +05:30
|
|
|
endif
|
2018-08-31 20:47:45 +05:30
|
|
|
enddo slipSystems
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_twin(prm,S,tau_twin)
|
|
|
|
call shearRates_twin(prm,stt,of,tau_twin,gdot_twin)
|
2018-08-31 20:47:45 +05:30
|
|
|
twinSystems: do j = 1_pInt, prm%totalNtwin
|
2018-09-12 12:53:11 +05:30
|
|
|
Lp = Lp + gdot_twin(j)*prm%Schmid_twin(1:3,1:3,j)
|
|
|
|
if (dNeq0(gdot_twin(j))) then
|
|
|
|
dgdot_dtautwin = gdot_twin(j)*prm%n_twin/tau_twin(j)
|
2018-08-26 00:25:15 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dS(k,l,m,n) = dLp_dS(k,l,m,n) &
|
|
|
|
+ dgdot_dtautwin*prm%Schmid_twin(k,l,j)*prm%Schmid_twin(m,n,j)
|
2018-08-26 00:25:15 +05:30
|
|
|
endif
|
2018-08-31 20:47:45 +05:30
|
|
|
enddo twinSystems
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-08-31 20:47:45 +05:30
|
|
|
dLp_dMstar99 = math_Plain3333to99(dLp_dS)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
end associate
|
2014-12-08 21:25:30 +05:30
|
|
|
end subroutine plastic_phenopowerlaw_LpAndItsTangent
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-08-03 04:44:18 +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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-25 23:38:46 +05:30
|
|
|
subroutine plastic_phenopowerlaw_dotState(Mstar6,ipc,ip,el)
|
2018-08-25 23:49:02 +05:30
|
|
|
use math, only: &
|
|
|
|
math_Mandel6to33
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
|
|
|
material_phase, &
|
2018-06-30 17:41:05 +05:30
|
|
|
phasememberAt, &
|
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) :: &
|
2018-08-25 23:38:46 +05:30
|
|
|
Mstar6 !< Mandel stress
|
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) :: &
|
2018-06-30 17:41:05 +05:30
|
|
|
ph, &
|
2018-08-26 00:57:14 +05:30
|
|
|
j,k, &
|
2018-06-27 13:31:36 +05:30
|
|
|
index_myFamily, &
|
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, &
|
2018-09-12 12:53:11 +05:30
|
|
|
ssat_offset
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-08-29 15:33:31 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
S !< Second-Piola Kirchhoff stress
|
2018-06-30 17:41:05 +05:30
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNslip) :: &
|
2018-09-12 14:56:59 +05:30
|
|
|
left_SlipSlip,right_SlipSlip, &
|
2018-09-12 12:53:11 +05:30
|
|
|
tau_slip_pos,tau_slip_neg, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg
|
2018-06-30 17:41:05 +05:30
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNtwin) :: &
|
2018-09-12 14:56:59 +05:30
|
|
|
tau_twin
|
2018-06-30 17:41:05 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
|
|
|
type(tPhenopowerlawState) :: dst,stt
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2016-01-15 05:49:44 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
2018-08-26 00:43:32 +05:30
|
|
|
associate(prm => param(phase_plasticityInstance(material_phase(ipc,ip,el))), &
|
|
|
|
stt => state(phase_plasticityInstance(material_phase(ipc,ip,el))), &
|
|
|
|
dst => dotState(phase_plasticityInstance(material_phase(ipc,ip,el))))
|
2018-05-01 01:00:53 +05:30
|
|
|
|
2018-06-30 17:41:05 +05:30
|
|
|
dst%whole(:,of) = 0.0_pReal
|
2018-08-29 15:33:31 +05:30
|
|
|
S = math_Mandel6to33(Mstar6)
|
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-06-27 13:49:50 +05:30
|
|
|
c_SlipSlip = prm%h0_slipslip * (1.0_pReal + prm%twinC*stt%sumF(of)** prm%twinB)
|
|
|
|
c_TwinSlip = prm%h0_TwinSlip * stt%sumGamma(of)**prm%twinE
|
|
|
|
c_TwinTwin = prm%h0_TwinTwin * stt%sumF(of)**prm%twinD
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-26 00:25:15 +05:30
|
|
|
! calculate left and right vectors
|
2018-09-12 14:56:59 +05:30
|
|
|
left_SlipSlip = 1.0_pReal + prm%H_int
|
2018-06-27 13:31:36 +05:30
|
|
|
ssat_offset = prm%spr*sqrt(stt%sumF(of))
|
2018-09-12 14:56:59 +05:30
|
|
|
right_SlipSlip = abs(1.0_pReal-stt%s_slip(:,of) / (prm%tausat_slip+ssat_offset)) **prm%a_slip &
|
|
|
|
* sign(1.0_pReal,1.0_pReal-stt%s_slip(:,of) / (prm%tausat_slip+ssat_offset))
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-09-12 13:29:09 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! shear rates
|
|
|
|
call resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
|
|
|
call shearRates_slip(prm,stt,of,tau_slip_pos,tau_slip_neg,gdot_slip_pos,gdot_slip_neg)
|
2018-09-12 14:56:59 +05:30
|
|
|
dst%accshear_slip(:,of) = abs(gdot_slip_pos+gdot_slip_neg)
|
|
|
|
dst%sumGamma(of) = sum(dst%accshear_slip(:,of))
|
2018-09-12 13:29:09 +05:30
|
|
|
call resolvedStress_twin(prm,S,tau_twin)
|
2018-09-12 14:56:59 +05:30
|
|
|
call shearRates_twin(prm,stt,of,tau_twin,dst%accshear_twin(:,of))
|
|
|
|
if (stt%sumF(of) < 0.98_pReal) dst%sumF(of) = sum(dst%accshear_twin(:,of)/prm%shear_twin)
|
2018-09-12 13:29:09 +05:30
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-09-12 12:53:11 +05:30
|
|
|
! hardening
|
|
|
|
hardeningSlip: do j = 1_pInt, prm%totalNslip
|
2018-09-12 14:56:59 +05:30
|
|
|
dst%s_slip(j,of) = &
|
|
|
|
c_SlipSlip * left_SlipSlip(j) &
|
|
|
|
* dot_product(prm%interaction_SlipSlip(j,:),right_SlipSlip*dst%accshear_slip(:,of)) &
|
|
|
|
+ &
|
|
|
|
dot_product(prm%interaction_SlipTwin(j,:),dst%accshear_twin(:,of))
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo hardeningSlip
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
hardeningTwin: do j = 1_pInt, prm%totalNtwin
|
2018-09-12 13:29:09 +05:30
|
|
|
dst%s_twin(j,of) = &
|
2018-09-12 14:56:59 +05:30
|
|
|
c_TwinSlip &
|
|
|
|
* dot_product(prm%interaction_TwinSlip(j,:),dst%accshear_slip(:,of)) &
|
|
|
|
+ &
|
|
|
|
c_TwinTwin &
|
|
|
|
* dot_product(prm%interaction_TwinTwin(j,:),dst%accshear_twin(:,of))
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo hardeningTwin
|
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
end associate
|
2018-08-26 00:43:32 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end subroutine plastic_phenopowerlaw_dotState
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-06-30 17:41:05 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates shear rates on slip systems
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine shearRates_slip(prm,stt,of,tau_slip_pos,tau_slip_neg,gdot_slip_pos,gdot_slip_neg)
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
|
|
|
type(tPhenopowerlawState), intent(in) :: &
|
|
|
|
stt
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
of
|
|
|
|
real, dimension(prm%totalNslip), intent(in) :: &
|
|
|
|
tau_slip_pos, &
|
|
|
|
tau_slip_neg
|
|
|
|
real, dimension(prm%totalNslip), intent(out) :: &
|
|
|
|
gdot_slip_pos, &
|
|
|
|
gdot_slip_neg
|
|
|
|
|
|
|
|
gdot_slip_pos = 0.5_pReal*prm%gdot0_slip &
|
|
|
|
* sign(abs(tau_slip_pos/stt%s_slip(:,of))**prm%n_slip, tau_slip_pos)
|
|
|
|
gdot_slip_neg = 0.5_pReal*prm%gdot0_slip &
|
|
|
|
* sign(abs(tau_slip_neg/stt%s_slip(:,of))**prm%n_slip, tau_slip_neg)
|
|
|
|
|
|
|
|
end subroutine shearRates_slip
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates shear rates on twin systems
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine shearRates_twin(prm,stt,of,tau_twin,gdot_twin)
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
|
|
|
type(tPhenopowerlawState), intent(in) :: &
|
|
|
|
stt
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
of
|
|
|
|
real, dimension(prm%totalNtwin), intent(in) :: &
|
|
|
|
tau_twin
|
|
|
|
real, dimension(prm%totalNtwin), intent(out) :: &
|
|
|
|
gdot_twin
|
|
|
|
|
2018-09-12 13:29:09 +05:30
|
|
|
gdot_twin = merge((1.0_pReal-stt%sumF(of))*prm%gdot0_twin*(abs(tau_twin)/stt%s_twin(:,of))**prm%n_twin, &
|
2018-09-12 12:53:11 +05:30
|
|
|
0.0_pReal, tau_twin>0.0_pReal)
|
2018-09-12 13:29:09 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
end subroutine shearRates_twin
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates resolved stress on slip systems
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
S
|
|
|
|
real, dimension(prm%totalNslip), intent(out) :: &
|
|
|
|
tau_slip_pos, &
|
|
|
|
tau_slip_neg
|
|
|
|
|
|
|
|
integer(pInt) :: j, k
|
|
|
|
|
|
|
|
do j = 1_pInt, prm%totalNslip
|
|
|
|
tau_slip_pos = math_mul33xx33(S,prm%Schmid_slip(1:3,1:3,j))
|
|
|
|
tau_slip_neg = tau_slip_pos
|
|
|
|
do k = 1,size(prm%nonSchmidCoeff)
|
|
|
|
tau_slip_pos = tau_slip_pos + math_mul33xx33(S,prm%nonSchmid_pos(1:3,1:3,k,j))
|
|
|
|
tau_slip_neg = tau_slip_neg + math_mul33xx33(S,prm%nonSchmid_neg(1:3,1:3,k,j))
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
|
|
|
|
end subroutine resolvedStress_slip
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief calculates resolved stress on twin systems
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine resolvedStress_twin(prm,S,tau_twin)
|
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
S
|
|
|
|
real, dimension(prm%totalNtwin), intent(out) :: &
|
|
|
|
tau_twin
|
|
|
|
|
|
|
|
integer(pInt) :: j
|
|
|
|
|
|
|
|
do j = 1_pInt, prm%totalNtwin
|
|
|
|
tau_twin(j) = math_mul33xx33(S,prm%Schmid_twin(1:3,1:3,j))
|
|
|
|
enddo
|
2018-09-12 13:29:09 +05:30
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
end subroutine resolvedStress_twin
|
|
|
|
|
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief return array of constitutive results
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-08-30 04:27:15 +05:30
|
|
|
function plastic_phenopowerlaw_postResults(Mstar6,ipc,ip,el) result(postResults)
|
2013-07-01 11:40:42 +05:30
|
|
|
use material, only: &
|
|
|
|
material_phase, &
|
2014-07-02 17:57:39 +05:30
|
|
|
plasticState, &
|
2018-06-30 18:05:58 +05:30
|
|
|
phasememberAt, &
|
2014-11-06 13:57:48 +05:30
|
|
|
phase_plasticityInstance
|
2018-08-26 00:02:01 +05:30
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33, &
|
|
|
|
math_Mandel6to33
|
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) :: &
|
2018-08-25 23:38:46 +05:30
|
|
|
Mstar6 !< Mandel stress
|
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-08-29 15:33:31 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
S !< Second-Piola Kirchhoff stress
|
2018-06-02 02:26:20 +05:30
|
|
|
real(pReal), dimension(plasticState(material_phase(ipc,ip,el))%sizePostResults) :: &
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
integer(pInt) :: &
|
2018-08-26 09:50:48 +05:30
|
|
|
of, &
|
2018-09-12 13:29:09 +05:30
|
|
|
o,c
|
2018-09-12 12:53:11 +05:30
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNslip) :: &
|
|
|
|
tau_slip_pos,tau_slip_neg, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg
|
|
|
|
real(pReal), dimension(param(phase_plasticityInstance(material_phase(ipc,ip,el)))%totalNtwin) :: &
|
|
|
|
gdot_twin,tau_twin
|
2018-06-30 18:05:58 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
2018-08-26 00:43:32 +05:30
|
|
|
type(tPhenopowerlawState) :: stt
|
2018-06-30 18:05:58 +05:30
|
|
|
|
2018-08-26 09:50:48 +05:30
|
|
|
of = phasememberAt(ipc,ip,el)
|
2018-08-26 00:43:32 +05:30
|
|
|
associate( prm => param(phase_plasticityInstance(material_phase(ipc,ip,el))), &
|
|
|
|
stt => state(phase_plasticityInstance(material_phase(ipc,ip,el))) )
|
2018-06-02 02:26:20 +05:30
|
|
|
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults = 0.0_pReal
|
2009-07-22 21:37:19 +05:30
|
|
|
c = 0_pInt
|
2018-08-29 15:33:31 +05:30
|
|
|
S = math_Mandel6to33(Mstar6)
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-06-27 13:49:50 +05:30
|
|
|
outputsLoop: do o = 1_pInt,size(prm%outputID)
|
|
|
|
select case(prm%outputID(o))
|
2018-09-12 13:29:09 +05:30
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resistance_slip_ID)
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = stt%s_slip(1:prm%totalNslip,of)
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNslip
|
2013-11-27 17:09:28 +05:30
|
|
|
case (accumulatedshear_slip_ID)
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = stt%accshear_slip(1:prm%totalNslip,of)
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNslip
|
2013-11-27 17:09:28 +05:30
|
|
|
case (shearrate_slip_ID)
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
|
|
|
call shearRates_slip(prm,stt,of,tau_slip_pos,tau_slip_neg,gdot_slip_pos,gdot_slip_neg)
|
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = gdot_slip_pos+gdot_slip_neg
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNslip
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resolvedstress_slip_ID)
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = 0.5_pReal*(tau_slip_pos+tau_slip_neg)
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNslip
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resistance_twin_ID)
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = stt%s_twin(1:prm%totalNtwin,of)
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNtwin
|
2013-11-27 17:09:28 +05:30
|
|
|
case (accumulatedshear_twin_ID)
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = stt%accshear_twin(1:prm%totalNtwin,of)
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNtwin
|
2013-11-27 17:09:28 +05:30
|
|
|
case (shearrate_twin_ID)
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_twin(prm,S,tau_twin)
|
|
|
|
call shearRates_twin(prm,stt,of,tau_twin,gdot_twin)
|
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = gdot_twin
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNtwin
|
2013-11-27 17:09:28 +05:30
|
|
|
case (resolvedstress_twin_ID)
|
2018-09-12 12:53:11 +05:30
|
|
|
call resolvedStress_twin(prm,S,tau_twin)
|
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = tau_twin
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNtwin
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2014-11-21 14:24:20 +05:30
|
|
|
case (totalvolfrac_twin_ID)
|
2018-08-30 04:27:15 +05:30
|
|
|
postResults(c+1_pInt) = stt%sumF(of)
|
2012-02-21 21:30:00 +05:30
|
|
|
c = c + 1_pInt
|
2018-09-12 13:29:09 +05:30
|
|
|
case (totalshear_ID)
|
|
|
|
postResults(c+1_pInt) = stt%sumGamma(of)
|
|
|
|
c = c + 1_pInt
|
2009-07-22 21:37:19 +05:30
|
|
|
|
|
|
|
end select
|
2013-07-01 11:40:42 +05:30
|
|
|
enddo outputsLoop
|
2018-07-17 01:32:31 +05:30
|
|
|
end associate
|
2018-08-26 00:57:14 +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
|