Skip to content
Snippets Groups Projects
  1. Oct 04, 2023
    • Lisa Julia Nebel's avatar
      Divide the regularization parameter through the scaling parameter in the PN... · 3ea924df
      Lisa Julia Nebel authored
      Divide the regularization parameter through the scaling parameter in the PN solver instead of multiplying
      
      In the PN solver, we add identity*regularization/scaling to the stiffness matrix.
      This has two effects:
      - make the system matrix positive definite
      - penalize large corrections to ensure an energy decrease in each step
      
      The regularization parameter is adapted if either the system matrix is not positive definite
      if there is an energy increase. This works similar to the trust-region radius in the TR solver.
      The correction must be inside the trust-region, this ensures there is an energy decrease
      in each step.
      For each component of the correction, the trust-region radius as well as the regularization parameter
      is multiplied with a scaling factor, because the correction for the displacement works depends
      on the grid size where the correction for the rotation does not.
      
      To align the effect of the scaling parameter, we need to divide through the scaling parameter in
      the PN solver and multiply with it it in the TR solver.
      3ea924df
  2. Jun 20, 2023
  3. Jun 16, 2023
  4. May 24, 2023
  5. May 22, 2023
  6. May 16, 2023
    • Sander, Oliver's avatar
      Reimplement EmbeddedGlobalGFEFunctions in dune-functions style · 980e149b
      Sander, Oliver authored
      The old style has been deprecated for a long time, and is not
      supported by dune-fufem anymore.
      
      (In particular, the code discretizationerror.hh now requires
      functions to satisfy the dune-functions function interface.)
      
      In the wake of this, compute-disc-error.cc gets a number
      of changes.  Let's hope I didn't screw up anything.
      980e149b
    • Sander, Oliver's avatar
      Replaced GlobalGeodesicFEFunction by a new one GlobalGFEFunction · 6e67d974
      Sander, Oliver authored
      There are two important changes:  First of all, the new class implements
      the `dune-functions` interface rather than the deprecated one based
      on inheritance from `VirtualGridViewFunction`. Secondly, the new class
      does not hard-wire geodesic interpolation anymore.  Rather, you can
      give it interpolation classes which then govern how interpolation is done.
      
      This change was long overdue.  It was now needed to make
      gradient-flow.cc compile with the post 2.9 version of dune-fufem again.
      6e67d974
  7. Apr 24, 2023
  8. Apr 20, 2023
  9. Apr 17, 2023
  10. Mar 27, 2023
  11. Mar 15, 2023
  12. Mar 10, 2023
  13. Feb 08, 2023
  14. Jan 31, 2023
    • Sander, Oliver's avatar
      Fix minor bugs in productmanifold.hh · 2b0343f5
      Sander, Oliver authored
      In particular:
      * Forward declaring ProductManifold in the `impl` namespace
        is not a good idea.
      * Add missing headers
      
      targetspacetest.cc is extended to test for the first issue.
      2b0343f5
  15. Jan 07, 2023
  16. Dec 21, 2022
    • Sander, Oliver's avatar
      Replace FieldMatrix<,1,1> by scalars · a3cce20f
      Sander, Oliver authored
      Using FieldMatrix<,1,1> for scalars has been the standard Dune way
      for a long time, but since dune 2.7 using scalars directly works
      just as well.
      a3cce20f
    • Sander, Oliver's avatar
      Remove old dune-fufem bases · eb84290c
      Sander, Oliver authored
      They are getting removed now for good after the release of
      dune-fufem 2.9.  The code that replaces them has been there
      for quite a while, and therefore we can simply use it
      without having to worry about compatibility with older
      dune-fufem versions.
      eb84290c
  17. Oct 05, 2022
  18. Aug 30, 2022
  19. Aug 19, 2022
  20. Aug 11, 2022
Loading