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
65.2763 51.1192 63.3598
Starting point is a fixed specimen direction r
, e.g.,
% the fixed crystal directions z
r = vector3d.Z
r = vector3d
Next the crystal direction corresponding to the specimen direction r
according to the orientation r
are computed
h = inv(ori) * r
h = Miller (321)
h k i l
0.4281 0.349 -0.7771 0.6277
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
