openfoam/applications/solvers/multiphase/multiphaseInterFoam
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
..
Make ENH: multiphaseInterFoam: Merged dynamic mesh functionality of multiphaseInterDyMFoam into multiphaseInterFoam 2017-12-01 15:51:21 +00:00
multiphaseMixture ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
Allwclean ENH: multiphaseInterFoam: Merged dynamic mesh functionality of multiphaseInterDyMFoam into multiphaseInterFoam 2017-12-01 15:51:21 +00:00
Allwmake ENH: multiphaseInterFoam: Merged dynamic mesh functionality of multiphaseInterDyMFoam into multiphaseInterFoam 2017-12-01 15:51:21 +00:00
createFields.H BUG: simpleFoam: moved createFvOptions.H into createFields.H for -postProcess option 2017-10-23 22:20:52 +01:00
multiphaseInterFoam.C ENH: improve controls for Time (issue #910) 2018-07-02 10:20:01 +02:00