Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
2024.0.0 - Français


User functions

Coding user functions used by SUNDIALS solvers

Introduction

To solve nonlinear equations, ODEs (Ordinary Differential Equations) or DAEs (Differential Algebraic Equations) different functions have to be provided to the solver. The right hand side (which denotes a different function depending on the kind of equations) has to be computed by the user and is the only mandatory function. In addition, all solvers allow to give a user Jacobian to help the solver and a user Callback function can also be called at each internal or user time step.

For ODEs and DAEs only, the roots of a set of user Events functions can be determined during the iterations, sensitivity with respect to a parameter can be computed during the integration (cvode and ida only) and a Mass matrix can be provided (arkode only).

The usual way is to write these user functions in the Scilab language but if speed is a concern, entrypoints of dynamically linked shared libraries (DLL) should be used instead, as at least one order of magnitude in speed is typically achieved. All entrypoints have to follow the SUNDIALS API and for the moment the supported modules are NVECTOR_SERIAL (for vector data structures), SUNMATRIX_DENSE, SUNMATRIX_BAND and SUNMATRIX_SPARSE (for matrix data structures). A very rich library of utility functions and accessor macros can be used and are documented in the online SUNDIALS documentation at the following adresses:

Passing extra parameters

Extra parameters can be passed to user Scilab functions or entrypoints by replacing the corresponding argument or option by a list, where the first element is the usual argument (a function identifier or a string with the entrypoint name) and the subsequent elements are the parameters to be passed after the mandatory arguments.

Note that SUNDIALS DLL entrypoints accept only one extra parameter as a Scilab double array, which is passed as a void * pointer in the user_data argument. When no extra parameter has been passed to the solver this pointer is NULL. We give below two examples where we solve the same ODE using user parameters with a Scilab function then a SUNDIALS DLL:

function yd=f(t, y, a, b)
  yd = a*y+b;
end
[t,y] = cvode(list(f,-1,1),[0 10],0);

code=[
    "#include <nvector/nvector_serial.h>"
    "int sunRhs(realtype t, N_Vector Y, N_Vector Yd, void *user_data)"
    "{"
    "double *y = NV_DATA_S(Y);"
    "double *yd = NV_DATA_S(Yd);"
    "double *par = (double *)user_data;"
    "yd[0] = par[0]*y[0]+par[1];"
    "return 0;"
    "}"];
    mputl(code,"code.c");
SUN_Clink("sunRhs","code.c",load=%t);
[t,y] = cvode(list("sunRhs",[-1,1]),[0 10],0);

See also

  • arkode — SUNDIALS ordinary differential equation additive Runge-Kutta solver
  • cvode — SUNDIALS ordinary differential equation solver
  • ida — SUNDIALS differential-algebraic equation solver
  • kinsol — SUNDIALS general-purpose nonlinear system solver
  • User Jacobian — Specifying a user-supplied Jacobian or its approximation
  • User Events — Specifying a user events function
  • User Callback — Specifying a user callback
  • SUN_Clink — Compiling and linking a C user function
Report an issue
<< Solution output (ODE and DAE solvers) Options, features and user functions arkode >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Oct 24 14:34:12 CEST 2023