Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

# -*- coding: utf-8 -*- 

 

""" 

chemreac is a python library for solving chemical kinetics problems 

with possible diffusion and drift contributions. It is implemented 

by solving the deterministic Smoluchovski equation for discretized 

1D symmetric systems. Wrappers around SciPy's ODE integrators and 

Sundials CVode package are provided. 

""" 

 

from .release import __version__ 

 

from .core import ( 

    ReactionDiffusion, DENSE, BANDED, SPARSE, FLAT, 

    CYLINDRICAL, SPHERICAL, Geom_names 

)