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 :: &
|
2018-09-14 14:39:55 +05:30
|
|
|
xi_slip_0, & !< initial critical shear stress for slip
|
|
|
|
xi_twin_0, & !< initial critical shear stress for twin
|
|
|
|
xi_slip_sat, & !< maximum critical shear stress for slip
|
2018-04-24 21:01:05 +05:30
|
|
|
nonSchmidCoeff, &
|
2018-08-26 00:57:14 +05:30
|
|
|
H_int, & !< per family hardening activity (optional) !ToDo: Better name!
|
2018-10-05 00:34:19 +05:30
|
|
|
gamma_twin_char !< 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, &
|
2018-10-03 10:53:18 +05:30
|
|
|
Schmid_twin, &
|
2018-08-04 02:33:51 +05:30
|
|
|
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(:,:) :: &
|
2018-09-14 14:39:55 +05:30
|
|
|
xi_slip, &
|
|
|
|
xi_twin, &
|
|
|
|
gamma_slip, &
|
|
|
|
gamma_twin, &
|
2018-06-30 17:07:13 +05:30
|
|
|
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, &
|
2018-09-15 09:15:10 +05:30
|
|
|
PLASTICITY_PHENOPOWERLAW_LABEL, &
|
2013-12-19 14:19:47 +05:30
|
|
|
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-10-05 10:50:51 +05:30
|
|
|
instance,p,j,k, o, i,&
|
2018-06-02 02:26:20 +05:30
|
|
|
NipcMyPhase, outputSize, &
|
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 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-09-14 14:39:55 +05:30
|
|
|
type(tParameters) :: &
|
|
|
|
prm
|
|
|
|
type(tPhenopowerlawState) :: &
|
|
|
|
stt, &
|
|
|
|
dot
|
2018-06-02 02:26:20 +05:30
|
|
|
|
2018-08-26 00:57:14 +05:30
|
|
|
integer(kind(undefined_ID)) :: &
|
2018-10-05 08:24:47 +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-10-02 02:18:14 +05:30
|
|
|
extmsg = '', &
|
|
|
|
structure = ''
|
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-09-14 14:39:55 +05:30
|
|
|
associate(prm => param(instance),stt => state(instance),dot => dotState(instance))
|
2018-09-14 14:21:44 +05:30
|
|
|
extmsg = ''
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-10-02 02:18:14 +05:30
|
|
|
structure = config_phase(p)%getString('lattice_structure')
|
|
|
|
|
2018-09-14 14:21:44 +05:30
|
|
|
prm%Nslip = config_phase(p)%getInts('nslip',defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%totalNslip = sum(prm%Nslip)
|
2018-09-14 14:21:44 +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')
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-09-15 09:15:10 +05:30
|
|
|
slipActive: if (prm%totalNslip > 0_pInt) then
|
2018-10-02 02:18:14 +05:30
|
|
|
|
|
|
|
prm%Schmid_slip = lattice_SchmidMatrix_slip(prm%Nslip,structure(1:3),&
|
|
|
|
config_phase(p)%getFloat('c/a',defaultVal=0.0_pReal))
|
2018-09-14 14:21:44 +05:30
|
|
|
! reading in slip related parameters
|
2018-09-14 14:39:55 +05:30
|
|
|
prm%xi_slip_0 = config_phase(p)%getFloats('tau0_slip', requiredShape=shape(prm%Nslip))
|
|
|
|
prm%xi_slip_sat = config_phase(p)%getFloats('tausat_slip', requiredShape=shape(prm%Nslip))
|
2018-10-07 22:10:02 +05:30
|
|
|
prm%interaction_SlipSlip = lattice_interaction_SlipSlip(prm%Nslip,config_phase(p)%getFloats('interaction_slipslip'), &
|
2018-10-02 02:32:31 +05:30
|
|
|
structure(1:3))
|
2018-09-14 14:21:44 +05:30
|
|
|
prm%H_int = config_phase(p)%getFloats('h_int', requiredShape=shape(prm%Nslip), &
|
|
|
|
defaultVal=[(0.0_pReal,i=1_pInt,size(prm%Nslip))])
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%nonSchmidCoeff = config_phase(p)%getFloats('nonschmid_coefficients',&
|
2018-09-14 14:21:44 +05:30
|
|
|
defaultVal = emptyRealArray )
|
2018-10-06 02:34:06 +05:30
|
|
|
if(structure=='bcc') then
|
|
|
|
prm%nonSchmid_pos = lattice_nonSchmidMatrix(prm%Nslip,prm%nonSchmidCoeff,+1_pInt)
|
|
|
|
prm%nonSchmid_neg = lattice_nonSchmidMatrix(prm%Nslip,prm%nonSchmidCoeff,-1_pInt)
|
|
|
|
else
|
|
|
|
prm%nonSchmid_pos = prm%Schmid_slip
|
|
|
|
prm%nonSchmid_neg = prm%Schmid_slip
|
|
|
|
endif
|
2018-06-27 13:31:36 +05:30
|
|
|
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')
|
2018-09-14 14:21:44 +05:30
|
|
|
|
|
|
|
! sanity checks for slip related parameters
|
2018-09-14 14:39:55 +05:30
|
|
|
if (any(prm%xi_slip_0 < 0.0_pReal .and. prm%Nslip > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"xi_slip_0 "
|
|
|
|
if (any(prm%xi_slip_sat < prm%xi_slip_0 .and. prm%Nslip > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"xi_slip_sat "
|
2018-09-14 14:21:44 +05:30
|
|
|
|
|
|
|
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?
|
|
|
|
|
|
|
|
! expand slip related parameters from system => family
|
2018-09-14 14:39:55 +05:30
|
|
|
prm%xi_slip_0 = math_expand(prm%xi_slip_0,prm%Nslip)
|
|
|
|
prm%xi_slip_sat = math_expand(prm%xi_slip_sat,prm%Nslip)
|
2018-09-14 14:21:44 +05:30
|
|
|
prm%H_int = math_expand(prm%H_int,prm%Nslip)
|
2018-09-15 09:15:10 +05:30
|
|
|
else slipActive
|
2018-10-04 10:47:00 +05:30
|
|
|
allocate(prm%interaction_SlipSlip(0,0))
|
2018-09-15 09:15:10 +05:30
|
|
|
allocate(prm%xi_slip_0(0))
|
|
|
|
endif slipActive
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-09-14 14:21:44 +05:30
|
|
|
prm%Ntwin = config_phase(p)%getInts('ntwin', defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%totalNtwin = sum(prm%Ntwin)
|
2018-09-14 14:21:44 +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')
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-09-15 09:15:10 +05:30
|
|
|
twinActive: if (prm%totalNtwin > 0_pInt) then
|
2018-10-02 02:18:14 +05:30
|
|
|
prm%Schmid_twin = lattice_SchmidMatrix_twin(prm%Ntwin,structure(1:3),&
|
|
|
|
config_phase(p)%getFloat('c/a',defaultVal=0.0_pReal))
|
2018-09-14 14:21:44 +05:30
|
|
|
! reading in twin related parameters
|
2018-09-15 09:15:10 +05:30
|
|
|
prm%xi_twin_0 = config_phase(p)%getFloats('tau0_twin',requiredShape=shape(prm%Ntwin))
|
2018-10-07 22:10:02 +05:30
|
|
|
prm%interaction_TwinTwin = lattice_interaction_TwinTwin(prm%Ntwin,config_phase(p)%getFloats('interaction_twintwin'), &
|
2018-10-02 02:32:31 +05:30
|
|
|
structure(1:3))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
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%h0_TwinTwin = config_phase(p)%getFloat('h0_twintwin')
|
2018-09-14 14:21:44 +05:30
|
|
|
|
|
|
|
! sanity checks for twin related parameters
|
2018-09-14 14:39:55 +05:30
|
|
|
if (any(prm%xi_twin_0 < 0.0_pReal .and. prm%Ntwin > 0_pInt)) &
|
|
|
|
extmsg = trim(extmsg)//"xi_twin_0 "
|
2018-09-14 14:21:44 +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?
|
|
|
|
|
|
|
|
! expand slip related parameters from system => family
|
2018-09-14 14:39:55 +05:30
|
|
|
prm%xi_twin_0 = math_expand(prm%xi_twin_0,prm%Ntwin)
|
2018-09-15 09:15:10 +05:30
|
|
|
else twinActive
|
2018-10-04 10:47:00 +05:30
|
|
|
allocate(prm%interaction_TwinTwin(0,0))
|
2018-09-15 09:15:10 +05:30
|
|
|
allocate(prm%xi_twin_0(0))
|
|
|
|
endif twinActive
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-10-05 08:39:31 +05:30
|
|
|
prm%gamma_twin_char = lattice_characteristicShear_twin(prm%Ntwin,structure(1:3),&
|
|
|
|
config_phase(p)%getFloat('c/a',defaultVal=0.0_pReal))
|
|
|
|
|
2018-09-15 09:15:10 +05:30
|
|
|
slipAndTwinActive: if (prm%totalNslip > 0_pInt .and. prm%totalNtwin > 0_pInt) then
|
2018-10-07 22:10:02 +05:30
|
|
|
prm%interaction_SlipTwin = lattice_interaction_SlipTwin(prm%Nslip,prm%Ntwin,&
|
2018-10-03 11:28:02 +05:30
|
|
|
config_phase(p)%getFloats('interaction_sliptwin'), &
|
|
|
|
structure(1:3))
|
2018-10-07 22:10:02 +05:30
|
|
|
prm%interaction_TwinSlip = lattice_interaction_TwinSlip(prm%Ntwin,prm%Nslip,&
|
2018-10-03 11:28:02 +05:30
|
|
|
config_phase(p)%getFloats('interaction_twinslip'), &
|
|
|
|
structure(1:3))
|
2018-09-15 09:15:10 +05:30
|
|
|
else slipAndTwinActive
|
2018-10-04 10:47:00 +05:30
|
|
|
allocate(prm%interaction_SlipTwin(prm%totalNslip,prm%TotalNtwin)) ! at least one dimension 0
|
|
|
|
allocate(prm%interaction_TwinSlip(prm%totalNtwin,prm%TotalNslip)) ! at least one dimension 0
|
2018-09-14 14:21:44 +05:30
|
|
|
prm%h0_TwinSlip = 0.0_pReal
|
2018-09-15 09:15:10 +05:30
|
|
|
endif slipAndTwinActive
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-09-14 14:21:44 +05:30
|
|
|
! optional parameters that should be defined
|
2018-09-12 15:38:03 +05:30
|
|
|
prm%twinB = config_phase(p)%getFloat('twin_b',defaultVal=1.0_pReal)
|
|
|
|
prm%twinC = config_phase(p)%getFloat('twin_c',defaultVal=0.0_pReal)
|
|
|
|
prm%twinD = config_phase(p)%getFloat('twin_d',defaultVal=0.0_pReal)
|
|
|
|
prm%twinE = config_phase(p)%getFloat('twin_e',defaultVal=0.0_pReal)
|
|
|
|
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%aTolResistance = config_phase(p)%getFloat('atol_resistance',defaultVal=1.0_pReal)
|
2018-09-14 14:21:44 +05:30
|
|
|
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)
|
|
|
|
|
|
|
|
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 "
|
|
|
|
|
|
|
|
if (extmsg /= '') call IO_error(211_pInt,ip=instance,&
|
|
|
|
ext_msg=trim(extmsg)//'('//PLASTICITY_PHENOPOWERLAW_label//')')
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
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')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(resistance_slip_ID,undefined_ID,prm%totalNslip>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('accumulatedshear_slip')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(accumulatedshear_slip_ID,undefined_ID,prm%totalNslip>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('shearrate_slip')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(shearrate_slip_ID,undefined_ID,prm%totalNslip>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('resolvedstress_slip')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(resolvedstress_slip_ID,undefined_ID,prm%totalNslip>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNslip
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
case ('resistance_twin')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(resistance_twin_ID,undefined_ID,prm%totalNtwin>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('accumulatedshear_twin')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(accumulatedshear_twin_ID,undefined_ID,prm%totalNtwin>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('shearrate_twin')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(shearrate_twin_ID,undefined_ID,prm%totalNtwin>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
case ('resolvedstress_twin')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(resolvedstress_twin_ID,undefined_ID,prm%totalNtwin>0_pInt)
|
2018-08-04 02:33:51 +05:30
|
|
|
outputSize = prm%totalNtwin
|
2018-06-27 13:31:36 +05:30
|
|
|
|
|
|
|
case ('totalshear')
|
2018-09-13 09:11:44 +05:30
|
|
|
outputID = merge(totalshear_ID,undefined_ID,prm%totalNslip>0_pInt)
|
|
|
|
outputSize = 1_pInt
|
|
|
|
case ('totalvolfrac_twin')
|
|
|
|
outputID = merge(totalvolfrac_twin_ID,undefined_ID,prm%totalNtwin>0_pInt)
|
2018-06-27 13:31:36 +05:30
|
|
|
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
|
|
|
|
|
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-09-14 14:39:55 +05:30
|
|
|
sizeState = size(['tau_slip ','gamma_slip']) * prm%TotalNslip &
|
|
|
|
+ size(['tau_twin ','gamma_twin']) * prm%TotalNtwin &
|
2018-10-03 10:43:30 +05:30
|
|
|
+ size(['sum(gamma)','sum(f) '])
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-10-03 11:28:02 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! ToDo: This could be done by a function (in constitutive?)
|
2018-06-27 13:31:36 +05:30
|
|
|
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
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! 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
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%xi_slip => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
stt%xi_slip = spread(prm%xi_slip_0, 2, NipcMyPhase)
|
|
|
|
dot%xi_slip => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = endIndex + prm%totalNtwin
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%xi_twin => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
stt%xi_twin = spread(prm%xi_twin_0, 2, NipcMyPhase)
|
|
|
|
dot%xi_twin => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolResistance
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
|
|
|
endIndex = endIndex + 1_pInt
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%sumGamma => plasticState(p)%state (startIndex,:)
|
|
|
|
dot%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
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%sumF=>plasticState(p)%state (startIndex,:)
|
|
|
|
dot%sumF=>plasticState(p)%dotState(startIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolTwinFrac
|
|
|
|
|
|
|
|
startIndex = endIndex + 1_pInt
|
2018-08-14 04:37:06 +05:30
|
|
|
endIndex = endIndex + prm%totalNslip
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%gamma_slip => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
dot%gamma_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
|
2018-09-14 14:39:55 +05:30
|
|
|
stt%gamma_twin => plasticState(p)%state (startIndex:endIndex,:)
|
|
|
|
dot%gamma_twin => plasticState(p)%dotState(startIndex:endIndex,:)
|
2018-06-27 13:31:36 +05:30
|
|
|
plasticState(p)%aTolState(startIndex:endIndex) = prm%aTolShear
|
2018-09-14 14:39:55 +05:30
|
|
|
|
2018-09-15 09:15:10 +05:30
|
|
|
plasticState(p)%state0 = plasticState(p)%state
|
2018-09-14 14:39:55 +05:30
|
|
|
dot%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-09-17 02:08:57 +05:30
|
|
|
subroutine plastic_phenopowerlaw_LpAndItsTangent(Lp,dLp_dMp,Mp,instance,of)
|
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-09-17 01:46:06 +05:30
|
|
|
real(pReal), dimension(3,3,3,3), intent(out) :: &
|
|
|
|
dLp_dMp !< derivative of Lp with respect to the Mandel stress
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-09-17 01:46:06 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
Mp !< Mandel stress
|
2018-09-17 02:08:57 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
instance, &
|
|
|
|
of
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2013-07-01 11:40:42 +05:30
|
|
|
integer(pInt) :: &
|
2018-09-17 02:08:57 +05:30
|
|
|
i,k,l,m,n
|
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtauslip_pos,dgdot_dtauslip_neg, &
|
2018-09-12 12:53:11 +05:30
|
|
|
gdot_slip_pos,gdot_slip_neg
|
2018-09-17 02:08:57 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNtwin) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
gdot_twin,dgdot_dtautwin
|
2018-09-12 12:53:11 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
|
|
|
type(tPhenopowerlawState) :: stt
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-09-17 02:08:57 +05:30
|
|
|
associate(prm => param(instance), stt => state(instance))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
Lp = 0.0_pReal
|
2018-09-17 01:46:06 +05:30
|
|
|
dLp_dMp = 0.0_pReal
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2018-09-17 01:46:06 +05:30
|
|
|
call kinetics_slip(prm,stt,of,Mp,gdot_slip_pos,gdot_slip_neg,dgdot_dtauslip_pos,dgdot_dtauslip_neg)
|
2018-09-14 13:29:04 +05:30
|
|
|
slipSystems: do i = 1_pInt, prm%totalNslip
|
|
|
|
Lp = Lp + (1.0_pReal-stt%sumF(of))*(gdot_slip_pos(i)+gdot_slip_neg(i))*prm%Schmid_slip(1:3,1:3,i)
|
2018-09-12 16:35:23 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-09-17 01:46:06 +05:30
|
|
|
dLp_dMp(k,l,m,n) = dLp_dMp(k,l,m,n) &
|
2018-10-05 00:34:19 +05:30
|
|
|
+ dgdot_dtauslip_pos(i) * prm%Schmid_slip(k,l,i) * prm%nonSchmid_pos(m,n,i) &
|
|
|
|
+ dgdot_dtauslip_neg(i) * prm%Schmid_slip(k,l,i) * prm%nonSchmid_neg(m,n,i)
|
2018-08-31 20:47:45 +05:30
|
|
|
enddo slipSystems
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-09-17 01:46:06 +05:30
|
|
|
call kinetics_twin(prm,stt,of,Mp,gdot_twin,dgdot_dtautwin)
|
2018-09-14 13:29:04 +05:30
|
|
|
twinSystems: do i = 1_pInt, prm%totalNtwin
|
|
|
|
Lp = Lp + gdot_twin(i)*prm%Schmid_twin(1:3,1:3,i)
|
2018-09-12 16:35:23 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-09-17 01:46:06 +05:30
|
|
|
dLp_dMp(k,l,m,n) = dLp_dMp(k,l,m,n) &
|
|
|
|
+ dgdot_dtautwin(i)*prm%Schmid_twin(k,l,i)*prm%Schmid_twin(m,n,i)
|
2018-08-31 20:47:45 +05:30
|
|
|
enddo twinSystems
|
2018-09-12 16:35:23 +05:30
|
|
|
end associate
|
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
|
|
|
|
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-09-17 02:08:57 +05:30
|
|
|
subroutine plastic_phenopowerlaw_dotState(Mp,instance,of)
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
implicit none
|
2018-09-17 01:46:06 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
Mp !< Mandel stress
|
2014-03-13 12:13:49 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2018-09-17 02:08:57 +05:30
|
|
|
instance, &
|
|
|
|
of
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2013-10-08 21:57:26 +05:30
|
|
|
integer(pInt) :: &
|
2018-10-03 10:43:30 +05:30
|
|
|
i
|
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-14 14:39:55 +05:30
|
|
|
xi_slip_sat_offset
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-09-17 02:08:57 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2018-09-12 14:56:59 +05:30
|
|
|
left_SlipSlip,right_SlipSlip, &
|
2018-09-12 12:53:11 +05:30
|
|
|
gdot_slip_pos,gdot_slip_neg
|
2018-06-30 17:41:05 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
type(tParameters) :: prm
|
2018-09-14 13:48:44 +05:30
|
|
|
type(tPhenopowerlawState) :: dot,stt
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-09-17 02:08:57 +05:30
|
|
|
associate(prm => param(instance), stt => state(instance), dot => dotState(instance))
|
2018-05-01 01:00:53 +05:30
|
|
|
|
2018-09-14 13:48:44 +05:30
|
|
|
dot%whole(:,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-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-09-14 14:39:55 +05:30
|
|
|
xi_slip_sat_offset = prm%spr*sqrt(stt%sumF(of))
|
|
|
|
right_SlipSlip = abs(1.0_pReal-stt%xi_slip(:,of) / (prm%xi_slip_sat+xi_slip_sat_offset)) **prm%a_slip &
|
|
|
|
* sign(1.0_pReal,1.0_pReal-stt%xi_slip(:,of) / (prm%xi_slip_sat+xi_slip_sat_offset))
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-09-12 13:29:09 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! shear rates
|
2018-09-17 01:46:06 +05:30
|
|
|
call kinetics_slip(prm,stt,of,Mp,gdot_slip_pos,gdot_slip_neg)
|
2018-09-14 14:39:55 +05:30
|
|
|
dot%gamma_slip(:,of) = abs(gdot_slip_pos+gdot_slip_neg)
|
|
|
|
dot%sumGamma(of) = sum(dot%gamma_slip(:,of))
|
2018-09-17 01:46:06 +05:30
|
|
|
call kinetics_twin(prm,stt,of,Mp,dot%gamma_twin(:,of))
|
2018-09-14 14:39:55 +05:30
|
|
|
if (stt%sumF(of) < 0.98_pReal) dot%sumF(of) = sum(dot%gamma_twin(:,of)/prm%gamma_twin_char)
|
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
|
2018-09-14 13:29:04 +05:30
|
|
|
hardeningSlip: do i = 1_pInt, prm%totalNslip
|
2018-09-14 14:39:55 +05:30
|
|
|
dot%xi_slip(i,of) = &
|
2018-09-14 13:29:04 +05:30
|
|
|
c_SlipSlip * left_SlipSlip(i) &
|
2018-09-14 14:39:55 +05:30
|
|
|
* dot_product(prm%interaction_SlipSlip(i,:),right_SlipSlip*dot%gamma_slip(:,of)) &
|
|
|
|
+ &
|
|
|
|
dot_product(prm%interaction_SlipTwin(i,:),dot%gamma_twin(:,of))
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo hardeningSlip
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2018-09-14 13:29:04 +05:30
|
|
|
hardeningTwin: do i = 1_pInt, prm%totalNtwin
|
2018-09-14 14:39:55 +05:30
|
|
|
dot%xi_twin(i,of) = &
|
2018-09-12 14:56:59 +05:30
|
|
|
c_TwinSlip &
|
2018-09-14 14:39:55 +05:30
|
|
|
* dot_product(prm%interaction_TwinSlip(i,:),dot%gamma_slip(:,of)) &
|
2018-09-12 14:56:59 +05:30
|
|
|
+ &
|
|
|
|
c_TwinTwin &
|
2018-09-14 14:39:55 +05:30
|
|
|
* dot_product(prm%interaction_TwinTwin(i,:),dot%gamma_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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-09-14 13:38:36 +05:30
|
|
|
!> @brief calculates shear rates on slip systems and derivatives with respect to resolved stress
|
2018-09-14 14:39:55 +05:30
|
|
|
!> @details: Shear rates are calculated only optionally. NOTE: Agains the common convention, the
|
2018-09-14 13:38:36 +05:30
|
|
|
!> result (i.e. intent(out)) variables are the last to have the optional arguments at the end
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-10-05 10:08:20 +05:30
|
|
|
pure subroutine kinetics_slip(prm,stt,of,Mp,gdot_slip_pos,gdot_slip_neg, &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_slip_pos,dgdot_dtau_slip_neg)
|
|
|
|
use prec, only: &
|
|
|
|
dNeq0
|
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
2018-09-12 12:53:11 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
|
|
|
type(tPhenopowerlawState), intent(in) :: &
|
|
|
|
stt
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
of
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNslip), intent(out) :: &
|
2018-09-12 12:53:11 +05:30
|
|
|
gdot_slip_pos, &
|
|
|
|
gdot_slip_neg
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNslip), optional, intent(out) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_slip_pos, &
|
|
|
|
dgdot_dtau_slip_neg
|
2018-09-12 12:53:11 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
2018-09-17 01:46:06 +05:30
|
|
|
Mp
|
2018-09-12 16:35:23 +05:30
|
|
|
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNslip) :: &
|
2018-09-12 12:53:11 +05:30
|
|
|
tau_slip_pos, &
|
|
|
|
tau_slip_neg
|
2018-10-03 10:53:18 +05:30
|
|
|
integer(pInt) :: i
|
2018-09-12 15:56:33 +05:30
|
|
|
|
|
|
|
do i = 1_pInt, prm%totalNslip
|
2018-10-03 10:53:18 +05:30
|
|
|
tau_slip_pos(i) = math_mul33xx33(Mp,prm%nonSchmid_pos(1:3,1:3,i))
|
|
|
|
tau_slip_neg(i) = math_mul33xx33(Mp,prm%nonSchmid_neg(1:3,1:3,i))
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo
|
|
|
|
|
2018-09-12 16:35:23 +05:30
|
|
|
gdot_slip_pos = 0.5_pReal*prm%gdot0_slip &
|
2018-09-14 14:39:55 +05:30
|
|
|
* sign(abs(tau_slip_pos/stt%xi_slip(:,of))**prm%n_slip, tau_slip_pos)
|
2018-09-12 16:35:23 +05:30
|
|
|
gdot_slip_neg = 0.5_pReal*prm%gdot0_slip &
|
2018-09-14 14:39:55 +05:30
|
|
|
* sign(abs(tau_slip_neg/stt%xi_slip(:,of))**prm%n_slip, tau_slip_neg)
|
2018-09-12 16:35:23 +05:30
|
|
|
|
2018-09-14 14:39:55 +05:30
|
|
|
if (present(dgdot_dtau_slip_pos)) then
|
2018-09-12 16:35:23 +05:30
|
|
|
where(dNeq0(tau_slip_pos))
|
|
|
|
dgdot_dtau_slip_pos = gdot_slip_pos*prm%n_slip/tau_slip_pos
|
|
|
|
else where
|
|
|
|
dgdot_dtau_slip_pos = 0.0_pReal
|
|
|
|
end where
|
|
|
|
endif
|
2018-09-14 14:39:55 +05:30
|
|
|
if (present(dgdot_dtau_slip_neg)) then
|
2018-09-12 16:35:23 +05:30
|
|
|
where(dNeq0(tau_slip_neg))
|
|
|
|
dgdot_dtau_slip_neg = gdot_slip_neg*prm%n_slip/tau_slip_neg
|
|
|
|
else where
|
|
|
|
dgdot_dtau_slip_neg = 0.0_pReal
|
|
|
|
end where
|
|
|
|
endif
|
|
|
|
|
|
|
|
end subroutine kinetics_slip
|
2018-09-12 12:53:11 +05:30
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-09-14 13:38:36 +05:30
|
|
|
!> @brief calculates shear rates on twin systems and derivatives with respect to resolved stress
|
2018-09-14 14:39:55 +05:30
|
|
|
!> @details: Shear rates are calculated only optionally. NOTE: Agains the common convention, the
|
2018-09-14 13:38:36 +05:30
|
|
|
!> result (i.e. intent(out)) variables are the last to have the optional arguments at the end
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-10-05 10:08:20 +05:30
|
|
|
pure subroutine kinetics_twin(prm,stt,of,Mp,gdot_twin,dgdot_dtau_twin)
|
2018-09-12 16:35:23 +05:30
|
|
|
use prec, only: &
|
|
|
|
dNeq0
|
2018-09-12 12:53:11 +05:30
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
type(tParameters), intent(in) :: &
|
|
|
|
prm
|
2018-09-12 16:35:23 +05:30
|
|
|
type(tPhenopowerlawState), intent(in) :: &
|
|
|
|
stt
|
|
|
|
integer(pInt), intent(in) :: &
|
|
|
|
of
|
2018-09-12 12:53:11 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
2018-09-17 01:46:06 +05:30
|
|
|
Mp
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNtwin), intent(out) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
gdot_twin
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNtwin), optional, intent(out) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_twin
|
2018-09-12 12:53:11 +05:30
|
|
|
|
2018-09-13 09:19:57 +05:30
|
|
|
real(pReal), dimension(prm%totalNtwin) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
tau_twin
|
2018-09-12 15:56:33 +05:30
|
|
|
integer(pInt) :: i
|
2018-09-13 09:19:57 +05:30
|
|
|
|
2018-09-12 15:56:33 +05:30
|
|
|
do i = 1_pInt, prm%totalNtwin
|
2018-09-17 01:46:06 +05:30
|
|
|
tau_twin(i) = math_mul33xx33(Mp,prm%Schmid_twin(1:3,1:3,i))
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo
|
2018-09-14 14:39:55 +05:30
|
|
|
gdot_twin = merge((1.0_pReal-stt%sumF(of))*prm%gdot0_twin*(abs(tau_twin)/stt%xi_twin(:,of))**prm%n_twin, &
|
2018-09-14 13:38:36 +05:30
|
|
|
0.0_pReal, tau_twin>0.0_pReal)
|
|
|
|
|
2018-09-14 14:39:55 +05:30
|
|
|
if (present(dgdot_dtau_twin)) then
|
2018-09-12 16:35:23 +05:30
|
|
|
where(dNeq0(tau_twin))
|
|
|
|
dgdot_dtau_twin = gdot_twin*prm%n_twin/tau_twin
|
|
|
|
else where
|
|
|
|
dgdot_dtau_twin = 0.0_pReal
|
|
|
|
end where
|
|
|
|
endif
|
2018-09-12 13:29:09 +05:30
|
|
|
|
2018-09-12 16:35:23 +05:30
|
|
|
end subroutine kinetics_twin
|
2018-09-12 12:53:11 +05:30
|
|
|
|
|
|
|
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief return array of constitutive results
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-09-17 02:27:50 +05:30
|
|
|
function plastic_phenopowerlaw_postResults(Mp,instance,of) 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, &
|
2018-09-14 14:39:55 +05:30
|
|
|
math_Mandel6to33
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
implicit none
|
2018-09-17 02:27:50 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
Mp !< Mandel stress
|
2014-03-13 12:13:49 +05:30
|
|
|
integer(pInt), intent(in) :: &
|
2018-09-17 02:27:50 +05:30
|
|
|
instance, &
|
|
|
|
of
|
2013-07-01 11:40:42 +05:30
|
|
|
|
2018-09-17 02:27:50 +05:30
|
|
|
real(pReal), dimension(sum(plastic_phenopowerlaw_sizePostResult(:,instance))) :: &
|
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-09-12 16:35:23 +05:30
|
|
|
o,c,i,j
|
2018-09-17 02:27:50 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2018-09-12 12:53:11 +05:30
|
|
|
gdot_slip_pos,gdot_slip_neg
|
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-09-17 02:27:50 +05:30
|
|
|
associate( prm => param(instance), stt => state(instance))
|
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-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-09-14 14:39:55 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = stt%xi_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-09-14 14:39:55 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNslip) = stt%gamma_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-17 01:46:06 +05:30
|
|
|
call kinetics_slip(prm,stt,of,Mp,gdot_slip_pos,gdot_slip_neg)
|
2018-09-12 12:53:11 +05:30
|
|
|
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 16:35:23 +05:30
|
|
|
do i = 1_pInt, prm%totalNslip
|
2018-10-05 10:56:13 +05:30
|
|
|
postResults(c+i) = math_mul33xx33(Mp,prm%Schmid_slip(1:3,1:3,i))
|
2018-09-12 16:35:23 +05:30
|
|
|
enddo
|
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-09-14 14:39:55 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = stt%xi_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-09-14 14:39:55 +05:30
|
|
|
postResults(c+1_pInt:c+prm%totalNtwin) = stt%gamma_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-17 01:46:06 +05:30
|
|
|
call kinetics_twin(prm,stt,of,Mp,postResults(c+1_pInt:c+prm%totalNtwin))
|
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 16:35:23 +05:30
|
|
|
do i = 1_pInt, prm%totalNtwin
|
2018-09-17 01:46:06 +05:30
|
|
|
postResults(c+i) = math_mul33xx33(Mp,prm%Schmid_twin(1:3,1:3,i))
|
2018-09-12 16:35:23 +05:30
|
|
|
enddo
|
2018-06-27 13:31:36 +05:30
|
|
|
c = c + prm%totalNtwin
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-09-12 13:29:09 +05:30
|
|
|
case (totalshear_ID)
|
|
|
|
postResults(c+1_pInt) = stt%sumGamma(of)
|
|
|
|
c = c + 1_pInt
|
2018-09-13 09:11:44 +05:30
|
|
|
case (totalvolfrac_twin_ID)
|
|
|
|
postResults(c+1_pInt) = stt%sumF(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
|