Grain Size Measurement from EBSD Data of IN718 Alloy Fabricated by Powder Bed Laser Fusion Process #2289
Unanswered
SunnySharma200
asked this question in
Ask Anything
Replies: 1 comment 2 replies
-
hi
you may want to read this
https://mtex-toolbox.github.io/ShapeParameters.html
also, your angle threshold for the definition of individual grains is rather small, so you may want to consider something a little larger
cheers
Luiz
… On 8 Jan 2025, at 15:36, SunnySharma200 ***@***.***> wrote:
I have EBSD data from Inconel 718 samples processed by the Laser deposition process. Please tell me how to calculate the average grain size.
Below is the snippet of the code I am using for the calculation of grain size.
%% Grain Size Analysis - Simple Histogram
% Compute grains and their sizes
[grains, ebsd.grainId] = calcGrains(ebsd, 'angle', 1*degree);
% Ensure grainSize is numeric
grainSize = grains.area.^(1/2); % Grain size in microns
if ~isnumeric(grainSize)
error('grainSize must be numeric.');
end
—
Reply to this email directly, view it on GitHub <#2289>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ALE5IN2FCG2SMT7D7JUWVPD2JUZWVAVCNFSM6AAAAABU2CFKAKVHI2DSMVQWIX3LMV43ERDJONRXK43TNFXW4OZXG44TOOJUGU>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have EBSD data from Inconel 718 samples processed by the Laser deposition process. Please tell me how to calculate the average grain size.
Below is the snippet of the code I am using for the calculation of grain size.
Beta Was this translation helpful? Give feedback.
All reactions