2013-11-27 13:34:05 +05:30
!--------------------------------------------------------------------------------------------------
!> @author Christoph Kords, Max-Planck-Institut für Eisenforschung GmbH
!> @author Franz Roters, Max-Planck-Institut für Eisenforschung GmbH
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
!> @brief material subroutine for plasticity including dislocation flux
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
module plastic_nonlocal
2014-05-23 22:43:08 +05:30
use prec , only : &
pReal , &
2014-10-13 18:01:04 +05:30
pInt
2014-05-23 22:43:08 +05:30
implicit none
private
character ( len = 22 ) , dimension ( 11 ) , parameter , private :: &
BASICSTATES = [ 'rhoSglEdgePosMobile ' , &
'rhoSglEdgeNegMobile ' , &
'rhoSglScrewPosMobile ' , &
'rhoSglScrewNegMobile ' , &
'rhoSglEdgePosImmobile ' , &
'rhoSglEdgeNegImmobile ' , &
'rhoSglScrewPosImmobile' , &
'rhoSglScrewNegImmobile' , &
'rhoDipEdge ' , &
'rhoDipScrew ' , &
'accumulatedshear ' ] !< list of "basic" microstructural state variables that are independent from other state variables
character ( len = 16 ) , dimension ( 3 ) , parameter , private :: &
DEPENDENTSTATES = [ 'rhoForest ' , &
'tauThreshold ' , &
'tauBack ' ] !< list of microstructural state variables that depend on other state variables
character ( len = 20 ) , dimension ( 6 ) , parameter , private :: &
OTHERSTATES = [ 'velocityEdgePos ' , &
'velocityEdgeNeg ' , &
'velocityScrewPos ' , &
'velocityScrewNeg ' , &
'maxDipoleHeightEdge ' , &
'maxDipoleHeightScrew' ] !< list of other dependent state variables that are not updated by microstructure
real ( pReal ) , parameter , private :: &
KB = 1.38e-23_pReal !< Physical parameter, Boltzmann constant in J/Kelvin
2012-05-16 20:13:26 +05:30
2014-05-23 22:43:08 +05:30
integer ( pInt ) , dimension ( : ) , allocatable , public , protected :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_sizeDotState , & !< number of dotStates = number of basic state variables
plastic_nonlocal_sizeDependentState , & !< number of dependent state variables
plastic_nonlocal_sizeState , & !< total number of state variables
plastic_nonlocal_sizePostResults !< cumulative size of post results
2009-08-11 22:01:57 +05:30
2014-05-23 22:43:08 +05:30
integer ( pInt ) , dimension ( : , : ) , allocatable , target , public :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_sizePostResult !< size of each post result output
2014-05-23 22:43:08 +05:30
character ( len = 64 ) , dimension ( : , : ) , allocatable , target , public :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_output !< name of each post result output
2014-05-23 22:43:08 +05:30
2014-09-26 15:55:26 +05:30
integer ( pInt ) , dimension ( : ) , allocatable , target , public :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput !< number of outputs per instance of this plasticity
2014-05-23 22:43:08 +05:30
integer ( pInt ) , dimension ( : , : ) , allocatable , private :: &
iGamma , & !< state indices for accumulated shear
iRhoF , & !< state indices for forest density
iTauF , & !< state indices for critical resolved shear stress
iTauB !< state indices for backstress
integer ( pInt ) , dimension ( : , : , : ) , allocatable , private :: &
iRhoU , & !< state indices for unblocked density
iRhoB , & !< state indices for blocked density
iRhoD , & !< state indices for dipole density
iV , & !< state indices for dislcation velocities
iD !< state indices for stable dipole height
2014-10-28 08:12:25 +05:30
integer ( pInt ) , dimension ( : ) , allocatable , public , protected :: &
2014-05-23 22:43:08 +05:30
totalNslip !< total number of active slip systems for each instance
integer ( pInt ) , dimension ( : , : ) , allocatable , private :: &
Nslip , & !< number of active slip systems for each family and instance
slipFamily , & !< lookup table relating active slip system to slip family for each instance
slipSystemLattice , & !< lookup table relating active slip system index to lattice slip system index for each instance
colinearSystem !< colinear system to the active slip system (only valid for fcc!)
real ( pReal ) , dimension ( : ) , allocatable , private :: &
atomicVolume , & !< atomic volume
Dsd0 , & !< prefactor for self-diffusion coefficient
selfDiffusionEnergy , & !< activation enthalpy for diffusion
aTolRho , & !< absolute tolerance for dislocation density in state integration
aTolShear , & !< absolute tolerance for accumulated shear in state integration
significantRho , & !< density considered significant
significantN , & !< number of dislocations considered significant
cutoffRadius , & !< cutoff radius for dislocation stress
doublekinkwidth , & !< width of a doubkle kink in multiples of the burgers vector length b
solidSolutionEnergy , & !< activation energy for solid solution in J
solidSolutionSize , & !< solid solution obstacle size in multiples of the burgers vector length
solidSolutionConcentration , & !< concentration of solid solution in atomic parts
pParam , & !< parameter for kinetic law (Kocks,Argon,Ashby)
qParam , & !< parameter for kinetic law (Kocks,Argon,Ashby)
viscosity , & !< viscosity for dislocation glide in Pa s
fattack , & !< attack frequency in Hz
rhoSglScatter , & !< standard deviation of scatter in initial dislocation density
surfaceTransmissivity , & !< transmissivity at free surface
grainboundaryTransmissivity , & !< transmissivity at grain boundary (identified by different texture)
CFLfactor , & !< safety factor for CFL flux condition
fEdgeMultiplication , & !< factor that determines how much edge dislocations contribute to multiplication (0...1)
rhoSglRandom , &
rhoSglRandomBinning , &
linetensionEffect , &
edgeJogFactor
real ( pReal ) , dimension ( : , : ) , allocatable , private :: &
rhoSglEdgePos0 , & !< initial edge_pos dislocation density per slip system for each family and instance
rhoSglEdgeNeg0 , & !< initial edge_neg dislocation density per slip system for each family and instance
rhoSglScrewPos0 , & !< initial screw_pos dislocation density per slip system for each family and instance
rhoSglScrewNeg0 , & !< initial screw_neg dislocation density per slip system for each family and instance
rhoDipEdge0 , & !< initial edge dipole dislocation density per slip system for each family and instance
rhoDipScrew0 , & !< initial screw dipole dislocation density per slip system for each family and instance
lambda0PerSlipFamily , & !< mean free path prefactor for each family and instance
lambda0 , & !< mean free path prefactor for each slip system and instance
burgersPerSlipFamily , & !< absolute length of burgers vector [m] for each family and instance
burgers , & !< absolute length of burgers vector [m] for each slip system and instance
interactionSlipSlip !< coefficients for slip-slip interaction for each interaction type and instance
real ( pReal ) , dimension ( : , : , : ) , allocatable , private :: &
minDipoleHeightPerSlipFamily , & !< minimum stable edge/screw dipole height for each family and instance
minDipoleHeight , & !< minimum stable edge/screw dipole height for each slip system and instance
peierlsStressPerSlipFamily , & !< Peierls stress (edge and screw)
peierlsStress , & !< Peierls stress (edge and screw)
forestProjectionEdge , & !< matrix of forest projections of edge dislocations for each instance
forestProjectionScrew , & !< matrix of forest projections of screw dislocations for each instance
interactionMatrixSlipSlip !< interaction matrix of the different slip systems for each instance
real ( pReal ) , dimension ( : , : , : , : ) , allocatable , private :: &
lattice2slip , & !< orthogonal transformation matrix from lattice coordinate system to slip coordinate system (passive rotation !!!)
rhoDotEdgeJogsOutput , &
sourceProbability
real ( pReal ) , dimension ( : , : , : , : , : ) , allocatable , private :: &
rhoDotFluxOutput , &
rhoDotMultiplicationOutput , &
rhoDotSingle2DipoleGlideOutput , &
rhoDotAthermalAnnihilationOutput , &
rhoDotThermalAnnihilationOutput , &
nonSchmidProjection !< combined projection of Schmid and non-Schmid contributions to the resolved shear stress (only for screws)
real ( pReal ) , dimension ( : , : , : , : , : , : ) , allocatable , private :: &
compatibility !< slip system compatibility between me and my neighbors
real ( pReal ) , dimension ( : , : ) , allocatable , private :: &
nonSchmidCoeff
logical , dimension ( : ) , allocatable , private :: &
shortRangeStressCorrection , & !< flag indicating the use of the short range stress correction by a excess density gradient term
probabilisticMultiplication
enum , bind ( c )
enumerator :: undefined_ID , &
rho_ID , &
delta_ID , &
rho_edge_ID , &
rho_screw_ID , &
rho_sgl_ID , &
delta_sgl_ID , &
rho_sgl_edge_ID , &
rho_sgl_edge_pos_ID , &
rho_sgl_edge_neg_ID , &
rho_sgl_screw_ID , &
rho_sgl_screw_pos_ID , &
rho_sgl_screw_neg_ID , &
rho_sgl_mobile_ID , &
rho_sgl_edge_mobile_ID , &
rho_sgl_edge_pos_mobile_ID , &
rho_sgl_edge_neg_mobile_ID , &
rho_sgl_screw_mobile_ID , &
rho_sgl_screw_pos_mobile_ID , &
rho_sgl_screw_neg_mobile_ID , &
rho_sgl_immobile_ID , &
rho_sgl_edge_immobile_ID , &
rho_sgl_edge_pos_immobile_ID , &
rho_sgl_edge_neg_immobile_ID , &
rho_sgl_screw_immobile_ID , &
rho_sgl_screw_pos_immobile_ID , &
rho_sgl_screw_neg_immobile_ID , &
rho_dip_ID , &
delta_dip_ID , &
rho_dip_edge_ID , &
rho_dip_screw_ID , &
excess_rho_ID , &
excess_rho_edge_ID , &
excess_rho_screw_ID , &
rho_forest_ID , &
shearrate_ID , &
resolvedstress_ID , &
resolvedstress_external_ID , &
resolvedstress_back_ID , &
resistance_ID , &
rho_dot_ID , &
rho_dot_sgl_ID , &
rho_dot_sgl_mobile_ID , &
rho_dot_dip_ID , &
rho_dot_gen_ID , &
rho_dot_gen_edge_ID , &
rho_dot_gen_screw_ID , &
rho_dot_sgl2dip_ID , &
rho_dot_sgl2dip_edge_ID , &
rho_dot_sgl2dip_screw_ID , &
rho_dot_ann_ath_ID , &
rho_dot_ann_the_ID , &
rho_dot_ann_the_edge_ID , &
rho_dot_ann_the_screw_ID , &
rho_dot_edgejogs_ID , &
rho_dot_flux_ID , &
rho_dot_flux_mobile_ID , &
rho_dot_flux_edge_ID , &
rho_dot_flux_screw_ID , &
velocity_edge_pos_ID , &
velocity_edge_neg_ID , &
velocity_screw_pos_ID , &
velocity_screw_neg_ID , &
slipdirectionx_ID , &
slipdirectiony_ID , &
slipdirectionz_ID , &
slipnormalx_ID , &
slipnormaly_ID , &
slipnormalz_ID , &
fluxdensity_edge_posx_ID , &
fluxdensity_edge_posy_ID , &
fluxdensity_edge_posz_ID , &
fluxdensity_edge_negx_ID , &
fluxdensity_edge_negy_ID , &
fluxdensity_edge_negz_ID , &
fluxdensity_screw_posx_ID , &
fluxdensity_screw_posy_ID , &
fluxdensity_screw_posz_ID , &
fluxdensity_screw_negx_ID , &
fluxdensity_screw_negy_ID , &
fluxdensity_screw_negz_ID , &
maximumdipoleheight_edge_ID , &
maximumdipoleheight_screw_ID , &
accumulatedshear_ID , &
dislocationstress_ID
end enum
integer ( kind ( undefined_ID ) ) , dimension ( : , : ) , allocatable , private :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_outputID !< ID of each post result output
2014-05-23 22:43:08 +05:30
public :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_init , &
plastic_nonlocal_stateInit , &
plastic_nonlocal_aTolState , &
plastic_nonlocal_microstructure , &
plastic_nonlocal_LpAndItsTangent , &
plastic_nonlocal_dotState , &
plastic_nonlocal_deltaState , &
plastic_nonlocal_updateCompatibility , &
plastic_nonlocal_postResults
2014-05-23 22:43:08 +05:30
private :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_kinetics , &
plastic_nonlocal_dislocationstress
2014-05-23 22:43:08 +05:30
2009-08-11 22:01:57 +05:30
2013-11-27 13:34:05 +05:30
contains
2009-08-11 22:01:57 +05:30
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_init ( fileUnit )
2012-02-13 19:48:07 +05:30
use , intrinsic :: iso_fortran_env ! to get compiler_version and compiler_options (at least for gfortran 4.6 at the moment)
2009-08-11 22:01:57 +05:30
use math , only : math_Mandel3333to66 , &
math_Voigt66to3333 , &
2011-08-02 16:47:45 +05:30
math_mul3x3 , &
2012-01-26 19:20:00 +05:30
math_transpose33
2013-06-27 00:49:00 +05:30
use IO , only : IO_read , &
IO_lc , &
2009-08-11 22:01:57 +05:30
IO_getTag , &
IO_isBlank , &
IO_stringPos , &
IO_stringValue , &
IO_floatValue , &
IO_intValue , &
2013-09-12 20:17:09 +05:30
IO_warning , &
2013-12-19 14:19:47 +05:30
IO_error , &
2013-12-12 15:46:50 +05:30
IO_timeStamp , &
IO_EOF
2012-07-05 15:24:50 +05:30
use debug , only : debug_level , &
2012-03-09 01:55:28 +05:30
debug_constitutive , &
debug_levelBasic
2010-02-17 18:51:36 +05:30
use mesh , only : mesh_NcpElems , &
2010-10-12 18:38:54 +05:30
mesh_maxNips , &
2013-05-23 23:16:21 +05:30
mesh_maxNipNeighbors
2015-04-11 13:55:23 +05:30
use material , only : phase_plasticity , &
2015-04-11 14:55:15 +05:30
homogenization_maxNgrains , &
2012-03-12 19:39:37 +05:30
phase_plasticityInstance , &
2013-11-27 13:34:05 +05:30
phase_Noutput , &
PLASTICITY_NONLOCAL_label , &
2013-12-19 14:19:47 +05:30
PLASTICITY_NONLOCAL_ID , &
2014-06-14 02:23:17 +05:30
plasticState , &
2014-07-02 17:57:39 +05:30
MATERIAL_partPhase , &
material_phase
2013-02-15 03:54:55 +05:30
use lattice
2014-07-02 17:57:39 +05:30
use numerics , only : &
2015-08-28 16:25:38 +05:30
analyticJaco , &
2014-10-10 01:53:06 +05:30
worldrank , &
2015-08-28 16:25:38 +05:30
numerics_integrator
2009-08-11 22:01:57 +05:30
2014-06-14 02:23:17 +05:30
implicit none
2013-12-12 15:46:50 +05:30
integer ( pInt ) , intent ( in ) :: fileUnit
2009-08-11 22:01:57 +05:30
!*** local variables
2015-08-28 13:08:48 +05:30
integer ( pInt ) , allocatable , dimension ( : ) :: chunkPos
2014-03-11 23:10:59 +05:30
integer ( pInt ) :: phase , &
2014-03-04 19:17:04 +05:30
maxNinstances , &
2009-08-11 22:01:57 +05:30
maxTotalNslip , &
f , & ! index of my slip family
2014-03-09 02:20:31 +05:30
instance , & ! index of my instance of this plasticity
2009-08-11 22:01:57 +05:30
l , &
2009-09-18 21:07:14 +05:30
ns , & ! short notation for total number of active slip systems for the current instance
2009-08-11 22:01:57 +05:30
o , & ! index of my output
s , & ! index of my slip system
s1 , & ! index of my slip system
s2 , & ! index of my slip system
2009-08-24 13:46:01 +05:30
it , & ! index of my interaction type
2013-05-24 14:32:30 +05:30
t , & ! index of dislocation type
c , & ! index of dislocation character
2013-03-27 18:34:01 +05:30
Nchunks_SlipSlip = 0_pInt , &
Nchunks_SlipFamilies = 0_pInt , &
2013-09-12 20:17:09 +05:30
Nchunks_nonSchmid = 0_pInt , &
2013-02-11 16:13:45 +05:30
mySize = 0_pInt ! to suppress warnings, safe as init is called only once
2013-11-28 14:26:02 +05:30
character ( len = 65536 ) :: &
tag = '' , &
2014-06-14 02:23:17 +05:30
line = ''
2014-07-02 17:57:39 +05:30
2015-06-01 21:32:27 +05:30
integer ( pInt ) :: sizeState , sizeDotState , sizeDependentState , sizeDeltaState
2014-07-02 17:57:39 +05:30
integer ( pInt ) :: NofMyPhase
2013-01-09 03:41:59 +05:30
2014-10-10 22:15:14 +05:30
mainProcess : if ( worldrank == 0 ) then
write ( 6 , '(/,a)' ) ' <<<+- constitutive_' / / PLASTICITY_NONLOCAL_label / / ' init -+>>>'
write ( 6 , '(a15,a)' ) ' Current time: ' , IO_timeStamp ( )
2012-02-01 00:48:55 +05:30
#include "compilation_info.f90"
2014-10-10 22:15:14 +05:30
endif mainProcess
2009-08-11 22:01:57 +05:30
2014-03-04 19:17:04 +05:30
maxNinstances = int ( count ( phase_plasticity == PLASTICITY_NONLOCAL_ID ) , pInt )
2014-07-02 17:57:39 +05:30
if ( maxNinstances == 0 ) return ! we don't have to do anything if there's no instance for this constitutive law
2009-08-11 22:01:57 +05:30
2013-10-09 11:42:16 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelBasic ) / = 0_pInt ) &
2014-03-04 19:17:04 +05:30
write ( 6 , '(a16,1x,i5,/)' ) '# instances:' , maxNinstances
2011-03-21 16:01:17 +05:30
2013-02-15 03:54:55 +05:30
!*** memory allocation for global variables
2009-08-11 22:01:57 +05:30
2014-12-08 21:25:30 +05:30
allocate ( plastic_nonlocal_sizeDotState ( maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_sizeDependentState ( maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_sizeState ( maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_sizePostResults ( maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_sizePostResult ( maxval ( phase_Noutput ) , maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_Noutput ( maxNinstances ) , source = 0_pInt )
allocate ( plastic_nonlocal_output ( maxval ( phase_Noutput ) , maxNinstances ) )
plastic_nonlocal_output = ''
allocate ( plastic_nonlocal_outputID ( maxval ( phase_Noutput ) , maxNinstances ) , source = undefined_ID )
2014-03-04 19:17:04 +05:30
allocate ( Nslip ( lattice_maxNslipFamily , maxNinstances ) , source = 0_pInt )
allocate ( slipFamily ( lattice_maxNslip , maxNinstances ) , source = 0_pInt )
allocate ( slipSystemLattice ( lattice_maxNslip , maxNinstances ) , source = 0_pInt )
allocate ( totalNslip ( maxNinstances ) , source = 0_pInt )
allocate ( atomicVolume ( maxNinstances ) , source = 0.0_pReal )
allocate ( Dsd0 ( maxNinstances ) , source = - 1.0_pReal )
allocate ( selfDiffusionEnergy ( maxNinstances ) , source = 0.0_pReal )
allocate ( aTolRho ( maxNinstances ) , source = 0.0_pReal )
allocate ( aTolShear ( maxNinstances ) , source = 0.0_pReal )
allocate ( significantRho ( maxNinstances ) , source = 0.0_pReal )
allocate ( significantN ( maxNinstances ) , source = 0.0_pReal )
allocate ( cutoffRadius ( maxNinstances ) , source = - 1.0_pReal )
allocate ( doublekinkwidth ( maxNinstances ) , source = 0.0_pReal )
allocate ( solidSolutionEnergy ( maxNinstances ) , source = 0.0_pReal )
allocate ( solidSolutionSize ( maxNinstances ) , source = 0.0_pReal )
allocate ( solidSolutionConcentration ( maxNinstances ) , source = 0.0_pReal )
allocate ( pParam ( maxNinstances ) , source = 1.0_pReal )
allocate ( qParam ( maxNinstances ) , source = 1.0_pReal )
allocate ( viscosity ( maxNinstances ) , source = 0.0_pReal )
allocate ( fattack ( maxNinstances ) , source = 0.0_pReal )
allocate ( rhoSglScatter ( maxNinstances ) , source = 0.0_pReal )
allocate ( rhoSglRandom ( maxNinstances ) , source = 0.0_pReal )
allocate ( rhoSglRandomBinning ( maxNinstances ) , source = 1.0_pReal )
allocate ( surfaceTransmissivity ( maxNinstances ) , source = 1.0_pReal )
allocate ( grainboundaryTransmissivity ( maxNinstances ) , source = - 1.0_pReal )
allocate ( CFLfactor ( maxNinstances ) , source = 2.0_pReal )
allocate ( fEdgeMultiplication ( maxNinstances ) , source = 0.0_pReal )
allocate ( linetensionEffect ( maxNinstances ) , source = 0.0_pReal )
allocate ( edgeJogFactor ( maxNinstances ) , source = 1.0_pReal )
allocate ( shortRangeStressCorrection ( maxNinstances ) , source = . false . )
allocate ( probabilisticMultiplication ( maxNinstances ) , source = . false . )
allocate ( rhoSglEdgePos0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( rhoSglEdgeNeg0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( rhoSglScrewPos0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( rhoSglScrewNeg0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( rhoDipEdge0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( rhoDipScrew0 ( lattice_maxNslipFamily , maxNinstances ) , source = - 1.0_pReal )
allocate ( burgersPerSlipFamily ( lattice_maxNslipFamily , maxNinstances ) , source = 0.0_pReal )
allocate ( lambda0PerSlipFamily ( lattice_maxNslipFamily , maxNinstances ) , source = 0.0_pReal )
allocate ( interactionSlipSlip ( lattice_maxNinteraction , maxNinstances ) , source = 0.0_pReal )
allocate ( minDipoleHeightPerSlipFamily ( lattice_maxNslipFamily , 2 , maxNinstances ) , source = - 1.0_pReal )
allocate ( peierlsStressPerSlipFamily ( lattice_maxNslipFamily , 2 , maxNinstances ) , source = 0.0_pReal )
allocate ( nonSchmidCoeff ( lattice_maxNnonSchmid , maxNinstances ) , source = 0.0_pReal )
2009-08-28 19:20:47 +05:30
2013-01-22 05:20:28 +05:30
2014-03-09 02:20:31 +05:30
rewind ( fileUnit )
phase = 0_pInt
do while ( trim ( line ) / = IO_EOF . and . IO_lc ( IO_getTag ( line , '<' , '>' ) ) / = MATERIAL_partPhase ) ! wind forward to <phase>
line = IO_read ( fileUnit )
enddo
2009-08-11 22:01:57 +05:30
2014-03-09 02:20:31 +05:30
parsingFile : do while ( trim ( line ) / = IO_EOF ) ! read through phases of phase part
line = IO_read ( fileUnit )
if ( IO_isBlank ( line ) ) cycle ! skip empty lines
if ( IO_getTag ( line , '<' , '>' ) / = '' ) then ! stop at next part
line = IO_read ( fileUnit , . true . ) ! reset IO_read
exit
endif
if ( IO_getTag ( line , '[' , ']' ) / = '' ) then ! next phase
phase = phase + 1_pInt ! advance phase section counter
if ( phase_plasticity ( phase ) == PLASTICITY_NONLOCAL_ID ) then
Nchunks_SlipFamilies = count ( lattice_NslipSystem ( : , phase ) > 0_pInt )
Nchunks_SlipSlip = maxval ( lattice_InteractionSlipSlip ( : , : , phase ) )
Nchunks_nonSchmid = lattice_NnonSchmid ( phase )
endif
cycle
endif
if ( phase > 0_pInt ) then ; if ( phase_plasticity ( phase ) == PLASTICITY_NONLOCAL_ID ) then ! one of my phases. do not short-circuit here (.and. with next if statement). It's not safe in Fortran
instance = phase_plasticityInstance ( phase ) ! which instance of my plasticity is present phase
2015-08-28 13:08:48 +05:30
chunkPos = IO_stringPos ( line )
tag = IO_lc ( IO_stringValue ( line , chunkPos , 1_pInt ) ) ! extract key
2014-03-09 02:20:31 +05:30
select case ( tag )
case ( '(output)' )
2015-08-28 13:08:48 +05:30
select case ( IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) ) )
2015-03-09 16:59:44 +05:30
case ( 'rho' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'delta' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = delta_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'delta_sgl' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = delta_sgl_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_pos' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_pos_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_neg' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_neg_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_pos' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_pos_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_neg' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_neg_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_pos_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_pos_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_neg_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_neg_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_pos_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_pos_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_neg_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_neg_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_pos_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_pos_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_edge_neg_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_edge_neg_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_pos_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_pos_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_sgl_screw_neg_immobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_sgl_screw_neg_immobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dip' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dip_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'delta_dip' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = delta_dip_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dip_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dip_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dip_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dip_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'excess_rho' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = excess_rho_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'excess_rho_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = excess_rho_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'excess_rho_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = excess_rho_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_forest' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_forest_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'shearrate' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = shearrate_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'resolvedstress' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = resolvedstress_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'resolvedstress_external' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = resolvedstress_external_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'resolvedstress_back' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = resolvedstress_back_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'resistance' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = resistance_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_sgl' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_sgl_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_sgl_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_sgl_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_dip' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_dip_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_gen' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_gen_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_gen_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_gen_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_gen_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_gen_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_sgl2dip' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_sgl2dip_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_sgl2dip_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_sgl2dip_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_sgl2dip_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_sgl2dip_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_ann_ath' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_ann_ath_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_ann_the' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_ann_the_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_ann_the_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_ann_the_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_ann_the_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_ann_the_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_edgejogs' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_edgejogs_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_flux' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_flux_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_flux_mobile' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_flux_mobile_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_flux_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_flux_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'rho_dot_flux_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = rho_dot_flux_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'velocity_edge_pos' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = velocity_edge_pos_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'velocity_edge_neg' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = velocity_edge_neg_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'velocity_screw_pos' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = velocity_screw_pos_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'velocity_screw_neg' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = velocity_screw_neg_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipdirection.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipdirectionx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipdirection.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipdirectiony_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipdirection.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipdirectionz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipnormal.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipnormalx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipnormal.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipnormaly_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'slipnormal.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = slipnormalz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_pos.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_posx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_pos.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_posy_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_pos.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_posz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_neg.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_negx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_neg.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_negy_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_edge_neg.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_edge_negz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_pos.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_posx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_pos.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_posy_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_pos.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_posz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_neg.x' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_negx_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_neg.y' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_negy_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'fluxdensity_screw_neg.z' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = fluxdensity_screw_negz_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'maximumdipoleheight_edge' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = maximumdipoleheight_edge_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'maximumdipoleheight_screw' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = maximumdipoleheight_screw_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'accumulatedshear' , 'accumulated_shear' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = accumulatedshear_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2015-03-09 16:59:44 +05:30
case ( 'dislocationstress' )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_Noutput ( instance ) = plastic_nonlocal_Noutput ( instance ) + 1_pInt
plastic_nonlocal_outputID ( plastic_nonlocal_Noutput ( instance ) , instance ) = dislocationstress_ID
plastic_nonlocal_output ( plastic_nonlocal_Noutput ( instance ) , instance ) = &
2015-08-28 13:08:48 +05:30
IO_lc ( IO_stringValue ( line , chunkPos , 2_pInt ) )
2014-03-09 02:20:31 +05:30
end select
case ( 'nslip' )
2015-08-28 13:08:48 +05:30
if ( chunkPos ( 1 ) < 1_pInt + Nchunks_SlipFamilies ) &
2014-03-09 02:20:31 +05:30
call IO_warning ( 50_pInt , ext_msg = trim ( tag ) / / ' (' / / PLASTICITY_NONLOCAL_LABEL / / ')' )
2015-08-28 13:08:48 +05:30
Nchunks_SlipFamilies = chunkPos ( 1 ) - 1_pInt
2014-03-09 02:20:31 +05:30
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
Nslip ( f , instance ) = IO_intValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhosgledgepos0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoSglEdgePos0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhosgledgeneg0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoSglEdgeNeg0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhosglscrewpos0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoSglScrewPos0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhosglscrewneg0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoSglScrewNeg0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhodipedge0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoDipEdge0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'rhodipscrew0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
rhoDipScrew0 ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'lambda0' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
lambda0PerSlipFamily ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'burgers' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
burgersPerSlipFamily ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'cutoffradius' , 'r' )
2015-08-28 13:08:48 +05:30
cutoffRadius ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'minimumdipoleheightedge' , 'ddipminedge' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
minDipoleHeightPerSlipFamily ( f , 1_pInt , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'minimumdipoleheightscrew' , 'ddipminscrew' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
minDipoleHeightPerSlipFamily ( f , 2_pInt , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'atomicvolume' )
2015-08-28 13:08:48 +05:30
atomicVolume ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'selfdiffusionprefactor' , 'dsd0' )
2015-08-28 13:08:48 +05:30
Dsd0 ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'selfdiffusionenergy' , 'qsd' )
2015-08-28 13:08:48 +05:30
selfDiffusionEnergy ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'atol_rho' , 'atol_density' , 'absolutetolerancedensity' , 'absolutetolerance_density' )
2015-08-28 13:08:48 +05:30
aTolRho ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'atol_shear' , 'atol_plasticshear' , 'atol_accumulatedshear' , 'absolutetoleranceshear' , 'absolutetolerance_shear' )
2015-08-28 13:08:48 +05:30
aTolShear ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'significantrho' , 'significant_rho' , 'significantdensity' , 'significant_density' )
2015-08-28 13:08:48 +05:30
significantRho ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'significantn' , 'significant_n' , 'significantdislocations' , 'significant_dislcations' )
2015-08-28 13:08:48 +05:30
significantN ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'interaction_slipslip' )
2015-08-28 13:08:48 +05:30
if ( chunkPos ( 1 ) < 1_pInt + Nchunks_SlipSlip ) &
2014-03-09 02:20:31 +05:30
call IO_warning ( 52_pInt , ext_msg = trim ( tag ) / / ' (' / / PLASTICITY_NONLOCAL_LABEL / / ')' )
do it = 1_pInt , Nchunks_SlipSlip
2015-08-28 13:08:48 +05:30
interactionSlipSlip ( it , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + it )
2014-03-09 02:20:31 +05:30
enddo
case ( 'linetension' , 'linetensioneffect' , 'linetension_effect' )
2015-08-28 13:08:48 +05:30
linetensionEffect ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'edgejog' , 'edgejogs' , 'edgejogeffect' , 'edgejog_effect' )
2015-08-28 13:08:48 +05:30
edgeJogFactor ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'peierlsstressedge' , 'peierlsstress_edge' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
peierlsStressPerSlipFamily ( f , 1_pInt , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'peierlsstressscrew' , 'peierlsstress_screw' )
do f = 1_pInt , Nchunks_SlipFamilies
2015-08-28 13:08:48 +05:30
peierlsStressPerSlipFamily ( f , 2_pInt , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'doublekinkwidth' )
2015-08-28 13:08:48 +05:30
doublekinkwidth ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'solidsolutionenergy' )
2015-08-28 13:08:48 +05:30
solidSolutionEnergy ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'solidsolutionsize' )
2015-08-28 13:08:48 +05:30
solidSolutionSize ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'solidsolutionconcentration' )
2015-08-28 13:08:48 +05:30
solidSolutionConcentration ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'p' )
2015-08-28 13:08:48 +05:30
pParam ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'q' )
2015-08-28 13:08:48 +05:30
qParam ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'viscosity' , 'glideviscosity' )
2015-08-28 13:08:48 +05:30
viscosity ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'attackfrequency' , 'fattack' )
2015-08-28 13:08:48 +05:30
fattack ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'rhosglscatter' )
2015-08-28 13:08:48 +05:30
rhoSglScatter ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'rhosglrandom' )
2015-08-28 13:08:48 +05:30
rhoSglRandom ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'rhosglrandombinning' )
2015-08-28 13:08:48 +05:30
rhoSglRandomBinning ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'surfacetransmissivity' )
2015-08-28 13:08:48 +05:30
surfaceTransmissivity ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'grainboundarytransmissivity' )
2015-08-28 13:08:48 +05:30
grainboundaryTransmissivity ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'cflfactor' )
2015-08-28 13:08:48 +05:30
CFLfactor ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'fedgemultiplication' , 'edgemultiplicationfactor' , 'edgemultiplication' )
2015-08-28 13:08:48 +05:30
fEdgeMultiplication ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt )
2014-03-09 02:20:31 +05:30
case ( 'shortrangestresscorrection' )
2015-08-28 13:08:48 +05:30
shortRangeStressCorrection ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt ) > 0.0_pReal
2014-03-09 02:20:31 +05:30
case ( 'nonschmid_coefficients' )
2015-08-28 13:08:48 +05:30
if ( chunkPos ( 1 ) < 1_pInt + Nchunks_nonSchmid ) &
2014-03-09 02:20:31 +05:30
call IO_warning ( 52_pInt , ext_msg = trim ( tag ) / / ' (' / / PLASTICITY_NONLOCAL_label / / ')' )
do f = 1_pInt , Nchunks_nonSchmid
2015-08-28 13:08:48 +05:30
nonSchmidCoeff ( f , instance ) = IO_floatValue ( line , chunkPos , 1_pInt + f )
2014-03-09 02:20:31 +05:30
enddo
case ( 'probabilisticmultiplication' , 'randomsources' , 'randommultiplication' , 'discretesources' )
2015-08-28 13:08:48 +05:30
probabilisticMultiplication ( instance ) = IO_floatValue ( line , chunkPos , 2_pInt ) > 0.0_pReal
2014-03-09 02:20:31 +05:30
end select
endif ; endif
enddo parsingFile
sanityChecks : do phase = 1_pInt , size ( phase_plasticity )
myPhase : if ( phase_plasticity ( phase ) == PLASTICITY_NONLOCAL_ID ) then
2014-03-12 05:25:40 +05:30
instance = phase_plasticityInstance ( phase )
2014-03-09 02:20:31 +05:30
if ( sum ( Nslip ( : , instance ) ) < = 0_pInt ) &
call IO_error ( 211_pInt , ext_msg = 'Nslip (' / / PLASTICITY_NONLOCAL_label / / ')' )
do o = 1_pInt , maxval ( phase_Noutput )
2014-12-08 21:25:30 +05:30
if ( len ( plastic_nonlocal_output ( o , instance ) ) > 64_pInt ) &
2014-03-09 02:20:31 +05:30
call IO_error ( 666_pInt )
enddo
do f = 1_pInt , lattice_maxNslipFamily
if ( Nslip ( f , instance ) > 0_pInt ) then
if ( rhoSglEdgePos0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglEdgePos0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglEdgeNeg0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglEdgeNeg0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglScrewPos0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglScrewPos0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglScrewNeg0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglScrewNeg0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoDipEdge0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoDipEdge0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoDipScrew0 ( f , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoDipScrew0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( burgersPerSlipFamily ( f , instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'Burgers (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( lambda0PerSlipFamily ( f , instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'lambda0 (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( minDipoleHeightPerSlipFamily ( f , 1 , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'minimumDipoleHeightEdge (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( minDipoleHeightPerSlipFamily ( f , 2 , instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'minimumDipoleHeightScrew (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( peierlsStressPerSlipFamily ( f , 1 , instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'peierlsStressEdge (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( peierlsStressPerSlipFamily ( f , 2 , instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'peierlsStressScrew (' / / PLASTICITY_NONLOCAL_label / / ')' )
endif
enddo
if ( any ( interactionSlipSlip ( 1 : maxval ( lattice_interactionSlipSlip ( : , : , phase ) ) , instance ) < 0.0_pReal ) ) &
call IO_error ( 211_pInt , ext_msg = 'interaction_SlipSlip (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( linetensionEffect ( instance ) < 0.0_pReal . or . linetensionEffect ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'linetension (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( edgeJogFactor ( instance ) < 0.0_pReal . or . edgeJogFactor ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'edgejog (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( cutoffRadius ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'r (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( atomicVolume ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'atomicVolume (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( Dsd0 ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'selfDiffusionPrefactor (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( selfDiffusionEnergy ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'selfDiffusionEnergy (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( aTolRho ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'aTol_rho (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( aTolShear ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'aTol_shear (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( significantRho ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'significantRho (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( significantN ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'significantN (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( doublekinkwidth ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'doublekinkwidth (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( solidSolutionEnergy ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'solidSolutionEnergy (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( solidSolutionSize ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'solidSolutionSize (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( solidSolutionConcentration ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'solidSolutionConcentration (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( pParam ( instance ) < = 0.0_pReal . or . pParam ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'p (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( qParam ( instance ) < 1.0_pReal . or . qParam ( instance ) > 2.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'q (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( viscosity ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'viscosity (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( fattack ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'attackFrequency (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglScatter ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglScatter (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglRandom ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglRandom (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( rhoSglRandomBinning ( instance ) < = 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'rhoSglRandomBinning (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( surfaceTransmissivity ( instance ) < 0.0_pReal . or . surfaceTransmissivity ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'surfaceTransmissivity (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( grainboundaryTransmissivity ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'grainboundaryTransmissivity (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( CFLfactor ( instance ) < 0.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'CFLfactor (' / / PLASTICITY_NONLOCAL_label / / ')' )
if ( fEdgeMultiplication ( instance ) < 0.0_pReal . or . fEdgeMultiplication ( instance ) > 1.0_pReal ) &
call IO_error ( 211_pInt , ext_msg = 'edgemultiplicationfactor (' / / PLASTICITY_NONLOCAL_label / / ')' )
!*** determine total number of active slip systems
Nslip ( 1 : lattice_maxNslipFamily , instance ) = min ( lattice_NslipSystem ( 1 : lattice_maxNslipFamily , phase ) , &
2014-03-12 05:25:40 +05:30
Nslip ( 1 : lattice_maxNslipFamily , instance ) ) ! we can't use more slip systems per family than specified in lattice
2014-03-09 02:20:31 +05:30
totalNslip ( instance ) = sum ( Nslip ( 1 : lattice_maxNslipFamily , instance ) )
endif myPhase
enddo sanityChecks
2009-08-11 22:01:57 +05:30
!*** allocation of variables whose size depends on the total number of active slip systems
2013-05-24 01:26:36 +05:30
maxTotalNslip = maxval ( totalNslip )
2009-08-28 19:20:47 +05:30
2014-03-04 19:17:04 +05:30
allocate ( iRhoU ( maxTotalNslip , 4 , maxNinstances ) , source = 0_pInt )
allocate ( iRhoB ( maxTotalNslip , 4 , maxNinstances ) , source = 0_pInt )
allocate ( iRhoD ( maxTotalNslip , 2 , maxNinstances ) , source = 0_pInt )
allocate ( iV ( maxTotalNslip , 4 , maxNinstances ) , source = 0_pInt )
allocate ( iD ( maxTotalNslip , 2 , maxNinstances ) , source = 0_pInt )
allocate ( iGamma ( maxTotalNslip , maxNinstances ) , source = 0_pInt )
allocate ( iRhoF ( maxTotalNslip , maxNinstances ) , source = 0_pInt )
allocate ( iTauF ( maxTotalNslip , maxNinstances ) , source = 0_pInt )
allocate ( iTauB ( maxTotalNslip , maxNinstances ) , source = 0_pInt )
2014-03-09 02:20:31 +05:30
allocate ( burgers ( maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
allocate ( lambda0 ( maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
allocate ( minDipoleHeight ( maxTotalNslip , 2 , maxNinstances ) , source = - 1.0_pReal )
allocate ( forestProjectionEdge ( maxTotalNslip , maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
allocate ( forestProjectionScrew ( maxTotalNslip , maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
allocate ( interactionMatrixSlipSlip ( maxTotalNslip , maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
allocate ( lattice2slip ( 1 : 3 , 1 : 3 , maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
2013-12-12 15:46:50 +05:30
allocate ( sourceProbability ( maxTotalNslip , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 2.0_pReal )
allocate ( rhoDotFluxOutput ( maxTotalNslip , 8 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( rhoDotMultiplicationOutput ( maxTotalNslip , 2 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( rhoDotSingle2DipoleGlideOutput ( maxTotalNslip , 2 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( rhoDotAthermalAnnihilationOutput ( maxTotalNslip , 2 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( rhoDotThermalAnnihilationOutput ( maxTotalNslip , 2 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( rhoDotEdgeJogsOutput ( maxTotalNslip , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
allocate ( compatibility ( 2 , maxTotalNslip , maxTotalNslip , mesh_maxNipNeighbors , mesh_maxNips , mesh_NcpElems ) , &
source = 0.0_pReal )
2014-03-09 02:20:31 +05:30
allocate ( peierlsStress ( maxTotalNslip , 2 , maxNinstances ) , source = 0.0_pReal )
allocate ( colinearSystem ( maxTotalNslip , maxNinstances ) , source = 0_pInt )
allocate ( nonSchmidProjection ( 3 , 3 , 4 , maxTotalNslip , maxNinstances ) , source = 0.0_pReal )
2013-08-05 14:53:21 +05:30
2014-03-09 02:20:31 +05:30
initializeInstances : do phase = 1_pInt , size ( phase_plasticity )
2014-07-02 17:57:39 +05:30
NofMyPhase = count ( material_phase == phase )
2016-01-06 22:16:37 +05:30
myPhase2 : if ( phase_plasticity ( phase ) == PLASTICITY_NONLOCAL_ID . and . NofMyPhase / = 0 ) then
2014-03-11 23:10:59 +05:30
instance = phase_plasticityInstance ( phase )
2014-03-09 02:20:31 +05:30
!*** Inverse lookup of my slip system family and the slip system in lattice
l = 0_pInt
do f = 1_pInt , lattice_maxNslipFamily
do s = 1_pInt , Nslip ( f , instance )
l = l + 1_pInt
slipFamily ( l , instance ) = f
slipSystemLattice ( l , instance ) = sum ( lattice_NslipSystem ( 1 : f - 1_pInt , phase ) ) + s
enddo ; enddo
!*** determine size of state array
ns = totalNslip ( instance )
2014-07-08 20:28:23 +05:30
2014-06-26 19:23:12 +05:30
sizeDotState = int ( size ( BASICSTATES ) , pInt ) * ns
sizeDependentState = int ( size ( DEPENDENTSTATES ) , pInt ) * ns
sizeState = sizeDotState + sizeDependentState &
+ int ( size ( OTHERSTATES ) , pInt ) * ns
2015-06-01 21:32:27 +05:30
sizeDeltaState = sizeDotState
2014-06-14 02:23:17 +05:30
2014-03-09 02:20:31 +05:30
!*** determine indices to state array
2014-07-08 20:28:23 +05:30
2014-03-09 02:20:31 +05:30
l = 0_pInt
do t = 1_pInt , 4_pInt
do s = 1_pInt , ns
l = l + 1_pInt
iRhoU ( s , t , instance ) = l
enddo
enddo
do t = 1_pInt , 4_pInt
do s = 1_pInt , ns
l = l + 1_pInt
iRhoB ( s , t , instance ) = l
enddo
enddo
do c = 1_pInt , 2_pInt
do s = 1_pInt , ns
l = l + 1_pInt
iRhoD ( s , c , instance ) = l
enddo
enddo
do s = 1_pInt , ns
l = l + 1_pInt
iGamma ( s , instance ) = l
enddo
do s = 1_pInt , ns
l = l + 1_pInt
iRhoF ( s , instance ) = l
enddo
do s = 1_pInt , ns
l = l + 1_pInt
iTauF ( s , instance ) = l
enddo
do s = 1_pInt , ns
l = l + 1_pInt
iTauB ( s , instance ) = l
enddo
do t = 1_pInt , 4_pInt
do s = 1_pInt , ns
l = l + 1_pInt
iV ( s , t , instance ) = l
enddo
enddo
do c = 1_pInt , 2_pInt
do s = 1_pInt , ns
l = l + 1_pInt
iD ( s , c , instance ) = l
enddo
enddo
2014-07-02 20:24:43 +05:30
if ( iD ( ns , 2 , instance ) / = sizeState ) & ! check if last index is equal to size of state
2014-03-09 02:20:31 +05:30
call IO_error ( 0_pInt , ext_msg = 'state indices not properly set (' / / PLASTICITY_NONLOCAL_label / / ')' )
!*** determine size of postResults array
2014-12-08 21:25:30 +05:30
outputsLoop : do o = 1_pInt , plastic_nonlocal_Noutput ( instance )
select case ( plastic_nonlocal_outputID ( o , instance ) )
2014-03-09 02:20:31 +05:30
case ( rho_ID , &
delta_ID , &
rho_edge_ID , &
rho_screw_ID , &
rho_sgl_ID , &
delta_sgl_ID , &
rho_sgl_edge_ID , &
rho_sgl_edge_pos_ID , &
rho_sgl_edge_neg_ID , &
rho_sgl_screw_ID , &
rho_sgl_screw_pos_ID , &
rho_sgl_screw_neg_ID , &
rho_sgl_mobile_ID , &
rho_sgl_edge_mobile_ID , &
rho_sgl_edge_pos_mobile_ID , &
rho_sgl_edge_neg_mobile_ID , &
rho_sgl_screw_mobile_ID , &
rho_sgl_screw_pos_mobile_ID , &
rho_sgl_screw_neg_mobile_ID , &
rho_sgl_immobile_ID , &
rho_sgl_edge_immobile_ID , &
rho_sgl_edge_pos_immobile_ID , &
rho_sgl_edge_neg_immobile_ID , &
rho_sgl_screw_immobile_ID , &
rho_sgl_screw_pos_immobile_ID , &
rho_sgl_screw_neg_immobile_ID , &
rho_dip_ID , &
delta_dip_ID , &
rho_dip_edge_ID , &
rho_dip_screw_ID , &
excess_rho_ID , &
excess_rho_edge_ID , &
excess_rho_screw_ID , &
rho_forest_ID , &
shearrate_ID , &
resolvedstress_ID , &
resolvedstress_external_ID , &
resolvedstress_back_ID , &
resistance_ID , &
rho_dot_ID , &
rho_dot_sgl_ID , &
rho_dot_sgl_mobile_ID , &
rho_dot_dip_ID , &
rho_dot_gen_ID , &
rho_dot_gen_edge_ID , &
rho_dot_gen_screw_ID , &
rho_dot_sgl2dip_ID , &
rho_dot_sgl2dip_edge_ID , &
rho_dot_sgl2dip_screw_ID , &
rho_dot_ann_ath_ID , &
rho_dot_ann_the_ID , &
rho_dot_ann_the_edge_ID , &
rho_dot_ann_the_screw_ID , &
rho_dot_edgejogs_ID , &
rho_dot_flux_ID , &
rho_dot_flux_mobile_ID , &
rho_dot_flux_edge_ID , &
rho_dot_flux_screw_ID , &
velocity_edge_pos_ID , &
velocity_edge_neg_ID , &
velocity_screw_pos_ID , &
velocity_screw_neg_ID , &
slipdirectionx_ID , &
slipdirectiony_ID , &
slipdirectionz_ID , &
slipnormalx_ID , &
slipnormaly_ID , &
slipnormalz_ID , &
fluxdensity_edge_posx_ID , &
fluxdensity_edge_posy_ID , &
fluxdensity_edge_posz_ID , &
fluxdensity_edge_negx_ID , &
fluxdensity_edge_negy_ID , &
fluxdensity_edge_negz_ID , &
fluxdensity_screw_posx_ID , &
fluxdensity_screw_posy_ID , &
fluxdensity_screw_posz_ID , &
fluxdensity_screw_negx_ID , &
fluxdensity_screw_negy_ID , &
fluxdensity_screw_negz_ID , &
maximumdipoleheight_edge_ID , &
maximumdipoleheight_screw_ID , &
accumulatedshear_ID )
mySize = totalNslip ( instance )
case ( dislocationstress_ID )
mySize = 6_pInt
case default
end select
if ( mySize > 0_pInt ) then ! any meaningful output found
2014-12-08 21:25:30 +05:30
plastic_nonlocal_sizePostResult ( o , instance ) = mySize
plastic_nonlocal_sizePostResults ( instance ) = plastic_nonlocal_sizePostResults ( instance ) + mySize
2014-03-09 02:20:31 +05:30
endif
enddo outputsLoop
2014-07-08 20:28:23 +05:30
plasticState ( phase ) % sizeState = sizeState
plasticState ( phase ) % sizeDotState = sizeDotState
2015-06-01 21:32:27 +05:30
plasticState ( phase ) % sizeDeltaState = sizeDeltaState
2014-12-08 21:25:30 +05:30
plasticState ( phase ) % sizePostResults = plastic_nonlocal_sizePostResults ( instance )
2014-07-08 20:28:23 +05:30
plasticState ( phase ) % nonlocal = . true .
2015-01-05 00:56:33 +05:30
plasticState ( phase ) % nSlip = totalNslip ( instance )
plasticState ( phase ) % nTwin = 0_pInt
plasticState ( phase ) % nTrans = 0_pInt
2014-07-08 20:28:23 +05:30
allocate ( plasticState ( phase ) % aTolState ( sizeState ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % state0 ( sizeState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % partionedState0 ( sizeState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % subState0 ( sizeState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % state ( sizeState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % dotState ( sizeDotState , NofMyPhase ) , source = 0.0_pReal )
2015-06-01 21:32:27 +05:30
allocate ( plasticState ( phase ) % deltaState ( sizeDeltaState , NofMyPhase ) , source = 0.0_pReal )
2015-08-28 16:25:38 +05:30
if ( . not . analyticJaco ) then
allocate ( plasticState ( phase ) % state_backup ( sizeState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % dotState_backup ( sizeDotState , NofMyPhase ) , source = 0.0_pReal )
endif
2014-07-08 20:28:23 +05:30
if ( any ( numerics_integrator == 1_pInt ) ) then
allocate ( plasticState ( phase ) % previousDotState ( sizeDotState , NofMyPhase ) , source = 0.0_pReal )
allocate ( plasticState ( phase ) % previousDotState2 ( sizeDotState , NofMyPhase ) , source = 0.0_pReal )
endif
if ( any ( numerics_integrator == 4_pInt ) ) &
allocate ( plasticState ( phase ) % RK4dotState ( sizeDotState , NofMyPhase ) , source = 0.0_pReal )
if ( any ( numerics_integrator == 5_pInt ) ) &
allocate ( plasticState ( phase ) % RKCK45dotState ( 6 , sizeDotState , NofMyPhase ) , source = 0.0_pReal )
2015-01-05 00:56:33 +05:30
plasticState ( phase ) % slipRate = > &
plasticState ( phase ) % dotState ( iGamma ( 1 , instance ) : iGamma ( ns , instance ) , 1 : NofMyPhase )
plasticState ( phase ) % accumulatedSlip = > &
plasticState ( phase ) % state ( iGamma ( 1 , instance ) : iGamma ( ns , instance ) , 1 : NofMyPhase )
2014-03-09 02:20:31 +05:30
do s1 = 1_pInt , ns
f = slipFamily ( s1 , instance )
!*** burgers vector, mean free path prefactor and minimum dipole distance for each slip system
burgers ( s1 , instance ) = burgersPerSlipFamily ( f , instance )
lambda0 ( s1 , instance ) = lambda0PerSlipFamily ( f , instance )
minDipoleHeight ( s1 , 1 : 2 , instance ) = minDipoleHeightPerSlipFamily ( f , 1 : 2 , instance )
peierlsStress ( s1 , 1 : 2 , instance ) = peierlsStressPerSlipFamily ( f , 1 : 2 , instance )
do s2 = 1_pInt , ns
!*** calculation of forest projections for edge and screw dislocations. s2 acts as forest for s1
forestProjectionEdge ( s1 , s2 , instance ) &
= abs ( math_mul3x3 ( lattice_sn ( 1 : 3 , slipSystemLattice ( s1 , instance ) , phase ) , &
lattice_st ( 1 : 3 , slipSystemLattice ( s2 , instance ) , phase ) ) ) ! forest projection of edge dislocations is the projection of (t = b x n) onto the slip normal of the respective slip plane
forestProjectionScrew ( s1 , s2 , instance ) &
= abs ( math_mul3x3 ( lattice_sn ( 1 : 3 , slipSystemLattice ( s1 , instance ) , phase ) , &
lattice_sd ( 1 : 3 , slipSystemLattice ( s2 , instance ) , phase ) ) ) ! forest projection of screw dislocations is the projection of b onto the slip normal of the respective splip plane
!*** calculation of interaction matrices
interactionMatrixSlipSlip ( s1 , s2 , instance ) &
= interactionSlipSlip ( lattice_interactionSlipSlip ( slipSystemLattice ( s1 , instance ) , &
slipSystemLattice ( s2 , instance ) , &
phase ) , instance )
!*** colinear slip system (only makes sense for fcc like it is defined here)
if ( lattice_interactionSlipSlip ( slipSystemLattice ( s1 , instance ) , &
slipSystemLattice ( s2 , instance ) , &
phase ) == 3_pInt ) then
colinearSystem ( s1 , instance ) = s2
endif
enddo
!*** rotation matrix from lattice configuration to slip system
lattice2slip ( 1 : 3 , 1 : 3 , s1 , instance ) &
= math_transpose33 ( reshape ( [ lattice_sd ( 1 : 3 , slipSystemLattice ( s1 , instance ) , phase ) , &
- lattice_st ( 1 : 3 , slipSystemLattice ( s1 , instance ) , phase ) , &
lattice_sn ( 1 : 3 , slipSystemLattice ( s1 , instance ) , phase ) ] , [ 3 , 3 ] ) )
enddo
!*** combined projection of Schmid and non-Schmid contributions to the resolved shear stress (only for screws)
!* four types t:
!* 1) positive screw at positive resolved stress
!* 2) positive screw at negative resolved stress
!* 3) negative screw at positive resolved stress
!* 4) negative screw at negative resolved stress
do s = 1_pInt , ns
do l = 1_pInt , lattice_NnonSchmid ( phase )
nonSchmidProjection ( 1 : 3 , 1 : 3 , 1 , s , instance ) = nonSchmidProjection ( 1 : 3 , 1 : 3 , 1 , s , instance ) &
+ nonSchmidCoeff ( l , instance ) * lattice_Sslip ( 1 : 3 , 1 : 3 , 2 * l , slipSystemLattice ( s , instance ) , phase )
nonSchmidProjection ( 1 : 3 , 1 : 3 , 2 , s , instance ) = nonSchmidProjection ( 1 : 3 , 1 : 3 , 2 , s , instance ) &
+ nonSchmidCoeff ( l , instance ) * lattice_Sslip ( 1 : 3 , 1 : 3 , 2 * l + 1 , slipSystemLattice ( s , instance ) , phase )
enddo
2014-03-11 23:10:59 +05:30
nonSchmidProjection ( 1 : 3 , 1 : 3 , 3 , s , instance ) = - nonSchmidProjection ( 1 : 3 , 1 : 3 , 2 , s , instance )
nonSchmidProjection ( 1 : 3 , 1 : 3 , 4 , s , instance ) = - nonSchmidProjection ( 1 : 3 , 1 : 3 , 1 , s , instance )
forall ( t = 1 : 4 ) &
nonSchmidProjection ( 1 : 3 , 1 : 3 , t , s , instance ) = nonSchmidProjection ( 1 : 3 , 1 : 3 , t , s , instance ) &
2014-03-09 02:20:31 +05:30
+ lattice_Sslip ( 1 : 3 , 1 : 3 , 1 , slipSystemLattice ( s , instance ) , phase )
enddo
2016-01-06 22:16:37 +05:30
call plastic_nonlocal_aTolState ( phase , instance )
endif myPhase2
2014-03-09 02:20:31 +05:30
enddo initializeInstances
2009-08-11 22:01:57 +05:30
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_init
2014-06-26 19:23:12 +05:30
2014-06-14 02:23:17 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief sets the initial microstructural state for a given instance of this plasticity
!--------------------------------------------------------------------------------------------------
2014-07-02 17:57:39 +05:30
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_stateInit ( )
2014-06-14 02:23:17 +05:30
use IO , only : IO_error
use lattice , only : lattice_maxNslipFamily
use math , only : math_sampleGaussVar
use mesh , only : mesh_ipVolume , &
mesh_NcpElems , &
2014-06-26 19:23:12 +05:30
mesh_element , &
FE_Nips , &
2014-06-14 02:23:17 +05:30
FE_geomtype
use material , only : material_phase , &
phase_plasticityInstance , &
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2014-06-14 02:23:17 +05:30
phase_plasticity , &
PLASTICITY_NONLOCAL_ID
implicit none
2014-07-02 17:57:39 +05:30
integer ( pInt ) :: e , &
2014-06-14 02:23:17 +05:30
i , &
ns , & ! short notation for total number of active slip systems
f , & ! index of lattice family
from , &
upto , &
s , & ! index of slip system
t , &
j , &
instance , &
maxNinstances
real ( pReal ) , dimension ( 2 ) :: noise
real ( pReal ) , dimension ( 4 ) :: rnd
real ( pReal ) meanDensity , &
totalVolume , &
densityBinning , &
minimumIpVolume
maxNinstances = int ( count ( phase_plasticity == PLASTICITY_NONLOCAL_ID ) , pInt )
do instance = 1_pInt , maxNinstances
ns = totalNslip ( instance )
! randomly distribute dislocation segments on random slip system and of random type in the volume
if ( rhoSglRandom ( instance ) > 0.0_pReal ) then
! get the total volume of the instance
2014-07-02 17:57:39 +05:30
minimumIpVolume = huge ( 1.0_pReal )
2014-06-14 02:23:17 +05:30
totalVolume = 0.0_pReal
do e = 1_pInt , mesh_NcpElems
do i = 1_pInt , FE_Nips ( FE_geomtype ( mesh_element ( 2 , e ) ) )
if ( PLASTICITY_NONLOCAL_ID == phase_plasticity ( material_phase ( 1 , i , e ) ) &
. and . instance == phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) then
totalVolume = totalVolume + mesh_ipVolume ( i , e )
minimumIpVolume = min ( minimumIpVolume , mesh_ipVolume ( i , e ) )
endif
enddo
enddo
densityBinning = rhoSglRandomBinning ( instance ) / minimumIpVolume ** ( 2.0_pReal / 3.0_pReal )
! subsequently fill random ips with dislocation segments until we reach the desired overall density
meanDensity = 0.0_pReal
do while ( meanDensity < rhoSglRandom ( instance ) )
call random_number ( rnd )
2014-07-02 17:57:39 +05:30
e = nint ( rnd ( 1 ) * real ( mesh_NcpElems , pReal ) + 0.5_pReal , pInt )
i = nint ( rnd ( 2 ) * real ( FE_Nips ( FE_geomtype ( mesh_element ( 2 , e ) ) ) , pReal ) + 0.5_pReal , pInt )
if ( PLASTICITY_NONLOCAL_ID == phase_plasticity ( material_phase ( 1 , i , e ) ) &
. and . instance == phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) then
2014-06-14 02:23:17 +05:30
s = nint ( rnd ( 3 ) * real ( ns , pReal ) + 0.5_pReal , pInt )
t = nint ( rnd ( 4 ) * 4.0_pReal + 0.5_pReal , pInt )
2014-07-02 17:57:39 +05:30
meanDensity = meanDensity + densityBinning * mesh_ipVolume ( i , e ) / totalVolume
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , t , instance ) , phaseAt ( 1 , i , e ) ) = &
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , t , instance ) , phaseAt ( 1 , i , e ) ) &
2014-06-26 19:23:12 +05:30
+ densityBinning
2014-06-14 02:23:17 +05:30
endif
enddo
! homogeneous distribution of density with some noise
else
do e = 1_pInt , mesh_NcpElems
do i = 1_pInt , FE_Nips ( FE_geomtype ( mesh_element ( 2 , e ) ) )
if ( PLASTICITY_NONLOCAL_ID == phase_plasticity ( material_phase ( 1 , i , e ) ) &
. and . instance == phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) then
do f = 1_pInt , lattice_maxNslipFamily
from = 1_pInt + sum ( Nslip ( 1 : f - 1_pInt , instance ) )
upto = sum ( Nslip ( 1 : f , instance ) )
do s = from , upto
do j = 1_pInt , 2_pInt
noise ( j ) = math_sampleGaussVar ( 0.0_pReal , rhoSglScatter ( instance ) )
enddo
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , 1 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoSglEdgePos0 ( f , instance ) + noise ( 1 )
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , 2 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoSglEdgeNeg0 ( f , instance ) + noise ( 1 )
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , 3 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoSglScrewPos0 ( f , instance ) + noise ( 2 )
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoU ( s , 4 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoSglScrewNeg0 ( f , instance ) + noise ( 2 )
enddo
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoD ( from : upto , 1 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoDipEdge0 ( f , instance )
2016-01-15 05:49:44 +05:30
plasticState ( phaseAt ( 1 , i , e ) ) % state0 ( iRhoD ( from : upto , 2 , instance ) , phasememberAt ( 1 , i , e ) ) = &
2014-06-26 19:23:12 +05:30
rhoDipScrew0 ( f , instance )
2014-06-14 02:23:17 +05:30
enddo
endif
enddo
enddo
endif
enddo
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_stateInit
2014-06-14 02:23:17 +05:30
2009-08-11 22:01:57 +05:30
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
2014-06-26 19:23:12 +05:30
!> @brief sets the relevant state values for a given instance of this plasticity
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_aTolState ( ph , instance )
2014-07-02 17:57:39 +05:30
use material , only : &
plasticState
2009-09-18 21:07:14 +05:30
2014-07-02 17:57:39 +05:30
implicit none
integer ( pInt ) , intent ( in ) :: &
instance , & !< number specifying the instance of the plasticity
ph
integer ( pInt ) :: &
ns , &
t , c
2009-09-18 21:07:14 +05:30
2014-07-02 17:57:39 +05:30
ns = totalNslip ( instance )
forall ( t = 1_pInt : 4_pInt )
plasticState ( ph ) % aTolState ( iRhoU ( 1 : ns , t , instance ) ) = aTolRho ( instance )
plasticState ( ph ) % aTolState ( iRhoB ( 1 : ns , t , instance ) ) = aTolRho ( instance )
end forall
forall ( c = 1_pInt : 2_pInt ) &
plasticState ( ph ) % aTolState ( iRhoD ( 1 : ns , c , instance ) ) = aTolRho ( instance )
plasticState ( ph ) % aTolState ( iGamma ( 1 : ns , instance ) ) = aTolShear ( instance )
2009-09-18 21:07:14 +05:30
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_aTolState
2014-06-26 19:23:12 +05:30
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief calculates quantities characterizing the microstructure
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_microstructure ( Fe , Fp , ip , el )
2013-05-23 17:55:56 +05:30
use IO , only : &
IO_error
use math , only : &
pi , &
math_mul33x3 , &
math_mul3x3 , &
2015-04-11 00:39:26 +05:30
math_inv33 , &
2013-05-23 17:55:56 +05:30
math_transpose33
use debug , only : &
debug_level , &
debug_constitutive , &
debug_levelExtensive , &
debug_levelSelective , &
debug_i , &
debug_e
use mesh , only : &
mesh_element , &
mesh_ipNeighborhood , &
mesh_ipCoordinates , &
mesh_ipVolume , &
mesh_ipAreaNormal , &
mesh_ipArea , &
FE_NipNeighbors , &
2013-05-23 23:16:21 +05:30
mesh_maxNipNeighbors , &
2013-05-23 17:55:56 +05:30
FE_geomtype , &
FE_celltype
use material , only : &
material_phase , &
phase_localPlasticity , &
2014-06-26 19:23:12 +05:30
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2013-05-23 17:55:56 +05:30
phase_plasticityInstance
use lattice , only : &
lattice_sd , &
2014-03-09 02:20:31 +05:30
lattice_st , &
lattice_mu , &
lattice_nu , &
lattice_structure , &
LATTICE_bcc_ID , &
LATTICE_fcc_ID
2009-08-11 22:01:57 +05:30
implicit none
2014-07-02 17:57:39 +05:30
integer ( pInt ) , intent ( in ) :: ip , & ! current integration point
2011-03-29 13:04:33 +05:30
el ! current element
2012-01-17 15:56:57 +05:30
real ( pReal ) , dimension ( 3 , 3 ) , intent ( in ) :: &
Fe , & ! elastic deformation gradient
Fp ! elastic deformation gradient
2009-08-11 22:01:57 +05:30
2014-06-26 19:23:12 +05:30
integer ( pInt ) :: &
2014-07-02 17:57:39 +05:30
ph , & !< phase
of , & !< offset
2014-06-26 19:23:12 +05:30
np , & !< neighbor phase
no !< nieghbor offset
2011-03-29 13:04:33 +05:30
2013-11-21 19:05:43 +05:30
integer ( pInt ) neighbor_el , & ! element number of neighboring material point
neighbor_ip , & ! integration point of neighboring material point
2014-03-09 02:20:31 +05:30
instance , & ! my instance of this plasticity
neighbor_instance , & ! instance of this plasticity of neighboring material point
2014-02-28 18:33:21 +05:30
neighbor_phase , &
2011-03-29 13:04:33 +05:30
ns , & ! total number of active slip systems at my material point
2013-11-21 19:05:43 +05:30
neighbor_ns , & ! total number of active slip systems at neighboring material point
2011-03-29 13:04:33 +05:30
c , & ! index of dilsocation character (edge, screw)
s , & ! slip system index
t , & ! index of dilsocation type (e+, e-, s+, s-, used e+, used e-, used s+, used s-)
dir , &
2012-10-04 23:38:40 +05:30
n , &
2013-08-14 17:14:30 +05:30
nRealNeighbors ! number of really existing neighbors
2013-11-21 19:05:43 +05:30
integer ( pInt ) , dimension ( 2 ) :: neighbors
2015-04-11 00:39:26 +05:30
real ( pReal ) FVsize , &
2012-10-04 23:38:40 +05:30
correction , &
myRhoForest
2012-03-14 20:54:19 +05:30
real ( pReal ) , dimension ( 2 ) :: rhoExcessGradient , &
rhoExcessGradient_over_rho , &
rhoTotal
2013-05-23 18:06:48 +05:30
real ( pReal ) , dimension ( 3 ) :: rhoExcessDifferences , &
normal_latticeConf
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2011-03-29 13:04:33 +05:30
rhoForest , & ! forest dislocation density
2012-01-17 15:56:57 +05:30
tauBack , & ! back stress from pileup on same slip system
2011-04-13 19:46:22 +05:30
tauThreshold ! threshold shear stress
2012-01-17 15:56:57 +05:30
real ( pReal ) , dimension ( 3 , 3 ) :: invFe , & ! inverse of elastic deformation gradient
2012-03-14 20:54:19 +05:30
invFp , & ! inverse of plastic deformation gradient
2012-03-15 20:28:12 +05:30
connections , &
invConnections
2013-05-23 23:16:21 +05:30
real ( pReal ) , dimension ( 3 , mesh_maxNipNeighbors ) :: &
2012-03-15 15:38:08 +05:30
connection_latticeConf
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( 2 , totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2012-01-17 15:56:57 +05:30
rhoExcess
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 2 ) :: &
2012-01-17 15:56:57 +05:30
rhoDip ! dipole dislocation density (edge, screw)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 8 ) :: &
2012-01-17 15:56:57 +05:30
rhoSgl ! single dislocation density (edge+, edge-, screw+, screw-, used edge+, used edge-, used screw+, used screw-)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , &
totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2012-10-05 21:35:51 +05:30
myInteractionMatrix ! corrected slip interaction matrix
2013-05-24 01:26:36 +05:30
real ( pReal ) , dimension ( 2 , maxval ( totalNslip ) , mesh_maxNipNeighbors ) :: &
2014-03-09 02:20:31 +05:30
neighbor_rhoExcess , & ! excess density at neighboring material point
neighbor_rhoTotal ! total density at neighboring material point
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( 3 , totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 2 ) :: &
2012-01-17 15:56:57 +05:30
m ! direction of dislocation motion
2016-01-15 05:49:44 +05:30
ph = phaseAt ( 1 , ip , el )
of = phasememberAt ( 1 , ip , el )
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( ph )
2014-02-28 18:33:21 +05:30
ns = totalNslip ( instance )
2011-03-29 13:04:33 +05:30
2009-08-11 22:01:57 +05:30
!*** get basic states
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl ( s , t ) = max ( plasticState ( ph ) % state ( iRhoU ( s , t , instance ) , of ) , 0.0_pReal ) ! ensure positive single mobile densities
rhoSgl ( s , t + 4_pInt ) = plasticState ( ph ) % state ( iRhoB ( s , t , instance ) , of )
2014-06-26 19:23:12 +05:30
endforall
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt ) &
2014-07-02 17:57:39 +05:30
rhoDip ( s , c ) = max ( plasticState ( ph ) % state ( iRhoD ( s , c , instance ) , of ) , 0.0_pReal ) ! ensure positive dipole densities
2014-02-28 18:33:21 +05:30
where ( abs ( rhoSgl ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoSgl ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoSgl = 0.0_pReal
2014-02-28 18:33:21 +05:30
where ( abs ( rhoDip ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoDip ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoDip = 0.0_pReal
2009-08-11 22:01:57 +05:30
!*** calculate the forest dislocation density
2011-03-29 13:04:33 +05:30
!*** (= projection of screw and edge dislocations)
2009-08-11 22:01:57 +05:30
2012-03-14 20:48:36 +05:30
forall ( s = 1_pInt : ns ) &
2012-03-15 15:38:08 +05:30
rhoForest ( s ) = dot_product ( ( sum ( abs ( rhoSgl ( 1 : ns , [ 1 , 2 , 5 , 6 ] ) ) , 2 ) + rhoDip ( 1 : ns , 1 ) ) , &
2014-02-28 18:33:21 +05:30
forestProjectionEdge ( s , 1 : ns , instance ) ) &
2012-03-15 15:38:08 +05:30
+ dot_product ( ( sum ( abs ( rhoSgl ( 1 : ns , [ 3 , 4 , 7 , 8 ] ) ) , 2 ) + rhoDip ( 1 : ns , 2 ) ) , &
2014-02-28 18:33:21 +05:30
forestProjectionScrew ( s , 1 : ns , instance ) )
2011-03-29 13:04:33 +05:30
2014-06-26 19:23:12 +05:30
2009-08-11 22:01:57 +05:30
!*** calculate the threshold shear stress for dislocation slip
2013-08-14 17:14:30 +05:30
!*** coefficients are corrected for the line tension effect
!*** (see Kubin,Devincre,Hoc; 2008; Modeling dislocation storage rates and mean free paths in face-centered cubic crystals)
2009-08-11 22:01:57 +05:30
2012-10-05 21:35:51 +05:30
myInteractionMatrix = 0.0_pReal
2014-02-28 18:33:21 +05:30
myInteractionMatrix ( 1 : ns , 1 : ns ) = interactionMatrixSlipSlip ( 1 : ns , 1 : ns , instance )
2014-07-02 17:57:39 +05:30
if ( lattice_structure ( ph ) == LATTICE_bcc_ID . or . lattice_structure ( ph ) == LATTICE_fcc_ID ) then ! only fcc and bcc
2012-10-04 23:38:40 +05:30
do s = 1_pInt , ns
2014-02-28 18:33:21 +05:30
myRhoForest = max ( rhoForest ( s ) , significantRho ( instance ) )
correction = ( 1.0_pReal - linetensionEffect ( instance ) &
+ linetensionEffect ( instance ) &
* log ( 0.35_pReal * burgers ( s , instance ) * sqrt ( myRhoForest ) ) &
/ log ( 0.35_pReal * burgers ( s , instance ) * 1e6_pReal ) ) ** 2.0_pReal
2013-08-14 17:14:30 +05:30
myInteractionMatrix ( s , 1 : ns ) = correction * myInteractionMatrix ( s , 1 : ns )
2012-10-04 23:38:40 +05:30
enddo
endif
2012-03-14 20:48:36 +05:30
forall ( s = 1_pInt : ns ) &
2014-07-02 17:57:39 +05:30
tauThreshold ( s ) = lattice_mu ( ph ) * burgers ( s , instance ) &
2012-10-05 21:35:51 +05:30
* sqrt ( dot_product ( ( sum ( abs ( rhoSgl ) , 2 ) + sum ( abs ( rhoDip ) , 2 ) ) , myInteractionMatrix ( s , 1 : ns ) ) )
2011-03-29 13:04:33 +05:30
2014-06-26 19:23:12 +05:30
2009-08-28 19:20:47 +05:30
!*** calculate the dislocation stress of the neighboring excess dislocation densities
2012-03-12 19:39:37 +05:30
!*** zero for material points of local plasticity
2011-03-29 13:04:33 +05:30
2012-01-17 15:56:57 +05:30
tauBack = 0.0_pReal
2009-08-11 22:01:57 +05:30
2014-07-02 17:57:39 +05:30
if ( . not . phase_localPlasticity ( ph ) . and . shortRangeStressCorrection ( instance ) ) then
2015-04-11 00:39:26 +05:30
invFe = math_inv33 ( Fe )
invFp = math_inv33 ( Fp )
2012-01-17 15:56:57 +05:30
rhoExcess ( 1 , 1 : ns ) = rhoSgl ( 1 : ns , 1 ) - rhoSgl ( 1 : ns , 2 )
rhoExcess ( 2 , 1 : ns ) = rhoSgl ( 1 : ns , 3 ) - rhoSgl ( 1 : ns , 4 )
FVsize = mesh_ipVolume ( ip , el ) ** ( 1.0_pReal / 3.0_pReal )
2011-02-04 21:11:32 +05:30
2012-01-17 15:56:57 +05:30
!* loop through my neighborhood and get the connection vectors (in lattice frame) and the excess densities
2013-03-27 18:34:01 +05:30
nRealNeighbors = 0_pInt
2013-11-21 19:05:43 +05:30
neighbor_rhoTotal = 0.0_pReal
2013-04-22 19:05:35 +05:30
do n = 1_pInt , FE_NipNeighbors ( FE_celltype ( FE_geomtype ( mesh_element ( 2 , el ) ) ) )
2013-11-21 19:05:43 +05:30
neighbor_el = mesh_ipNeighborhood ( 1 , n , ip , el )
neighbor_ip = mesh_ipNeighborhood ( 2 , n , ip , el )
2016-01-15 05:49:44 +05:30
np = phaseAt ( 1 , neighbor_ip , neighbor_el )
no = phasememberAt ( 1 , neighbor_ip , neighbor_el )
2013-11-21 19:05:43 +05:30
if ( neighbor_el > 0 . and . neighbor_ip > 0 ) then
2014-07-02 17:57:39 +05:30
neighbor_phase = material_phase ( 1 , neighbor_ip , neighbor_el )
2014-02-28 18:33:21 +05:30
neighbor_instance = phase_plasticityInstance ( neighbor_phase )
neighbor_ns = totalNslip ( neighbor_instance )
if ( . not . phase_localPlasticity ( neighbor_phase ) &
2014-03-09 02:20:31 +05:30
. and . neighbor_instance == instance ) then ! same instance should be same structure
2013-11-21 19:05:43 +05:30
if ( neighbor_ns == ns ) then
2013-05-23 18:06:48 +05:30
nRealNeighbors = nRealNeighbors + 1_pInt
2013-05-24 14:32:30 +05:30
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt )
2014-07-02 17:57:39 +05:30
2013-11-21 19:05:43 +05:30
neighbor_rhoExcess ( c , s , n ) = &
2014-06-26 19:23:12 +05:30
max ( plasticState ( np ) % state ( iRhoU ( s , 2 * c - 1 , neighbor_instance ) , no ) , 0.0_pReal ) & ! positive mobiles
- max ( plasticState ( np ) % state ( iRhoU ( s , 2 * c , neighbor_instance ) , no ) , 0.0_pReal ) ! negative mobiles
2014-06-24 14:54:19 +05:30
neighbor_rhoTotal ( c , s , n ) = &
2014-06-26 19:23:12 +05:30
max ( plasticState ( np ) % state ( iRhoU ( s , 2 * c - 1 , neighbor_instance ) , no ) , 0.0_pReal ) & ! positive mobiles
+ max ( plasticState ( np ) % state ( iRhoU ( s , 2 * c , neighbor_instance ) , no ) , 0.0_pReal ) & ! negative mobiles
+ abs ( plasticState ( np ) % state ( iRhoB ( s , 2 * c - 1 , neighbor_instance ) , no ) ) & ! positive deads
+ abs ( plasticState ( np ) % state ( iRhoB ( s , 2 * c , neighbor_instance ) , no ) ) & ! negative deads
+ max ( plasticState ( np ) % state ( iRhoD ( s , c , neighbor_instance ) , no ) , 0.0_pReal ) ! dipoles
2014-07-02 17:57:39 +05:30
2013-05-23 18:06:48 +05:30
endforall
connection_latticeConf ( 1 : 3 , n ) = &
2013-11-21 19:05:43 +05:30
math_mul33x3 ( invFe , mesh_ipCoordinates ( 1 : 3 , neighbor_ip , neighbor_el ) &
2013-05-23 18:06:48 +05:30
- mesh_ipCoordinates ( 1 : 3 , ip , el ) )
normal_latticeConf = math_mul33x3 ( math_transpose33 ( invFp ) , mesh_ipAreaNormal ( 1 : 3 , n , ip , el ) )
2013-11-21 19:05:43 +05:30
if ( math_mul3x3 ( normal_latticeConf , connection_latticeConf ( 1 : 3 , n ) ) < 0.0_pReal ) then ! neighboring connection points in opposite direction to face normal: must be periodic image
2013-05-23 18:06:48 +05:30
connection_latticeConf ( 1 : 3 , n ) = normal_latticeConf * mesh_ipVolume ( ip , el ) &
/ mesh_ipArea ( n , ip , el ) ! instead take the surface normal scaled with the diameter of the cell
2012-01-17 15:56:57 +05:30
endif
else
! different number of active slip systems
2012-02-13 19:48:07 +05:30
call IO_error ( - 1_pInt , ext_msg = 'different number of active slip systems in neighboring IPs of same crystal structure' )
2012-01-17 15:56:57 +05:30
endif
else
2012-03-15 15:38:08 +05:30
! local neighbor or different lattice structure or different constitution instance -> use central values instead
connection_latticeConf ( 1 : 3 , n ) = 0.0_pReal
2013-11-21 19:05:43 +05:30
neighbor_rhoExcess ( 1 : 2 , 1 : ns , n ) = rhoExcess
2012-01-17 15:56:57 +05:30
endif
else
2012-03-15 15:38:08 +05:30
! free surface -> use central values instead
connection_latticeConf ( 1 : 3 , n ) = 0.0_pReal
2013-11-21 19:05:43 +05:30
neighbor_rhoExcess ( 1 : 2 , 1 : ns , n ) = rhoExcess
2012-01-17 15:56:57 +05:30
endif
enddo
2012-03-14 20:54:19 +05:30
!* loop through the slip systems and calculate the dislocation gradient by
!* 1. interpolation of the excess density in the neighorhood
!* 2. interpolation of the dead dislocation density in the central volume
2012-01-17 15:56:57 +05:30
2014-07-02 17:57:39 +05:30
m ( 1 : 3 , 1 : ns , 1 ) = lattice_sd ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
m ( 1 : 3 , 1 : ns , 2 ) = - lattice_st ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
2011-03-29 13:04:33 +05:30
2012-02-23 22:13:17 +05:30
do s = 1_pInt , ns
2012-01-17 15:56:57 +05:30
2012-03-14 20:54:19 +05:30
!* gradient from interpolation of neighboring excess density
2012-01-17 15:56:57 +05:30
2012-03-14 20:54:19 +05:30
do c = 1_pInt , 2_pInt
2012-02-23 22:13:17 +05:30
do dir = 1_pInt , 3_pInt
2013-11-21 19:05:43 +05:30
neighbors ( 1 ) = 2_pInt * dir - 1_pInt
neighbors ( 2 ) = 2_pInt * dir
connections ( dir , 1 : 3 ) = connection_latticeConf ( 1 : 3 , neighbors ( 1 ) ) &
- connection_latticeConf ( 1 : 3 , neighbors ( 2 ) )
rhoExcessDifferences ( dir ) = neighbor_rhoExcess ( c , s , neighbors ( 1 ) ) &
- neighbor_rhoExcess ( c , s , neighbors ( 2 ) )
2012-01-17 15:56:57 +05:30
enddo
2015-04-11 00:39:26 +05:30
invConnections = math_inv33 ( connections )
2015-04-11 13:55:23 +05:30
if ( all ( abs ( invConnections ) < = tiny ( 0.0_pReal ) ) ) & ! check for failed in version (math_inv33 returns 0) and avoid floating point equality comparison
2012-03-15 20:28:12 +05:30
call IO_error ( - 1_pInt , ext_msg = 'back stress calculation: inversion error' )
2013-05-23 17:55:56 +05:30
rhoExcessGradient ( c ) = math_mul3x3 ( m ( 1 : 3 , s , c ) , &
math_mul33x3 ( invConnections , rhoExcessDifferences ) )
2012-03-14 20:54:19 +05:30
enddo
2012-01-17 15:56:57 +05:30
2012-03-14 20:54:19 +05:30
!* plus gradient from deads
do t = 1_pInt , 4_pInt
c = ( t - 1_pInt ) / 2_pInt + 1_pInt
rhoExcessGradient ( c ) = rhoExcessGradient ( c ) + rhoSgl ( s , t + 4_pInt ) / FVsize
2012-01-17 15:56:57 +05:30
enddo
2012-03-14 20:54:19 +05:30
!* normalized with the total density
2012-01-17 15:56:57 +05:30
2012-03-14 20:54:19 +05:30
rhoExcessGradient_over_rho = 0.0_pReal
2013-03-27 18:34:01 +05:30
forall ( c = 1_pInt : 2_pInt ) &
2014-05-23 22:43:08 +05:30
rhoTotal ( c ) = ( sum ( abs ( rhoSgl ( s , [ 2 * c - 1 , 2 * c , 2 * c + 3 , 2 * c + 4 ] ) ) ) + rhoDip ( s , c ) &
+ sum ( neighbor_rhoTotal ( c , s , : ) ) ) / real ( 1_pInt + nRealNeighbors , pReal )
2012-03-14 20:54:19 +05:30
forall ( c = 1_pInt : 2_pInt , rhoTotal ( c ) > 0.0_pReal ) &
rhoExcessGradient_over_rho ( c ) = rhoExcessGradient ( c ) / rhoTotal ( c )
!* gives the local stress correction when multiplied with a factor
2014-07-02 17:57:39 +05:30
tauBack ( s ) = - lattice_mu ( ph ) * burgers ( s , instance ) / ( 2.0_pReal * pi ) &
* ( rhoExcessGradient_over_rho ( 1 ) / ( 1.0_pReal - lattice_nu ( ph ) ) &
2014-05-23 22:43:08 +05:30
+ rhoExcessGradient_over_rho ( 2 ) )
2011-03-29 13:04:33 +05:30
2012-01-17 15:56:57 +05:30
enddo
endif
2011-03-29 13:04:33 +05:30
2011-05-26 15:05:42 +05:30
2012-01-17 15:56:57 +05:30
!*** set dependent states
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % state ( iRhoF ( 1 : ns , instance ) , of ) = rhoForest
plasticState ( ph ) % state ( iTauF ( 1 : ns , instance ) , of ) = tauThreshold
plasticState ( ph ) % state ( iTauB ( 1 : ns , instance ) , of ) = tauBack
2011-03-29 12:57:19 +05:30
#ifndef _OPENMP
2012-10-22 13:29:35 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2012-07-05 15:24:50 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
2014-07-02 17:57:39 +05:30
write ( 6 , '(/,a,i8,1x,i2,1x,i1,/)' ) '<< CONST >> nonlocal_microstructure at el ip ' , el , ip
2012-02-02 01:50:05 +05:30
write ( 6 , '(a,/,12x,12(e10.3,1x))' ) '<< CONST >> rhoForest' , rhoForest
write ( 6 , '(a,/,12x,12(f10.5,1x))' ) '<< CONST >> tauThreshold / MPa' , tauThreshold / 1e6
2014-07-02 17:57:39 +05:30
write ( 6 , '(a,/,12x,12(f10.5,1x),/)' ) '<< CONST >> tauBack / MPa' , tauBack / 1e6
2011-03-29 12:57:19 +05:30
endif
#endif
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_microstructure
2010-02-17 18:51:36 +05:30
2014-06-26 19:23:12 +05:30
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
2014-06-26 19:23:12 +05:30
!> @brief calculates kinetics
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_kinetics ( v , dv_dtau , dv_dtauNS , tau , tauNS , &
2014-07-02 17:57:39 +05:30
tauThreshold , c , Temperature , ip , el )
2010-02-17 18:51:36 +05:30
2014-06-26 19:23:12 +05:30
use debug , only : debug_level , &
debug_constitutive , &
debug_levelExtensive , &
debug_levelSelective , &
debug_i , &
debug_e
use material , only : material_phase , &
phase_plasticityInstance
2010-02-17 18:51:36 +05:30
implicit none
!*** input variables
2014-07-02 17:57:39 +05:30
integer ( pInt ) , intent ( in ) :: ip , & !< current integration point
2014-06-26 19:23:12 +05:30
el , & !< current element number
c !< dislocation character (1:edge, 2:screw)
real ( pReal ) , intent ( in ) :: Temperature !< temperature
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) , &
2014-06-26 19:23:12 +05:30
intent ( in ) :: tau , & !< resolved external shear stress (without non Schmid effects)
tauNS , & !< resolved external shear stress (including non Schmid effects)
tauThreshold !< threshold shear stress
2011-11-04 18:42:17 +05:30
2010-02-17 18:51:36 +05:30
!*** output variables
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) , &
2014-06-26 19:23:12 +05:30
intent ( out ) :: v , & !< velocity
dv_dtau , & !< velocity derivative with respect to resolved shear stress (without non Schmid contributions)
dv_dtauNS !< velocity derivative with respect to resolved shear stress (including non Schmid contributions)
2010-02-17 18:51:36 +05:30
!*** local variables
2014-06-26 19:23:12 +05:30
integer ( pInt ) :: instance , & !< current instance of this plasticity
ns , & !< short notation for the total number of active slip systems
s !< index of my current slip system
real ( pReal ) tauRel_P , &
tauRel_S , &
tauEff , & !< effective shear stress
tPeierls , & !< waiting time in front of a peierls barriers
tSolidSolution , & !< waiting time in front of a solid solution obstacle
vViscous , & !< viscous glide velocity
dtPeierls_dtau , & !< derivative with respect to resolved shear stress
dtSolidSolution_dtau , & !< derivative with respect to resolved shear stress
meanfreepath_S , & !< mean free travel distance for dislocations between two solid solution obstacles
meanfreepath_P , & !< mean free travel distance for dislocations between two Peierls barriers
jumpWidth_P , & !< depth of activated area
jumpWidth_S , & !< depth of activated area
activationLength_P , & !< length of activated dislocation line
activationLength_S , & !< length of activated dislocation line
activationVolume_P , & !< volume that needs to be activated to overcome barrier
activationVolume_S , & !< volume that needs to be activated to overcome barrier
activationEnergy_P , & !< energy that is needed to overcome barrier
activationEnergy_S , & !< energy that is needed to overcome barrier
criticalStress_P , & !< maximum obstacle strength
criticalStress_S , & !< maximum obstacle strength
mobility !< dislocation mobility
2012-02-03 18:20:54 +05:30
2014-06-26 19:23:12 +05:30
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) )
2014-02-28 18:33:21 +05:30
ns = totalNslip ( instance )
2010-02-17 18:51:36 +05:30
2014-06-26 19:23:12 +05:30
v = 0.0_pReal
dv_dtau = 0.0_pReal
dv_dtauNS = 0.0_pReal
2010-02-17 18:51:36 +05:30
2011-01-26 15:47:42 +05:30
2014-06-26 19:23:12 +05:30
if ( Temperature > 0.0_pReal ) then
do s = 1_pInt , ns
if ( abs ( tau ( s ) ) > tauThreshold ( s ) ) then
2013-08-21 17:51:52 +05:30
2014-06-26 19:23:12 +05:30
!* Peierls contribution
!* Effective stress includes non Schmid constributions
!* The derivative only gives absolute values; the correct sign is taken care of in the formula for the derivative of the velocity
tauEff = max ( 0.0_pReal , abs ( tauNS ( s ) ) - tauThreshold ( s ) ) ! ensure that the effective stress is positive
meanfreepath_P = burgers ( s , instance )
jumpWidth_P = burgers ( s , instance )
activationLength_P = doublekinkwidth ( instance ) * burgers ( s , instance )
activationVolume_P = activationLength_P * jumpWidth_P * burgers ( s , instance )
criticalStress_P = peierlsStress ( s , c , instance )
activationEnergy_P = criticalStress_P * activationVolume_P
tauRel_P = min ( 1.0_pReal , tauEff / criticalStress_P ) ! ensure that the activation probability cannot become greater than one
tPeierls = 1.0_pReal / fattack ( instance ) &
* exp ( activationEnergy_P / ( KB * Temperature ) &
* ( 1.0_pReal - tauRel_P ** pParam ( instance ) ) ** qParam ( instance ) )
if ( tauEff < criticalStress_P ) then
dtPeierls_dtau = tPeierls * pParam ( instance ) * qParam ( instance ) * activationVolume_P / ( KB * Temperature ) &
* ( 1.0_pReal - tauRel_P ** pParam ( instance ) ) ** ( qParam ( instance ) - 1.0_pReal ) &
* tauRel_P ** ( pParam ( instance ) - 1.0_pReal )
else
dtPeierls_dtau = 0.0_pReal
endif
2012-01-25 22:34:37 +05:30
2014-06-26 19:23:12 +05:30
!* Contribution from solid solution strengthening
!* The derivative only gives absolute values; the correct sign is taken care of in the formula for the derivative of the velocity
2012-01-25 22:34:37 +05:30
2014-06-26 19:23:12 +05:30
tauEff = abs ( tau ( s ) ) - tauThreshold ( s )
meanfreepath_S = burgers ( s , instance ) / sqrt ( solidSolutionConcentration ( instance ) )
jumpWidth_S = solidSolutionSize ( instance ) * burgers ( s , instance )
activationLength_S = burgers ( s , instance ) / sqrt ( solidSolutionConcentration ( instance ) )
activationVolume_S = activationLength_S * jumpWidth_S * burgers ( s , instance )
activationEnergy_S = solidSolutionEnergy ( instance )
criticalStress_S = activationEnergy_S / activationVolume_S
tauRel_S = min ( 1.0_pReal , tauEff / criticalStress_S ) ! ensure that the activation probability cannot become greater than one
tSolidSolution = 1.0_pReal / fattack ( instance ) &
* exp ( activationEnergy_S / ( KB * Temperature ) &
* ( 1.0_pReal - tauRel_S ** pParam ( instance ) ) ** qParam ( instance ) )
if ( tauEff < criticalStress_S ) then
dtSolidSolution_dtau = tSolidSolution * pParam ( instance ) * qParam ( instance ) &
* activationVolume_S / ( KB * Temperature ) &
* ( 1.0_pReal - tauRel_S ** pParam ( instance ) ) ** ( qParam ( instance ) - 1.0_pReal ) &
* tauRel_S ** ( pParam ( instance ) - 1.0_pReal )
else
dtSolidSolution_dtau = 0.0_pReal
endif
2012-01-25 22:34:37 +05:30
2014-06-26 19:23:12 +05:30
!* viscous glide velocity
tauEff = abs ( tau ( s ) ) - tauThreshold ( s )
mobility = burgers ( s , instance ) / viscosity ( instance )
vViscous = mobility * tauEff
2012-01-25 22:34:37 +05:30
2014-06-26 19:23:12 +05:30
!* Mean velocity results from waiting time at peierls barriers and solid solution obstacles with respective meanfreepath of
!* free flight at glide velocity in between.
!* adopt sign from resolved stress
2012-08-30 13:03:13 +05:30
2014-06-26 19:23:12 +05:30
v ( s ) = sign ( 1.0_pReal , tau ( s ) ) &
/ ( tPeierls / meanfreepath_P + tSolidSolution / meanfreepath_S + 1.0_pReal / vViscous )
dv_dtau ( s ) = v ( s ) * v ( s ) * ( dtSolidSolution_dtau / meanfreepath_S &
+ mobility / ( vViscous * vViscous ) )
dv_dtauNS ( s ) = v ( s ) * v ( s ) * dtPeierls_dtau / meanfreepath_P
2010-10-01 17:48:49 +05:30
endif
enddo
2014-06-26 19:23:12 +05:30
endif
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2014-06-26 19:23:12 +05:30
#ifndef _OPENMP
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2014-06-26 19:23:12 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
2014-07-02 17:57:39 +05:30
write ( 6 , '(/,a,i8,1x,i2,1x,i1,/)' ) '<< CONST >> nonlocal_kinetics at el ip' , el , ip
2014-06-26 19:23:12 +05:30
write ( 6 , '(a,/,12x,12(f12.5,1x))' ) '<< CONST >> tauThreshold / MPa' , tauThreshold / 1e6_pReal
write ( 6 , '(a,/,12x,12(f12.5,1x))' ) '<< CONST >> tau / MPa' , tau / 1e6_pReal
write ( 6 , '(a,/,12x,12(f12.5,1x))' ) '<< CONST >> tauNS / MPa' , tauNS / 1e6_pReal
write ( 6 , '(a,/,12x,12(f12.5,1x))' ) '<< CONST >> v / 1e-3m/s' , v * 1e3
write ( 6 , '(a,/,12x,12(e12.5,1x))' ) '<< CONST >> dv_dtau' , dv_dtau
write ( 6 , '(a,/,12x,12(e12.5,1x))' ) '<< CONST >> dv_dtauNS' , dv_dtauNS
endif
#endif
2010-02-17 18:51:36 +05:30
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_kinetics
2014-06-14 02:23:17 +05:30
2013-10-09 11:42:16 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief calculates plastic velocity gradient and its tangent
!--------------------------------------------------------------------------------------------------
2015-04-11 17:17:33 +05:30
subroutine plastic_nonlocal_LpAndItsTangent ( Lp , dLp_dTstar99 , Tstar_v , Temperature , ip , el )
2014-07-02 17:57:39 +05:30
2009-08-11 22:01:57 +05:30
use math , only : math_Plain3333to99 , &
2013-01-22 05:20:28 +05:30
math_mul6x6 , &
2013-08-05 14:53:21 +05:30
math_mul33xx33 , &
2013-01-22 05:20:28 +05:30
math_Mandel6to33
2012-07-05 15:24:50 +05:30
use debug , only : debug_level , &
2012-03-09 01:55:28 +05:30
debug_constitutive , &
2012-10-22 13:29:35 +05:30
debug_levelExtensive , &
2012-03-09 01:55:28 +05:30
debug_levelSelective , &
2010-11-03 22:52:48 +05:30
debug_i , &
debug_e
2013-10-14 16:24:45 +05:30
use material , only : material_phase , &
2014-06-14 02:23:17 +05:30
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2014-06-26 19:23:12 +05:30
phase_plasticityInstance
2009-08-11 22:01:57 +05:30
use lattice , only : lattice_Sslip , &
2013-01-22 05:20:28 +05:30
lattice_Sslip_v , &
2013-08-05 14:53:21 +05:30
lattice_NnonSchmid
2014-06-26 19:23:12 +05:30
use mesh , only : mesh_ipVolume
2009-08-11 22:01:57 +05:30
implicit none
!*** input variables
2015-04-11 17:17:33 +05:30
integer ( pInt ) , intent ( in ) :: ip , & !< current integration point
2014-06-26 19:23:12 +05:30
el !< current element number
real ( pReal ) , intent ( in ) :: Temperature !< temperature
real ( pReal ) , dimension ( 6 ) , intent ( in ) :: Tstar_v !< 2nd Piola-Kirchhoff stress in Mandel notation
2009-08-11 22:01:57 +05:30
2014-07-02 17:57:39 +05:30
2009-08-11 22:01:57 +05:30
!*** output variables
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( 3 , 3 ) , intent ( out ) :: Lp !< plastic velocity gradient
real ( pReal ) , dimension ( 9 , 9 ) , intent ( out ) :: dLp_dTstar99 !< derivative of Lp with respect to Tstar (9x9 matrix)
2009-08-11 22:01:57 +05:30
!*** local variables
2014-06-26 19:23:12 +05:30
integer ( pInt ) instance , & !< current instance of this plasticity
ns , & !< short notation for the total number of active slip systems
2009-08-11 22:01:57 +05:30
i , &
j , &
k , &
l , &
2014-07-02 17:57:39 +05:30
ph , & !phase number
of , & !offset
2014-06-26 19:23:12 +05:30
t , & !< dislocation type
s , & !< index of my current slip system
sLattice !< index of my current slip system according to lattice order
real ( pReal ) , dimension ( 3 , 3 , 3 , 3 ) :: dLp_dTstar3333 !< derivative of Lp with respect to Tstar (3x3x3x3 matrix)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 8 ) :: &
2014-06-26 19:23:12 +05:30
rhoSgl !< single dislocation densities (including blocked)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 4 ) :: &
2014-06-26 19:23:12 +05:30
v , & !< velocity
tauNS , & !< resolved shear stress including non Schmid and backstress terms
dv_dtau , & !< velocity derivative with respect to the shear stress
dv_dtauNS !< velocity derivative with respect to the shear stress
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2014-06-26 19:23:12 +05:30
tau , & !< resolved shear stress including backstress terms
gdotTotal , & !< shear rate
tauBack , & !< back stress from dislocation gradients on same slip system
tauThreshold !< threshold shear stress
!*** shortcut for mapping
2016-01-15 05:49:44 +05:30
ph = phaseAt ( 1_pInt , ip , el )
of = phasememberAt ( 1_pInt , ip , el )
2014-07-02 17:57:39 +05:30
2009-08-11 22:01:57 +05:30
!*** initialize local variables
Lp = 0.0_pReal
dLp_dTstar3333 = 0.0_pReal
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( ph )
2014-02-28 18:33:21 +05:30
ns = totalNslip ( instance )
2009-08-11 22:01:57 +05:30
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-08-11 22:01:57 +05:30
!*** shortcut to state variables
2013-05-24 03:10:00 +05:30
2013-05-24 14:32:30 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl ( s , t ) = max ( plasticState ( ph ) % state ( iRhoU ( s , t , instance ) , of ) , 0.0_pReal ) ! ensure positive single mobile densities
rhoSgl ( s , t + 4_pInt ) = plasticState ( ph ) % state ( iRhoB ( s , t , instance ) , of )
2014-06-14 02:23:17 +05:30
endforall
where ( abs ( rhoSgl ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoSgl ) < significantRho ( instance ) ) &
rhoSgl = 0.0_pReal
2014-07-02 17:57:39 +05:30
tauBack = plasticState ( ph ) % state ( iTauB ( 1 : ns , instance ) , of )
tauThreshold = plasticState ( ph ) % state ( iTauF ( 1 : ns , instance ) , of )
2014-06-14 02:23:17 +05:30
!*** get resolved shear stress
!*** for screws possible non-schmid contributions are also taken into account
do s = 1_pInt , ns
sLattice = slipSystemLattice ( s , instance )
2015-01-29 19:26:09 +05:30
tau ( s ) = math_mul6x6 ( Tstar_v , lattice_Sslip_v ( 1 : 6 , 1 , sLattice , ph ) )
2014-06-14 02:23:17 +05:30
tauNS ( s , 1 ) = tau ( s )
tauNS ( s , 2 ) = tau ( s )
if ( tau ( s ) > 0.0_pReal ) then
tauNS ( s , 3 ) = math_mul33xx33 ( math_Mandel6to33 ( Tstar_v ) , nonSchmidProjection ( 1 : 3 , 1 : 3 , 1 , s , instance ) )
tauNS ( s , 4 ) = math_mul33xx33 ( math_Mandel6to33 ( Tstar_v ) , nonSchmidProjection ( 1 : 3 , 1 : 3 , 3 , s , instance ) )
else
tauNS ( s , 3 ) = math_mul33xx33 ( math_Mandel6to33 ( Tstar_v ) , nonSchmidProjection ( 1 : 3 , 1 : 3 , 2 , s , instance ) )
tauNS ( s , 4 ) = math_mul33xx33 ( math_Mandel6to33 ( Tstar_v ) , nonSchmidProjection ( 1 : 3 , 1 : 3 , 4 , s , instance ) )
endif
enddo
forall ( t = 1_pInt : 4_pInt ) &
tauNS ( 1 : ns , t ) = tauNS ( 1 : ns , t ) + tauBack ! add backstress
tau = tau + tauBack ! add backstress
!*** get dislocation velocity and its tangent and store the velocity in the state array
! edges
2014-12-08 21:25:30 +05:30
call plastic_nonlocal_kinetics ( v ( 1 : ns , 1 ) , dv_dtau ( 1 : ns , 1 ) , dv_dtauNS ( 1 : ns , 1 ) , &
2014-06-14 02:23:17 +05:30
tau ( 1 : ns ) , tauNS ( 1 : ns , 1 ) , tauThreshold ( 1 : ns ) , &
2014-07-02 17:57:39 +05:30
1_pInt , Temperature , ip , el )
2014-06-14 02:23:17 +05:30
v ( 1 : ns , 2 ) = v ( 1 : ns , 1 )
dv_dtau ( 1 : ns , 2 ) = dv_dtau ( 1 : ns , 1 )
dv_dtauNS ( 1 : ns , 2 ) = dv_dtauNS ( 1 : ns , 1 )
!screws
2014-07-02 17:57:39 +05:30
if ( lattice_NnonSchmid ( ph ) == 0_pInt ) then ! no non-Schmid contributions
2014-06-14 02:23:17 +05:30
forall ( t = 3_pInt : 4_pInt )
v ( 1 : ns , t ) = v ( 1 : ns , 1 )
dv_dtau ( 1 : ns , t ) = dv_dtau ( 1 : ns , 1 )
dv_dtauNS ( 1 : ns , t ) = dv_dtauNS ( 1 : ns , 1 )
endforall
else ! take non-Schmid contributions into account
do t = 3_pInt , 4_pInt
2014-12-08 21:25:30 +05:30
call plastic_nonlocal_kinetics ( v ( 1 : ns , t ) , dv_dtau ( 1 : ns , t ) , dv_dtauNS ( 1 : ns , t ) , &
2014-06-14 02:23:17 +05:30
tau ( 1 : ns ) , tauNS ( 1 : ns , t ) , tauThreshold ( 1 : ns ) , &
2014-07-02 17:57:39 +05:30
2_pInt , Temperature , ip , el )
2014-06-14 02:23:17 +05:30
enddo
endif
!*** store velocity in state
forall ( t = 1_pInt : 4_pInt ) &
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % state ( iV ( 1 : ns , t , instance ) , of ) = v ( 1 : ns , t )
2014-06-14 02:23:17 +05:30
!*** Bauschinger effect
forall ( s = 1_pInt : ns , t = 5_pInt : 8_pInt , rhoSgl ( s , t ) * v ( s , t - 4_pInt ) < 0.0_pReal ) &
rhoSgl ( s , t - 4_pInt ) = rhoSgl ( s , t - 4_pInt ) + abs ( rhoSgl ( s , t ) )
!*** Calculation of Lp and its tangent
gdotTotal = sum ( rhoSgl ( 1 : ns , 1 : 4 ) * v , 2 ) * burgers ( 1 : ns , instance )
do s = 1_pInt , ns
sLattice = slipSystemLattice ( s , instance )
2014-07-02 17:57:39 +05:30
Lp = Lp + gdotTotal ( s ) * lattice_Sslip ( 1 : 3 , 1 : 3 , 1 , sLattice , ph )
2014-06-14 02:23:17 +05:30
! Schmid contributions to tangent
forall ( i = 1_pInt : 3_pInt , j = 1_pInt : 3_pInt , k = 1_pInt : 3_pInt , l = 1_pInt : 3_pInt ) &
dLp_dTstar3333 ( i , j , k , l ) = dLp_dTstar3333 ( i , j , k , l ) &
2014-07-02 17:57:39 +05:30
+ lattice_Sslip ( i , j , 1 , sLattice , ph ) * lattice_Sslip ( k , l , 1 , sLattice , ph ) &
2014-06-14 02:23:17 +05:30
* sum ( rhoSgl ( s , 1 : 4 ) * dv_dtau ( s , 1 : 4 ) ) * burgers ( s , instance )
! non Schmid contributions to tangent
if ( tau ( s ) > 0.0_pReal ) then
forall ( i = 1_pInt : 3_pInt , j = 1_pInt : 3_pInt , k = 1_pInt : 3_pInt , l = 1_pInt : 3_pInt ) &
dLp_dTstar3333 ( i , j , k , l ) = dLp_dTstar3333 ( i , j , k , l ) &
2014-07-02 17:57:39 +05:30
+ lattice_Sslip ( i , j , 1 , sLattice , ph ) &
2014-06-14 02:23:17 +05:30
* ( nonSchmidProjection ( k , l , 1 , s , instance ) * rhoSgl ( s , 3 ) * dv_dtauNS ( s , 3 ) &
+ nonSchmidProjection ( k , l , 3 , s , instance ) * rhoSgl ( s , 4 ) * dv_dtauNS ( s , 4 ) ) &
* burgers ( s , instance )
else
forall ( i = 1_pInt : 3_pInt , j = 1_pInt : 3_pInt , k = 1_pInt : 3_pInt , l = 1_pInt : 3_pInt ) &
dLp_dTstar3333 ( i , j , k , l ) = dLp_dTstar3333 ( i , j , k , l ) &
2014-07-02 17:57:39 +05:30
+ lattice_Sslip ( i , j , 1 , sLattice , ph ) &
2014-06-14 02:23:17 +05:30
* ( nonSchmidProjection ( k , l , 2 , s , instance ) * rhoSgl ( s , 3 ) * dv_dtauNS ( s , 3 ) &
+ nonSchmidProjection ( k , l , 4 , s , instance ) * rhoSgl ( s , 4 ) * dv_dtauNS ( s , 4 ) ) &
* burgers ( s , instance )
endif
enddo
dLp_dTstar99 = math_Plain3333to99 ( dLp_dTstar3333 )
#ifndef _OPENMP
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2014-06-14 02:23:17 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
2014-07-02 17:57:39 +05:30
write ( 6 , '(/,a,i8,1x,i2,1x,i1,/)' ) '<< CONST >> nonlocal_LpandItsTangent at el ip' , el , ip
2014-06-14 02:23:17 +05:30
write ( 6 , '(a,/,12x,12(f12.5,1x))' ) '<< CONST >> gdot total / 1e-3' , gdotTotal * 1e3_pReal
write ( 6 , '(a,/,3(12x,3(f12.7,1x),/))' ) '<< CONST >> Lp' , transpose ( Lp )
endif
#endif
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_LpAndItsTangent
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
2014-06-14 02:23:17 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief (instantaneous) incremental change of microstructure
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_deltaState ( Tstar_v , ip , el )
2014-06-14 02:23:17 +05:30
use debug , only : debug_level , &
debug_constitutive , &
debug_levelBasic , &
debug_levelExtensive , &
debug_levelSelective , &
debug_i , &
debug_e
use math , only : pi , &
2012-05-18 20:05:52 +05:30
math_mul6x6
2014-03-09 02:20:31 +05:30
use lattice , only : lattice_Sslip_v , &
lattice_mu , &
lattice_nu
2015-04-11 00:39:26 +05:30
use mesh , only : mesh_ipVolume
use material , only : material_phase , &
2014-06-26 19:23:12 +05:30
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2014-06-26 19:23:12 +05:30
phase_plasticityInstance
2012-05-16 20:13:26 +05:30
implicit none
2014-06-26 19:23:12 +05:30
integer ( pInt ) , intent ( in ) :: ip , & ! current grain number
2012-05-16 20:13:26 +05:30
el ! current element number
real ( pReal ) , dimension ( 6 ) , intent ( in ) :: Tstar_v ! current 2nd Piola-Kirchhoff stress in Mandel notation
2012-05-18 20:05:52 +05:30
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
integer ( pInt ) :: &
2014-07-02 17:57:39 +05:30
ph , & !< phase
of !< offset
2014-06-26 19:23:12 +05:30
2014-07-02 17:57:39 +05:30
integer ( pInt ) :: instance , & ! current instance of this plasticity
2012-05-18 19:05:44 +05:30
ns , & ! short notation for the total number of active slip systems
c , & ! character of dislocation
t , & ! type of dislocation
2012-05-18 20:05:52 +05:30
s , & ! index of my current slip system
sLattice ! index of my current slip system according to lattice order
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , ip , el ) ) ) , 10 ) :: &
2014-03-09 02:20:31 +05:30
deltaRho , & ! density increment
deltaRhoRemobilization , & ! density increment by remobilization
deltaRhoDipole2SingleStress ! density increment by dipole dissociation (by stress change)
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , ip , el ) ) ) , 8 ) :: &
2012-05-18 19:05:44 +05:30
rhoSgl ! current single dislocation densities (positive/negative screw and edge without dipoles)
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , ip , el ) ) ) , 4 ) :: &
2012-05-18 19:05:44 +05:30
v ! dislocation glide velocity
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , ip , el ) ) ) ) :: &
2012-05-18 20:05:52 +05:30
tau , & ! current resolved shear stress
2012-11-28 17:39:48 +05:30
tauBack ! current back stress from pileups on same slip system
2014-06-26 19:23:12 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , ip , el ) ) ) , 2 ) :: &
2012-05-18 20:05:52 +05:30
rhoDip , & ! current dipole dislocation densities (screw and edge dipoles)
dLower , & ! minimum stable dipole distance for edges and screws
dUpper , & ! current maximum stable dipole distance for edges and screws
dUpperOld , & ! old maximum stable dipole distance for edges and screws
deltaDUpper ! change in maximum stable dipole distance for edges and screws
2014-06-26 19:23:12 +05:30
2012-05-18 19:05:44 +05:30
#ifndef _OPENMP
2012-07-05 15:24:50 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelBasic ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2014-06-27 01:31:38 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) &
2014-07-02 17:57:39 +05:30
write ( 6 , '(/,a,i8,1x,i2,1x,i1,/)' ) '<< CONST >> nonlocal_deltaState at el ip ' , el , ip
2012-05-18 19:05:44 +05:30
#endif
2012-05-16 20:13:26 +05:30
2016-01-15 05:49:44 +05:30
ph = phaseAt ( 1 , ip , el )
of = phasememberAt ( 1 , ip , el )
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( ph )
ns = totalNslip ( instance )
2012-05-18 19:05:44 +05:30
!*** shortcut to state variables
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl ( s , t ) = max ( plasticState ( ph ) % state ( iRhoU ( s , t , instance ) , of ) , 0.0_pReal ) ! ensure positive single mobile densities
rhoSgl ( s , t + 4_pInt ) = plasticState ( ph ) % state ( iRhoB ( s , t , instance ) , of )
v ( s , t ) = plasticState ( ph ) % state ( iV ( s , t , instance ) , of )
2013-05-24 03:16:15 +05:30
endforall
2013-05-24 14:32:30 +05:30
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt )
2014-07-02 17:57:39 +05:30
rhoDip ( s , c ) = max ( plasticState ( ph ) % state ( iRhoD ( s , c , instance ) , of ) , 0.0_pReal ) ! ensure positive dipole densities
dUpperOld ( s , c ) = plasticState ( ph ) % state ( iD ( s , c , instance ) , of )
2013-05-24 03:16:15 +05:30
endforall
2014-07-02 17:57:39 +05:30
tauBack = plasticState ( ph ) % state ( iTauB ( 1 : ns , instance ) , of )
2013-05-24 14:32:30 +05:30
2014-02-28 18:33:21 +05:30
where ( abs ( rhoSgl ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoSgl ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoSgl = 0.0_pReal
2014-02-28 18:33:21 +05:30
where ( abs ( rhoDip ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoDip ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoDip = 0.0_pReal
2012-05-18 19:05:44 +05:30
2013-05-24 03:16:15 +05:30
2014-06-26 19:23:12 +05:30
2012-05-18 19:05:44 +05:30
!****************************************************************************
!*** dislocation remobilization (bauschinger effect)
deltaRhoRemobilization = 0.0_pReal
do t = 1_pInt , 4_pInt
do s = 1_pInt , ns
if ( rhoSgl ( s , t + 4_pInt ) * v ( s , t ) < 0.0_pReal ) then
deltaRhoRemobilization ( s , t ) = abs ( rhoSgl ( s , t + 4_pInt ) )
rhoSgl ( s , t ) = rhoSgl ( s , t ) + abs ( rhoSgl ( s , t + 4_pInt ) )
deltaRhoRemobilization ( s , t + 4_pInt ) = - rhoSgl ( s , t + 4_pInt )
rhoSgl ( s , t + 4_pInt ) = 0.0_pReal
endif
enddo
enddo
2014-06-26 19:23:12 +05:30
2012-05-18 19:05:44 +05:30
!****************************************************************************
2012-05-18 20:05:52 +05:30
!*** calculate dipole formation and dissociation by stress change
!*** calculate limits for stable dipole height
do s = 1_pInt , ns
2014-02-28 18:33:21 +05:30
sLattice = slipSystemLattice ( s , instance )
2014-07-02 17:57:39 +05:30
tau ( s ) = math_mul6x6 ( Tstar_v , lattice_Sslip_v ( 1 : 6 , 1 , sLattice , ph ) ) + tauBack ( s )
2012-05-18 20:05:52 +05:30
if ( abs ( tau ( s ) ) < 1.0e-15_pReal ) tau ( s ) = 1.0e-15_pReal
enddo
2014-02-28 18:33:21 +05:30
dLower = minDipoleHeight ( 1 : ns , 1 : 2 , instance )
2014-07-02 17:57:39 +05:30
dUpper ( 1 : ns , 1 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) &
/ ( 8.0_pReal * pi * ( 1.0_pReal - lattice_nu ( ph ) ) * abs ( tau ) )
dUpper ( 1 : ns , 2 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) / ( 4.0_pReal * pi * abs ( tau ) )
2014-03-12 05:25:40 +05:30
2014-06-27 01:31:38 +05:30
forall ( c = 1_pInt : 2_pInt )
where ( sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) + &
abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) > = tiny ( 0.0_pReal ) ) &
dUpper ( 1 : ns , c ) = min ( 1.0_pReal / sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) &
2013-05-24 01:26:36 +05:30
+ abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) , &
2012-10-29 18:32:01 +05:30
dUpper ( 1 : ns , c ) )
2014-06-27 01:31:38 +05:30
end forall
2012-05-20 19:27:35 +05:30
dUpper = max ( dUpper , dLower )
2012-05-18 20:05:52 +05:30
deltaDUpper = dUpper - dUpperOld
2014-06-26 19:23:12 +05:30
2012-11-28 17:39:48 +05:30
!*** dissociation by stress increase
2012-05-18 20:05:52 +05:30
deltaRhoDipole2SingleStress = 0.0_pReal
2014-06-27 01:31:38 +05:30
forall ( c = 1_pInt : 2_pInt , s = 1_pInt : ns , deltaDUpper ( s , c ) < 0.0_pReal . and . &
2015-04-11 13:55:23 +05:30
abs ( dUpperOld ( s , c ) - dLower ( s , c ) ) > tiny ( 0.0_pReal ) ) &
2014-05-23 22:43:08 +05:30
deltaRhoDipole2SingleStress ( s , 8_pInt + c ) = rhoDip ( s , c ) * deltaDUpper ( s , c ) &
/ ( dUpperOld ( s , c ) - dLower ( s , c ) )
2012-11-28 17:39:48 +05:30
forall ( t = 1_pInt : 4_pInt ) &
2014-05-23 22:43:08 +05:30
deltaRhoDipole2SingleStress ( 1_pInt : ns , t ) = - 0.5_pReal &
* deltaRhoDipole2SingleStress ( 1_pInt : ns , ( t - 1_pInt ) / 2_pInt + 9_pInt )
2012-11-28 17:39:48 +05:30
2012-05-18 20:05:52 +05:30
!*** store new maximum dipole height in state
2013-05-24 14:32:30 +05:30
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt ) &
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % state ( iD ( s , c , instance ) , of ) = dUpper ( s , c )
2012-05-18 20:05:52 +05:30
!****************************************************************************
2012-08-14 17:56:20 +05:30
!*** assign the changes in the dislocation densities to deltaState
2012-05-18 19:05:44 +05:30
2012-05-18 20:05:52 +05:30
deltaRho = deltaRhoRemobilization &
2012-11-28 17:39:48 +05:30
+ deltaRhoDipole2SingleStress
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % deltaState ( : , of ) = 0.0_pReal
2014-06-26 19:23:12 +05:30
forall ( s = 1 : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % deltaState ( iRhoU ( s , t , instance ) , of ) = deltaRho ( s , t )
plasticState ( ph ) % deltaState ( iRhoB ( s , t , instance ) , of ) = deltaRho ( s , t + 4_pInt )
2014-06-14 02:23:17 +05:30
endforall
forall ( s = 1 : ns , c = 1_pInt : 2_pInt ) &
2014-07-02 17:57:39 +05:30
plasticState ( ph ) % deltaState ( iRhoD ( s , c , instance ) , of ) = deltaRho ( s , c + 8_pInt )
2014-06-14 02:23:17 +05:30
#ifndef _OPENMP
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2014-06-14 02:23:17 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
write ( 6 , '(a,/,8(12x,12(e12.5,1x),/))' ) '<< CONST >> dislocation remobilization' , deltaRhoRemobilization ( 1 : ns , 1 : 8 )
2014-07-02 17:57:39 +05:30
write ( 6 , '(a,/,10(12x,12(e12.5,1x),/),/)' ) '<< CONST >> dipole dissociation by stress increase' , deltaRhoDipole2SingleStress
2014-06-14 02:23:17 +05:30
endif
#endif
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_deltaState
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!---------------------------------------------------------------------------------------------------
2014-06-14 02:23:17 +05:30
!> @brief calculates the rate of change of microstructure
2014-06-26 19:23:12 +05:30
!---------------------------------------------------------------------------------------------------
2015-01-29 19:26:09 +05:30
subroutine plastic_nonlocal_dotState ( Tstar_v , Fe , Fp , Temperature , &
2014-12-09 23:53:48 +05:30
timestep , subfrac , ip , el )
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
use prec , only : DAMASK_NaN
use numerics , only : numerics_integrationMode , &
numerics_timeSyncing
use IO , only : IO_error
use debug , only : debug_level , &
debug_constitutive , &
debug_levelBasic , &
debug_levelExtensive , &
debug_levelSelective , &
debug_g , &
debug_i , &
debug_e
2016-01-09 21:31:30 +05:30
use math , only : math_mul6x6 , &
2014-06-14 02:23:17 +05:30
math_mul3x3 , &
math_mul33x3 , &
math_mul33x33 , &
math_inv33 , &
math_det33 , &
math_transpose33 , &
pi
use mesh , only : mesh_NcpElems , &
mesh_maxNips , &
mesh_element , &
mesh_ipNeighborhood , &
mesh_ipVolume , &
mesh_ipArea , &
mesh_ipAreaNormal , &
FE_NipNeighbors , &
FE_geomtype , &
FE_celltype
2009-08-11 22:01:57 +05:30
use material , only : homogenization_maxNgrains , &
material_phase , &
2012-03-12 19:39:37 +05:30
phase_plasticityInstance , &
phase_localPlasticity , &
2014-06-26 19:23:12 +05:30
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2013-11-27 13:34:05 +05:30
phase_plasticity , &
2014-06-26 19:23:12 +05:30
PLASTICITY_NONLOCAL_ID
2012-02-23 22:50:57 +05:30
use lattice , only : lattice_Sslip_v , &
2009-08-11 22:01:57 +05:30
lattice_sd , &
2014-03-09 02:20:31 +05:30
lattice_st , &
lattice_mu , &
lattice_nu , &
lattice_structure , &
LATTICE_bcc_ID , &
LATTICE_fcc_ID
2010-10-26 19:12:18 +05:30
2009-08-11 22:01:57 +05:30
implicit none
!*** input variables
2014-07-02 17:57:39 +05:30
integer ( pInt ) , intent ( in ) :: ip , & !< current integration point
2015-01-29 19:26:09 +05:30
el !< current element number
2014-06-26 19:23:12 +05:30
real ( pReal ) , intent ( in ) :: Temperature , & !< temperature
timestep !< substepped crystallite time increment
real ( pReal ) , dimension ( 6 ) , intent ( in ) :: Tstar_v !< current 2nd Piola-Kirchhoff stress in Mandel notation
2012-11-28 00:06:55 +05:30
real ( pReal ) , dimension ( homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , intent ( in ) :: &
2014-06-26 19:23:12 +05:30
subfrac !< fraction of timestep at the beginning of the substepped crystallite time increment
2009-10-07 21:01:52 +05:30
real ( pReal ) , dimension ( 3 , 3 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , intent ( in ) :: &
2014-06-26 19:23:12 +05:30
Fe , & !< elastic deformation gradient
Fp !< plastic deformation gradient
2009-08-11 22:01:57 +05:30
!*** local variables
2014-07-02 17:57:39 +05:30
integer ( pInt ) :: ph , &
2014-06-26 19:23:12 +05:30
instance , & !< current instance of this plasticity
neighbor_instance , & !< instance of my neighbor's plasticity
ns , & !< short notation for the total number of active slip systems
c , & !< character of dislocation
n , & !< index of my current neighbor
neighbor_el , & !< element number of my neighbor
neighbor_ip , & !< integration point of my neighbor
neighbor_n , & !< neighbor index pointing to me when looking from my neighbor
opposite_neighbor , & !< index of my opposite neighbor
opposite_ip , & !< ip of my opposite neighbor
opposite_el , & !< element index of my opposite neighbor
opposite_n , & !< neighbor index pointing to me when looking from my opposite neighbor
t , & !< type of dislocation
o , & !< offset shortcut
no , & !< neighbour offset shortcut
p , & !< phase shortcut
np , & !< neighbour phase shortcut
topp , & !< type of dislocation with opposite sign to t
s , & !< index of my current slip system
sLattice !< index of my current slip system according to lattice order
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 10 ) :: &
2014-06-26 19:23:12 +05:30
rhoDot , & !< density evolution
rhoDotMultiplication , & !< density evolution by multiplication
rhoDotFlux , & !< density evolution by flux
rhoDotSingle2DipoleGlide , & !< density evolution by dipole formation (by glide)
rhoDotAthermalAnnihilation , & !< density evolution by athermal annihilation
rhoDotThermalAnnihilation !< density evolution by thermal annihilation
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 8 ) :: &
2014-06-26 19:23:12 +05:30
rhoSgl , & !< current single dislocation densities (positive/negative screw and edge without dipoles)
2012-11-30 00:20:25 +05:30
rhoSglOriginal , &
2014-06-26 19:23:12 +05:30
neighbor_rhoSgl , & !< current single dislocation densities of neighboring ip (positive/negative screw and edge without dipoles)
rhoSgl0 , & !< single dislocation densities at start of cryst inc (positive/negative screw and edge without dipoles)
my_rhoSgl !< single dislocation densities of central ip (positive/negative screw and edge without dipoles)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 4 ) :: &
2014-06-26 19:23:12 +05:30
v , & !< current dislocation glide velocity
v0 , & !< dislocation glide velocity at start of cryst inc
my_v , & !< dislocation glide velocity of central ip
neighbor_v , & !< dislocation glide velocity of enighboring ip
gdot !< shear rates
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2014-06-26 19:23:12 +05:30
rhoForest , & !< forest dislocation density
tauThreshold , & !< threshold shear stress
tau , & !< current resolved shear stress
tauBack , & !< current back stress from pileups on same slip system
vClimb , & !< climb velocity of edge dipoles
2012-11-30 00:20:25 +05:30
nSources
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 2 ) :: &
2014-06-26 19:23:12 +05:30
rhoDip , & !< current dipole dislocation densities (screw and edge dipoles)
2012-12-06 22:44:35 +05:30
rhoDipOriginal , &
2014-06-26 19:23:12 +05:30
dLower , & !< minimum stable dipole distance for edges and screws
dUpper !< current maximum stable dipole distance for edges and screws
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( 3 , totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 4 ) :: &
2014-06-26 19:23:12 +05:30
m !< direction of dislocation motion
real ( pReal ) , dimension ( 3 , 3 ) :: my_F , & !< my total deformation gradient
neighbor_F , & !< total deformation gradient of my neighbor
my_Fe , & !< my elastic deformation gradient
neighbor_Fe , & !< elastic deformation gradient of my neighbor
Favg !< average total deformation gradient of me and my neighbor
real ( pReal ) , dimension ( 3 ) :: normal_neighbor2me , & !< interface normal pointing from my neighbor to me in neighbor's lattice configuration
normal_neighbor2me_defConf , & !< interface normal pointing from my neighbor to me in shared deformed configuration
normal_me2neighbor , & !< interface normal pointing from me to my neighbor in my lattice configuration
normal_me2neighbor_defConf !< interface normal pointing from me to my neighbor in shared deformed configuration
real ( pReal ) area , & !< area of the current interface
transmissivity , & !< overall transmissivity of dislocation flux to neighboring material point
lineLength , & !< dislocation line length leaving the current interface
selfDiffusion , & !< self diffusion
2012-11-30 00:20:25 +05:30
rnd , &
meshlength
2011-02-16 22:05:38 +05:30
logical considerEnteringFlux , &
2012-11-30 00:20:25 +05:30
considerLeavingFlux
2014-06-26 19:23:12 +05:30
2014-07-02 17:57:39 +05:30
2016-01-15 05:49:44 +05:30
p = phaseAt ( 1 , ip , el )
o = phasememberAt ( 1 , ip , el )
2014-07-02 17:57:39 +05:30
2010-03-04 22:44:47 +05:30
2011-03-29 12:57:19 +05:30
#ifndef _OPENMP
2012-07-05 15:24:50 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelBasic ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2014-06-27 01:31:38 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) &
2014-07-02 17:57:39 +05:30
write ( 6 , '(/,a,i8,1x,i2,1x,i1,/)' ) '<< CONST >> nonlocal_dotState at el ip ' , el , ip
2011-03-29 12:57:19 +05:30
#endif
2009-12-15 13:50:31 +05:30
2014-07-02 17:57:39 +05:30
ph = material_phase ( 1_pInt , ip , el )
instance = phase_plasticityInstance ( ph )
2014-02-28 18:33:21 +05:30
ns = totalNslip ( instance )
2009-08-11 22:01:57 +05:30
2010-02-17 18:51:36 +05:30
tau = 0.0_pReal
2009-08-12 16:52:02 +05:30
gdot = 0.0_pReal
2009-08-11 22:01:57 +05:30
2014-06-26 19:23:12 +05:30
!*** shortcut to state variables
2013-05-24 17:18:34 +05:30
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl ( s , t ) = max ( plasticState ( p ) % state ( iRhoU ( s , t , instance ) , o ) , 0.0_pReal ) ! ensure positive single mobile densities
rhoSgl ( s , t + 4_pInt ) = plasticState ( p ) % state ( iRhoB ( s , t , instance ) , o )
v ( s , t ) = plasticState ( p ) % state ( iV ( s , t , instance ) , o )
2014-06-26 19:23:12 +05:30
endforall
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt )
2014-07-02 17:57:39 +05:30
rhoDip ( s , c ) = max ( plasticState ( p ) % state ( iRhoD ( s , c , instance ) , o ) , 0.0_pReal ) ! ensure positive dipole densities
2014-06-26 19:23:12 +05:30
endforall
2014-07-02 17:57:39 +05:30
rhoForest = plasticState ( p ) % state ( iRhoF ( 1 : ns , instance ) , o )
tauThreshold = plasticState ( p ) % state ( iTauF ( 1 : ns , instance ) , o )
tauBack = plasticState ( p ) % state ( iTauB ( 1 : ns , instance ) , o )
2013-05-24 17:18:34 +05:30
2012-11-30 00:20:25 +05:30
rhoSglOriginal = rhoSgl
2012-12-06 22:44:35 +05:30
rhoDipOriginal = rhoDip
2014-02-28 18:33:21 +05:30
where ( abs ( rhoSgl ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoSgl ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoSgl = 0.0_pReal
2014-02-28 18:33:21 +05:30
where ( abs ( rhoDip ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoDip ) < significantRho ( instance ) ) &
2012-10-02 18:27:24 +05:30
rhoDip = 0.0_pReal
2009-08-11 22:01:57 +05:30
2013-05-24 17:18:34 +05:30
if ( numerics_timeSyncing ) then
2013-06-12 02:33:23 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl0 ( s , t ) = max ( plasticState ( p ) % state0 ( iRhoU ( s , t , instance ) , o ) , 0.0_pReal )
2014-06-26 19:23:12 +05:30
rhoSgl0 ( s , t + 4_pInt ) = plasticState ( p ) % state0 ( iRhoB ( s , t , instance ) , o )
2014-07-02 17:57:39 +05:30
v0 ( s , t ) = plasticState ( p ) % state0 ( iV ( s , t , instance ) , o )
2014-06-26 19:23:12 +05:30
endforall
2014-02-28 18:33:21 +05:30
where ( abs ( rhoSgl0 ) * mesh_ipVolume ( ip , el ) ** 0.667_pReal < significantN ( instance ) &
. or . abs ( rhoSgl0 ) < significantRho ( instance ) ) &
2013-05-24 17:18:34 +05:30
rhoSgl0 = 0.0_pReal
endif
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2010-03-04 22:44:47 +05:30
!*** sanity check for timestep
2014-07-02 17:57:39 +05:30
if ( timestep < = 0.0_pReal ) then ! if illegal timestep... Why here and not on function entry??
plasticState ( p ) % dotState = 0.0_pReal ! ...return without doing anything (-> zero dotState)
2010-03-04 22:44:47 +05:30
return
endif
2009-08-11 22:01:57 +05:30
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-08-12 16:52:02 +05:30
!****************************************************************************
!*** Calculate shear rate
2012-02-13 19:48:07 +05:30
forall ( t = 1_pInt : 4_pInt ) &
2014-02-28 18:33:21 +05:30
gdot ( 1_pInt : ns , t ) = rhoSgl ( 1_pInt : ns , t ) * burgers ( 1 : ns , instance ) * v ( 1 : ns , t )
2010-01-05 21:37:24 +05:30
2011-03-29 12:57:19 +05:30
#ifndef _OPENMP
2012-07-05 15:24:50 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelBasic ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
2012-07-05 15:24:50 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
2012-02-02 01:50:05 +05:30
write ( 6 , '(a,/,10(12x,12(e12.5,1x),/))' ) '<< CONST >> rho / 1/m^2' , rhoSgl , rhoDip
write ( 6 , '(a,/,4(12x,12(e12.5,1x),/))' ) '<< CONST >> gdot / 1/s' , gdot
2011-03-29 12:57:19 +05:30
endif
#endif
2010-10-26 19:12:18 +05:30
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-08-12 16:52:02 +05:30
!****************************************************************************
2011-02-25 15:23:20 +05:30
!*** calculate limits for stable dipole height
2010-02-17 18:51:36 +05:30
2012-02-23 22:13:17 +05:30
do s = 1_pInt , ns ! loop over slip systems
2014-02-28 18:33:21 +05:30
sLattice = slipSystemLattice ( s , instance )
2015-01-29 19:26:09 +05:30
tau ( s ) = math_mul6x6 ( Tstar_v , lattice_Sslip_v ( 1 : 6 , 1 , sLattice , ph ) ) + tauBack ( s )
2012-05-08 12:46:00 +05:30
if ( abs ( tau ( s ) ) < 1.0e-15_pReal ) tau ( s ) = 1.0e-15_pReal
2010-02-17 18:51:36 +05:30
enddo
2014-02-28 18:33:21 +05:30
dLower = minDipoleHeight ( 1 : ns , 1 : 2 , instance )
2014-07-02 17:57:39 +05:30
dUpper ( 1 : ns , 1 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) &
/ ( 8.0_pReal * pi * ( 1.0_pReal - lattice_nu ( ph ) ) * abs ( tau ) )
dUpper ( 1 : ns , 2 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) &
2012-07-24 20:20:11 +05:30
/ ( 4.0_pReal * pi * abs ( tau ) )
2014-06-27 01:31:38 +05:30
forall ( c = 1_pInt : 2_pInt )
where ( sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) + &
abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) > = tiny ( 0.0_pReal ) ) &
dUpper ( 1 : ns , c ) = min ( 1.0_pReal / sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) &
2013-05-24 01:26:36 +05:30
+ abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) , &
2012-10-29 18:32:01 +05:30
dUpper ( 1 : ns , c ) )
2014-06-27 01:31:38 +05:30
end forall
2012-05-20 19:27:35 +05:30
dUpper = max ( dUpper , dLower )
constitutive_nonlocal:
- read in activation energy for dislocation glide from material.config
- changed naming of dDipMin/Max to dLower/dUpper
- added new outputs: rho_dot, rho_dot_dip, rho_dot_gen, rho_dot_sgl2dip, rho_dot_dip2sgl, rho_dot_ann_ath, rho_dot_ann_the, rho_dot_flux, d_upper_edge, d_upper_screw, d_upper_dot_edge, d_upper_dot_screw
- poisson's ratio is now calculated from elastic constants
- microstrucutre has state as first argument, since this is our output variable
- periodic boundary conditions are taken into account for fluxes and internal stresses. for the moment, flag has to be set in constitutive_nonlocal.
- corrected calculation for dipole formation by glide
- added terms for dipole formation/annihilation by stress decrease/increase
constitutive:
- passing of arguments is adapted for constitutive_nonlocal model
crystallite:
- in stiffness calculation: call to collect_dotState used wrong arguments
- crystallite_postResults uses own Tstar_v and temperature, no need for passing them from materialpoint_postResults
homogenization:
- crystallite_postResults uses own Tstar_v and temperature, no need for passing them from materialpoint_postResults
IO:
- changed error message 229
material.config:
- changed example for nonlocal constitution according to constitutive_nonlocal
all:
- added some flush statements
2009-10-20 20:06:03 +05:30
!****************************************************************************
!*** calculate dislocation multiplication
2009-10-07 21:01:52 +05:30
2010-10-26 19:12:18 +05:30
rhoDotMultiplication = 0.0_pReal
2014-07-02 17:57:39 +05:30
if ( lattice_structure ( ph ) == LATTICE_bcc_ID ) then ! BCC
2013-08-05 14:56:37 +05:30
forall ( s = 1 : ns , sum ( abs ( v ( s , 1 : 4 ) ) ) > 0.0_pReal )
2014-03-09 02:20:31 +05:30
rhoDotMultiplication ( s , 1 : 2 ) = sum ( abs ( gdot ( s , 3 : 4 ) ) ) / burgers ( s , instance ) & ! assuming double-cross-slip of screws to be decisive for multiplication
* sqrt ( rhoForest ( s ) ) / lambda0 ( s , instance ) ! & ! mean free path
2013-11-21 19:05:43 +05:30
! * 2.0_pReal * sum(abs(v(s,3:4))) / sum(abs(v(s,1:4))) ! ratio of screw to overall velocity determines edge generation
2014-03-09 02:20:31 +05:30
rhoDotMultiplication ( s , 3 : 4 ) = sum ( abs ( gdot ( s , 3 : 4 ) ) ) / burgers ( s , instance ) & ! assuming double-cross-slip of screws to be decisive for multiplication
* sqrt ( rhoForest ( s ) ) / lambda0 ( s , instance ) ! & ! mean free path
2013-11-21 19:05:43 +05:30
! * 2.0_pReal * sum(abs(v(s,1:2))) / sum(abs(v(s,1:4))) ! ratio of edge to overall velocity determines screw generation
2013-08-05 14:56:37 +05:30
endforall
else ! ALL OTHER STRUCTURES
2014-02-28 18:33:21 +05:30
if ( probabilisticMultiplication ( instance ) ) then
2013-08-05 14:56:37 +05:30
meshlength = mesh_ipVolume ( ip , el ) ** 0.333_pReal
where ( sum ( rhoSgl ( 1 : ns , 1 : 4 ) , 2 ) > 0.0_pReal )
2014-02-28 18:33:21 +05:30
nSources = ( sum ( rhoSgl ( 1 : ns , 1 : 2 ) , 2 ) * fEdgeMultiplication ( instance ) + sum ( rhoSgl ( 1 : ns , 3 : 4 ) , 2 ) ) &
2014-06-26 19:23:12 +05:30
/ sum ( rhoSgl ( 1 : ns , 1 : 4 ) , 2 ) * meshlength / lambda0 ( 1 : ns , instance ) * sqrt ( rhoForest ( 1 : ns ) )
2013-08-05 14:56:37 +05:30
elsewhere
2014-02-28 18:33:21 +05:30
nSources = meshlength / lambda0 ( 1 : ns , instance ) * sqrt ( rhoForest ( 1 : ns ) )
2013-08-05 14:56:37 +05:30
endwhere
do s = 1_pInt , ns
if ( nSources ( s ) < 1.0_pReal ) then
2014-07-02 17:57:39 +05:30
if ( sourceProbability ( s , 1_pInt , ip , el ) > 1.0_pReal ) then
2013-08-05 14:56:37 +05:30
call random_number ( rnd )
2014-07-02 17:57:39 +05:30
sourceProbability ( s , 1_pInt , ip , el ) = rnd
2013-08-05 14:56:37 +05:30
!$OMP FLUSH(sourceProbability)
endif
2014-07-02 17:57:39 +05:30
if ( sourceProbability ( s , 1_pInt , ip , el ) > 1.0_pReal - nSources ( s ) ) then
2013-08-05 14:56:37 +05:30
rhoDotMultiplication ( s , 1 : 4 ) = sum ( rhoSglOriginal ( s , 1 : 4 ) * abs ( v ( s , 1 : 4 ) ) ) / meshlength
endif
else
2014-07-02 17:57:39 +05:30
sourceProbability ( s , 1_pInt , ip , el ) = 2.0_pReal
2013-08-05 14:56:37 +05:30
rhoDotMultiplication ( s , 1 : 4 ) = &
2014-02-28 18:33:21 +05:30
( sum ( abs ( gdot ( s , 1 : 2 ) ) ) * fEdgeMultiplication ( instance ) + sum ( abs ( gdot ( s , 3 : 4 ) ) ) ) &
/ burgers ( s , instance ) * sqrt ( rhoForest ( s ) ) / lambda0 ( s , instance )
2012-12-03 18:29:38 +05:30
endif
2013-08-05 14:56:37 +05:30
enddo
2012-10-19 17:10:17 +05:30
#ifndef _OPENMP
2013-08-05 14:56:37 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip ) &
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) &
write ( 6 , '(a,/,4(12x,12(f12.5,1x),/,/))' ) '<< CONST >> sources' , nSources
2012-10-19 17:10:17 +05:30
#endif
2013-08-05 14:56:37 +05:30
else
rhoDotMultiplication ( 1 : ns , 1 : 4 ) = spread ( &
2014-02-28 18:33:21 +05:30
( sum ( abs ( gdot ( 1 : ns , 1 : 2 ) ) , 2 ) * fEdgeMultiplication ( instance ) + sum ( abs ( gdot ( 1 : ns , 3 : 4 ) ) , 2 ) ) &
* sqrt ( rhoForest ( 1 : ns ) ) / lambda0 ( 1 : ns , instance ) / burgers ( 1 : ns , instance ) , 2 , 4 )
2013-08-05 14:56:37 +05:30
endif
2012-12-03 18:29:38 +05:30
endif
2009-08-11 22:01:57 +05:30
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-08-12 16:52:02 +05:30
!****************************************************************************
2012-03-12 19:39:37 +05:30
!*** calculate dislocation fluxes (only for nonlocal plasticity)
2009-08-12 16:52:02 +05:30
2010-05-21 14:21:15 +05:30
rhoDotFlux = 0.0_pReal
2014-07-02 17:57:39 +05:30
!? why needed here
if ( . not . phase_localPlasticity ( material_phase ( 1_pInt , ip , el ) ) ) then ! only for nonlocal plasticity
2012-08-16 14:43:38 +05:30
!*** check CFL (Courant-Friedrichs-Lewy) condition for flux
2013-05-24 17:18:34 +05:30
if ( any ( abs ( gdot ) > 0.0_pReal & ! any active slip system ...
2014-02-28 18:33:21 +05:30
. and . CFLfactor ( instance ) * abs ( v ) * timestep &
2013-05-24 17:18:34 +05:30
> mesh_ipVolume ( ip , el ) / maxval ( mesh_ipArea ( : , ip , el ) ) ) ) then ! ...with velocity above critical value (we use the reference volume and area for simplicity here)
2012-08-16 14:43:38 +05:30
#ifndef _OPENMP
2012-12-03 18:29:38 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt ) then
2012-08-16 14:43:38 +05:30
write ( 6 , '(a,i5,a,i2)' ) '<< CONST >> CFL condition not fullfilled at el ' , el , ' ip ' , ip
2012-09-05 16:49:46 +05:30
write ( 6 , '(a,e10.3,a,e10.3)' ) '<< CONST >> velocity is at ' , &
2013-05-24 17:18:34 +05:30
maxval ( abs ( v ) , abs ( gdot ) > 0.0_pReal &
2014-02-28 18:33:21 +05:30
. and . CFLfactor ( instance ) * abs ( v ) * timestep &
2013-05-24 17:18:34 +05:30
> mesh_ipVolume ( ip , el ) / maxval ( mesh_ipArea ( : , ip , el ) ) ) , &
' at a timestep of ' , timestep
2012-08-16 14:43:38 +05:30
write ( 6 , '(a)' ) '<< CONST >> enforcing cutback !!!'
endif
#endif
2014-07-02 17:57:39 +05:30
plasticState ( p ) % dotState = DAMASK_NaN ! -> return NaN and, hence, enforce cutback
2012-08-16 14:43:38 +05:30
return
endif
2012-11-28 00:06:55 +05:30
2012-08-16 14:43:38 +05:30
!*** be aware of the definition of lattice_st = lattice_sd x lattice_sn !!!
2011-02-23 13:38:06 +05:30
!*** opposite sign to our p vector in the (s,p,n) triplet !!!
2014-07-02 17:57:39 +05:30
m ( 1 : 3 , 1 : ns , 1 ) = lattice_sd ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
m ( 1 : 3 , 1 : ns , 2 ) = - lattice_sd ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
m ( 1 : 3 , 1 : ns , 3 ) = - lattice_st ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
m ( 1 : 3 , 1 : ns , 4 ) = lattice_st ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
2010-10-15 18:49:26 +05:30
2014-07-02 17:57:39 +05:30
my_Fe = Fe ( 1 : 3 , 1 : 3 , 1_pInt , ip , el )
my_F = math_mul33x33 ( my_Fe , Fp ( 1 : 3 , 1 : 3 , 1_pInt , ip , el ) )
constitutive_nonlocal:
- read in activation energy for dislocation glide from material.config
- changed naming of dDipMin/Max to dLower/dUpper
- added new outputs: rho_dot, rho_dot_dip, rho_dot_gen, rho_dot_sgl2dip, rho_dot_dip2sgl, rho_dot_ann_ath, rho_dot_ann_the, rho_dot_flux, d_upper_edge, d_upper_screw, d_upper_dot_edge, d_upper_dot_screw
- poisson's ratio is now calculated from elastic constants
- microstrucutre has state as first argument, since this is our output variable
- periodic boundary conditions are taken into account for fluxes and internal stresses. for the moment, flag has to be set in constitutive_nonlocal.
- corrected calculation for dipole formation by glide
- added terms for dipole formation/annihilation by stress decrease/increase
constitutive:
- passing of arguments is adapted for constitutive_nonlocal model
crystallite:
- in stiffness calculation: call to collect_dotState used wrong arguments
- crystallite_postResults uses own Tstar_v and temperature, no need for passing them from materialpoint_postResults
homogenization:
- crystallite_postResults uses own Tstar_v and temperature, no need for passing them from materialpoint_postResults
IO:
- changed error message 229
material.config:
- changed example for nonlocal constitution according to constitutive_nonlocal
all:
- added some flush statements
2009-10-20 20:06:03 +05:30
2013-05-24 17:18:34 +05:30
do n = 1_pInt , FE_NipNeighbors ( FE_celltype ( FE_geomtype ( mesh_element ( 2 , el ) ) ) ) ! loop through my neighbors
2014-07-02 17:57:39 +05:30
! write(6,*) 'c'
2013-05-24 17:18:34 +05:30
neighbor_el = mesh_ipNeighborhood ( 1 , n , ip , el )
neighbor_ip = mesh_ipNeighborhood ( 2 , n , ip , el )
neighbor_n = mesh_ipNeighborhood ( 3 , n , ip , el )
2016-01-15 05:49:44 +05:30
np = phaseAt ( 1 , neighbor_ip , neighbor_el )
no = phasememberAt ( 1 , neighbor_ip , neighbor_el )
2014-06-26 19:23:12 +05:30
2012-10-29 18:19:28 +05:30
opposite_neighbor = n + mod ( n , 2_pInt ) - mod ( n + 1_pInt , 2_pInt )
opposite_el = mesh_ipNeighborhood ( 1 , opposite_neighbor , ip , el )
opposite_ip = mesh_ipNeighborhood ( 2 , opposite_neighbor , ip , el )
opposite_n = mesh_ipNeighborhood ( 3 , opposite_neighbor , ip , el )
2011-01-11 20:25:36 +05:30
2014-06-26 19:23:12 +05:30
if ( neighbor_n > 0_pInt ) then ! if neighbor exists, average deformation gradient
2014-07-02 17:57:39 +05:30
neighbor_instance = phase_plasticityInstance ( material_phase ( 1_pInt , neighbor_ip , neighbor_el ) )
neighbor_Fe = Fe ( 1 : 3 , 1 : 3 , 1_pInt , neighbor_ip , neighbor_el )
neighbor_F = math_mul33x33 ( neighbor_Fe , Fp ( 1 : 3 , 1 : 3 , 1_pInt , neighbor_ip , neighbor_el ) )
2013-05-24 17:18:34 +05:30
Favg = 0.5_pReal * ( my_F + neighbor_F )
else ! if no neighbor, take my value as average
2011-02-16 22:05:38 +05:30
Favg = my_F
2011-01-11 20:25:36 +05:30
endif
2011-02-16 22:05:38 +05:30
!* FLUX FROM MY NEIGHBOR TO ME
2014-06-26 19:23:12 +05:30
!* This is only considered, if I have a neighbor of nonlocal plasticity
!* (also nonlocal constitutive law with local properties) that is at least a little bit
!* compatible.
!* If it's not at all compatible, no flux is arriving, because everything is dammed in front of
!* my neighbor's interface.
!* The entering flux from my neighbor will be distributed on my slip systems according to the
!*compatibility
2011-02-16 22:05:38 +05:30
considerEnteringFlux = . false .
2013-05-24 17:18:34 +05:30
neighbor_v = 0.0_pReal ! needed for check of sign change in flux density below
neighbor_rhoSgl = 0.0_pReal
if ( neighbor_n > 0_pInt ) then
2013-11-27 13:34:05 +05:30
if ( phase_plasticity ( material_phase ( 1 , neighbor_ip , neighbor_el ) ) == PLASTICITY_NONLOCAL_ID &
2013-05-24 01:26:36 +05:30
. and . any ( compatibility ( : , : , : , n , ip , el ) > 0.0_pReal ) ) &
2011-08-02 16:47:45 +05:30
considerEnteringFlux = . true .
2011-02-16 22:05:38 +05:30
endif
if ( considerEnteringFlux ) then
2014-07-02 17:57:39 +05:30
if ( numerics_timeSyncing . and . ( subfrac ( 1_pInt , neighbor_ip , neighbor_el ) / = subfrac ( 1_pInt , ip , el ) ) ) &
2014-06-26 19:23:12 +05:30
then ! for timesyncing: in case of a timestep at the interface we have to use "state0" to make sure that fluxes n both sides are equal
forall ( s = 1 : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
neighbor_v ( s , t ) = plasticState ( np ) % state0 ( iV ( s , t , neighbor_instance ) , no )
2014-06-26 19:23:12 +05:30
neighbor_rhoSgl ( s , t ) = max ( plasticState ( np ) % state0 ( iRhoU ( s , t , neighbor_instance ) , no ) , 0.0_pReal )
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
endforall
2012-11-28 00:06:55 +05:30
else
2013-05-24 17:18:34 +05:30
forall ( s = 1 : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
neighbor_v ( s , t ) = plasticState ( np ) % state ( iV ( s , t , neighbor_instance ) , no )
neighbor_rhoSgl ( s , t ) = max ( plasticState ( np ) % state ( iRhoU ( s , t , neighbor_instance ) , no ) , &
2014-06-26 19:23:12 +05:30
0.0_pReal )
2013-04-03 21:52:55 +05:30
endforall
2012-11-28 00:06:55 +05:30
endif
2014-07-02 17:57:39 +05:30
2014-02-28 18:33:21 +05:30
where ( neighbor_rhoSgl * mesh_ipVolume ( neighbor_ip , neighbor_el ) ** 0.667_pReal < significantN ( instance ) &
. or . neighbor_rhoSgl < significantRho ( instance ) ) &
2013-05-24 17:18:34 +05:30
neighbor_rhoSgl = 0.0_pReal
2013-05-24 01:26:36 +05:30
normal_neighbor2me_defConf = math_det33 ( Favg ) * math_mul33x3 ( math_inv33 ( transpose ( Favg ) ) , &
2013-05-24 17:18:34 +05:30
mesh_ipAreaNormal ( 1 : 3 , neighbor_n , neighbor_ip , neighbor_el ) ) ! calculate the normal of the interface in (average) deformed configuration (now pointing from my neighbor to me!!!)
normal_neighbor2me = math_mul33x3 ( transpose ( neighbor_Fe ) , normal_neighbor2me_defConf ) &
/ math_det33 ( neighbor_Fe ) ! interface normal in the lattice configuration of my neighbor
2016-01-09 21:31:30 +05:30
area = mesh_ipArea ( neighbor_n , neighbor_ip , neighbor_el ) * norm2 ( normal_neighbor2me )
normal_neighbor2me = normal_neighbor2me / norm2 ( normal_neighbor2me ) ! normalize the surface normal to unit length
2012-02-23 22:13:17 +05:30
do s = 1_pInt , ns
do t = 1_pInt , 4_pInt
c = ( t + 1_pInt ) / 2
topp = t + mod ( t , 2_pInt ) - mod ( t + 1_pInt , 2_pInt )
2013-05-24 17:18:34 +05:30
if ( neighbor_v ( s , t ) * math_mul3x3 ( m ( 1 : 3 , s , t ) , normal_neighbor2me ) > 0.0_pReal & ! flux from my neighbor to me == entering flux for me
2014-01-08 22:05:10 +05:30
. and . v ( s , t ) * neighbor_v ( s , t ) > = 0.0_pReal ) then ! ... only if no sign change in flux density
2014-01-08 22:01:50 +05:30
lineLength = neighbor_rhoSgl ( s , t ) * neighbor_v ( s , t ) &
* math_mul3x3 ( m ( 1 : 3 , s , t ) , normal_neighbor2me ) * area ! positive line length that wants to enter through this interface
where ( compatibility ( c , 1_pInt : ns , s , n , ip , el ) > 0.0_pReal ) & ! positive compatibility...
rhoDotFlux ( 1_pInt : ns , t ) = rhoDotFlux ( 1_pInt : ns , t ) &
+ lineLength / mesh_ipVolume ( ip , el ) & ! ... transferring to equally signed mobile dislocation type
* compatibility ( c , 1_pInt : ns , s , n , ip , el ) ** 2.0_pReal
where ( compatibility ( c , 1_pInt : ns , s , n , ip , el ) < 0.0_pReal ) & ! ..negative compatibility...
rhoDotFlux ( 1_pInt : ns , topp ) = rhoDotFlux ( 1_pInt : ns , topp ) &
+ lineLength / mesh_ipVolume ( ip , el ) & ! ... transferring to opposite signed mobile dislocation type
* compatibility ( c , 1_pInt : ns , s , n , ip , el ) ** 2.0_pReal
2011-01-11 20:25:36 +05:30
endif
2011-02-16 22:05:38 +05:30
enddo
enddo
2011-01-11 20:25:36 +05:30
endif
2011-08-02 16:47:45 +05:30
!* FLUX FROM ME TO MY NEIGHBOR
2011-09-07 17:00:28 +05:30
!* This is not considered, if my opposite neighbor has a different constitutive law than nonlocal (still considered for nonlocal law with lcal properties).
2011-08-02 16:47:45 +05:30
!* Then, we assume, that the opposite(!) neighbor sends an equal amount of dislocations to me.
!* So the net flux in the direction of my neighbor is equal to zero:
!* leaving flux to neighbor == entering flux from opposite neighbor
!* In case of reduced transmissivity, part of the leaving flux is stored as dead dislocation density.
!* That means for an interface of zero transmissivity the leaving flux is fully converted to dead dislocations.
considerLeavingFlux = . true .
2012-10-29 18:19:28 +05:30
if ( opposite_n > 0_pInt ) then
2013-11-27 13:34:05 +05:30
if ( phase_plasticity ( material_phase ( 1 , opposite_ip , opposite_el ) ) / = PLASTICITY_NONLOCAL_ID ) &
2011-08-02 16:47:45 +05:30
considerLeavingFlux = . false .
endif
if ( considerLeavingFlux ) then
2012-12-11 19:08:36 +05:30
!* timeSyncing mode: If the central ip has zero subfraction, always use "state0". This is needed in case of
!* a synchronization step for the central ip, because then "state" contains the values at the end of the
!* previously converged full time step. Also, if either me or my neighbor has zero subfraction, we have to
!* use "state0" to make sure that fluxes on both sides of the (potential) timestep are equal.
2013-05-24 17:18:34 +05:30
my_rhoSgl = rhoSgl
my_v = v
2012-12-11 19:08:36 +05:30
if ( numerics_timeSyncing ) then
2015-04-11 13:55:23 +05:30
if ( abs ( subfrac ( 1_pInt , ip , el ) ) < = tiny ( 0.0_pReal ) ) then
2013-05-24 17:18:34 +05:30
my_rhoSgl = rhoSgl0
my_v = v0
elseif ( neighbor_n > 0_pInt ) then
2015-04-11 13:55:23 +05:30
if ( abs ( subfrac ( 1_pInt , neighbor_ip , neighbor_el ) ) < = tiny ( 0.0_pReal ) ) then
2013-05-24 17:18:34 +05:30
my_rhoSgl = rhoSgl0
my_v = v0
2012-12-11 19:08:36 +05:30
endif
2012-12-09 17:54:32 +05:30
endif
2012-11-28 00:06:55 +05:30
endif
2012-12-11 19:08:36 +05:30
2013-05-24 17:18:34 +05:30
normal_me2neighbor_defConf = math_det33 ( Favg ) &
* math_mul33x3 ( math_inv33 ( math_transpose33 ( Favg ) ) , &
mesh_ipAreaNormal ( 1 : 3 , n , ip , el ) ) ! calculate the normal of the interface in (average) deformed configuration (pointing from me to my neighbor!!!)
normal_me2neighbor = math_mul33x3 ( math_transpose33 ( my_Fe ) , normal_me2neighbor_defConf ) &
/ math_det33 ( my_Fe ) ! interface normal in my lattice configuration
2016-01-09 21:31:30 +05:30
area = mesh_ipArea ( n , ip , el ) * norm2 ( normal_me2neighbor )
normal_me2neighbor = normal_me2neighbor / norm2 ( normal_me2neighbor ) ! normalize the surface normal to unit length
2012-02-23 22:13:17 +05:30
do s = 1_pInt , ns
do t = 1_pInt , 4_pInt
2012-11-28 00:06:55 +05:30
c = ( t + 1_pInt ) / 2_pInt
2013-05-24 17:18:34 +05:30
if ( my_v ( s , t ) * math_mul3x3 ( m ( 1 : 3 , s , t ) , normal_me2neighbor ) > 0.0_pReal ) then ! flux from me to my neighbor == leaving flux for me (might also be a pure flux from my mobile density to dead density if interface not at all transmissive)
2014-01-08 22:05:10 +05:30
if ( my_v ( s , t ) * neighbor_v ( s , t ) > = 0.0_pReal ) then ! no sign change in flux density
2013-05-24 17:18:34 +05:30
transmissivity = sum ( compatibility ( c , 1_pInt : ns , s , n , ip , el ) ** 2.0_pReal ) ! overall transmissivity from this slip system to my neighbor
else ! sign change in flux density means sign change in stress which does not allow for dislocations to arive at the neighbor
2011-08-02 16:47:45 +05:30
transmissivity = 0.0_pReal
endif
2013-05-24 17:18:34 +05:30
lineLength = my_rhoSgl ( s , t ) * my_v ( s , t ) &
* math_mul3x3 ( m ( 1 : 3 , s , t ) , normal_me2neighbor ) * area ! positive line length of mobiles that wants to leave through this interface
rhoDotFlux ( s , t ) = rhoDotFlux ( s , t ) - lineLength / mesh_ipVolume ( ip , el ) ! subtract dislocation flux from current type
rhoDotFlux ( s , t + 4_pInt ) = rhoDotFlux ( s , t + 4_pInt ) &
+ lineLength / mesh_ipVolume ( ip , el ) * ( 1.0_pReal - transmissivity ) &
* sign ( 1.0_pReal , my_v ( s , t ) ) ! dislocation flux that is not able to leave through interface (because of low transmissivity) will remain as immobile single density at the material point
2011-08-02 16:47:45 +05:30
endif
enddo
enddo
endif
2011-02-16 22:05:38 +05:30
2011-02-24 15:31:41 +05:30
enddo ! neighbor loop
2010-10-26 19:12:18 +05:30
endif
2009-08-28 19:20:47 +05:30
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-08-28 19:20:47 +05:30
!****************************************************************************
!*** calculate dipole formation and annihilation
!*** formation by glide
2012-02-23 22:13:17 +05:30
do c = 1_pInt , 2_pInt
2014-02-28 18:33:21 +05:30
rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c - 1 ) = - 2.0_pReal * dUpper ( 1 : ns , c ) / burgers ( 1 : ns , instance ) &
2014-05-23 22:43:08 +05:30
* ( rhoSgl ( 1 : ns , 2 * c - 1 ) * abs ( gdot ( 1 : ns , 2 * c ) ) & ! negative mobile --> positive mobile
+ rhoSgl ( 1 : ns , 2 * c ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) & ! positive mobile --> negative mobile
+ abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) ) ! positive mobile --> negative immobile
2010-02-17 18:51:36 +05:30
2014-02-28 18:33:21 +05:30
rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c ) = - 2.0_pReal * dUpper ( 1 : ns , c ) / burgers ( 1 : ns , instance ) &
2014-05-23 22:43:08 +05:30
* ( rhoSgl ( 1 : ns , 2 * c - 1 ) * abs ( gdot ( 1 : ns , 2 * c ) ) & ! negative mobile --> positive mobile
+ rhoSgl ( 1 : ns , 2 * c ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) & ! positive mobile --> negative mobile
+ abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) * abs ( gdot ( 1 : ns , 2 * c ) ) ) ! negative mobile --> positive immobile
2010-02-17 18:51:36 +05:30
2014-02-28 18:33:21 +05:30
rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c + 3 ) = - 2.0_pReal * dUpper ( 1 : ns , c ) / burgers ( 1 : ns , instance ) &
2014-05-23 22:43:08 +05:30
* rhoSgl ( 1 : ns , 2 * c + 3 ) * abs ( gdot ( 1 : ns , 2 * c ) ) ! negative mobile --> positive immobile
2010-02-17 18:51:36 +05:30
2014-02-28 18:33:21 +05:30
rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c + 4 ) = - 2.0_pReal * dUpper ( 1 : ns , c ) / burgers ( 1 : ns , instance ) &
2014-05-23 22:43:08 +05:30
* rhoSgl ( 1 : ns , 2 * c + 4 ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) ! positive mobile --> negative immobile
2010-02-17 18:51:36 +05:30
2014-03-04 19:17:04 +05:30
rhoDotSingle2DipoleGlide ( 1 : ns , c + 8 ) = - rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c - 1 ) &
- rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c ) &
+ abs ( rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c + 3 ) ) &
+ abs ( rhoDotSingle2DipoleGlide ( 1 : ns , 2 * c + 4 ) )
2010-01-05 21:37:24 +05:30
enddo
2009-10-07 21:01:52 +05:30
2009-08-28 19:20:47 +05:30
2012-11-28 17:39:48 +05:30
!*** athermal annihilation
2009-08-28 19:20:47 +05:30
2010-05-21 14:21:15 +05:30
rhoDotAthermalAnnihilation = 0.0_pReal
2012-11-28 17:39:48 +05:30
forall ( c = 1_pInt : 2_pInt ) &
2014-02-28 18:33:21 +05:30
rhoDotAthermalAnnihilation ( 1 : ns , c + 8_pInt ) = - 2.0_pReal * dLower ( 1 : ns , c ) / burgers ( 1 : ns , instance ) &
2012-11-28 17:39:48 +05:30
* ( 2.0_pReal * ( rhoSgl ( 1 : ns , 2 * c - 1 ) * abs ( gdot ( 1 : ns , 2 * c ) ) + rhoSgl ( 1 : ns , 2 * c ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) ) & ! was single hitting single
+ 2.0_pReal * ( abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) * abs ( gdot ( 1 : ns , 2 * c ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) * abs ( gdot ( 1 : ns , 2 * c - 1 ) ) ) & ! was single hitting immobile single or was immobile single hit by single
+ rhoDip ( 1 : ns , c ) * ( abs ( gdot ( 1 : ns , 2 * c - 1 ) ) + abs ( gdot ( 1 : ns , 2 * c ) ) ) ) ! single knocks dipole constituent
! annihilated screw dipoles leave edge jogs behind on the colinear system
2014-07-02 17:57:39 +05:30
if ( lattice_structure ( ph ) == LATTICE_fcc_ID ) & ! only fcc
2014-02-28 18:33:21 +05:30
forall ( s = 1 : ns , colinearSystem ( s , instance ) > 0_pInt ) &
rhoDotAthermalAnnihilation ( colinearSystem ( s , instance ) , 1 : 2 ) = - rhoDotAthermalAnnihilation ( s , 10 ) &
* 0.25_pReal * sqrt ( rhoForest ( s ) ) * ( dUpper ( s , 2 ) + dLower ( s , 2 ) ) * edgeJogFactor ( instance )
2014-07-02 17:57:39 +05:30
2009-08-28 19:20:47 +05:30
2012-11-17 19:20:20 +05:30
!*** thermally activated annihilation of edge dipoles by climb
2009-10-07 21:01:52 +05:30
2010-05-21 14:21:15 +05:30
rhoDotThermalAnnihilation = 0.0_pReal
2014-02-28 18:33:21 +05:30
selfDiffusion = Dsd0 ( instance ) * exp ( - selfDiffusionEnergy ( instance ) / ( KB * Temperature ) )
vClimb = atomicVolume ( instance ) * selfDiffusion / ( KB * Temperature ) &
2014-07-02 17:57:39 +05:30
* lattice_mu ( ph ) / ( 2.0_pReal * PI * ( 1.0_pReal - lattice_nu ( ph ) ) ) &
2011-02-09 18:42:46 +05:30
* 2.0_pReal / ( dUpper ( 1 : ns , 1 ) + dLower ( 1 : ns , 1 ) )
2012-10-04 23:38:40 +05:30
forall ( s = 1_pInt : ns , dUpper ( s , 1 ) > dLower ( s , 1 ) ) &
rhoDotThermalAnnihilation ( s , 9 ) = max ( - 4.0_pReal * rhoDip ( s , 1 ) * vClimb ( s ) / ( dUpper ( s , 1 ) - dLower ( s , 1 ) ) , &
2014-05-23 22:43:08 +05:30
- rhoDip ( s , 1 ) / timestep - rhoDotAthermalAnnihilation ( s , 9 ) &
- rhoDotSingle2DipoleGlide ( s , 9 ) ) ! make sure that we do not annihilate more dipoles than we have
2012-08-14 17:56:20 +05:30
2009-08-28 19:20:47 +05:30
!****************************************************************************
!*** assign the rates of dislocation densities to my dotState
2012-02-22 21:38:22 +05:30
!*** if evolution rates lead to negative densities, a cutback is enforced
2009-08-28 19:20:47 +05:30
2010-05-21 14:21:15 +05:30
rhoDot = 0.0_pReal
2011-08-02 16:47:45 +05:30
rhoDot = rhoDotFlux &
+ rhoDotMultiplication &
+ rhoDotSingle2DipoleGlide &
+ rhoDotAthermalAnnihilation &
+ rhoDotThermalAnnihilation
2010-05-21 14:21:15 +05:30
2014-05-23 22:43:08 +05:30
if ( numerics_integrationMode == 1_pInt ) then ! save rates for output if in central integration mode
2014-07-02 17:57:39 +05:30
rhoDotFluxOutput ( 1 : ns , 1 : 8 , 1_pInt , ip , el ) = rhoDotFlux ( 1 : ns , 1 : 8 )
rhoDotMultiplicationOutput ( 1 : ns , 1 : 2 , 1_pInt , ip , el ) = rhoDotMultiplication ( 1 : ns , [ 1 , 3 ] )
rhoDotSingle2DipoleGlideOutput ( 1 : ns , 1 : 2 , 1_pInt , ip , el ) = rhoDotSingle2DipoleGlide ( 1 : ns , 9 : 10 )
rhoDotAthermalAnnihilationOutput ( 1 : ns , 1 : 2 , 1_pInt , ip , el ) = rhoDotAthermalAnnihilation ( 1 : ns , 9 : 10 )
rhoDotThermalAnnihilationOutput ( 1 : ns , 1 : 2 , 1_pInt , ip , el ) = rhoDotThermalAnnihilation ( 1 : ns , 9 : 10 )
rhoDotEdgeJogsOutput ( 1 : ns , 1_pInt , ip , el ) = 2.0_pReal * rhoDotThermalAnnihilation ( 1 : ns , 1 )
2012-08-16 16:33:22 +05:30
endif
2011-03-29 12:57:19 +05:30
#ifndef _OPENMP
2012-10-22 13:29:35 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt &
2014-07-02 17:57:39 +05:30
. and . ( ( debug_e == el . and . debug_i == ip . and . debug_g == 1_pInt ) &
2012-07-05 15:24:50 +05:30
. or . . not . iand ( debug_level ( debug_constitutive ) , debug_levelSelective ) / = 0_pInt ) ) then
2014-05-23 22:43:08 +05:30
write ( 6 , '(a,/,4(12x,12(e12.5,1x),/))' ) '<< CONST >> dislocation multiplication' , &
rhoDotMultiplication ( 1 : ns , 1 : 4 ) * timestep
write ( 6 , '(a,/,8(12x,12(e12.5,1x),/))' ) '<< CONST >> dislocation flux' , &
rhoDotFlux ( 1 : ns , 1 : 8 ) * timestep
write ( 6 , '(a,/,10(12x,12(e12.5,1x),/))' ) '<< CONST >> dipole formation by glide' , &
rhoDotSingle2DipoleGlide * timestep
2012-11-28 17:39:48 +05:30
write ( 6 , '(a,/,10(12x,12(e12.5,1x),/))' ) '<< CONST >> athermal dipole annihilation' , &
rhoDotAthermalAnnihilation * timestep
2014-05-23 22:43:08 +05:30
write ( 6 , '(a,/,2(12x,12(e12.5,1x),/))' ) '<< CONST >> thermally activated dipole annihilation' , &
2012-11-17 19:20:20 +05:30
rhoDotThermalAnnihilation ( 1 : ns , 9 : 10 ) * timestep
2014-05-23 22:43:08 +05:30
write ( 6 , '(a,/,10(12x,12(e12.5,1x),/))' ) '<< CONST >> total density change' , &
rhoDot * timestep
2012-12-09 17:54:32 +05:30
write ( 6 , '(a,/,10(12x,12(f12.5,1x),/))' ) '<< CONST >> relative density change' , &
rhoDot ( 1 : ns , 1 : 8 ) * timestep / ( abs ( rhoSglOriginal ) + 1.0e-10 ) , &
rhoDot ( 1 : ns , 9 : 10 ) * timestep / ( rhoDipOriginal + 1.0e-10 )
2012-01-17 15:56:57 +05:30
write ( 6 , * )
2011-03-29 12:57:19 +05:30
endif
#endif
2010-10-26 19:12:18 +05:30
2012-08-23 11:18:21 +05:30
2014-02-28 18:33:21 +05:30
if ( any ( rhoSglOriginal ( 1 : ns , 1 : 4 ) + rhoDot ( 1 : ns , 1 : 4 ) * timestep < - aTolRho ( instance ) ) &
. or . any ( rhoDipOriginal ( 1 : ns , 1 : 2 ) + rhoDot ( 1 : ns , 9 : 10 ) * timestep < - aTolRho ( instance ) ) ) then
2012-08-23 11:18:21 +05:30
#ifndef _OPENMP
2012-12-03 18:29:38 +05:30
if ( iand ( debug_level ( debug_constitutive ) , debug_levelExtensive ) / = 0_pInt ) then
2012-08-23 11:18:21 +05:30
write ( 6 , '(a,i5,a,i2)' ) '<< CONST >> evolution rate leads to negative density at el ' , el , ' ip ' , ip
write ( 6 , '(a)' ) '<< CONST >> enforcing cutback !!!'
endif
#endif
2014-07-02 17:57:39 +05:30
plasticState ( p ) % dotState = DAMASK_NaN
2012-08-23 11:18:21 +05:30
return
else
2013-05-24 17:18:34 +05:30
forall ( s = 1 : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
plasticState ( p ) % dotState ( iRhoU ( s , t , instance ) , o ) = rhoDot ( s , t )
plasticState ( p ) % dotState ( iRhoB ( s , t , instance ) , o ) = rhoDot ( s , t + 4_pInt )
2013-05-24 17:18:34 +05:30
endforall
forall ( s = 1 : ns , c = 1_pInt : 2_pInt ) &
2014-07-02 17:57:39 +05:30
plasticState ( p ) % dotState ( iRhoD ( s , c , instance ) , o ) = rhoDot ( s , c + 8_pInt )
2013-05-24 17:18:34 +05:30
forall ( s = 1 : ns ) &
2014-07-02 17:57:39 +05:30
plasticState ( p ) % dotState ( iGamma ( s , instance ) , o ) = sum ( gdot ( s , 1 : 4 ) )
2014-06-26 19:23:12 +05:30
endif
2014-06-14 02:23:17 +05:30
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_dotState
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!*********************************************************************
!* COMPATIBILITY UPDATE *
!* Compatibility is defined as normalized product of signed cosine *
!* of the angle between the slip plane normals and signed cosine of *
!* the angle between the slip directions. Only the largest values *
!* that sum up to a total of 1 are considered, all others are set to *
!* zero. *
!*********************************************************************
2014-12-08 21:25:30 +05:30
subroutine plastic_nonlocal_updateCompatibility ( orientation , i , e )
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
use math , only : math_mul3x3 , &
math_qRot
use material , only : material_phase , &
material_texture , &
phase_localPlasticity , &
phase_plasticityInstance , &
homogenization_maxNgrains
use mesh , only : mesh_element , &
mesh_ipNeighborhood , &
mesh_maxNips , &
mesh_NcpElems , &
FE_NipNeighbors , &
FE_geomtype , &
FE_celltype
use lattice , only : lattice_sn , &
lattice_sd , &
lattice_qDisorientation
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
implicit none
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!* input variables
integer ( pInt ) , intent ( in ) :: i , & ! ip index
e ! element index
real ( pReal ) , dimension ( 4 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , intent ( in ) :: &
orientation ! crystal orientation in quaternions
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!* local variables
integer ( pInt ) Nneighbors , & ! number of neighbors
n , & ! neighbor index
neighbor_e , & ! element index of my neighbor
neighbor_i , & ! integration point index of my neighbor
2014-07-02 17:57:39 +05:30
ph , &
2014-06-26 19:23:12 +05:30
neighbor_phase , &
textureID , &
neighbor_textureID , &
instance , & ! instance of plasticity
ns , & ! number of active slip systems
s1 , & ! slip system index (me)
s2 ! slip system index (my neighbor)
real ( pReal ) , dimension ( 4 ) :: absoluteMisorientation ! absolute misorientation (without symmetry) between me and my neighbor
real ( pReal ) , dimension ( 2 , totalNslip ( phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) , &
totalNslip ( phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) , &
FE_NipNeighbors ( FE_celltype ( FE_geomtype ( mesh_element ( 2 , e ) ) ) ) ) :: &
my_compatibility ! my_compatibility for current element and ip
real ( pReal ) , dimension ( 3 , totalNslip ( phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) ) :: &
slipNormal , &
slipDirection
real ( pReal ) my_compatibilitySum , &
thresholdValue , &
nThresholdValues
logical , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1 , i , e ) ) ) ) :: &
belowThreshold
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
Nneighbors = FE_NipNeighbors ( FE_celltype ( FE_geomtype ( mesh_element ( 2 , e ) ) ) )
2014-07-02 17:57:39 +05:30
ph = material_phase ( 1 , i , e )
2014-06-26 19:23:12 +05:30
textureID = material_texture ( 1 , i , e )
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( ph )
2014-06-26 19:23:12 +05:30
ns = totalNslip ( instance )
2014-07-02 17:57:39 +05:30
slipNormal ( 1 : 3 , 1 : ns ) = lattice_sn ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
slipDirection ( 1 : 3 , 1 : ns ) = lattice_sd ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!*** start out fully compatible
my_compatibility = 0.0_pReal
forall ( s1 = 1_pInt : ns ) &
my_compatibility ( 1 : 2 , s1 , s1 , 1 : Nneighbors ) = 1.0_pReal
!*** Loop thrugh neighbors and check whether there is any my_compatibility.
do n = 1_pInt , Nneighbors
neighbor_e = mesh_ipNeighborhood ( 1 , n , i , e )
neighbor_i = mesh_ipNeighborhood ( 2 , n , i , e )
!* FREE SURFACE
!* Set surface transmissivity to the value specified in the material.config
if ( neighbor_e < = 0_pInt . or . neighbor_i < = 0_pInt ) then
forall ( s1 = 1_pInt : ns ) &
my_compatibility ( 1 : 2 , s1 , s1 , n ) = sqrt ( surfaceTransmissivity ( instance ) )
cycle
endif
!* PHASE BOUNDARY
!* If we encounter a different nonlocal "cpfem" phase at the neighbor,
!* we consider this to be a real "physical" phase boundary, so completely incompatible.
!* If one of the two "CPFEM" phases has a local plasticity law,
!* we do not consider this to be a phase boundary, so completely compatible.
neighbor_phase = material_phase ( 1 , neighbor_i , neighbor_e )
2014-07-02 17:57:39 +05:30
if ( neighbor_phase / = ph ) then
if ( . not . phase_localPlasticity ( neighbor_phase ) . and . . not . phase_localPlasticity ( ph ) ) then
2014-06-26 19:23:12 +05:30
forall ( s1 = 1_pInt : ns ) &
my_compatibility ( 1 : 2 , s1 , s1 , n ) = 0.0_pReal ! = sqrt(0.0)
endif
cycle
endif
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
!* GRAIN BOUNDARY !
!* fixed transmissivity for adjacent ips with different texture (only if explicitly given in material.config)
2014-06-14 02:23:17 +05:30
2014-06-26 19:23:12 +05:30
if ( grainboundaryTransmissivity ( instance ) > = 0.0_pReal ) then
neighbor_textureID = material_texture ( 1 , neighbor_i , neighbor_e )
if ( neighbor_textureID / = textureID ) then
if ( . not . phase_localPlasticity ( neighbor_phase ) ) then
forall ( s1 = 1_pInt : ns ) &
my_compatibility ( 1 : 2 , s1 , s1 , n ) = sqrt ( grainboundaryTransmissivity ( instance ) )
endif
cycle
endif
!* GRAIN BOUNDARY ?
!* Compatibility defined by relative orientation of slip systems:
!* The my_compatibility value is defined as the product of the slip normal projection and the slip direction projection.
!* Its sign is always positive for screws, for edges it has the same sign as the slip normal projection.
!* Since the sum for each slip system can easily exceed one (which would result in a transmissivity larger than one),
!* only values above or equal to a certain threshold value are considered. This threshold value is chosen, such that
!* the number of compatible slip systems is minimized with the sum of the original my_compatibility values exceeding one.
!* Finally the smallest my_compatibility value is decreased until the sum is exactly equal to one.
!* All values below the threshold are set to zero.
else
absoluteMisorientation = lattice_qDisorientation ( orientation ( 1 : 4 , 1 , i , e ) , &
2015-12-08 23:40:06 +05:30
orientation ( 1 : 4 , 1 , neighbor_i , neighbor_e ) ) ! no symmetry
2014-06-26 19:23:12 +05:30
do s1 = 1_pInt , ns ! my slip systems
do s2 = 1_pInt , ns ! my neighbor's slip systems
my_compatibility ( 1 , s2 , s1 , n ) = math_mul3x3 ( slipNormal ( 1 : 3 , s1 ) , math_qRot ( absoluteMisorientation , slipNormal ( 1 : 3 , s2 ) ) ) &
* abs ( math_mul3x3 ( slipDirection ( 1 : 3 , s1 ) , math_qRot ( absoluteMisorientation , slipDirection ( 1 : 3 , s2 ) ) ) )
my_compatibility ( 2 , s2 , s1 , n ) = abs ( math_mul3x3 ( slipNormal ( 1 : 3 , s1 ) , math_qRot ( absoluteMisorientation , slipNormal ( 1 : 3 , s2 ) ) ) ) &
* abs ( math_mul3x3 ( slipDirection ( 1 : 3 , s1 ) , math_qRot ( absoluteMisorientation , slipDirection ( 1 : 3 , s2 ) ) ) )
enddo
my_compatibilitySum = 0.0_pReal
belowThreshold = . true .
do while ( my_compatibilitySum < 1.0_pReal . and . any ( belowThreshold ( 1 : ns ) ) )
thresholdValue = maxval ( my_compatibility ( 2 , 1 : ns , s1 , n ) , belowThreshold ( 1 : ns ) ) ! screws always positive
nThresholdValues = real ( count ( my_compatibility ( 2 , 1 : ns , s1 , n ) == thresholdValue ) , pReal )
where ( my_compatibility ( 2 , 1 : ns , s1 , n ) > = thresholdValue ) &
belowThreshold ( 1 : ns ) = . false .
if ( my_compatibilitySum + thresholdValue * nThresholdValues > 1.0_pReal ) &
2015-04-11 17:17:33 +05:30
where ( abs ( my_compatibility ( 1 : 2 , 1 : ns , s1 , n ) ) == thresholdValue ) & ! MD: rather check below threshold?
2014-06-26 19:23:12 +05:30
my_compatibility ( 1 : 2 , 1 : ns , s1 , n ) = sign ( ( 1.0_pReal - my_compatibilitySum ) &
/ nThresholdValues , my_compatibility ( 1 : 2 , 1 : ns , s1 , n ) )
my_compatibilitySum = my_compatibilitySum + nThresholdValues * thresholdValue
enddo
where ( belowThreshold ( 1 : ns ) ) my_compatibility ( 1 , 1 : ns , s1 , n ) = 0.0_pReal
where ( belowThreshold ( 1 : ns ) ) my_compatibility ( 2 , 1 : ns , s1 , n ) = 0.0_pReal
enddo ! my slip systems cycle
endif
enddo ! neighbor cycle
compatibility ( 1 : 2 , 1 : ns , 1 : ns , 1 : Nneighbors , i , e ) = my_compatibility
2014-12-08 21:25:30 +05:30
end subroutine plastic_nonlocal_updateCompatibility
2014-06-14 02:23:17 +05:30
!*********************************************************************
!* calculates quantities characterizing the microstructure *
!*********************************************************************
2014-12-08 21:25:30 +05:30
function plastic_nonlocal_dislocationstress ( Fe , ip , el )
2014-06-14 02:23:17 +05:30
use math , only : math_mul33x33 , &
math_mul33x3 , &
2015-04-11 00:39:26 +05:30
math_inv33 , &
2014-06-14 02:23:17 +05:30
math_transpose33 , &
pi
use mesh , only : mesh_NcpElems , &
mesh_maxNips , &
mesh_element , &
mesh_node0 , &
mesh_cellCenterCoordinates , &
mesh_ipVolume , &
mesh_periodicSurface , &
FE_Nips , &
FE_geomtype
use material , only : homogenization_maxNgrains , &
material_phase , &
2014-06-26 19:23:12 +05:30
plasticState , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2014-06-14 02:23:17 +05:30
phase_localPlasticity , &
phase_plasticityInstance
use lattice , only : lattice_mu , &
lattice_nu
implicit none
!*** input variables
2014-07-02 17:57:39 +05:30
integer ( pInt ) , intent ( in ) :: ip , & !< current integration point
2014-06-14 02:23:17 +05:30
el !< current element
real ( pReal ) , dimension ( 3 , 3 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , intent ( in ) :: &
Fe !< elastic deformation gradient
!*** output variables
2014-12-08 21:25:30 +05:30
real ( pReal ) , dimension ( 3 , 3 ) :: plastic_nonlocal_dislocationstress
2014-06-14 02:23:17 +05:30
!*** local variables
integer ( pInt ) neighbor_el , & !< element number of neighbor material point
neighbor_ip , & !< integration point of neighbor material point
instance , & !< my instance of this plasticity
neighbor_instance , & !< instance of this plasticity of neighbor material point
2014-07-02 17:57:39 +05:30
ph , &
2014-06-14 02:23:17 +05:30
neighbor_phase , &
ns , & !< total number of active slip systems at my material point
neighbor_ns , & !< total number of active slip systems at neighbor material point
c , & !< index of dilsocation character (edge, screw)
s , & !< slip system index
2014-06-26 19:23:12 +05:30
o , & !< offset shortcut
no , & !< neighbour offset shortcut
p , & !< phase shortcut
np , & !< neighbour phase shortcut
2014-06-14 02:23:17 +05:30
t , & !< index of dilsocation type (e+, e-, s+, s-, used e+, used e-, used s+, used s-)
dir , &
deltaX , deltaY , deltaZ , &
side , &
j
integer ( pInt ) , dimension ( 2 , 3 ) :: periodicImages
real ( pReal ) x , y , z , & !< coordinates of connection vector in neighbor lattice frame
xsquare , ysquare , zsquare , & !< squares of respective coordinates
distance , & !< length of connection vector
segmentLength , & !< segment length of dislocations
lambda , &
R , Rsquare , Rcube , &
denominator , &
flipSign , &
2015-04-11 00:39:26 +05:30
neighbor_ipVolumeSideLength
2014-06-14 02:23:17 +05:30
real ( pReal ) , dimension ( 3 ) :: connection , & !< connection vector between me and my neighbor in the deformed configuration
connection_neighborLattice , & !< connection vector between me and my neighbor in the lattice configuration of my neighbor
connection_neighborSlip , & !< connection vector between me and my neighbor in the slip system frame of my neighbor
maxCoord , minCoord , &
meshSize , &
coords , & !< x,y,z coordinates of cell center of ip volume
neighbor_coords !< x,y,z coordinates of cell center of neighbor ip volume
real ( pReal ) , dimension ( 3 , 3 ) :: sigma , & !< dislocation stress for one slip system in neighbor material point's slip system frame
Tdislo_neighborLattice , & !< dislocation stress as 2nd Piola-Kirchhoff stress at neighbor material point
invFe , & !< inverse of my elastic deformation gradient
neighbor_invFe , &
neighborLattice2myLattice !< mapping from neighbor MPs lattice configuration to my lattice configuration
real ( pReal ) , dimension ( 2 , 2 , maxval ( totalNslip ) ) :: &
neighbor_rhoExcess !< excess density at neighbor material point (edge/screw,mobile/dead,slipsystem)
real ( pReal ) , dimension ( 2 , maxval ( totalNslip ) ) :: &
rhoExcessDead
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 8 ) :: &
2014-06-14 02:23:17 +05:30
rhoSgl ! single dislocation density (edge+, edge-, screw+, screw-, used edge+, used edge-, used screw+, used screw-)
2014-07-02 17:57:39 +05:30
ph = material_phase ( 1_pInt , ip , el )
instance = phase_plasticityInstance ( ph )
2014-06-14 02:23:17 +05:30
ns = totalNslip ( instance )
2016-01-15 05:49:44 +05:30
p = phaseAt ( 1 , ip , el )
o = phasememberAt ( 1 , ip , el )
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
!*** get basic states
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-06-26 19:23:12 +05:30
rhoSgl ( s , t ) = max ( plasticState ( p ) % state ( iRhoU ( s , t , instance ) , o ) , 0.0_pReal ) ! ensure positive single mobile densities
rhoSgl ( s , t + 4_pInt ) = plasticState ( p ) % state ( iRhoB ( s , t , instance ) , o )
2014-06-14 02:23:17 +05:30
endforall
!*** calculate the dislocation stress of the neighboring excess dislocation densities
!*** zero for material points of local plasticity
2014-12-08 21:25:30 +05:30
plastic_nonlocal_dislocationstress = 0.0_pReal
2014-06-14 02:23:17 +05:30
2014-07-02 17:57:39 +05:30
if ( . not . phase_localPlasticity ( ph ) ) then
2015-04-11 00:39:26 +05:30
invFe = math_inv33 ( Fe ( 1 : 3 , 1 : 3 , 1_pInt , ip , el ) )
2014-06-14 02:23:17 +05:30
!* in case of periodic surfaces we have to find out how many periodic images in each direction we need
do dir = 1_pInt , 3_pInt
maxCoord ( dir ) = maxval ( mesh_node0 ( dir , : ) )
minCoord ( dir ) = minval ( mesh_node0 ( dir , : ) )
enddo
meshSize = maxCoord - minCoord
coords = mesh_cellCenterCoordinates ( ip , el )
periodicImages = 0_pInt
do dir = 1_pInt , 3_pInt
if ( mesh_periodicSurface ( dir ) ) then
periodicImages ( 1 , dir ) = floor ( ( coords ( dir ) - cutoffRadius ( instance ) - minCoord ( dir ) ) / meshSize ( dir ) , pInt )
periodicImages ( 2 , dir ) = ceiling ( ( coords ( dir ) + cutoffRadius ( instance ) - maxCoord ( dir ) ) / meshSize ( dir ) , pInt )
endif
enddo
!* loop through all material points (also through their periodic images if present),
!* but only consider nonlocal neighbors within a certain cutoff radius R
do neighbor_el = 1_pInt , mesh_NcpElems
2015-04-11 00:39:26 +05:30
ipLoop : do neighbor_ip = 1_pInt , FE_Nips ( FE_geomtype ( mesh_element ( 2 , neighbor_el ) ) )
2014-07-02 17:57:39 +05:30
neighbor_phase = material_phase ( 1_pInt , neighbor_ip , neighbor_el )
2016-01-15 05:49:44 +05:30
np = phaseAt ( 1 , neighbor_ip , neighbor_el )
no = phasememberAt ( 1 , neighbor_ip , neighbor_el )
2014-07-02 17:57:39 +05:30
2015-04-11 00:39:26 +05:30
if ( phase_localPlasticity ( neighbor_phase ) ) cycle
2014-06-14 02:23:17 +05:30
neighbor_instance = phase_plasticityInstance ( neighbor_phase )
neighbor_ns = totalNslip ( neighbor_instance )
2015-04-11 00:39:26 +05:30
neighbor_invFe = math_inv33 ( Fe ( 1 : 3 , 1 : 3 , 1 , neighbor_ip , neighbor_el ) )
2014-06-14 02:23:17 +05:30
neighbor_ipVolumeSideLength = mesh_ipVolume ( neighbor_ip , neighbor_el ) ** ( 1.0_pReal / 3.0_pReal ) ! reference volume used here
2014-06-26 19:23:12 +05:30
2014-06-14 02:23:17 +05:30
forall ( s = 1_pInt : neighbor_ns , c = 1_pInt : 2_pInt )
2014-06-26 19:23:12 +05:30
neighbor_rhoExcess ( c , 1 , s ) = plasticState ( np ) % state ( iRhoU ( s , 2 * c - 1 , neighbor_instance ) , no ) & ! positive mobiles
- plasticState ( np ) % state ( iRhoU ( s , 2 * c , neighbor_instance ) , no ) ! negative mobiles
neighbor_rhoExcess ( c , 2 , s ) = abs ( plasticState ( np ) % state ( iRhoB ( s , 2 * c - 1 , neighbor_instance ) , no ) ) & ! positive deads
- abs ( plasticState ( np ) % state ( iRhoB ( s , 2 * c , neighbor_instance ) , no ) ) ! negative deads
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
endforall
Tdislo_neighborLattice = 0.0_pReal
do deltaX = periodicImages ( 1 , 1 ) , periodicImages ( 2 , 1 )
do deltaY = periodicImages ( 1 , 2 ) , periodicImages ( 2 , 2 )
do deltaZ = periodicImages ( 1 , 3 ) , periodicImages ( 2 , 3 )
!* regular case
if ( neighbor_el / = el . or . neighbor_ip / = ip &
. or . deltaX / = 0_pInt . or . deltaY / = 0_pInt . or . deltaZ / = 0_pInt ) then
neighbor_coords = mesh_cellCenterCoordinates ( neighbor_ip , neighbor_el ) &
+ [ real ( deltaX , pReal ) , real ( deltaY , pReal ) , real ( deltaZ , pReal ) ] * meshSize
connection = neighbor_coords - coords
distance = sqrt ( sum ( connection * connection ) )
2015-04-11 00:39:26 +05:30
if ( distance > cutoffRadius ( instance ) ) cycle
2014-06-14 02:23:17 +05:30
!* the segment length is the minimum of the third root of the control volume and the ip distance
!* this ensures, that the central MP never sits on a neighbor dislocation segment
connection_neighborLattice = math_mul33x3 ( neighbor_invFe , connection )
segmentLength = min ( neighbor_ipVolumeSideLength , distance )
!* loop through all slip systems of the neighbor material point
!* and add up the stress contributions from egde and screw excess on these slip systems (if significant)
do s = 1_pInt , neighbor_ns
if ( all ( abs ( neighbor_rhoExcess ( : , : , s ) ) < significantRho ( instance ) ) ) cycle ! not significant
!* map the connection vector from the lattice into the slip system frame
connection_neighborSlip = math_mul33x3 ( lattice2slip ( 1 : 3 , 1 : 3 , s , neighbor_instance ) , &
connection_neighborLattice )
!* edge contribution to stress
sigma = 0.0_pReal
x = connection_neighborSlip ( 1 )
y = connection_neighborSlip ( 2 )
z = connection_neighborSlip ( 3 )
xsquare = x * x
ysquare = y * y
zsquare = z * z
do j = 1_pInt , 2_pInt
if ( abs ( neighbor_rhoExcess ( 1 , j , s ) ) < significantRho ( instance ) ) then
cycle
elseif ( j > 1_pInt ) then
2014-06-26 19:23:12 +05:30
x = connection_neighborSlip ( 1 ) &
+ sign ( 0.5_pReal * segmentLength , &
plasticState ( np ) % state ( iRhoB ( s , 1 , neighbor_instance ) , no ) &
- plasticState ( np ) % state ( iRhoB ( s , 2 , neighbor_instance ) , no ) )
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
xsquare = x * x
endif
flipSign = sign ( 1.0_pReal , - y )
do side = 1_pInt , - 1_pInt , - 2_pInt
lambda = real ( side , pReal ) * 0.5_pReal * segmentLength - y
R = sqrt ( xsquare + zsquare + lambda * lambda )
Rsquare = R * R
Rcube = Rsquare * R
denominator = R * ( R + flipSign * lambda )
2015-04-11 13:55:23 +05:30
if ( abs ( denominator ) < = tiny ( 0.0_pReal ) ) exit ipLoop
2014-06-14 02:23:17 +05:30
sigma ( 1 , 1 ) = sigma ( 1 , 1 ) - real ( side , pReal ) &
* flipSign * z / denominator &
* ( 1.0_pReal + xsquare / Rsquare + xsquare / denominator ) &
* neighbor_rhoExcess ( 1 , j , s )
sigma ( 2 , 2 ) = sigma ( 2 , 2 ) - real ( side , pReal ) &
2014-07-02 17:57:39 +05:30
* ( flipSign * 2.0_pReal * lattice_nu ( ph ) * z / denominator + z * lambda / Rcube ) &
2014-06-14 02:23:17 +05:30
* neighbor_rhoExcess ( 1 , j , s )
sigma ( 3 , 3 ) = sigma ( 3 , 3 ) + real ( side , pReal ) &
* flipSign * z / denominator &
* ( 1.0_pReal - zsquare / Rsquare - zsquare / denominator ) &
* neighbor_rhoExcess ( 1 , j , s )
sigma ( 1 , 2 ) = sigma ( 1 , 2 ) + real ( side , pReal ) &
* x * z / Rcube * neighbor_rhoExcess ( 1 , j , s )
2013-05-24 01:26:36 +05:30
sigma ( 1 , 3 ) = sigma ( 1 , 3 ) + real ( side , pReal ) &
* flipSign * x / denominator &
* ( 1.0_pReal - zsquare / Rsquare - zsquare / denominator ) &
2013-05-24 17:18:34 +05:30
* neighbor_rhoExcess ( 1 , j , s )
2013-05-24 01:26:36 +05:30
sigma ( 2 , 3 ) = sigma ( 2 , 3 ) - real ( side , pReal ) &
2014-07-02 17:57:39 +05:30
* ( lattice_nu ( ph ) / R - zsquare / Rcube ) * neighbor_rhoExcess ( 1 , j , s )
2012-01-17 15:56:57 +05:30
enddo
enddo
!* screw contribution to stress
2013-05-24 17:18:34 +05:30
x = connection_neighborSlip ( 1 ) ! have to restore this value, because position might have been adapted for edge deads before
2012-02-23 22:13:17 +05:30
do j = 1_pInt , 2_pInt
2014-02-28 18:33:21 +05:30
if ( abs ( neighbor_rhoExcess ( 2 , j , s ) ) < significantRho ( instance ) ) then
2012-01-17 15:56:57 +05:30
cycle
2012-02-23 22:13:17 +05:30
elseif ( j > 1_pInt ) then
2014-06-26 19:23:12 +05:30
y = connection_neighborSlip ( 2 ) &
+ sign ( 0.5_pReal * segmentLength , &
plasticState ( np ) % state ( iRhoB ( s , 3 , neighbor_instance ) , no ) &
- plasticState ( np ) % state ( iRhoB ( s , 4 , neighbor_instance ) , no ) )
2012-01-17 15:56:57 +05:30
ysquare = y * y
endif
2010-03-18 17:53:17 +05:30
2014-06-14 02:23:17 +05:30
flipSign = sign ( 1.0_pReal , x )
do side = 1_pInt , - 1_pInt , - 2_pInt
lambda = x + real ( side , pReal ) * 0.5_pReal * segmentLength
R = sqrt ( ysquare + zsquare + lambda * lambda )
Rsquare = R * R
Rcube = Rsquare * R
denominator = R * ( R + flipSign * lambda )
2015-04-11 13:55:23 +05:30
if ( abs ( denominator ) < = tiny ( 0.0_pReal ) ) exit ipLoop
2014-06-14 02:23:17 +05:30
sigma ( 1 , 2 ) = sigma ( 1 , 2 ) - real ( side , pReal ) * flipSign * z &
2014-07-02 17:57:39 +05:30
* ( 1.0_pReal - lattice_nu ( ph ) ) / denominator &
2014-06-14 02:23:17 +05:30
* neighbor_rhoExcess ( 2 , j , s )
sigma ( 1 , 3 ) = sigma ( 1 , 3 ) + real ( side , pReal ) * flipSign * y &
2014-07-02 17:57:39 +05:30
* ( 1.0_pReal - lattice_nu ( ph ) ) / denominator &
2014-06-14 02:23:17 +05:30
* neighbor_rhoExcess ( 2 , j , s )
enddo
enddo
if ( all ( abs ( sigma ) < 1.0e-10_pReal ) ) cycle ! SIGMA IS NOT A REAL STRESS, THATS WHY WE NEED A REALLY SMALL VALUE HERE
!* copy symmetric parts
sigma ( 2 , 1 ) = sigma ( 1 , 2 )
sigma ( 3 , 1 ) = sigma ( 1 , 3 )
sigma ( 3 , 2 ) = sigma ( 2 , 3 )
!* scale stresses and map them into the neighbor material point's lattice configuration
sigma = sigma * lattice_mu ( neighbor_phase ) * burgers ( s , neighbor_instance ) &
/ ( 4.0_pReal * pi * ( 1.0_pReal - lattice_nu ( neighbor_phase ) ) ) &
* mesh_ipVolume ( neighbor_ip , neighbor_el ) / segmentLength ! reference volume is used here (according to the segment length calculation)
Tdislo_neighborLattice = Tdislo_neighborLattice &
+ math_mul33x33 ( math_transpose33 ( lattice2slip ( 1 : 3 , 1 : 3 , s , neighbor_instance ) ) , &
math_mul33x33 ( sigma , lattice2slip ( 1 : 3 , 1 : 3 , s , neighbor_instance ) ) )
enddo ! slip system loop
!* special case of central ip volume
!* only consider dead dislocations
!* we assume that they all sit at a distance equal to half the third root of V
!* in direction of the according slip direction
else
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt ) &
2014-07-02 17:57:39 +05:30
2014-06-26 19:23:12 +05:30
rhoExcessDead ( c , s ) = plasticState ( p ) % state ( iRhoB ( s , 2 * c - 1 , instance ) , o ) & ! positive deads (here we use symmetry: if this has negative sign it is
!treated as negative density at positive position instead of positive
!density at negative position)
+ plasticState ( p ) % state ( iRhoB ( s , 2 * c , instance ) , o ) ! negative deads (here we use symmetry: if this has negative sign it is
!treated as positive density at positive position instead of negative
!density at negative position)
2014-06-14 02:23:17 +05:30
do s = 1_pInt , ns
if ( all ( abs ( rhoExcessDead ( : , s ) ) < significantRho ( instance ) ) ) cycle ! not significant
sigma = 0.0_pReal ! all components except for sigma13 are zero
2014-07-02 17:57:39 +05:30
sigma ( 1 , 3 ) = - ( rhoExcessDead ( 1 , s ) + rhoExcessDead ( 2 , s ) * ( 1.0_pReal - lattice_nu ( ph ) ) ) &
* neighbor_ipVolumeSideLength * lattice_mu ( ph ) * burgers ( s , instance ) &
/ ( sqrt ( 2.0_pReal ) * pi * ( 1.0_pReal - lattice_nu ( ph ) ) )
2014-06-14 02:23:17 +05:30
sigma ( 3 , 1 ) = sigma ( 1 , 3 )
Tdislo_neighborLattice = Tdislo_neighborLattice &
+ math_mul33x33 ( math_transpose33 ( lattice2slip ( 1 : 3 , 1 : 3 , s , instance ) ) , &
math_mul33x33 ( sigma , lattice2slip ( 1 : 3 , 1 : 3 , s , instance ) ) )
enddo ! slip system loop
endif
enddo ! deltaZ loop
enddo ! deltaY loop
enddo ! deltaX loop
!* map the stress from the neighbor MP's lattice configuration into the deformed configuration
!* and back into my lattice configuration
neighborLattice2myLattice = math_mul33x33 ( invFe , Fe ( 1 : 3 , 1 : 3 , 1 , neighbor_ip , neighbor_el ) )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_dislocationstress = plastic_nonlocal_dislocationstress &
2014-06-14 02:23:17 +05:30
+ math_mul33x33 ( neighborLattice2myLattice , &
math_mul33x33 ( Tdislo_neighborLattice , &
math_transpose33 ( neighborLattice2myLattice ) ) )
enddo ipLoop
enddo ! element loop
endif
2014-12-08 21:25:30 +05:30
end function plastic_nonlocal_dislocationstress
2014-06-26 19:23:12 +05:30
2014-10-11 15:15:30 +05:30
2014-06-14 02:23:17 +05:30
!--------------------------------------------------------------------------------------------------
!> @brief return array of constitutive results
!--------------------------------------------------------------------------------------------------
2014-12-08 21:25:30 +05:30
function plastic_nonlocal_postResults ( Tstar_v , Fe , ip , el )
2014-06-14 02:23:17 +05:30
use math , only : &
math_mul6x6 , &
math_mul33x3 , &
math_mul33x33 , &
pi
use mesh , only : &
mesh_NcpElems , &
mesh_maxNips
use material , only : &
homogenization_maxNgrains , &
material_phase , &
2016-01-15 05:49:44 +05:30
phaseAt , phasememberAt , &
2014-07-02 17:57:39 +05:30
plasticState , &
2015-04-11 00:39:26 +05:30
phase_plasticityInstance
2014-06-14 02:23:17 +05:30
use lattice , only : &
lattice_Sslip_v , &
lattice_sd , &
lattice_st , &
lattice_sn , &
lattice_mu , &
lattice_nu
implicit none
real ( pReal ) , dimension ( 6 ) , intent ( in ) :: &
Tstar_v !< 2nd Piola Kirchhoff stress tensor in Mandel notation
real ( pReal ) , dimension ( 3 , 3 , homogenization_maxNgrains , mesh_maxNips , mesh_NcpElems ) , intent ( in ) :: &
Fe !< elastic deformation gradient
integer ( pInt ) , intent ( in ) :: &
ip , & !< integration point
el !< element
2014-07-02 17:57:39 +05:30
2014-12-08 21:25:30 +05:30
real ( pReal ) , dimension ( plastic_nonlocal_sizePostResults ( &
2014-07-02 17:57:39 +05:30
phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults
2014-06-14 02:23:17 +05:30
integer ( pInt ) :: &
2014-07-02 17:57:39 +05:30
ph , &
2014-06-14 02:23:17 +05:30
instance , & !< current instance of this plasticity
ns , & !< short notation for the total number of active slip systems
c , & !< character of dislocation
cs , & !< constitutive result index
o , & !< index of current output
2014-07-02 17:57:39 +05:30
of , & !< offset shortcut
2014-06-14 02:23:17 +05:30
t , & !< type of dislocation
s , & !< index of my current slip system
sLattice !< index of my current slip system according to lattice order
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 8 ) :: &
2014-06-14 02:23:17 +05:30
rhoSgl , & !< current single dislocation densities (positive/negative screw and edge without dipoles)
rhoDotSgl !< evolution rate of single dislocation densities (positive/negative screw and edge without dipoles)
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 4 ) :: &
2014-06-14 02:23:17 +05:30
gdot , & !< shear rates
v !< velocities
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2014-06-14 02:23:17 +05:30
rhoForest , & !< forest dislocation density
tauThreshold , & !< threshold shear stress
tau , & !< current resolved shear stress
tauBack !< back stress from pileups on same slip system
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 2 ) :: &
2014-06-14 02:23:17 +05:30
rhoDip , & !< current dipole dislocation densities (screw and edge dipoles)
rhoDotDip , & !< evolution rate of dipole dislocation densities (screw and edge dipoles)
dLower , & !< minimum stable dipole distance for edges and screws
dUpper !< current maximum stable dipole distance for edges and screws
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( 3 , totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) , 2 ) :: &
2014-06-14 02:23:17 +05:30
m , & !< direction of dislocation motion for edge and screw (unit vector)
m_currentconf !< direction of dislocation motion for edge and screw (unit vector) in current configuration
2014-07-02 17:57:39 +05:30
real ( pReal ) , dimension ( 3 , totalNslip ( phase_plasticityInstance ( material_phase ( 1_pInt , ip , el ) ) ) ) :: &
2014-06-14 02:23:17 +05:30
n_currentconf !< slip system normal (unit vector) in current configuration
real ( pReal ) , dimension ( 3 , 3 ) :: &
sigma
2016-01-15 05:49:44 +05:30
ph = phaseAt ( 1 , ip , el )
of = phasememberAt ( 1 , ip , el )
2014-07-02 17:57:39 +05:30
instance = phase_plasticityInstance ( ph )
2014-06-14 02:23:17 +05:30
ns = totalNslip ( instance )
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2014-06-14 02:23:17 +05:30
cs = 0_pInt
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults = 0.0_pReal
openmp parallelization working again (at least for j2 and nonlocal constitutive model).
In order to keep it like that, please follow these simple rules:
DON'T use implicit array subscripts:
example: real, dimension(3,3) :: A,B
A(:,2) = B(:,1) <--- DON'T USE
A(1:3,2) = B(1:3,1) <--- BETTER USE
In many cases the use of explicit array subscripts is inevitable for parallelization. Additionally, it is an easy means to prevent memory leaks.
Enclose all write statements with the following:
!$OMP CRITICAL (write2out)
<your write statement>
!$OMP END CRITICAL (write2out)
Whenever you change something in the code and are not sure if it affects parallelization and leads to nonconforming behavior, please ask me and/or Franz to check this.
2011-03-17 16:16:17 +05:30
2009-12-15 13:50:31 +05:30
2014-06-14 02:23:17 +05:30
!* short hand notations for state variables
2009-12-15 13:50:31 +05:30
2014-06-14 02:23:17 +05:30
forall ( s = 1_pInt : ns , t = 1_pInt : 4_pInt )
2014-07-02 17:57:39 +05:30
rhoSgl ( s , t ) = plasticState ( ph ) % State ( iRhoU ( s , t , instance ) , of )
rhoSgl ( s , t + 4_pInt ) = plasticState ( ph ) % State ( iRhoB ( s , t , instance ) , of )
v ( s , t ) = plasticState ( ph ) % State ( iV ( s , t , instance ) , of )
rhoDotSgl ( s , t ) = plasticState ( ph ) % dotState ( iRhoU ( s , t , instance ) , of )
rhoDotSgl ( s , t + 4_pInt ) = plasticState ( ph ) % dotState ( iRhoB ( s , t , instance ) , of )
2014-06-14 02:23:17 +05:30
endforall
forall ( s = 1_pInt : ns , c = 1_pInt : 2_pInt )
2014-07-02 17:57:39 +05:30
rhoDip ( s , c ) = plasticState ( ph ) % State ( iRhoD ( s , c , instance ) , of )
rhoDotDip ( s , c ) = plasticState ( ph ) % dotState ( iRhoD ( s , c , instance ) , of )
2014-06-14 02:23:17 +05:30
endforall
2014-07-02 17:57:39 +05:30
rhoForest = plasticState ( ph ) % State ( iRhoF ( 1 : ns , instance ) , of )
tauThreshold = plasticState ( ph ) % State ( iTauF ( 1 : ns , instance ) , of )
tauBack = plasticState ( ph ) % State ( iTauB ( 1 : ns , instance ) , of )
2014-06-14 02:23:17 +05:30
!* Calculate shear rate
forall ( t = 1_pInt : 4_pInt ) &
gdot ( 1 : ns , t ) = rhoSgl ( 1 : ns , t ) * burgers ( 1 : ns , instance ) * v ( 1 : ns , t )
!* calculate limits for stable dipole height
do s = 1_pInt , ns
sLattice = slipSystemLattice ( s , instance )
2014-07-02 17:57:39 +05:30
tau ( s ) = math_mul6x6 ( Tstar_v , lattice_Sslip_v ( 1 : 6 , 1 , sLattice , ph ) ) + tauBack ( s )
2014-06-14 02:23:17 +05:30
if ( abs ( tau ( s ) ) < 1.0e-15_pReal ) tau ( s ) = 1.0e-15_pReal
enddo
dLower = minDipoleHeight ( 1 : ns , 1 : 2 , instance )
2014-07-02 17:57:39 +05:30
dUpper ( 1 : ns , 1 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) &
/ ( 8.0_pReal * pi * ( 1.0_pReal - lattice_nu ( ph ) ) * abs ( tau ) )
dUpper ( 1 : ns , 2 ) = lattice_mu ( ph ) * burgers ( 1 : ns , instance ) &
2014-06-14 02:23:17 +05:30
/ ( 4.0_pReal * pi * abs ( tau ) )
2014-06-27 01:31:38 +05:30
forall ( c = 1_pInt : 2_pInt )
where ( sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) + &
abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) > = tiny ( 0.0_pReal ) ) &
dUpper ( 1 : ns , c ) = min ( 1.0_pReal / sqrt ( rhoSgl ( 1 : ns , 2 * c - 1 ) + rhoSgl ( 1 : ns , 2 * c ) &
2014-06-14 02:23:17 +05:30
+ abs ( rhoSgl ( 1 : ns , 2 * c + 3 ) ) + abs ( rhoSgl ( 1 : ns , 2 * c + 4 ) ) + rhoDip ( 1 : ns , c ) ) , &
dUpper ( 1 : ns , c ) )
2014-06-27 01:31:38 +05:30
end forall
2014-06-14 02:23:17 +05:30
dUpper = max ( dUpper , dLower )
2014-07-02 17:57:39 +05:30
2014-06-14 02:23:17 +05:30
!*** dislocation motion
2014-07-02 17:57:39 +05:30
m ( 1 : 3 , 1 : ns , 1 ) = lattice_sd ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
m ( 1 : 3 , 1 : ns , 2 ) = - lattice_st ( 1 : 3 , slipSystemLattice ( 1 : ns , instance ) , ph )
2014-06-14 02:23:17 +05:30
forall ( c = 1_pInt : 2_pInt , s = 1_pInt : ns ) &
2014-07-02 17:57:39 +05:30
m_currentconf ( 1 : 3 , s , c ) = math_mul33x3 ( Fe ( 1 : 3 , 1 : 3 , 1_pInt , ip , el ) , m ( 1 : 3 , s , c ) )
2014-06-14 02:23:17 +05:30
forall ( s = 1_pInt : ns ) &
2014-07-02 17:57:39 +05:30
n_currentconf ( 1 : 3 , s ) = math_mul33x3 ( Fe ( 1 : 3 , 1 : 3 , 1_pInt , ip , el ) , &
lattice_sn ( 1 : 3 , slipSystemLattice ( s , instance ) , ph ) )
2014-06-14 02:23:17 +05:30
2014-12-08 21:25:30 +05:30
outputsLoop : do o = 1_pInt , plastic_nonlocal_Noutput ( instance )
select case ( plastic_nonlocal_outputID ( o , instance ) )
2014-06-14 02:23:17 +05:30
case ( rho_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ) , 2 ) + sum ( rhoDip , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ( 1 : ns , 1 : 4 ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoSgl ( 1 : ns , 5 : 8 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dip_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDip , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ( 1 : ns , [ 1 , 2 , 5 , 6 ] ) ) , 2 ) + rhoDip ( 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ( 1 : ns , [ 1 , 2 , 5 , 6 ] ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoSgl ( 1 : ns , 1 : 2 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoSgl ( 1 : ns , 5 : 6 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_pos_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 1 ) + abs ( rhoSgl ( 1 : ns , 5 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_pos_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_pos_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 5 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_neg_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 2 ) + abs ( rhoSgl ( 1 : ns , 6 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_neg_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_edge_neg_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 6 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dip_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDip ( 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ( 1 : ns , [ 3 , 4 , 7 , 8 ] ) ) , 2 ) + rhoDip ( 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( abs ( rhoSgl ( 1 : ns , [ 3 , 4 , 7 , 8 ] ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2012-01-17 15:56:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_sgl_screw_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoSgl ( 1 : ns , 3 : 4 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoSgl ( 1 : ns , 7 : 8 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_pos_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 3 ) + abs ( rhoSgl ( 1 : ns , 7 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_pos_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 3 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_pos_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 7 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_neg_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 4 ) + abs ( rhoSgl ( 1 : ns , 8 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_neg_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 4 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_sgl_screw_neg_immobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 8 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dip_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDip ( 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( excess_rho_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = ( rhoSgl ( 1 : ns , 1 ) + abs ( rhoSgl ( 1 : ns , 5 ) ) ) &
2014-06-14 02:23:17 +05:30
- ( rhoSgl ( 1 : ns , 2 ) + abs ( rhoSgl ( 1 : ns , 6 ) ) ) &
+ ( rhoSgl ( 1 : ns , 3 ) + abs ( rhoSgl ( 1 : ns , 7 ) ) ) &
- ( rhoSgl ( 1 : ns , 4 ) + abs ( rhoSgl ( 1 : ns , 8 ) ) )
cs = cs + ns
case ( excess_rho_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = ( rhoSgl ( 1 : ns , 1 ) + abs ( rhoSgl ( 1 : ns , 5 ) ) ) &
2014-06-14 02:23:17 +05:30
- ( rhoSgl ( 1 : ns , 2 ) + abs ( rhoSgl ( 1 : ns , 6 ) ) )
cs = cs + ns
case ( excess_rho_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = ( rhoSgl ( 1 : ns , 3 ) + abs ( rhoSgl ( 1 : ns , 7 ) ) ) &
2014-06-14 02:23:17 +05:30
- ( rhoSgl ( 1 : ns , 4 ) + abs ( rhoSgl ( 1 : ns , 8 ) ) )
cs = cs + ns
case ( rho_forest_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoForest
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( delta_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = 1.0_pReal / sqrt ( sum ( abs ( rhoSgl ) , 2 ) + sum ( rhoDip , 2 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( delta_sgl_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = 1.0_pReal / sqrt ( sum ( abs ( rhoSgl ) , 2 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( delta_dip_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = 1.0_pReal / sqrt ( sum ( rhoDip , 2 ) )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( shearrate_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( gdot , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( resolvedstress_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = tau
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( resolvedstress_back_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = tauBack
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( resolvedstress_external_ID )
do s = 1_pInt , ns
sLattice = slipSystemLattice ( s , instance )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + s ) = math_mul6x6 ( Tstar_v , lattice_Sslip_v ( 1 : 6 , 1 , sLattice , ph ) )
2014-06-14 02:23:17 +05:30
enddo
cs = cs + ns
case ( resistance_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = tauThreshold
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotSgl ( 1 : ns , 1 : 4 ) , 2 ) &
2014-06-14 02:23:17 +05:30
+ sum ( rhoDotSgl ( 1 : ns , 5 : 8 ) * sign ( 1.0_pReal , rhoSgl ( 1 : ns , 5 : 8 ) ) , 2 ) &
+ sum ( rhoDotDip , 2 )
cs = cs + ns
case ( rho_dot_sgl_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotSgl ( 1 : ns , 1 : 4 ) , 2 ) &
2014-06-14 02:23:17 +05:30
+ sum ( rhoDotSgl ( 1 : ns , 5 : 8 ) * sign ( 1.0_pReal , rhoSgl ( 1 : ns , 5 : 8 ) ) , 2 )
cs = cs + ns
case ( rho_dot_sgl_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotSgl ( 1 : ns , 1 : 4 ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_dip_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotDip , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_gen_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotMultiplicationOutput ( 1 : ns , 1 , 1_pInt , ip , el ) &
2014-07-02 17:57:39 +05:30
+ rhoDotMultiplicationOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2012-02-23 22:13:17 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_gen_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotMultiplicationOutput ( 1 : ns , 1 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2009-12-15 13:50:31 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_gen_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotMultiplicationOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_sgl2dip_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotSingle2DipoleGlideOutput ( 1 : ns , 1 , 1_pInt , ip , el ) &
2014-07-02 17:57:39 +05:30
+ rhoDotSingle2DipoleGlideOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_sgl2dip_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotSingle2DipoleGlideOutput ( 1 : ns , 1 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_sgl2dip_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotSingle2DipoleGlideOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_ann_ath_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotAthermalAnnihilationOutput ( 1 : ns , 1 , 1_pInt , ip , el ) &
2014-07-02 17:57:39 +05:30
+ rhoDotAthermalAnnihilationOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_ann_the_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotThermalAnnihilationOutput ( 1 : ns , 1 , 1_pInt , ip , el ) &
2014-07-02 17:57:39 +05:30
+ rhoDotThermalAnnihilationOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2009-08-11 22:01:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_ann_the_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotThermalAnnihilationOutput ( 1 : ns , 1 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2009-08-11 22:01:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_ann_the_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotThermalAnnihilationOutput ( 1 : ns , 2 , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2009-08-11 22:01:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_edgejogs_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoDotEdgeJogsOutput ( 1 : ns , 1_pInt , ip , el )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2009-08-11 22:01:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_flux_mobile_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotFluxOutput ( 1 : ns , 1 : 4 , 1_pInt , ip , el ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
2012-01-17 15:56:57 +05:30
2014-06-14 02:23:17 +05:30
case ( rho_dot_flux_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotFluxOutput ( 1 : ns , 1 : 4 , 1_pInt , ip , el ) , 2 ) &
2014-07-02 17:57:39 +05:30
+ sum ( rhoDotFluxOutput ( 1 : ns , 5 : 8 , 1_pInt , ip , el ) * sign ( 1.0_pReal , rhoSgl ( 1 : ns , 5 : 8 ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_flux_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotFluxOutput ( 1 : ns , 1 : 2 , 1_pInt , ip , el ) , 2 ) &
2014-07-02 17:57:39 +05:30
+ sum ( rhoDotFluxOutput ( 1 : ns , 5 : 6 , 1_pInt , ip , el ) * sign ( 1.0_pReal , rhoSgl ( 1 : ns , 5 : 6 ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( rho_dot_flux_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = sum ( rhoDotFluxOutput ( 1 : ns , 3 : 4 , 1_pInt , ip , el ) , 2 ) &
2014-07-02 17:57:39 +05:30
+ sum ( rhoDotFluxOutput ( 1 : ns , 7 : 8 , 1_pInt , ip , el ) * sign ( 1.0_pReal , rhoSgl ( 1 : ns , 7 : 8 ) ) , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( velocity_edge_pos_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = v ( 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( velocity_edge_neg_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = v ( 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( velocity_screw_pos_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = v ( 1 : ns , 3 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( velocity_screw_neg_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = v ( 1 : ns , 4 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipdirectionx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = m_currentconf ( 1 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipdirectiony_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = m_currentconf ( 2 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipdirectionz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = m_currentconf ( 3 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipnormalx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = n_currentconf ( 1 , 1 : ns )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipnormaly_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = n_currentconf ( 2 , 1 : ns )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( slipnormalz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = n_currentconf ( 3 , 1 : ns )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_posx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 1 ) * v ( 1 : ns , 1 ) * m_currentconf ( 1 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_posy_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 1 ) * v ( 1 : ns , 1 ) * m_currentconf ( 2 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_posz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 1 ) * v ( 1 : ns , 1 ) * m_currentconf ( 3 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_negx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 2 ) * v ( 1 : ns , 2 ) * m_currentconf ( 1 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_negy_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 2 ) * v ( 1 : ns , 2 ) * m_currentconf ( 2 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_edge_negz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 2 ) * v ( 1 : ns , 2 ) * m_currentconf ( 3 , 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_posx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 3 ) * v ( 1 : ns , 3 ) * m_currentconf ( 1 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_posy_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 3 ) * v ( 1 : ns , 3 ) * m_currentconf ( 2 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_posz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = rhoSgl ( 1 : ns , 3 ) * v ( 1 : ns , 3 ) * m_currentconf ( 3 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_negx_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 4 ) * v ( 1 : ns , 4 ) * m_currentconf ( 1 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_negy_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 4 ) * v ( 1 : ns , 4 ) * m_currentconf ( 2 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( fluxdensity_screw_negz_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = - rhoSgl ( 1 : ns , 4 ) * v ( 1 : ns , 4 ) * m_currentconf ( 3 , 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( maximumdipoleheight_edge_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = dUpper ( 1 : ns , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( maximumdipoleheight_screw_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = dUpper ( 1 : ns , 2 )
2014-06-14 02:23:17 +05:30
cs = cs + ns
case ( dislocationstress_ID )
2014-12-08 21:25:30 +05:30
sigma = plastic_nonlocal_dislocationstress ( Fe , ip , el )
plastic_nonlocal_postResults ( cs + 1_pInt ) = sigma ( 1 , 1 )
plastic_nonlocal_postResults ( cs + 2_pInt ) = sigma ( 2 , 2 )
plastic_nonlocal_postResults ( cs + 3_pInt ) = sigma ( 3 , 3 )
plastic_nonlocal_postResults ( cs + 4_pInt ) = sigma ( 1 , 2 )
plastic_nonlocal_postResults ( cs + 5_pInt ) = sigma ( 2 , 3 )
plastic_nonlocal_postResults ( cs + 6_pInt ) = sigma ( 3 , 1 )
2014-06-14 02:23:17 +05:30
cs = cs + 6_pInt
case ( accumulatedshear_ID )
2014-12-08 21:25:30 +05:30
plastic_nonlocal_postResults ( cs + 1_pInt : cs + ns ) = plasticState ( ph ) % state ( iGamma ( 1 : ns , instance ) , of )
2014-06-14 02:23:17 +05:30
cs = cs + ns
end select
enddo outputsLoop
2009-08-11 22:01:57 +05:30
2014-12-08 21:25:30 +05:30
end function plastic_nonlocal_postResults
2009-08-11 22:01:57 +05:30
2014-12-08 21:25:30 +05:30
end module plastic_nonlocal