Misorientations edit page

An orientation maps one crystal frame into the specimen frame. A misorientation maps one crystal frame into another. The specimen frame therefore cancels from the relative relationship.

Changing the specimen frame changes both orientation descriptions together, but it does not change their misorientation. Turn the sample on the stage and every orientation changes, but no misorientation does. This independence is why misorientations carry so much of the physics.

Misorientations describe neighbouring pixels, a pixel relative to its grain mean, crystals across a grain boundary, and crystals in different phases. They quantify orientation gradients and internal grain bending, identify twin relationships, and connect martensite to a possible parent grain.

The example below is a magnesium EBSD map containing extension twins. The grains are reconstructed at a \(5^\circ\) threshold. Their boundaries are coloured by the misorientation angle across them.

plottingConvention.default('y↑→x');
mtexdata twins silent

grains = calcGrains(ebsd('indexed'),'angle',5*degree);
grains = smoothBoundary(grains,5);
gB = grains.boundary('Magnesium','Magnesium');

plot(grains,'FaceColor',[0.92 0.92 0.92],'micronbar','off')
hold on
plot(gB,gB.misorientation.angle./degree,'linewidth',3)
mtexColorbar('title','misorientation angle in degree')
hold off

The yellow traces share an angle near \(86^\circ\), while the cooler traces span lower angles. The neutral grain interiors keep orientation colour from being confused with the boundary-angle scale.

This map shows only the angle. It does not yet establish that the yellow boundaries share the same rotation axis or arise from the same mechanism.

From Individual Boundaries to a Population

Plotting the same segment angles as a histogram reveals the repeated relationship directly.

close all
plotAngleDistribution(gB.misorientation,'figSize','small')

The sharp population near \(86^\circ\) is the signature of the extension twin in this map. A broader population occupies the lower angles.

Each boundary segment contributes one sample, not each neighbouring grain pair. Long boundaries usually have more segments, so the histogram depends on boundary sampling. Interpreting such populations is central to this chapter.

Misorientation, Disorientation, and Symmetry

A crystal has symmetry, so one physical misorientation has many equivalent rotation descriptions. For a cubic crystal there are 24 ways to label the lattice axes on each side, giving up to \(24 \times 24 = 576\) rotations.

Each rotation is a symmetrically equivalent representative of the same misorientation. A disorientation is the particular representative with the smallest rotation angle and an axis in a fundamental sector. A fundamental region is the part of rotation space that keeps exactly one representative of each physical relationship.

When a boundary is called a "60 degree boundary", the quoted value is its disorientation angle. The angle is not the complete misorientation because it says nothing about the rotation axis.

The symmetries on both sides determine the equivalent rotations. The same numerical angle must therefore be compared across phases with care.

A further ambiguity occurs at a same-phase grain boundary. Neither side is intrinsically first. Reversing their order replaces the misorientation by its inverse.

Grain exchange symmetry identifies those two descriptions. Include it when boundary misorientations are counted into a distribution. Otherwise one boundary can appear as two different relationships.

Angle, Axis, and Boundary Plane

A rotation needs an angle and an axis. Different misorientations can have the same angle, so the histogram above cannot identify a twin law by itself. The complete relationship must be compared before a mechanism is assigned.

An axis also needs a reference frame. It may be expressed as a direction in either crystal frame or in the specimen frame, and those questions are not interchangeable.

A misorientation is still not a complete grain-boundary description. It supplies three rotational degrees of freedom; the interface-plane normal supplies two more. The Grain Boundaries chapter adds that spatial information.

Where to Start

Begin with Orientations as Coordinate Transforms if composition order is unfamiliar. The EBSD examples also use grain reconstruction. The distribution pages assume kernel density estimation.

The recommended reading order follows the chapter contents:

  1. Theory constructs a misorientation from two orientations and introduces symmetry, angle, axis, and the fundamental region.
  2. Grain Exchange Symmetry explains why a same-phase boundary identifies a misorientation with its inverse.
  3. Twinning builds an ideal twin law and compares the complete relationship with measured boundaries.
  4. Misorientation Distribution Function turns a population into a density in misorientation space.
  5. Axis Distribution integrates out the angle and distinguishes crystal-coordinate axes from specimen-coordinate axes.
  6. Angle Distribution integrates out the axis and compares correlated, uncorrelated, and random populations.

The misorientation distribution function, or MDF, plays the same role for misorientations that the ODF plays for orientations. Its angle and axis distributions are often easier to read, but neither retains their coupling.

Compare a measured boundary distribution with its texture-dependent uncorrelated distribution. Also compare it with the symmetry-only random baseline. These tests ask whether texture or rotation-space geometry explains a population. A difference does not prove a physical mechanism.

References

Next

The next documentation chapter introduces orientation distribution functions. They provide the texture-dependent reference used later in this chapter.

For spatial applications, continue to Grain Boundaries. Its CSL and detailed twinning analyses add boundary geometry to the relative rotations introduced here. Parent-to-child misorientations drive Phase Transitions.

Pixel-to-pixel and pixel-to-grain mean misorientations continue in Kernel Average Misorientation and Grain Orientation Parameters.

Return to Orientations when the underlying crystal-to-specimen maps or their reference frames need review.

Citing this page. This page is part of the documentation of MTEX, a free and open source MATLAB toolbox for analyzing and modeling crystallographic textures. It was written by The MTEX Developers and is published at https://mtex-toolbox.github.io/Misorientations.html. If you use MTEX, or reuse text or figures from this page, in your research, please cite

F. Bachmann, R. Hielscher, H. Schaeben: Texture Analysis with MTEX - Free and Open Source Software Toolbox, Solid State Phenomena 160 (2010), 63-68. 10.4028/www.scientific.net/SSP.160.63

BibTeX
@article{bachmann2010mtex,
  author  = {F. Bachmann and R. Hielscher and H. Schaeben},
  title   = {Texture Analysis with MTEX - Free and Open Source Software Toolbox},
  journal = {Solid State Phenomena},
  volume  = {160},
  pages   = {63-68},
  year    = {2010},
  doi     = {10.4028/www.scientific.net/SSP.160.63},
  url     = {https://doi.org/10.4028/www.scientific.net/SSP.160.63}
}

Other papers describing specific MTEX methods are listed under Publications — please cite the one that best fits your application. The MTEX source code is licensed under the GNU General Public License v2.0; the text and figures of this documentation are licensed under CC BY 4.0, which permits reuse — including by automated systems — provided The MTEX Developers and this page are credited.