Hi MTEX users,
I have the EBSD data of an FCC metal. I want to get the traces of different {111} slip planes.
Now I have got the traces, but I don't know they belong to which {111} slip plane.
Can anyone help to distinguish different {111} planes with different colors and types of lines? such as (111) plane with a solid red line, and (1-11) with a yellow dotted line.
The code and traces of slip planes are as follows:
Code:
import_wizard
ebsd=ebsd('fe')
% reconstruct grains
[grains,ebsd.grainId] = calcGrains(ebsd,'angle',15*degree);
% remove small grains
ebsd(grains(grains.diameter<=5)) = [];
% redo grain reconstruction
[grains,ebsd.grainId] = calcGrains(ebsd,'angle',15*degree);
% smooth grain boundaries
grains = smooth(grains,5);
sS = slipSystem.fcc(ebsd.CS)
sS = sS.symmetrise;
plot(grains,grains.meanOrientation,'micronbar','off')
hold on
plot(grains.boundary,'linewidth',2)
hold off
hold on
for i = 1:length(sS)
sSlocal= grains.meanOrientation*sS(i);
quiver(grains,sSlocal.trace)
hold on
end
hold off
Traces of slip planes:
Best regards,
Luqing Cui