openfoam/applications/solvers/multiphase/twoPhaseEulerFoam/twoPhaseSystem/phaseModel
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
..
phaseModel.C ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
phaseModel.H ENH: cleanup autoPtr class (issue #639) 2018-02-26 12:00:00 +01:00