openfoam/applications/solvers/compressible
Mark Olesen 6a448016aa ENH: additional read guards for dimensionedType. input consistency (#762, #1148)
- provide a lookupOrDefault constructor form, since this is a fairly
  commonly used requirement and simplifies the calling sequence.

  Before

      dimensionedScalar rhoMax
      (
          dimensionedScalar::lookupOrDefault
          (
              "rhoMax",
              pimple.dict(),
              dimDensity,
              GREAT
          )
     );

  After

      dimensionedScalar rhoMax("rhoMax", dimDensity, GREAT, pimple.dict());

- read, readIfPresent methods with alternative lookup names.

- Mark the Istream related constructors with compile-time deprecated
  warnings.

BUG: read, readIfPresent methods not handling optional dimensions (#1148)
2019-01-03 13:34:11 +01:00
..
rhoCentralFoam ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
rhoPimpleAdiabaticFoam ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
rhoPimpleFoam ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
rhoSimpleFoam ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
sonicFoam ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
compressibleSolvers.H ENH: Solvers - updated group documentation 2015-12-03 22:05:55 +00:00