Skip to content
Snippets Groups Projects
Commit 76f68f08 authored by Phillip Berndt's avatar Phillip Berndt
Browse files

Documentation updated

parent 8ec06ac0
Branches
No related tags found
No related merge requests found
...@@ -7,17 +7,23 @@ from numpy.distutils.command import build_src ...@@ -7,17 +7,23 @@ from numpy.distutils.command import build_src
import numpy as np import numpy as np
LONG_DESCRIPTION = """RADAU13 is an implicit 13th order adaptive Runge-Kutta implementation by Ernst LONG_DESCRIPTION = """
Hairer and Gerhard Wanner. The Fortran code is available from Ernst Hairer's RADAU13 is an implicit 13th order adaptive Runge-Kutta implementation of the
website (http://www.unige.ch/~hairer/software.html) and a detailled RADAU IIA method by Ernst Hairer and Gerhard Wanner. The Fortran code is
description is available in their book available from Ernst Hairer's website
(http://www.unige.ch/~hairer/software.html)
and a detailled description is available in their book
Hairer, Norsett and Wanner (1993): Solving Ordinary Differential Equations. Hairer, Norsett and Wanner (1993): Solving Ordinary Differential Equations.
Nonstiff Problems. 2nd edition. Springer Series in Comput. Math., vol. 8. Nonstiff Problems. 2nd edition. Springer Series in Comput. Math., vol. 8.
This package does not use f2py, but instead calls the fortran function from a C This package does not use f2py, but instead calls the fortran function from a C
extension. Dense/continous output is available. Supplying a Jacobian function is extension. The solver features dense/continous output, support for implicit
not (yet). problems with a mass matrix, DAEs up to index 3 and multiple error control
algorithms. The python interface includes all features except band-width
control (for now), but some of the advanced/complex settings are not
documented (yet).
""" """
class no_f2py_build_scr(build_src.build_src): class no_f2py_build_scr(build_src.build_src):
...@@ -28,7 +34,7 @@ ext_modules = [ Extension('pyradau13', sources = [ 'pyradau13.c', 'lib/radau.f', ...@@ -28,7 +34,7 @@ ext_modules = [ Extension('pyradau13', sources = [ 'pyradau13.c', 'lib/radau.f',
setup( setup(
name = 'pyradau13', name = 'pyradau13',
version = '0.2', version = '0.3',
author = 'Phillip Berndt', author = 'Phillip Berndt',
author_email = 'phillip.berndt@googlemail.com', author_email = 'phillip.berndt@googlemail.com',
license = 'GPL', license = 'GPL',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment