Grain selection by orientations #514
-
Hi MTex community, I would like to select groups of grains having a specific crystallographic plane being parallel to the plane of analysis (for example c plane).
Then, as in the documentation I get back to Euler orientations to select my grains:
And here arise the problem, nothing is different between my to variables Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi Mael, please consider asking questions in the forum :) I guess what you looking for is something like c_plane = Miller(0,1,1,cs,'hkl'); % your crystal plane
a_plane = vector3d(0,0,1); % your analysis plane normal
delta = 10*degree; % the threshold
condition = angle(grains.meanOrientation \ a_plane, c_plane) > delta;
grains_selected = grains(ind) All the best, |
Beta Was this translation helpful? Give feedback.
-
Hi Ralf, Thanks a lot for your solution, Cheers, |
Beta Was this translation helpful? Give feedback.
-
No problem :) |
Beta Was this translation helpful? Give feedback.
Hi Mael,
please consider asking questions in the forum :) I guess what you looking for is something like
All the best,
Ralf.