(method of EBSD)
load ebsd data from file
EBSD.load is a high level method for importing EBSD data from files. If possible it autodetects the format of the file. Supported formats are listed here. Additionally, EBSD data can be read from column aligned text file or excel spread sheets. In those cases it is neccesary to tell MTEX the column positions of the spatial coordinates, the phase information as well as Euler angles.
ebsd = EBSD.load('filename.ang') ebsd = EBSD.load('filename.ctf') ebsd = EBSD.load('filename.osc') ebsd = EBSD.load('filename.hf5')
csList = {'notIndexed',... CS = {'notIndexed',... crystalSymmetry('m-3m','mineral','Fe'),... crystalSymmetry('m-3m','mineral','Mg')}; ebsd = EBSD.load(fname,'cs',cs,'ColumnNames',{'x','y','Euler1','Euler2','Euler3','phase'})
fname |
filename |
|||||||||||||||
cs |
crystalSymmetry or cell array of crystalSymmetry |
|||||||||||||||
param,val | Parameters and values that control load
|
ebsd |
fname = fullfile(mtexDataPath,'EBSD','85_829grad_07_09_06.txt'); CS = {'notIndexed',... crystalSymmetry('m-3m','mineral','Fe'),... crystalSymmetry('m-3m','mineral','Mg')}; SS = specimenSymmetry('triclinic'); ebsd = EBSD.load(fname,'CS',CS,'SS',SS, 'ColumnNames', ... {'Index' 'Phase' 'x' 'y' 'Euler1' 'Euler2' 'Euler3' 'MAD' 'BC' 'BS'... 'Bands' 'Error' 'ReliabilityIndex'}, 'Bunge')
ebsd = EBSD Phase Orientations Mineral Color Symmetry Crystal reference frame 0 11411 (19%) notIndexed 1 48184 (79%) Fe light blue m-3m 2 1180 (1.9%) Mg light green m-3m Properties: bands, bc, bs, error, index, mad, reliabilityindex, x, y Scan unit : um
ImportEBSDData, ebsd_demo, EBSD_index
DocHelp 0.1 beta |