Skip to content
  • Mark OLESEN's avatar
    BUG: incorrect dimensions for surfaceTensionForce · 3d6d6df5
    Mark OLESEN authored
    - accidentally introduced by 27c62303
    
    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);
    3d6d6df5