openfoam/tutorials/mesh
Mark Olesen 7184de50df ENH: simplify coordinate rotation specification (#2505)
- can specify rotations that are not "axes" in a compact form:

      transform
      {
          origin  (0 0 0);
          rotation none;
      }

      transform
      {
          origin  (0 0 0);
          rotation axisAngle;
          axis    (0 0 1);
          angle   45;
      }

   An expanded dictionary form also remains possible:

      transform
      {
          origin  (0 0 0);
          rotation
          {
              type  axisAngle;
              axis  (0 0 1);
              angle 45;
          }
      }

STYLE: verbose deprecation for "coordinateRotation" keyword

- the "coordinateRotation" keyword was replaced by the "rotation"
  keyword (OpenFOAM-v1812 and later) but was handled silently.
  Now elevated to non-silent.

STYLE: alias lookups "axesRotation", "EulerRotation", "STARCDRotation"

- these warn and report the equivalent short form, which aids in
  upgrading. Previously had silent lookups.
2022-06-07 17:25:30 +02:00
..
blockMesh ENH: simplify coordinate rotation specification (#2505) 2022-06-07 17:25:30 +02:00
createPatch/multiRegionHeater_autoPatch ENH: controlDict: include missing library. 2022-05-25 15:31:39 +01:00
extrudeMesh TUT: remove superfluous 'sourceInfo' (topo sets) 2022-05-27 14:10:31 +02:00
foamyHexMesh TUT: remove superfluous 'sourceInfo' (topo sets) 2022-05-27 14:10:31 +02:00
foamyQuadMesh RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
moveDynamicMesh RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
parallel TUT: use "sources" for SemiImplicit in a few places 2022-05-31 13:04:43 +02:00
PDRblockMesh/box0 RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
refineMesh/refineFieldDirs RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
snappyHexMesh ENH: support Euler rotation rollPitchYaw/yawPitchRoll ordering 2022-06-02 16:47:40 +02:00
stitchMesh/simple-cube1 RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00