openfoam/applications
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
..
solvers BUG: incorrect dimensions for surfaceTensionForce 2019-01-10 10:17:36 +01:00
test ENH: FixedList empty(), size(), max_size() now constexpr static (#1160) 2019-01-10 09:35:41 +01:00
utilities ENH: minor consistency improvements for bounding box 2019-01-09 09:32:23 +01:00
Allwmake ENH: improve handling of ThirdParty packages 2018-04-24 14:51:19 +02:00