KAM

(method of EBSD)

intergranular average misorientation angle per orientation

Syntax

% ignore misorientation angles > threshold
kam = KAM(ebsd,'threshold',10*degree);
plot(ebsd,ebsd.KAM./degree)
% ignore grain boundary misorientations
[ebsd, ebsd.grainId] = calcGrains(ebsd)
kam = KAM(ebsd);
plot(ebsd,ebsd.KAM./degree)
% consider also second order neigbors
kam = KAM(ebsd,'order',2);

Input

ebsd

@ebsd

param,val Parameters and values that control KAM
Parameter Description
'threshold'

ignore misorientation angles larger then threshold

'order'

consider neighbors of order n

alo
            in2d.GOS