openfoam/applications/solvers/compressible
Mark Olesen 8eddcc072a ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033)
- use the dictionary 'get' methods instead of readScalar for
  additional checking

     Unchecked:  readScalar(dict.lookup("key"));
     Checked:    dict.get<scalar>("key");

- In templated classes that also inherit from a dictionary, an additional
  'template' keyword will be required. Eg,

     this->coeffsDict().template get<scalar>("key");

  For this common use case, the predefined getXXX shortcuts may be
  useful. Eg,

     this->coeffsDict().getScalar("key");
2018-10-12 08:14:47 +02:00
..
rhoCentralFoam ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
rhoPimpleAdiabaticFoam ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
rhoPimpleFoam ENH: improve controls for Time (issue #910) 2018-07-02 10:20:01 +02:00
rhoSimpleFoam STYLE: Renamed source files to reflect solver names (issue #890) 2018-06-21 16:14:16 +02:00
sonicFoam ENH: improve controls for Time (issue #910) 2018-07-02 10:20:01 +02:00
compressibleSolvers.H ENH: Solvers - updated group documentation 2015-12-03 22:05:55 +00:00