Inverse Pole Figure
Inverse pole figures are two dimensional representations of orientations. To illustrate this we define a random orientation with trigonal crystal symmetry
cs = crystalSymmetry('321')
ori = orientation.rand(cs)
cs = crystalSymmetry
symmetry : 321
elements : 6
a, b, c : 1, 1, 1
reference frame: X||a*, Y||b, Z||c*
ori = orientation (321 → xyz)
Bunge Euler angles in degree
phi1 Phi phi2
108.324 49.2764 251.156
Starting point is a fixed specimen direction r
, e.g.,
% the fixed crystal directions z
r = vector3d.Z
r = vector3d
x y z
0 0 1
Next the crystal direction corresponding to the specimen direction r
according to the orientation ori
are computed
h = inv(ori) * r
h = Miller (321)
h k i l
-0.4988 -0.2448 0.7435 0.6524
and ploted in a spherical projection
plot(h.symmetrise,'fundamentalRegion')

A shortcut for the above computations is the command
% a pole figure plot
plotIPDF(ori,[vector3d.X,vector3d.Y,vector3d.Z])

Contour plots
plotIPDF(ori,[vector3d.X,vector3d.Y,vector3d.Z],'contourf')
mtexColorbar

plotIPDF(ori,[vector3d.X,vector3d.Y,vector3d.Z],'contourf','complete','upper')
mtexColorbar
