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
|
2019-01-06 04:03:18 +05:30
|
|
|
!> @brief phenomenological crystal plasticity formulation using a powerlaw 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: &
|
2019-03-28 02:36:40 +05:30
|
|
|
pReal
|
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
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, dimension(:,:), allocatable, target, public :: &
|
2018-06-02 02:26:20 +05:30
|
|
|
plastic_phenopowerlaw_sizePostResult !< size of each post result output
|
2019-03-28 02:36:40 +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, &
|
|
|
|
resistance_twin_ID, &
|
|
|
|
accumulatedshear_twin_ID, &
|
|
|
|
shearrate_twin_ID, &
|
2018-11-25 15:47:12 +05:30
|
|
|
resolvedstress_twin_ID
|
2013-11-27 17:09:28 +05:30
|
|
|
end enum
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
type, private :: tParameters
|
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-10-14 12:56:32 +05:30
|
|
|
aTolResistance, & !< absolute tolerance for integration of xi
|
|
|
|
aTolShear, & !< absolute tolerance for integration of gamma
|
|
|
|
aTolTwinfrac !< absolute tolerance for integration of f
|
2019-03-28 02:36:40 +05:30
|
|
|
real(pReal), allocatable, dimension(:) :: &
|
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-12-14 13:53:52 +05:30
|
|
|
H_int, & !< per family hardening activity (optional)
|
2018-10-05 00:34:19 +05:30
|
|
|
gamma_twin_char !< characteristic shear for twins
|
2019-03-28 02:36:40 +05:30
|
|
|
real(pReal), allocatable, dimension(:,:) :: &
|
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
|
2019-03-28 02:36:40 +05:30
|
|
|
real(pReal), allocatable, dimension(:,:,:) :: &
|
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
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: &
|
2018-10-14 12:56:32 +05:30
|
|
|
totalNslip, & !< total number of active slip system
|
|
|
|
totalNtwin !< total number of active twin systems
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, allocatable, dimension(:) :: &
|
2018-10-14 12:56:32 +05:30
|
|
|
Nslip, & !< number of active slip systems for each family
|
|
|
|
Ntwin !< number of active twin systems for each family
|
|
|
|
integer(kind(undefined_ID)), allocatable, dimension(:) :: &
|
|
|
|
outputID !< ID of each post result output
|
2019-01-13 21:33:49 +05:30
|
|
|
end type tParameters
|
2018-06-02 02:26:20 +05:30
|
|
|
|
2015-10-30 21:18:30 +05:30
|
|
|
type, private :: tPhenopowerlawState
|
2018-10-14 12:56:32 +05:30
|
|
|
real(pReal), pointer, dimension(:,:) :: &
|
2018-09-14 14:39:55 +05:30
|
|
|
xi_slip, &
|
|
|
|
xi_twin, &
|
|
|
|
gamma_slip, &
|
2018-12-30 22:41:03 +05:30
|
|
|
gamma_twin
|
2019-01-13 21:33:49 +05:30
|
|
|
end type tPhenopowerlawState
|
2015-10-30 21:18:30 +05:30
|
|
|
|
2019-01-13 21:33:49 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! containers for parameters and state
|
|
|
|
type(tParameters), allocatable, dimension(:), private :: param
|
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, &
|
2018-12-12 11:10:57 +05:30
|
|
|
plastic_phenopowerlaw_postResults, &
|
|
|
|
plastic_phenopowerlaw_results
|
2018-12-30 22:41:03 +05:30
|
|
|
private :: &
|
|
|
|
kinetics_slip, &
|
|
|
|
kinetics_twin
|
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
|
2016-05-29 14:15:03 +05:30
|
|
|
use prec, only: &
|
2018-12-30 22:41:03 +05:30
|
|
|
pStringLen
|
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: &
|
2019-03-09 05:37:26 +05:30
|
|
|
IO_error
|
2013-12-19 14:19:47 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_plasticity, &
|
|
|
|
phase_plasticityInstance, &
|
|
|
|
phase_Noutput, &
|
2018-10-16 02:08:34 +05:30
|
|
|
material_allocatePlasticState, &
|
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-27 00:38:13 +05:30
|
|
|
config_phase
|
2013-02-08 21:25:53 +05:30
|
|
|
use lattice
|
2009-10-21 18:40:12 +05:30
|
|
|
|
2012-03-09 01:55:28 +05:30
|
|
|
implicit none
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: &
|
2018-10-14 12:56:32 +05:30
|
|
|
Ninstance, &
|
|
|
|
p, i, &
|
2018-06-02 02:26:20 +05:30
|
|
|
NipcMyPhase, outputSize, &
|
2018-10-14 12:56:32 +05:30
|
|
|
sizeState, sizeDotState, &
|
2015-10-30 21:18:30 +05:30
|
|
|
startIndex, endIndex
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, dimension(0), parameter :: emptyIntArray = [integer::]
|
2018-10-14 12:56:32 +05:30
|
|
|
real(pReal), dimension(0), parameter :: emptyRealArray = [real(pReal)::]
|
2018-06-27 12:42:33 +05:30
|
|
|
character(len=65536), dimension(0), parameter :: emptyStringArray = [character(len=65536)::]
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-08-26 00:57:14 +05:30
|
|
|
integer(kind(undefined_ID)) :: &
|
2018-12-30 22:41:03 +05:30
|
|
|
outputID
|
2018-05-31 22:01:44 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
character(len=pStringLen) :: &
|
|
|
|
extmsg = ''
|
|
|
|
character(len=65536), dimension(:), allocatable :: &
|
2018-12-12 20:43:57 +05:30
|
|
|
outputs
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2018-12-30 22:41:03 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- plastic_'//PLASTICITY_PHENOPOWERLAW_label//' init -+>>>'
|
2015-10-14 00:22:01 +05:30
|
|
|
|
2019-03-09 05:37:26 +05:30
|
|
|
Ninstance = count(phase_plasticity == PLASTICITY_PHENOPOWERLAW_ID)
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0) &
|
2018-10-14 12:56:32 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2014-07-02 17:57:39 +05:30
|
|
|
|
2019-03-09 05:37:26 +05:30
|
|
|
allocate(plastic_phenopowerlaw_sizePostResult(maxval(phase_Noutput),Ninstance),source=0)
|
2018-10-14 12:56:32 +05:30
|
|
|
allocate(plastic_phenopowerlaw_output(maxval(phase_Noutput),Ninstance))
|
2018-05-31 22:01:44 +05:30
|
|
|
plastic_phenopowerlaw_output = ''
|
2018-04-25 23:11:18 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
allocate(param(Ninstance))
|
|
|
|
allocate(state(Ninstance))
|
|
|
|
allocate(dotState(Ninstance))
|
2013-12-12 03:33:09 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
do p = 1, size(phase_plasticity)
|
2018-06-27 13:31:36 +05:30
|
|
|
if (phase_plasticity(p) /= PLASTICITY_PHENOPOWERLAW_ID) cycle
|
2018-10-14 12:56:32 +05:30
|
|
|
associate(prm => param(phase_plasticityInstance(p)), &
|
|
|
|
dot => dotState(phase_plasticityInstance(p)), &
|
2018-12-22 13:01:13 +05:30
|
|
|
stt => state(phase_plasticityInstance(p)), &
|
|
|
|
config => config_phase(p))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! optional parameters that need to be defined
|
2018-12-22 13:01:13 +05:30
|
|
|
prm%twinB = config%getFloat('twin_b',defaultVal=1.0_pReal)
|
|
|
|
prm%twinC = config%getFloat('twin_c',defaultVal=0.0_pReal)
|
|
|
|
prm%twinD = config%getFloat('twin_d',defaultVal=0.0_pReal)
|
|
|
|
prm%twinE = config%getFloat('twin_e',defaultVal=0.0_pReal)
|
|
|
|
|
|
|
|
prm%aTolResistance = config%getFloat('atol_resistance',defaultVal=1.0_pReal)
|
|
|
|
prm%aTolShear = config%getFloat('atol_shear', defaultVal=1.0e-6_pReal)
|
|
|
|
prm%aTolTwinfrac = config%getFloat('atol_twinfrac', defaultVal=1.0e-6_pReal)
|
2019-01-07 11:50:13 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
! sanity checks
|
2019-01-06 04:03:18 +05:30
|
|
|
if (prm%aTolResistance <= 0.0_pReal) extmsg = trim(extmsg)//' aTolresistance'
|
|
|
|
if (prm%aTolShear <= 0.0_pReal) extmsg = trim(extmsg)//' aTolShear'
|
|
|
|
if (prm%aTolTwinfrac <= 0.0_pReal) extmsg = trim(extmsg)//' atoltwinfrac'
|
2018-10-14 12:56:32 +05:30
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! slip related parameters
|
2018-12-22 13:01:13 +05:30
|
|
|
prm%Nslip = config%getInts('nslip',defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%totalNslip = sum(prm%Nslip)
|
2019-03-28 02:36:40 +05:30
|
|
|
slipActive: if (prm%totalNslip > 0) then
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%Schmid_slip = lattice_SchmidMatrix_slip(prm%Nslip,config%getString('lattice_structure'),&
|
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
|
|
|
|
|
|
|
if(trim(config%getString('lattice_structure')) == 'bcc') then
|
|
|
|
prm%nonSchmidCoeff = config%getFloats('nonschmid_coefficients',&
|
2018-12-30 22:41:03 +05:30
|
|
|
defaultVal = emptyRealArray)
|
2019-03-28 02:36:40 +05:30
|
|
|
prm%nonSchmid_pos = lattice_nonSchmidMatrix(prm%Nslip,prm%nonSchmidCoeff,+1)
|
|
|
|
prm%nonSchmid_neg = lattice_nonSchmidMatrix(prm%Nslip,prm%nonSchmidCoeff,-1)
|
2018-10-14 12:56:32 +05:30
|
|
|
else
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%nonSchmid_pos = prm%Schmid_slip
|
|
|
|
prm%nonSchmid_neg = prm%Schmid_slip
|
2018-10-14 12:56:32 +05:30
|
|
|
endif
|
2019-03-25 22:34:53 +05:30
|
|
|
prm%interaction_SlipSlip = transpose(lattice_interaction_SlipBySlip(prm%Nslip, &
|
2019-03-12 03:11:59 +05:30
|
|
|
config%getFloats('interaction_slipslip'), &
|
2019-03-25 22:34:53 +05:30
|
|
|
config%getString('lattice_structure')))
|
2018-10-14 12:56:32 +05:30
|
|
|
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%xi_slip_0 = config%getFloats('tau0_slip', requiredSize=size(prm%Nslip))
|
|
|
|
prm%xi_slip_sat = config%getFloats('tausat_slip', requiredSize=size(prm%Nslip))
|
|
|
|
prm%H_int = config%getFloats('h_int', requiredSize=size(prm%Nslip), &
|
2019-03-28 02:36:40 +05:30
|
|
|
defaultVal=[(0.0_pReal,i=1,size(prm%Nslip))])
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%gdot0_slip = config%getFloat('gdot0_slip')
|
|
|
|
prm%n_slip = config%getFloat('n_slip')
|
|
|
|
prm%a_slip = config%getFloat('a_slip')
|
|
|
|
prm%h0_SlipSlip = config%getFloat('h0_slipslip')
|
2018-09-14 14:21:44 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
! expand: family => system
|
|
|
|
prm%xi_slip_0 = math_expand(prm%xi_slip_0, prm%Nslip)
|
2018-09-14 14:39:55 +05:30
|
|
|
prm%xi_slip_sat = math_expand(prm%xi_slip_sat,prm%Nslip)
|
2018-10-14 12:56:32 +05:30
|
|
|
prm%H_int = math_expand(prm%H_int, prm%Nslip)
|
|
|
|
|
|
|
|
! sanity checks
|
2019-01-07 12:34:02 +05:30
|
|
|
if ( prm%gdot0_slip <= 0.0_pReal) extmsg = trim(extmsg)//' gdot0_slip'
|
|
|
|
if ( prm%a_slip <= 0.0_pReal) extmsg = trim(extmsg)//' a_slip'
|
|
|
|
if ( prm%n_slip <= 0.0_pReal) extmsg = trim(extmsg)//' n_slip'
|
2019-01-06 04:03:18 +05:30
|
|
|
if (any(prm%xi_slip_0 <= 0.0_pReal)) extmsg = trim(extmsg)//' xi_slip_0'
|
2019-01-18 04:21:38 +05:30
|
|
|
if (any(prm%xi_slip_sat <= 0.0_pReal)) extmsg = trim(extmsg)//' xi_slip_sat'
|
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-10-14 12:56:32 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! twin related parameters
|
2018-12-22 13:01:13 +05:30
|
|
|
prm%Ntwin = config%getInts('ntwin', defaultVal=emptyIntArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
prm%totalNtwin = sum(prm%Ntwin)
|
2019-03-28 02:36:40 +05:30
|
|
|
twinActive: if (prm%totalNtwin > 0) then
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%Schmid_twin = lattice_SchmidMatrix_twin(prm%Ntwin,config%getString('lattice_structure'),&
|
2018-12-22 13:01:13 +05:30
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
2019-03-25 22:34:53 +05:30
|
|
|
prm%interaction_TwinTwin = transpose(lattice_interaction_TwinByTwin(prm%Ntwin,&
|
2019-03-12 03:11:59 +05:30
|
|
|
config%getFloats('interaction_twintwin'), &
|
2019-03-25 22:34:53 +05:30
|
|
|
config%getString('lattice_structure')))
|
2019-01-25 18:31:17 +05:30
|
|
|
prm%gamma_twin_char = lattice_characteristicShear_twin(prm%Ntwin,config%getString('lattice_structure'),&
|
2018-12-22 13:01:13 +05:30
|
|
|
config%getFloat('c/a'))
|
2018-10-14 12:56:32 +05:30
|
|
|
|
2018-12-22 13:01:13 +05:30
|
|
|
prm%xi_twin_0 = config%getFloats('tau0_twin',requiredSize=size(prm%Ntwin))
|
2018-10-14 12:56:32 +05:30
|
|
|
|
2018-12-22 13:01:13 +05:30
|
|
|
prm%gdot0_twin = config%getFloat('gdot0_twin')
|
|
|
|
prm%n_twin = config%getFloat('n_twin')
|
|
|
|
prm%spr = config%getFloat('s_pr')
|
|
|
|
prm%h0_TwinTwin = config%getFloat('h0_twintwin')
|
2018-10-14 12:56:32 +05:30
|
|
|
|
|
|
|
! expand: family => system
|
|
|
|
prm%xi_twin_0 = math_expand(prm%xi_twin_0, prm%Ntwin)
|
|
|
|
|
|
|
|
! sanity checks
|
2019-01-06 04:03:18 +05:30
|
|
|
if (prm%gdot0_twin <= 0.0_pReal) extmsg = trim(extmsg)//' gdot0_twin'
|
|
|
|
if (prm%n_twin <= 0.0_pReal) extmsg = trim(extmsg)//' n_twin'
|
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))
|
2018-11-26 13:45:44 +05:30
|
|
|
allocate(prm%gamma_twin_char(0))
|
2018-09-15 09:15:10 +05:30
|
|
|
endif twinActive
|
2018-06-02 09:09:40 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! slip-twin related parameters
|
2019-03-28 02:36:40 +05:30
|
|
|
slipAndTwinActive: if (prm%totalNslip > 0 .and. prm%totalNtwin > 0) then
|
2019-03-25 22:34:53 +05:30
|
|
|
prm%interaction_SlipTwin = transpose(lattice_interaction_SlipByTwin(prm%Nslip,prm%Ntwin,&
|
2019-03-12 03:11:59 +05:30
|
|
|
config%getFloats('interaction_sliptwin'), &
|
2019-03-25 22:34:53 +05:30
|
|
|
config%getString('lattice_structure')))
|
|
|
|
prm%interaction_TwinSlip = transpose(lattice_interaction_TwinBySlip(prm%Ntwin,prm%Nslip,&
|
2019-03-12 03:11:59 +05:30
|
|
|
config%getFloats('interaction_twinslip'), &
|
2019-03-25 22:34:53 +05:30
|
|
|
config%getString('lattice_structure')))
|
2018-09-15 09:15:10 +05:30
|
|
|
else slipAndTwinActive
|
2019-03-25 22:34:53 +05:30
|
|
|
allocate(prm%interaction_SlipTwin(prm%TotalNslip,prm%TotalNtwin)) ! at least one dimension is 0
|
|
|
|
allocate(prm%interaction_TwinSlip(prm%TotalNtwin,prm%TotalNslip)) ! at least one dimension is 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-10-14 12:56:32 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! exit if any parameter is out of range
|
|
|
|
if (extmsg /= '') &
|
2019-03-28 02:36:40 +05:30
|
|
|
call IO_error(211,ext_msg=trim(extmsg)//'('//PLASTICITY_PHENOPOWERLAW_label//')')
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-10-14 12:56:32 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! output pararameters
|
2018-12-22 13:01:13 +05:30
|
|
|
outputs = config%getStrings('(output)',defaultVal=emptyStringArray)
|
2018-06-27 13:31:36 +05:30
|
|
|
allocate(prm%outputID(0))
|
2019-03-28 02:36:40 +05:30
|
|
|
do i=1, size(outputs)
|
2018-06-27 13:31:36 +05:30
|
|
|
outputID = undefined_ID
|
|
|
|
select case(outputs(i))
|
2019-01-06 04:03:18 +05:30
|
|
|
|
|
|
|
case ('resistance_slip')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(resistance_slip_ID,undefined_ID,prm%totalNslip>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNslip
|
|
|
|
case ('accumulatedshear_slip')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(accumulatedshear_slip_ID,undefined_ID,prm%totalNslip>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNslip
|
|
|
|
case ('shearrate_slip')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(shearrate_slip_ID,undefined_ID,prm%totalNslip>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNslip
|
|
|
|
case ('resolvedstress_slip')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(resolvedstress_slip_ID,undefined_ID,prm%totalNslip>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNslip
|
|
|
|
|
|
|
|
case ('resistance_twin')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(resistance_twin_ID,undefined_ID,prm%totalNtwin>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNtwin
|
|
|
|
case ('accumulatedshear_twin')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(accumulatedshear_twin_ID,undefined_ID,prm%totalNtwin>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNtwin
|
|
|
|
case ('shearrate_twin')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(shearrate_twin_ID,undefined_ID,prm%totalNtwin>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNtwin
|
|
|
|
case ('resolvedstress_twin')
|
2019-03-28 02:36:40 +05:30
|
|
|
outputID = merge(resolvedstress_twin_ID,undefined_ID,prm%totalNtwin>0)
|
2019-01-06 04:03:18 +05:30
|
|
|
outputSize = prm%totalNtwin
|
|
|
|
|
|
|
|
end select
|
|
|
|
|
|
|
|
if (outputID /= undefined_ID) then
|
|
|
|
plastic_phenopowerlaw_output(i,phase_plasticityInstance(p)) = outputs(i)
|
|
|
|
plastic_phenopowerlaw_sizePostResult(i,phase_plasticityInstance(p)) = outputSize
|
|
|
|
prm%outputID = [prm%outputID, outputID]
|
|
|
|
endif
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2019-01-06 04:25:10 +05:30
|
|
|
enddo
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2014-07-02 17:57:39 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! allocate state arrays
|
2018-12-30 22:41:03 +05:30
|
|
|
NipcMyPhase = count(material_phase == p)
|
2019-01-07 12:34:02 +05:30
|
|
|
sizeDotState = size(['tau_slip ','gamma_slip']) * prm%totalNslip &
|
|
|
|
+ size(['tau_twin ','gamma_twin']) * prm%totalNtwin
|
2019-01-06 04:03:18 +05:30
|
|
|
sizeState = sizeDotState
|
2018-10-14 23:46:30 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
call material_allocatePlasticState(p,NipcMyPhase,sizeState,sizeDotState,0, &
|
|
|
|
prm%totalNslip,prm%totalNtwin,0)
|
2018-10-15 09:31:38 +05:30
|
|
|
plasticState(p)%sizePostResults = sum(plastic_phenopowerlaw_sizePostResult(:,phase_plasticityInstance(p)))
|
2018-06-27 13:31:36 +05:30
|
|
|
|
2018-04-25 23:11:18 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! locally defined state aliases and initialization of state0 and aTolState
|
2019-03-28 02:36:40 +05:30
|
|
|
startIndex = 1
|
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
|
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
startIndex = endIndex + 1
|
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
|
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
startIndex = endIndex + 1
|
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
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
startIndex = endIndex + 1
|
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-12-21 19:26:32 +05:30
|
|
|
plasticState(p)%state0 = plasticState(p)%state ! ToDo: this could be done centrally
|
2018-09-14 14:39:55 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
end associate
|
2019-01-06 04:03:18 +05:30
|
|
|
|
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
|
2019-01-07 11:54:02 +05:30
|
|
|
!> @details asummes that deformation by dislocation glide affects twinned and untwinned volume
|
2019-01-07 01:48:35 +05:30
|
|
|
! equally (Taylor assumption). Twinning happens only in untwinned volume
|
2012-10-11 20:19:12 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-01-06 04:03:18 +05:30
|
|
|
pure subroutine plastic_phenopowerlaw_LpAndItsTangent(Lp,dLp_dMp,Mp,instance,of)
|
2018-10-14 19:23:24 +05:30
|
|
|
|
2009-07-22 21:37:19 +05:30
|
|
|
implicit none
|
2018-12-21 19:26:32 +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
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, intent(in) :: &
|
2018-09-17 02:08:57 +05:30
|
|
|
instance, &
|
|
|
|
of
|
2014-05-22 20:46:05 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: &
|
2018-09-17 02:08:57 +05:30
|
|
|
i,k,l,m,n
|
2018-10-14 19:23:24 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2019-01-07 01:48:35 +05:30
|
|
|
gdot_slip_pos,gdot_slip_neg, &
|
|
|
|
dgdot_dtauslip_pos,dgdot_dtauslip_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
|
2019-01-07 01:48:35 +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
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
associate(prm => param(instance))
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
call kinetics_slip(Mp,instance,of,gdot_slip_pos,gdot_slip_neg,dgdot_dtauslip_pos,dgdot_dtauslip_neg)
|
2019-03-28 02:36:40 +05:30
|
|
|
slipSystems: do i = 1, prm%totalNslip
|
2018-12-12 20:43:57 +05:30
|
|
|
Lp = Lp + (gdot_slip_pos(i)+gdot_slip_neg(i))*prm%Schmid_slip(1:3,1:3,i)
|
2019-03-28 02:36:40 +05:30
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
|
2018-10-14 19:23:24 +05:30
|
|
|
dLp_dMp(k,l,m,n) = dLp_dMp(k,l,m,n) &
|
|
|
|
+ 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)
|
|
|
|
enddo slipSystems
|
2009-07-22 21:37:19 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
call kinetics_twin(Mp,instance,of,gdot_twin,dgdot_dtautwin)
|
2019-03-28 02:36:40 +05:30
|
|
|
twinSystems: do i = 1, prm%totalNtwin
|
2018-09-14 13:29:04 +05:30
|
|
|
Lp = Lp + gdot_twin(i)*prm%Schmid_twin(1:3,1:3,i)
|
2019-03-28 02:36:40 +05:30
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
|
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
|
2019-01-07 11:54:02 +05:30
|
|
|
|
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)
|
2018-10-14 19:23:24 +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
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, 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
|
|
|
real(pReal) :: &
|
2015-05-06 01:47:50 +05:30
|
|
|
c_SlipSlip,c_TwinSlip,c_TwinTwin, &
|
2018-11-25 20:44:46 +05:30
|
|
|
xi_slip_sat_offset,&
|
|
|
|
sumGamma,sumF
|
2018-09-17 02:08:57 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2018-10-14 19:23:24 +05:30
|
|
|
left_SlipSlip,right_SlipSlip, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg
|
2018-06-30 17:41:05 +05:30
|
|
|
|
2019-01-07 12:34:02 +05:30
|
|
|
associate(prm => param(instance), stt => state(instance), dot => dotState(instance))
|
2018-05-01 01:00:53 +05:30
|
|
|
|
2018-11-25 20:08:14 +05:30
|
|
|
sumGamma = sum(stt%gamma_slip(:,of))
|
2018-11-25 20:44:46 +05:30
|
|
|
sumF = sum(stt%gamma_twin(:,of)/prm%gamma_twin_char)
|
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-11-25 20:44:46 +05:30
|
|
|
c_SlipSlip = prm%h0_slipslip * (1.0_pReal + prm%twinC*sumF** prm%twinB)
|
2018-11-25 20:08:14 +05:30
|
|
|
c_TwinSlip = prm%h0_TwinSlip * sumGamma**prm%twinE
|
2018-11-25 20:44:46 +05:30
|
|
|
c_TwinTwin = prm%h0_TwinTwin * sumF**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-11-25 20:44:46 +05:30
|
|
|
xi_slip_sat_offset = prm%spr*sqrt(sumF)
|
2018-09-14 14:39:55 +05:30
|
|
|
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-12-21 19:26:32 +05:30
|
|
|
call kinetics_slip(Mp,instance,of,gdot_slip_pos,gdot_slip_neg)
|
2018-10-14 19:23:24 +05:30
|
|
|
dot%gamma_slip(:,of) = abs(gdot_slip_pos+gdot_slip_neg)
|
2018-12-21 19:26:32 +05:30
|
|
|
call kinetics_twin(Mp,instance,of,dot%gamma_twin(:,of))
|
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
|
2019-03-25 22:34:53 +05:30
|
|
|
dot%xi_slip(:,of) = c_SlipSlip * left_SlipSlip * &
|
|
|
|
matmul(prm%interaction_SlipSlip,dot%gamma_slip(:,of)*right_SlipSlip) &
|
|
|
|
+ matmul(prm%interaction_SlipTwin,dot%gamma_twin(:,of))
|
2018-09-12 12:53:11 +05:30
|
|
|
|
2019-03-25 22:34:53 +05:30
|
|
|
dot%xi_twin(:,of) = c_TwinSlip * matmul(prm%interaction_TwinSlip,dot%gamma_slip(:,of)) &
|
|
|
|
+ c_TwinTwin * matmul(prm%interaction_TwinTwin,dot%gamma_twin(:,of))
|
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-12-21 19:26:32 +05:30
|
|
|
!> @brief return array of constitutive results
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
function plastic_phenopowerlaw_postResults(Mp,instance,of) result(postResults)
|
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
|
|
|
|
|
|
|
implicit none
|
2019-01-06 04:03:18 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
2018-12-21 19:26:32 +05:30
|
|
|
Mp !< Mandel stress
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, intent(in) :: &
|
2018-12-21 19:26:32 +05:30
|
|
|
instance, &
|
|
|
|
of
|
|
|
|
|
|
|
|
real(pReal), dimension(sum(plastic_phenopowerlaw_sizePostResult(:,instance))) :: &
|
2019-01-07 11:50:13 +05:30
|
|
|
postResults
|
2018-12-21 19:26:32 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: &
|
2018-12-21 19:26:32 +05:30
|
|
|
o,c,i
|
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
|
|
|
gdot_slip_pos,gdot_slip_neg
|
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
c = 0
|
2019-01-06 04:03:18 +05:30
|
|
|
|
|
|
|
associate(prm => param(instance), stt => state(instance))
|
2018-12-21 19:26:32 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
outputsLoop: do o = 1,size(prm%outputID)
|
2018-12-21 19:26:32 +05:30
|
|
|
select case(prm%outputID(o))
|
|
|
|
|
|
|
|
case (resistance_slip_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
postResults(c+1:c+prm%totalNslip) = stt%xi_slip(1:prm%totalNslip,of)
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNslip
|
|
|
|
case (accumulatedshear_slip_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
postResults(c+1:c+prm%totalNslip) = stt%gamma_slip(1:prm%totalNslip,of)
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNslip
|
|
|
|
case (shearrate_slip_ID)
|
|
|
|
call kinetics_slip(Mp,instance,of,gdot_slip_pos,gdot_slip_neg)
|
2019-03-28 02:36:40 +05:30
|
|
|
postResults(c+1:c+prm%totalNslip) = gdot_slip_pos+gdot_slip_neg
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNslip
|
|
|
|
case (resolvedstress_slip_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
do i = 1, prm%totalNslip
|
2018-12-21 19:26:32 +05:30
|
|
|
postResults(c+i) = math_mul33xx33(Mp,prm%Schmid_slip(1:3,1:3,i))
|
|
|
|
enddo
|
|
|
|
c = c + prm%totalNslip
|
|
|
|
|
|
|
|
case (resistance_twin_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
postResults(c+1:c+prm%totalNtwin) = stt%xi_twin(1:prm%totalNtwin,of)
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNtwin
|
|
|
|
case (accumulatedshear_twin_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
postResults(c+1:c+prm%totalNtwin) = stt%gamma_twin(1:prm%totalNtwin,of)
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNtwin
|
|
|
|
case (shearrate_twin_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
call kinetics_twin(Mp,instance,of,postResults(c+1:c+prm%totalNtwin))
|
2018-12-21 19:26:32 +05:30
|
|
|
c = c + prm%totalNtwin
|
|
|
|
case (resolvedstress_twin_ID)
|
2019-03-28 02:36:40 +05:30
|
|
|
do i = 1, prm%totalNtwin
|
2018-12-21 19:26:32 +05:30
|
|
|
postResults(c+i) = math_mul33xx33(Mp,prm%Schmid_twin(1:3,1:3,i))
|
|
|
|
enddo
|
|
|
|
c = c + prm%totalNtwin
|
|
|
|
|
|
|
|
end select
|
|
|
|
enddo outputsLoop
|
2019-01-06 04:03:18 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
end associate
|
|
|
|
|
|
|
|
end function plastic_phenopowerlaw_postResults
|
|
|
|
|
|
|
|
|
2019-01-07 01:26:36 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief writes results to HDF5 output file
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
subroutine plastic_phenopowerlaw_results(instance,group)
|
|
|
|
#if defined(PETSc) || defined(DAMASKHDF5)
|
|
|
|
use results
|
|
|
|
|
|
|
|
implicit none
|
2019-03-10 01:13:31 +05:30
|
|
|
integer, intent(in) :: instance
|
2019-01-07 01:26:36 +05:30
|
|
|
character(len=*) :: group
|
2019-03-10 01:13:31 +05:30
|
|
|
integer :: o
|
2019-01-07 01:26:36 +05:30
|
|
|
|
|
|
|
associate(prm => param(instance), stt => state(instance))
|
2019-03-28 02:36:40 +05:30
|
|
|
outputsLoop: do o = 1,size(prm%outputID)
|
2019-01-07 01:26:36 +05:30
|
|
|
select case(prm%outputID(o))
|
|
|
|
case (resistance_slip_ID)
|
|
|
|
call results_writeVectorDataset(group,stt%xi_slip,'xi_slip','Pa')
|
|
|
|
case (accumulatedshear_slip_ID)
|
2019-01-07 01:27:40 +05:30
|
|
|
call results_writeVectorDataset(group,stt%gamma_slip,'gamma_slip','-')
|
2019-01-07 01:26:36 +05:30
|
|
|
end select
|
|
|
|
enddo outputsLoop
|
|
|
|
end associate
|
|
|
|
#else
|
2019-03-10 01:13:31 +05:30
|
|
|
integer, intent(in) :: instance
|
2019-01-07 01:26:36 +05:30
|
|
|
character(len=*) :: group
|
|
|
|
#endif
|
|
|
|
end subroutine plastic_phenopowerlaw_results
|
|
|
|
|
|
|
|
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-21 22:44:54 +05:30
|
|
|
!> @brief Shear rates on slip systems and their derivatives with respect to resolved stress
|
2019-01-07 11:54:02 +05:30
|
|
|
!> @details Derivatives are calculated only optionally.
|
|
|
|
! NOTE: Against the common convention, the result (i.e. intent(out)) variables are the last to
|
2018-12-12 20:43:57 +05:30
|
|
|
! have the optional arguments at the end
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-21 19:26:32 +05:30
|
|
|
pure subroutine kinetics_slip(Mp,instance,of, &
|
|
|
|
gdot_slip_pos,gdot_slip_neg,dgdot_dtau_slip_pos,dgdot_dtau_slip_neg)
|
2018-09-12 16:35:23 +05:30
|
|
|
use prec, only: &
|
2019-01-06 04:03:18 +05:30
|
|
|
dNeq0
|
2018-09-12 16:35:23 +05:30
|
|
|
use math, only: &
|
|
|
|
math_mul33xx33
|
2018-09-12 12:53:11 +05:30
|
|
|
|
|
|
|
implicit none
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
Mp !< Mandel stress
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, intent(in) :: &
|
2018-12-21 19:26:32 +05:30
|
|
|
instance, &
|
2018-09-12 12:53:11 +05:30
|
|
|
of
|
2019-01-07 11:50:13 +05:30
|
|
|
|
2019-01-06 04:03:18 +05:30
|
|
|
real(pReal), intent(out), dimension(param(instance)%totalNslip) :: &
|
2018-09-12 12:53:11 +05:30
|
|
|
gdot_slip_pos, &
|
|
|
|
gdot_slip_neg
|
2019-01-06 04:03:18 +05:30
|
|
|
real(pReal), intent(out), optional, dimension(param(instance)%totalNslip) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_slip_pos, &
|
|
|
|
dgdot_dtau_slip_neg
|
2019-01-07 11:50:13 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNslip) :: &
|
2018-09-12 12:53:11 +05:30
|
|
|
tau_slip_pos, &
|
|
|
|
tau_slip_neg
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: i
|
|
|
|
logical :: nonSchmidActive
|
2018-10-16 12:21:38 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
associate(prm => param(instance), stt => state(instance))
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
nonSchmidActive = size(prm%nonSchmidCoeff) > 0
|
2018-09-12 15:56:33 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
do i = 1, prm%totalNslip
|
2018-10-16 12:21:38 +05:30
|
|
|
tau_slip_pos(i) = math_mul33xx33(Mp,prm%nonSchmid_pos(1:3,1:3,i))
|
|
|
|
tau_slip_neg(i) = merge(math_mul33xx33(Mp,prm%nonSchmid_neg(1:3,1:3,i)), &
|
|
|
|
0.0_pReal, nonSchmidActive)
|
2018-09-12 12:53:11 +05:30
|
|
|
enddo
|
|
|
|
|
2018-10-16 12:21:38 +05:30
|
|
|
where(dNeq0(tau_slip_pos))
|
|
|
|
gdot_slip_pos = prm%gdot0_slip * merge(0.5_pReal,1.0_pReal, nonSchmidActive) & ! 1/2 if non-Schmid active
|
|
|
|
* sign(abs(tau_slip_pos/stt%xi_slip(:,of))**prm%n_slip, tau_slip_pos)
|
|
|
|
else where
|
|
|
|
gdot_slip_pos = 0.0_pReal
|
|
|
|
end where
|
|
|
|
|
|
|
|
where(dNeq0(tau_slip_neg))
|
2019-01-07 01:48:35 +05:30
|
|
|
gdot_slip_neg = prm%gdot0_slip * 0.5_pReal & ! only used if non-Schmid active, always 1/2
|
2018-10-16 12:21:38 +05:30
|
|
|
* sign(abs(tau_slip_neg/stt%xi_slip(:,of))**prm%n_slip, tau_slip_neg)
|
|
|
|
else where
|
|
|
|
gdot_slip_neg = 0.0_pReal
|
|
|
|
end where
|
2018-09-12 16:35:23 +05:30
|
|
|
|
2018-09-14 14:39:55 +05:30
|
|
|
if (present(dgdot_dtau_slip_pos)) then
|
2018-10-16 12:21:38 +05:30
|
|
|
where(dNeq0(gdot_slip_pos))
|
2018-09-12 16:35:23 +05:30
|
|
|
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-10-16 12:21:38 +05:30
|
|
|
where(dNeq0(gdot_slip_neg))
|
2018-09-12 16:35:23 +05:30
|
|
|
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
|
2018-12-21 19:26:32 +05:30
|
|
|
end associate
|
2018-09-12 16:35:23 +05:30
|
|
|
|
|
|
|
end subroutine kinetics_slip
|
2018-09-12 12:53:11 +05:30
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-21 22:44:54 +05:30
|
|
|
!> @brief Shear rates on twin systems and their derivatives with respect to resolved stress.
|
2018-12-12 20:43:57 +05:30
|
|
|
! twinning is assumed to take place only in untwinned volume.
|
|
|
|
!> @details Derivates are calculated only optionally.
|
2019-01-07 11:54:02 +05:30
|
|
|
! NOTE: Against the common convention, the result (i.e. intent(out)) variables are the last to
|
2018-12-12 20:43:57 +05:30
|
|
|
! have the optional arguments at the end.
|
2018-09-12 12:53:11 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-21 19:26:32 +05:30
|
|
|
pure subroutine kinetics_twin(Mp,instance,of,&
|
|
|
|
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
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(3,3), intent(in) :: &
|
|
|
|
Mp !< Mandel stress
|
2019-03-28 02:36:40 +05:30
|
|
|
integer, intent(in) :: &
|
2018-12-21 19:26:32 +05:30
|
|
|
instance, &
|
2018-09-12 16:35:23 +05:30
|
|
|
of
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNtwin), intent(out) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
gdot_twin
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNtwin), intent(out), optional :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_twin
|
2018-09-12 12:53:11 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
real(pReal), dimension(param(instance)%totalNtwin) :: &
|
2018-09-12 16:35:23 +05:30
|
|
|
tau_twin
|
2019-03-28 02:36:40 +05:30
|
|
|
integer :: i
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
associate(prm => param(instance), stt => state(instance))
|
2018-09-13 09:19:57 +05:30
|
|
|
|
2019-03-28 02:36:40 +05:30
|
|
|
do i = 1, 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
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-10-16 12:21:38 +05:30
|
|
|
where(tau_twin > 0.0_pReal)
|
2018-11-25 20:44:46 +05:30
|
|
|
gdot_twin = (1.0_pReal-sum(stt%gamma_twin(:,of)/prm%gamma_twin_char)) & ! only twin in untwinned volume fraction
|
|
|
|
* prm%gdot0_twin*(abs(tau_twin)/stt%xi_twin(:,of))**prm%n_twin
|
2019-01-07 11:54:02 +05:30
|
|
|
else where
|
2018-10-16 12:21:38 +05:30
|
|
|
gdot_twin = 0.0_pReal
|
|
|
|
end where
|
2018-09-14 13:38:36 +05:30
|
|
|
|
2018-09-14 14:39:55 +05:30
|
|
|
if (present(dgdot_dtau_twin)) then
|
2018-10-16 12:21:38 +05:30
|
|
|
where(dNeq0(gdot_twin))
|
2018-09-12 16:35:23 +05:30
|
|
|
dgdot_dtau_twin = gdot_twin*prm%n_twin/tau_twin
|
|
|
|
else where
|
|
|
|
dgdot_dtau_twin = 0.0_pReal
|
|
|
|
end where
|
|
|
|
endif
|
2019-01-07 11:54:02 +05:30
|
|
|
|
2018-07-17 01:32:31 +05:30
|
|
|
end associate
|
2018-08-26 00:57:14 +05:30
|
|
|
|
2018-12-21 19:26:32 +05:30
|
|
|
end subroutine kinetics_twin
|
2018-12-12 11:10:57 +05:30
|
|
|
|
2014-12-08 21:25:30 +05:30
|
|
|
end module plastic_phenopowerlaw
|