17#ifndef dealii_sundials_ida_h
18#define dealii_sundials_ida_h
22#ifdef DEAL_II_WITH_SUNDIALS
29# ifdef DEAL_II_WITH_PETSC
36# ifdef DEAL_II_SUNDIALS_WITH_IDAS
37# include <idas/idas.h>
44# include <boost/signals2.hpp>
46# include <nvector/nvector_serial.h>
47# include <sundials/sundials_config.h>
48# include <sundials/sundials_math.h>
49# include <sundials/sundials_types.h>
57# define AssertIDA(code) Assert(code >= 0, ExcIDAError(code))
231 template <
typename VectorType = Vector<
double>>
400 "Ignore algebraic terms for error computations",
402 "Indicate whether or not to suppress algebraic variables "
403 "in the local error test.");
407 static std::string ic_type_str =
"use_y_diff";
409 "Correction type at initial time",
411 "This is one of the following three options for the "
412 "initial condition calculation. \n"
413 " none: do not try to make initial conditions consistent. \n"
414 " use_y_diff: compute the algebraic components of y and differential\n"
415 " components of y_dot, given the differential components of y. \n"
416 " This option requires that the user specifies differential and \n"
417 " algebraic components in the function get_differential_components.\n"
418 " use_y_dot: compute all components of y, given y_dot.",
420 prm.
add_action(
"Correction type at initial time",
421 [&](
const std::string &value) {
422 if (value ==
"use_y_diff")
424 else if (value ==
"use_y_dot")
426 else if (value ==
"none")
432 static std::string reset_type_str =
"use_y_diff";
434 "Correction type after restart",
436 "This is one of the following three options for the "
437 "initial condition calculation. \n"
438 " none: do not try to make initial conditions consistent. \n"
439 " use_y_diff: compute the algebraic components of y and differential\n"
440 " components of y_dot, given the differential components of y. \n"
441 " This option requires that the user specifies differential and \n"
442 " algebraic components in the function get_differential_components.\n"
443 " use_y_dot: compute all components of y, given y_dot.",
445 prm.
add_action(
"Correction type after restart",
446 [&](
const std::string &value) {
447 if (value ==
"use_y_diff")
449 else if (value ==
"use_y_dot")
451 else if (value ==
"none")
459 "Factor to use when converting from the integrator tolerance to the linear solver tolerance",
617 solve_dae(VectorType &solution, VectorType &solution_dot);
641 reset(
const double t,
const double h, VectorType &y, VectorType &yp);
658 std::function<void(
const double t,
660 const VectorType &y_dot,
697 std::function<void(
const double t,
699 const VectorType &y_dot,
735 std::function<void(
const VectorType &rhs, VectorType &dst)>
780 void(
const VectorType &rhs, VectorType &dst,
const double tolerance)>
797 std::function<void(
const double t,
798 const VectorType & sol,
799 const VectorType & sol_dot,
800 const unsigned int step_number)>
826 std::function<
bool(
const double t, VectorType &sol, VectorType &sol_dot)>
858 <<
"One of the SUNDIALS IDA internal functions "
859 <<
" returned a negative error code: " << arg1
860 <<
". Please consult SUNDIALS manual.");
870 <<
"Please provide an implementation for the function \""
891# if DEAL_II_SUNDIALS_VERSION_GTE(6, 0, 0)
916# ifdef DEAL_II_WITH_PETSC
917# ifdef PETSC_USE_COMPLEX
918 static_assert(!std::is_same<VectorType, PETScWrappers::MPI::Vector>::value,
919 "Sundials does not support complex scalar types, "
920 "but PETSc is configured to use a complex scalar type!");
923 !std::is_same<VectorType, PETScWrappers::MPI::BlockVector>::value,
924 "Sundials does not support complex scalar types, "
925 "but PETSc is configured to use a complex scalar type!");
void add_parameter(const std::string &entry, ParameterType ¶meter, const std::string &documentation="", const Patterns::PatternBase &pattern= *Patterns::Tools::Convert< ParameterType >::to_pattern(), const bool has_to_be_set=false)
void add_action(const std::string &entry, const std::function< void(const std::string &value)> &action, const bool execute_action=true)
void enter_subsection(const std::string &subsection)
double relative_tolerance
InitialConditionCorrection ic_type
bool ignore_algebraic_terms_for_errors
void add_parameters(ParameterHandler &prm)
AdditionalData(const double initial_time=0.0, const double final_time=1.0, const double initial_step_size=1e-2, const double output_period=1e-1, const double minimum_step_size=1e-6, const unsigned int maximum_order=5, const unsigned int maximum_non_linear_iterations=10, const double ls_norm_factor=0, const double absolute_tolerance=1e-6, const double relative_tolerance=1e-5, const bool ignore_algebraic_terms_for_errors=true, const InitialConditionCorrection &ic_type=use_y_diff, const InitialConditionCorrection &reset_type=use_y_diff, const unsigned int maximum_non_linear_iterations_ic=5)
unsigned maximum_non_linear_iterations_ic
InitialConditionCorrection reset_type
unsigned int maximum_order
InitialConditionCorrection
unsigned int maximum_non_linear_iterations
double absolute_tolerance
std::function< void(const VectorType &rhs, VectorType &dst, const double tolerance)> solve_with_jacobian
unsigned int solve_dae(VectorType &solution, VectorType &solution_dot)
MPI_Comm mpi_communicator
std::function< void(const double t, const VectorType &y, const VectorType &y_dot, const double alpha)> setup_jacobian
void set_functions_to_trigger_an_assert()
const AdditionalData data
void reset(const double t, const double h, VectorType &y, VectorType &yp)
std::function< IndexSet()> differential_components
std::function< VectorType &()> get_local_tolerances
std::function< void(const double t, const VectorType &sol, const VectorType &sol_dot, const unsigned int step_number)> output_step
std::function< bool(const double t, VectorType &sol, VectorType &sol_dot)> solver_should_restart
std::function< void(const double t, const VectorType &y, const VectorType &y_dot, VectorType &res)> residual
GrowingVectorMemory< VectorType > mem
std::function< void(VectorType &)> reinit_vector
std::function< void(const VectorType &rhs, VectorType &dst)> solve_jacobian_system
std::exception_ptr pending_exception
#define DEAL_II_DEPRECATED
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcIDAError(int arg1)
static ::ExceptionBase & ExcFunctionNotProvided(std::string arg1)
static ::ExceptionBase & ExcInternalError()
#define DeclException1(Exception1, type1, outsequence)
#define AssertThrow(cond, exc)