ruediger
Sure, this is fine. However, if you look at my original post, I am speaking to the loading of XRD data. This is where the problem lies. General loading of ODF orientation data or EBSD data works fine. From what I can tell, if you interchange X||a and X||a* within the xrd loading of data, there is no difference.
Here is the Code I am using:
%% Import Script for PoleFigure Data
%
% This script was automatically created by the import wizard. You should
% run the whoole script or parts of it in order to import your data. There
% is no problem in making any changes to this script.
%% Specify Crystal and Specimen Symmetries
% crystal symmetry
CS = crystalSymmetry('6/mmm', [2.95 2.95 4.686], 'X||a', 'Y||b*', 'Z||c', 'mineral', 'Titanium', 'color', 'light blue');
% specimen symmetry
SS = specimenSymmetry('1');
% plotting convention
setMTEXpref('xAxisDirection','north');
setMTEXpref('zAxisDirection','outOfPlane');
%% Specify File Names
% path to files
pname = '...../Ti64_XRD_Data';
% which files to be imported
fname = {...
[pname '/Texture_optimized_40_101_Ti64_13.xrdml'],...
[pname '/Texture_optimized_53_102_Ti64_13.xrdml'],...
[pname '/Texture_optimized_63_110_Ti64_13.xrdml'],...
[pname '/Texture_optimized_70_103_Ti64_13.xrdml'],...
[pname '/Texture_optimized_76_112_Ti64_13.xrdml'],...
};
% background
pname = '...../Ti64_XRD_Data';
fname_bg = {...
[pname '/Texture_optimized_40_101_background_Ti64_13.xrdml'],...
[pname '/Texture_optimized_53_102_background_Ti64_13.xrdml'],...
[pname '/Texture_optimized_63_110_background_Ti64_13.xrdml'],...
[pname '/Texture_optimized_70_103_background_Ti64_13.xrdml'],...
[pname '/Texture_optimized_76_112_background_Ti64_13.xrdml'],...
};
%% Specify Miller Indice
h = { ...
Miller(1, 0,-1, 1,CS),...
Miller(1, 0,-1, 2,CS),...
Miller(1, 1,-2, 0,CS),...
Miller(1, 0,-1, 3,CS),...
Miller(1, 1,-2, 2,CS),...
};
%% Import the Data
% create a Pole Figure variable containing the data
pf = loadPoleFigure(fname,h,CS,SS,'interface','xrdml');
% background
pf_bg = loadPoleFigure(fname_bg,h,CS,SS,'interface','xrdml');
% correct data
pf = correct(pf,'bg',pf_bg);
odf = calcODF(pf);
figure
plot(odf,'sections',6,'silent', 'contourf')
mtexColorbar;
figure
plotPDF(odf,[Miller(0,0,0,1,odf.CS), Miller(1,1,-2,0,odf.CS), Miller(1,0,-1,0,odf.CS)],'antipodal','silent', 'contourf', 'complete', 'upper');
mtexColorbar;
figure
r1 = vector3d(1,0,0);
r2 = vector3d(0,1,0);
r3 = vector3d(0,0,1);
plotIPDF(odf,[r1, r2, r3],'antipodal', 'contourf');
mtexColorbar;