Skip to content
Snippets Groups Projects
  1. Dec 05, 2024
  2. Nov 30, 2024
  3. Nov 29, 2024
  4. Nov 25, 2024
  5. Nov 24, 2024
  6. Nov 22, 2024
  7. Nov 18, 2024
  8. Nov 16, 2024
  9. Nov 13, 2024
  10. Nov 12, 2024
  11. Nov 08, 2024
  12. Nov 05, 2024
  13. Oct 17, 2024
  14. Oct 08, 2024
  15. Oct 04, 2024
  16. Sep 30, 2024
  17. Sep 28, 2024
    • Oliver Sander's avatar
      Fix two typos · 1d9d4891
      Oliver Sander authored
      1d9d4891
    • Oliver Sander's avatar
      [UGGrid] Simplify computation of integrationElement · 04cc5c3e
      Oliver Sander authored
      UGGrid has used an overly complicated way to compute the
      integrationElement since practically forever.  Instead of computing
      the determinant of the Jacobian of the geometry transformation,
      it computed the inverse determinant of the inverse Jacobian.
      This lead to a matrix inversion being performed at each call
      that wasn't actually necessary.
      
      This patch removes this pointless inversion.
      04cc5c3e
    • Oliver Sander's avatar
      Rename method 'Transformation' to 'JacobianInverseTransformation' · 1269c51c
      Oliver Sander authored
      The name should really point out that it is about the *inverse*
      transformation.
      1269c51c
    • Oliver Sander's avatar
      Simplify UGGridGeometry::corner using constexpr if · 11229352
      Oliver Sander authored
      The UGGrid code dates to before constexpr if existed, and uses
      particular "pointless" casts to achieve a similar effect.
      Replace some of these casts by constexpr if, which is much easier
      to read.
      
      The code is simplified further because UGGrid has recently started
      to use FieldVector for point coordinates.  Therefore, componentwise
      copying is not necessary anymore.
      11229352
Loading