Skip to content
Snippets Groups Projects

Migrate from dune-fufem to dune-functions bases

Merged Nebel, Lisa Julia requested to merge lnebel/dune-gfe:migration into master
2 files
+ 110
83
Compare changes
  • Side-by-side
  • Inline
Files
2
  • Wrap energy calculation and solving in a try-catch statement (mixedriemanniantrsolver, mixedlocalgfeadolcstiffness)
    
    In case an error occurs while solving or calculating the energy, the program does not stop
    but the error is handled in the Mixed-Riemannian Trust-Region solver and the program continues
    with a smaller trustregion-radius.
@@ -122,10 +122,14 @@ energy(const typename Basis::LocalView& localView,
@@ -122,10 +122,14 @@ energy(const typename Basis::LocalView& localView,
}
}
using namespace Dune::TypeTree::Indices;
using namespace Dune::TypeTree::Indices;
energy = localEnergy_->energy(localView,
try {
 
energy = localEnergy_->energy(localView,
localAConfiguration0,
localAConfiguration0,
localAConfiguration1);
localAConfiguration1);
} catch (Dune::Exception &e) {
 
trace_off();
 
throw e;
 
}
energy >>= pureEnergy;
energy >>= pureEnergy;
trace_off();
trace_off();
Loading