Hey Guys,
I m new here because i just started using Mtex for my work. However I have here attached my experimental and simulation results I want to compared them. Any idea on how I can improve the result will be appreciated.
my routine is as follows
% Import Script for EBSD 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 = {...
'notIndexed',...
crystalSymmetry('m-3m', [1 1 1], 'color', 'light blue')};
% specimen symmetry
SS = specimenSymmetry('1');
% CS = {...
% crystalSymmetry('m-3m', [4.0496 4.0496 4.0496], 'mineral', 'Aluminum', 'color', 'light blue'),...
% 'notIndexed'};
% plotting convention
setMTEXpref('xAxisDirection','east');
setMTEXpref('zAxisDirection','inOfPlane');
%% Specify File Names
% path to files
pname = 'C:\Users\Diyoke\Desktop\mtex-5.1.1';
% which files to be imported
fname = [pname '\ebsd.dat'];
%fname = [pname '\ebsd.txt'];
%% Import the Data
% create an EBSD variable containing the data
ebsd = loadEBSD(fname,CS,'interface','generic',...
'ColumnNames', { 'Phase' 'x' 'y' 'z' 'Quat real' 'Quat i' 'Quat j'
'Quat k'}, 'Columns', [1 2 3 4 5 6 7 8], 'Quaternion','passive');
odf = calcKernelODF(ebsd.orientations,'halfwidth',5*degree);
%h = [Miller(0,0,1,odf.CS),Miller(0,1,1,odf.CS),Miller(1,1,1,odf.CS)];
h = [Miller(0,0,-1,odf.CS),Miller(1,1,1,odf.CS)];
plotPDF(odf,h,'contourf')
mtexColorbar
regards
George