crystal shape,The orientation of the cell is wrong mtex 5.11.1 #2107
-
I want to map the cell of a specific grain and the slip system
The orientation of the cells drawn by the two methods is inconsistent |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Hi Xiu,
This will resolve you issue. Ralf. |
Beta Was this translation helpful? Give feedback.
-
For me the following code works perfectly figure(1)
grains =calcGrains(ebsd('indexed'))
cS = crystalShape.hex(ebsd.CS);
plot(grains.boundary)
hold on
plot(grains, cS * 0.8,'linewidth', 1, 'colored')
hold off
[x, y] = ginput(1);
ori = ebsd(x,y).orientations
figure(2);
plot(ori * cS,'colored')
setCamera('default') |
Beta Was this translation helpful? Give feedback.
-
Face 0001 is in the middle of the cell how do I set it to be on top or bottom |
Beta Was this translation helpful? Give feedback.
For me the following code works perfectly