16#ifndef dealii_sundials_ida_h
17#define dealii_sundials_ida_h
21#ifdef DEAL_II_WITH_SUNDIALS
27# ifdef DEAL_II_WITH_PETSC
34# ifdef DEAL_II_SUNDIALS_WITH_IDAS
35# include <idas/idas.h>
43# include <boost/signals2.hpp>
45# include <nvector/nvector_serial.h>
46# include <sundials/sundials_config.h>
47# include <sundials/sundials_math.h>
55# define AssertIDA(code) Assert(code >= 0, ExcIDAError(code))
482 template <
typename VectorType = Vector<
double>>
652 "Ignore algebraic terms for error computations",
654 "Indicate whether or not to suppress algebraic variables "
655 "in the local error test.");
659 static std::string ic_type_str =
"use_y_diff";
661 "Correction type at initial time",
663 "This is one of the following three options for the "
664 "initial condition calculation. \n"
665 " none: do not try to make initial conditions consistent. \n"
666 " use_y_diff: compute the algebraic components of y and differential\n"
667 " components of y_dot, given the differential components of y. \n"
668 " This option requires that the user specifies differential and \n"
669 " algebraic components in the function differential_components().\n"
670 " use_y_dot: compute all components of y, given y_dot.",
672 prm.
add_action(
"Correction type at initial time",
673 [&](
const std::string &value) {
674 if (value ==
"use_y_diff")
676 else if (value ==
"use_y_dot")
678 else if (value ==
"none")
684 static std::string reset_type_str =
"use_y_diff";
686 "Correction type after restart",
688 "This is one of the following three options for the "
689 "initial condition calculation. \n"
690 " none: do not try to make initial conditions consistent. \n"
691 " use_y_diff: compute the algebraic components of y and differential\n"
692 " components of y_dot, given the differential components of y. \n"
693 " This option requires that the user specifies differential and \n"
694 " algebraic components in the function differential_components().\n"
695 " use_y_dot: compute all components of y, given y_dot.",
697 prm.
add_action(
"Correction type after restart",
698 [&](
const std::string &value) {
699 if (value ==
"use_y_diff")
701 else if (value ==
"use_y_dot")
703 else if (value ==
"none")
711 "Factor to use when converting from the integrator tolerance to the linear solver tolerance",
869 solve_dae(VectorType &solution, VectorType &solution_dot);
893 reset(
const double t,
const double h, VectorType &y, VectorType &yp);
910 std::function<void(
const double t,
912 const VectorType &y_dot,
946 std::function<void(
const double t,
948 const VectorType &y_dot,
994 void(
const VectorType &rhs, VectorType &dst,
const double tolerance)>
1011 std::function<void(
const double t,
1012 const VectorType &sol,
1013 const VectorType &sol_dot,
1014 const unsigned int step_number)>
1040 std::function<
bool(
const double t, VectorType &sol, VectorType &sol_dot)>
1072 <<
"One of the SUNDIALS IDA internal functions "
1073 <<
" returned a negative error code: " << arg1
1074 <<
". Please consult SUNDIALS manual.");
1084 <<
"Please provide an implementation for the function \""
1105# if DEAL_II_SUNDIALS_VERSION_GTE(6, 0, 0)
1130# ifdef DEAL_II_WITH_PETSC
1131# ifdef PETSC_USE_COMPLEX
1132 static_assert(!std::is_same_v<VectorType, PETScWrappers::MPI::Vector>,
1133 "Sundials does not support complex scalar types, "
1134 "but PETSc is configured to use a complex scalar type!");
1136 static_assert(!std::is_same_v<VectorType, PETScWrappers::MPI::BlockVector>,
1137 "Sundials does not support complex scalar types, "
1138 "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 enter_subsection(const std::string &subsection, const bool create_path_if_needed=true)
void add_action(const std::string &entry, const std::function< void(const std::string &value)> &action, const bool execute_action=true)
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< void(const double t, const VectorType &y, const VectorType &y_dot, VectorType &res)> residual
std::function< void(const double t, const VectorType &sol, const VectorType &sol_dot, const unsigned int step_number)> output_step
std::function< IndexSet()> differential_components
std::function< VectorType &()> get_local_tolerances
std::function< bool(const double t, VectorType &sol, VectorType &sol_dot)> solver_should_restart
GrowingVectorMemory< VectorType > mem
std::function< void(VectorType &)> reinit_vector
IDA(const AdditionalData &data=AdditionalData())
std::exception_ptr pending_exception
#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)