From charlesreid1

No edit summary
No edit summary
Line 1: Line 1:
Sundials is a C library of nonlinear and differential equation solvers.  It was created and is maintained by a group at Lawrence Livermore National Lab.
Sundials is a C library of nonlinear and differential equation solvers.  It was created and is maintained by a group at Lawrence Livermore National Lab.


 
This page details the C version of Sundials. I also have a page on the python-sundials library at the [[Python Sundials]] page. python-sundials is a library that wraps the Sundials C interface so you can use it in Python.


= Installation =
= Installation =

Revision as of 19:20, 30 January 2014

Sundials is a C library of nonlinear and differential equation solvers. It was created and is maintained by a group at Lawrence Livermore National Lab.

This page details the C version of Sundials. I also have a page on the python-sundials library at the Python Sundials page. python-sundials is a library that wraps the Sundials C interface so you can use it in Python.

Installation

Configuration

Sundials is a straightforward library to install. You can use the following configure line:

#!/bin/sh
# 
# run configure
# make
# make install

./configure \
  --prefix=/path/to/sundials

Then do the usual make/make install.

Resources

Sundials home page - https://computation.llnl.gov/casc/sundials/main.html