Skip to content
Snippets Groups Projects
  1. Jun 29, 2020
    • Lisa Julia Nebel's avatar
      Riemannian proximal newton solver: · 08e0a8af
      Lisa Julia Nebel authored
      Add first version of the Riemannian Proximal Newton solver, as an alternative to the Trust Region Solver.
      In each step of these two iterative solvers: For a given iterate x, we try to find a correction that decreases the energy of the nonlinear functional.
      This correction is calculated using the Taylor expansion around x, resulting in the problem: Hessian(x) * correction = -gradient(x).
      The correction only causes an energy decrease if the functional can be approximated correctly within a certain radius around x.
      1) The trust-region algorithm ensures this using a trust-region.
      2) The proximal newton method ensures this by "punishing" large corrections using a regularization factor.
      08e0a8af
    • Lisa Julia Nebel's avatar
  2. Jun 09, 2020
  3. Jun 08, 2020
  4. May 20, 2020
  5. May 15, 2020
  6. May 14, 2020
  7. May 13, 2020
  8. Mar 04, 2020
  9. Feb 18, 2020
  10. Feb 11, 2020
    • Sander, Oliver's avatar
      Avoid undefined behavior (sanitizer warning) · 46f6addc
      Sander, Oliver authored
      The svd code contains some index trickery, because the original code
      was written in fortran, which numbers arrays starting from '1'
      rather than from '0'.  This trickery included having a pointer point
      1 int in front of an allocated array, implicitly relying on the
      fact that pointer[0] would never be called.  The llvm sanitizer
      complains nevertheless, so this patch improves the trickery a little
      to avoid the objected pointer.
      46f6addc
    • Sander, Oliver's avatar
      Use a power basis to interpolate vector-valued functions · 22adf453
      Sander, Oliver authored
      Scalar bases used to work for that, but that feature got
      removed a long time ago.
      22adf453
    • Sander, Oliver's avatar
      Avoid leaking a LocalGeodesicFEFDStiffness object · b721f7bd
      Sander, Oliver authored
      Do this by making RodAssembler more similar to the generic
      GeodesicFEAssembler: the constructor argument is now a
      general LocalGeodesicFEStiffness, and not something particular
      to rod problems.
      b721f7bd
  11. Jan 29, 2020
Loading