Reference implementation of the Newton solver. More...
#include <cmath>
#include <memory>
#include <iostream>
#include <type_traits>
#include <dune/common/timer.hh>
#include <dune/common/exceptions.hh>
#include <dune/common/parallel/mpicollectivecommunication.hh>
#include <dune/common/parallel/mpihelper.hh>
#include <dune/common/std/type_traits.hh>
#include <dune/istl/bvector.hh>
#include <dune/istl/multitypeblockvector.hh>
#include <dumux/common/parameters.hh>
#include <dumux/common/exceptions.hh>
#include <dumux/common/typetraits/vector.hh>
#include <dumux/common/typetraits/isvalid.hh>
#include <dumux/common/timeloop.hh>
#include <dumux/common/pdesolver.hh>
#include <dumux/linear/linearsolveracceptsmultitypematrix.hh>
#include <dumux/linear/matrixconverter.hh>
#include <dumux/assembly/partialreassembler.hh>
#include "newtonconvergencewriter.hh"
Go to the source code of this file.
Reference implementation of the Newton solver.
Usually this solver should be sufficient.
Classes | |
struct | Dumux::Detail::supportsPartialReassembly |
helper struct detecting if an assembler supports partial reassembly More... | |
class | Dumux::NewtonSolver< Assembler, LinearSolver, Reassembler, Comm > |
An implementation of a Newton solver. More... | |
Namespaces | |
namespace | Dumux |
make the local view function available whenever we use the grid geometry | |
namespace | Dumux::Detail |
Typedefs | |
template<class Assembler > | |
using | Dumux::Detail::DetectPVSwitch = typename Assembler::GridVariables::VolumeVariables::PrimaryVariableSwitch |
helper aliases to extract a primary variable switch from the VolumeVariables (if defined, yields int otherwise) More... | |
template<class Assembler > | |
using | Dumux::Detail::GetPVSwitch = Dune::Std::detected_or< int, DetectPVSwitch, Assembler > |