Skip to content
Snippets Groups Projects
  1. Feb 07, 2024
  2. Feb 05, 2024
  3. Jan 15, 2024
  4. Jan 08, 2024
  5. Jan 07, 2024
  6. Jan 05, 2024
  7. Jan 02, 2024
  8. Nov 23, 2023
  9. Oct 30, 2023
  10. Oct 27, 2023
  11. Oct 26, 2023
  12. 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
  13. Jun 20, 2023
  14. Jun 16, 2023
  15. May 24, 2023
  16. May 22, 2023
  17. 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
  18. Apr 24, 2023
Loading