Request for Help: Inconsistencies Between EBSD Maps and ODFs for the Same .ctf File #2205
Replies: 3 comments 2 replies
-
What import settings are you using? And do you apply any rotations at import (like in an import script/code-snippet)? -- If not, it might help to align the orientation reference frame, and I can help. Without knowing a bit more, I can't say for certain... but I think the issue is a common one due to acquisition-system/software settings... in which the spatial coordinates for the position of points may not utilize the same coordinate system as the camera+solution-engine (i.e., maybe the spatial coordinates are relative to the stage position, whereas the orientation coordinate system is based on the camera's viewpoint of the stage). Your comparison plots [comparing between MTEX current configuration and acquisition system] are very diagnostic already, and exactly the type of approach I use whenever I get new data or collect on a new system... although I often use pole figures instead/also. I am confident that if you can share more about your plotting convention preferences and/or rotations you have set in mtex_settings.m or at import of the data, we'll be able to get them to match. Zach |
Beta Was this translation helpful? Give feedback.
-
Also... I tried the link for the CTF, and I was not allowed access. Do you mind changing the permissions? |
Beta Was this translation helpful? Give feedback.
-
I was able to get the spatial plot to match yours coupled with a flipped (compared to the posted one) ODF section plot. I am not certain it matches the ODF section from acquisition system because there are a number of differences... but the key is that I used a combination of plotting preference and rotations at import to change the alignment. Note/FWIW: typically, unless the system is altered or reconfigured, once I get a settled import+plotting solution for data from a given lab, I can use that on all the files from that lab. The following is the import code I tried and the resultant plots: %% Specify Crystal and Specimen Symmetries
% crystal symmetry
CS = {...
'notIndexed',...
crystalSymmetry('m-3m', [2.9 2.9 2.9], 'mineral', 'Iron bcc', 'color', [1 0.6 0]),...
crystalSymmetry('m-3m', [3.7 3.7 3.7], 'mineral', 'Iron fcc', 'color', [0.6 0.8 1])};
% plotting convention
setMTEXpref('xAxisDirection','east');
setMTEXpref('zAxisDirection','outOfPlane');
%% Specify File Names
% path to files
pname = 'CHANGE_TO_YOUR_PATH';
% which files to be imported
fname = [pname '/LM_CTF_example.ctf'];
%% Import the Data
% create an EBSD variable containing the data
ebsd = EBSD.load(fname,CS,'interface','ctf',...
'convertEuler2SpatialReferenceFrame');
%% some rotations to try
ebsd = rotate(ebsd,rotation('axis',yvector,'angle',180*degree));
ebsd = rotate(ebsd,rotation('axis',zvector,'angle',180*degree));
|
Beta Was this translation helpful? Give feedback.
-
Hello everyone,
I'm currently working on a revision of a paper and have encountered an issue with inconsistencies between EBSD maps generated from the same .ctf file. Specifically, I'm seeing different results in both the EBSD maps and the Orientation Distribution Functions (ODFs) when using the same .ctf file but processed in two different ways.
To illustrate this, I've attached two images:
A comparison between the EBSD maps: one generated by me using [name of the software/tool you used] and another automatically generated by the SEM software.
A comparison of the ODFs generated from each of these EBSD maps.
I would like to understand why I'm seeing these differences. Could there be an issue with the processing or settings? What might be the causes of these inconsistencies?
I'm attaching the original .ctf file in case anyone is willing to check it and help identify what might be causing these discrepancies. Any guidance or suggestions on how to investigate and resolve this issue would be greatly appreciated, especially as I'm in the process of revising a paper.
Thank you for your help!
Attachments:
Original .ctf file. https://drive.google.com/file/d/1IQ7io-bjoPhW-D8ACCGO25gNNqmTFUiR/view?usp=sharing
Beta Was this translation helpful? Give feedback.
All reactions