accelerInt  v0.1
Namespaces | Functions | Variables
solver_cvodes.c File Reference

The integration driver for the CVODE solver. More...

#include "header.h"
#include "solver.h"
#include "sundials/sundials_types.h"
#include "sundials/sundials_math.h"
#include "sundials/sundials_nvector.h"
#include "nvector/nvector_serial.h"
#include "cvodes/cvodes.h"
#include "cvodes/cvodes_lapack.h"
Include dependency graph for solver_cvodes.c:

Go to the source code of this file.

Namespaces

 cvode
 

Functions

void cvode::intDriver (const int NUM, const double t, const double t_end, const double *pr_global, double *y_global)
 Integration driver for the CPU integrators. More...
 

Variables

N_Vector * y_locals
 
double * y_local_vectors
 
void ** integrators
 

Detailed Description

The integration driver for the CVODE solver.

Author
Nicholas Curtis
Date
03/10/2015

Definition in file solver_cvodes.c.

Variable Documentation

◆ integrators

void** integrators

The stored CVODE integrator objects

Definition at line 34 of file cvodes_init.c.

◆ y_local_vectors

double* y_local_vectors

The base state vectors used in N_Vector creation

Definition at line 32 of file cvodes_init.c.

◆ y_locals

N_Vector* y_locals

The state vectors used in CVODE operation

Definition at line 30 of file cvodes_init.c.