openfoam/applications/solvers/stressAnalysis/solidEquilibriumDisplacementFoam
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 applications/solvers: Added -postProcess option 2016-05-09 14:08:15 +01:00
tractionDisplacementCorrection STYLE: reduced usage of Switch 2018-06-01 20:51:48 +02:00
calculateStress.H Standardized the naming of functions which control the writing of fields etc. 2016-05-12 17:38:01 +01:00
createControls.H applications/solvers: Added -postProcess option 2016-05-09 14:08:15 +01:00
createFields.H applications/solvers: Added -postProcess option 2016-05-09 14:08:15 +01:00
kineticEnergyLimiter.H STYLE: more consistent use of dimensioned Zero 2018-03-16 10:24:03 +01:00
readSteadyStressFoamControls.H ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
solidEquilibriumDisplacementFoam.C GIT: resolved merge conflict 2018-06-13 14:20:18 +01:00