openfoam/applications/solvers/stressAnalysis/solidDisplacementFoam
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
tractionDisplacement 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
createControl.H STYLE: reduced usage of Switch 2018-06-01 20:51:48 +02:00
createControls.H STYLE: reduced usage of Switch 2018-06-01 20:51:48 +02:00
createFields.H ENH: cleanup autoPtr class (issue #639) 2018-02-26 12:00:00 +01:00
readMechanicalProperties.H ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
readSolidDisplacementFoamControls.H STYLE: reduced usage of Switch 2018-06-01 20:51:48 +02:00
readThermalProperties.H ENH: avoid readScalar, readLabel etc from dictionary (#762, #1033) 2018-10-12 08:14:47 +02:00
solidDisplacementFoam.C GIT: resolved merge conflict 2018-06-13 14:20:18 +01:00