Grain reconstruction errors on large datasets #2280
Unanswered
thomasmineau
asked this question in
Ask Anything
Replies: 2 comments 5 replies
-
I'm not sure if it helps, as I did it a little differently... but... % initial grain constuction:
% trying "tight" boundary, with "indexed" (no other filtering)
[grains,ebsd.grainId,ebsd.mis2mean] = calcGrains(ebsd('indexed'),'threshold',[1 10]*degree,'boundary','tight');
% remove small grains from grainset...
grains = grains(grains.grainSize>2);
% ... and from EBSD set
ebsd = ebsd(grains);
% reconstruct grain boundaries again:
[grains,ebsd.grainId,ebsd.mis2mean] = calcGrains(ebsd('indexed'),'threshold',[1 10]*degree,'boundary','tight');
% smooth boundaries
grains = smooth(grains,5); |
Beta Was this translation helpful? Give feedback.
2 replies
-
Unrelated: Was this sample deformed in tension by any chance? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I'm running into a poblem when calculating grains on large EBSD datasets. The maps were constructed with smaller maps on AZtec and are not perfectly rectangular, the boundaries of the map present a staircase effect outside of which are non-indexed points. When using calcGrains, points seem to appear oustide the borders of the map and generate errors during the reconstruction. I'm using MTEX 5.11.2 and this is the process I go through :
This is the kind of error I get at the borders when calculating the grains :
And when applying the 'boundary', 'tight' option, lines appear across the whole map :
One solution I have found that works on some datasets is cropping the maps to a rectangle to avoid the staircase effect on the boundaries. However, on this specific dataset cropping doesn't work. And the error strangely arrises only when I use the 'boundary', 'tight' option, when I don't use it, the borders are fine. This is what the full map looks like in that case :
So I am a bit at a Ioss on why this is happening. If anyone has an explanation for the reason behind this kind of bug or knows of a method to solve it, I'd be glad to read it.
Here is a link to the data : Link to cpr/crc
Thanks in advance for any help provided.
Cheers,
Thomas
Beta Was this translation helpful? Give feedback.
All reactions