Intragranular misorientation distribution of selected grain #555
Answered
by
zmichels
Mustafa-Rifat
asked this question in
Ask Anything
Replies: 4 comments 1 reply
-
Do you want to have plotted the one distribution on top of the other distribution or do you want to have the common distribution of both grains? Ralf. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Common distribution of both grains i.e. one histogram showing
misorientation distribution combinedly.
…On Sat, Oct 31, 2020, 9:20 AM Ralf Hielscher ***@***.***> wrote:
Do you want to have plotted the one distribution on top of the other
distribution or do you want to have the common distribution of both grains?
Ralf.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#555 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOPHQQISNRQHHFICSK3WPV3SNQFJPANCNFSM4TFV7OXQ>
.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Why not just combine the results for the separate grains and plot them?
oris489 = ebsd(grains(489)).orientations;
mis2mean489 = inv(grains(489).meanOrientation) .* oris489;
oris490 = ebsd(grains(490)).orientations;
mis2mean490 = inv(grains(490).meanOrientation) .* oris490;
mis2meanGrains = [mis2mean489; mis2mean490];
figure
plotAngleDistribution(mis2meanGrains)
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mustafa-Rifat
-
If you truly want the mis2mean instead of neighbor-to-neighbor misorientations, you can shorten the example I sent a minute into one line of code as this:
plotAngleDistribution(ebsd(grains(489:490)).mis2mean)
Hope this helps.
Cheers,
Zach
… On Oct 31, 2020, at 8:36 AM, Mustafa-Rifat ***@***.***> wrote:
Common distribution of both grains i.e. one histogram showing
misorientation distribution combinedly.
On Sat, Oct 31, 2020, 9:20 AM Ralf Hielscher ***@***.***>
wrote:
> Do you want to have plotted the one distribution on top of the other
> distribution or do you want to have the common distribution of both grains?
>
> Ralf.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#555 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AOPHQQISNRQHHFICSK3WPV3SNQFJPANCNFSM4TFV7OXQ>
> .
>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#555 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ACC5AUYUJTCBFC35R25PLM3SNQHG3ANCNFSM4TFV7OXQ>.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello MTEX Community,
I want to find intragranular misorientation of selected grains from my ebsd plot. I am trying to do something like this demo page: https://mtex-toolbox.github.io/HomepageOld/files/doc/GrainMisorientationAnalysis.html#22
I got some help from this page also: https://mtex-toolbox.github.io/GrainOrientationParameters.html
Now what I am trying is like this:
This gives me a plot like this:
plot.jpg
If I do the same for grain 489, I get another plot like this.
However, I want a single histogram containing data for both grains. I want to tell by looking at the histogram how the distribution looks like together i.e. is the distribution bimodal (the grains have very different intragranular misorientation distribution) or not.
Can anyone help me in this regard?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions