openfoam/applications/solvers
Mark Olesen 3d6d6df566 BUG: incorrect dimensions for surfaceTensionForce
- accidentally introduced by 27c62303ad

STYLE: trial use of brace-initialized dimensionSet

- instead of writing

      dimensionedScalar(dimensionSet(1, -2, -2, 0, 0, 0), Zero);

  we can use C++11 brace-initialization to bundle the parameters
  for the dimensionSet construction and simply write

      dimensionedScalar({1, -2, -2, 0, 0, 0}, Zero);

  Note the following is incorrect syntax (extra brackets):

      dimensionedScalar(({1, -2, -2, 0, 0, 0}), Zero);
2019-01-10 10:17:36 +01:00
..
basic ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
combustion ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
compressible ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
discreteMethods ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
DNS ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
doc STYLE: finiteArea doc and style updates 2017-12-18 11:25:53 +00:00
electromagnetics ENH: add guarded lookup for dimensionedSet 2019-01-02 16:53:41 +01:00
financial ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
finiteArea STYLE: use cbrt() instead of pow(..,1.0/3.0) in a few more places 2019-01-09 12:22:07 +01:00
heatTransfer ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
incompressible ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00
lagrangian ENH: additional read guards for dimensionedType. input consistency (#762, #1148) 2019-01-03 13:34:11 +01:00
multiphase BUG: incorrect dimensions for surfaceTensionForce 2019-01-10 10:17:36 +01:00
stressAnalysis ENH: consolidate handling of mandatory/optional command arguments 2018-12-13 01:45:09 +01:00