Hi,
I was checking the procedure of Schmid Factor, with the objective of obtaining the active slip systems, however, when I use my EBSD data, MTEx shows all grains with a slip plane active, which makes me ask myself if there is a criterium to know which was really activated.
Do you know one?
Thanks for your help
---
sSAll = slipSystem (show methods, plot)
mineral: Titanium (Alpha) (622, X||a, Y||b*, Z||c)
size: 12 x 1
U V T W | H K I L CRSS
1 1 -2 0 0 0 0 1 1
1 -2 1 0 0 0 0 1 1
-2 1 1 0 0 0 0 1 1
2 -1 -1 0 0 1 -1 0 1
1 1 -2 0 -1 1 0 0 1
1 -2 1 0 -1 0 1 0 1
2 -1 -1 0 0 1 -1 1 1
1 1 -2 0 -1 1 0 1 1
1 -2 1 0 -1 0 1 -1 1
1 -2 1 0 -1 0 1 1 1
1 1 -2 0 -1 1 0 -1 1
2 -1 -1 0 0 -1 1 1 1
%%Rotation of slipping systems to sample coordinates
sSAllSampleAd = grains_csm(‘Titanium (Alpha)’).meanOrientation * sSAll
%%Stress Tensor
sigma = -1 * stressTensor.uniaxial(vector3d.Z)
%Schmid Factor for all the systems
SF = sSAllSampleAd.SchmidFactor(sigma);
%Max Schimd Factor for each system
[SFMax,active] = max(SF,[],2);
%Vector to identify slipping systems
A = zeros(length(SFMax),1);
%Feeding the A vector
for j=1:length(A)
for i=1:length(sSAll)
if SFMax(j) == SF(j,i)
A(j) = i
end
end
end
%After processing the data (yellow=basal, orange=prismatic, blue=pyramidal)
