CSL boundaries rotation axis and angle #2156
-
Hi folks, I would like to know which rotation axis and angle are considered when we use the CSL command in MTEX to calculate CSL boundaries. For example, CSL13 can have multiple rotation combinations. How can we differentiate between these different rotations, or how can we select a specific one? What are those default rotations with commands? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Hi, cs = crystalSymmetry('cubic')
csl13 = CSL(13,cs)
% csl13 = misorientation (m-3m → m-3m)
% size: 1 x 2
% Bunge Euler angles in degree
% phi1 Phi phi2
% 53.1301 22.6199 323.13
% 22.6199 0 0
If you want to pick one you can do so by Hope that helps. Cheers, Rüdiger |
Beta Was this translation helpful? Give feedback.
-
Another thing that I highly need to know is why we put a threshold in the commands. gB3 = gB(angle(gB.misorientation,CSL(3,ebsd.CS)) < 5*degree); for instance, in the above line, the threshold of 5 is considered. How do we decide about the threshold? |
Beta Was this translation helpful? Give feedback.
Hi,
Mtex returns all misorientations related to a given sigma,
e.g.
If you want to pick one you can do so by
csl13(2)
(with respect to above variable names).If you want to see how it is computed, have a look into the function
CSL
.Hope that helps.
Cheers,
Rüdiger