use affine root coords as geom if possible #855
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Before 5034398 the geometry of a rectilinear mesh was an affine transformation of the root coordinates. In patch 5034398 this special case was removed due to a pending change in the transform chains for structured topologies: the replacement of the transformation that places an element in the root space with an index, thereby giving every element unit square root coordinates.
The effect of this change is a suboptimal gradient of the geometry to the root coordinates. Since the geometry is now always the inner product of a linear basis with vertices, the gradient of the geometry does not simplify to a constant if the vertices are evenly spaced.
This patch restores the special cased geometry by creating a reference geometry out of the (unit square) root coordinates and the element index and applying an affine transformation.