openfoam/tutorials
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
..
basic ENH: support Euler rotation rollPitchYaw/yawPitchRoll ordering 2022-06-02 16:47:40 +02:00
combustion TUT: update tutorials to use dictionary-style sets 2022-03-10 19:45:20 +01:00
compressible ENH: simplify coordinate rotation specification (#2505) 2022-06-07 17:25:30 +02:00
discreteMethods RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
DNS/dnsFoam/boxTurb16 RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
electromagnetics TUT: update tutorials to use dictionary-style sets 2022-03-10 19:45:20 +01:00
financial/financialFoam/europeanCall RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
finiteArea TUT: liquidFilmFoam - corrected cylinder h boundary condition 2022-05-23 09:42:42 +01:00
heatTransfer TUT: use "sources" for SemiImplicit in a few places 2022-05-31 13:04:43 +02:00
incompressible ENH: simplify coordinate rotation specification (#2505) 2022-06-07 17:25:30 +02:00
IO RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
lagrangian TUT: use "sources" for SemiImplicit in a few places 2022-05-31 13:04:43 +02:00
mesh ENH: simplify coordinate rotation specification (#2505) 2022-06-07 17:25:30 +02:00
modules CONFIG: additional packaging helpers, tutorial test helper 2020-04-21 14:59:07 +02:00
multiphase ENH: simplify coordinate rotation specification (#2505) 2022-06-07 17:25:30 +02:00
preProcessing ENH: support Euler rotation rollPitchYaw/yawPitchRoll ordering 2022-06-02 16:47:40 +02:00
resources RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
stressAnalysis RELEASE: Updated headers for v2112 2021-12-20 14:18:01 +00:00
verificationAndValidation TUT: use "sources" for SemiImplicit in a few places 2022-05-31 13:04:43 +02:00
Allclean CONFIG: add date and paths information for tutorial Allrun script 2021-09-22 17:42:21 +02:00
Allcollect STYLE: regularize quoting and exit on failed 'cd' 2019-11-13 13:19:16 +01:00
Allrun CONFIG: add date and paths information for tutorial Allrun script 2021-09-22 17:42:21 +02:00
Alltest CONFIG: inline _foamEval within <etc/config.sh/setup> 2021-06-18 17:14:22 +02:00