-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathREADME
65 lines (40 loc) · 1.32 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
PyWENO
======
PyWENO is a Python module for computing high-order Weighted
Essentially Non-oscillatory (WENO) reconstructions of cell-averaged
data arrays.
The basic interface provides a simple routine to compute 1D
reconstructions at various points within each grid cell. The points
at which the basic interface can reconstruct the original function at
include: left edge, right edge, Gauss-Legendre quadrature points,
Gauss-Lobatto quadrature points, and Guass-Radau quadrature points.
PyWENO can also be used as a code generator to build custom WENO
reconstructors in C, Fortran, and OpenCL on uniform grids.
Please see
http://readthedocs.org/docs/pyweno/en/latest/
for more information.
Important links
---------------
* Official project page: https://github.com/memmett/PyWENO
* Documentation: http://readthedocs.org/docs/pyweno/en/latest/
Prerequisites
-------------
To install PyWENO, you need:
* NumPy
* SymPy (optional if you avoid pyweno.symbolic)
Testing
-------
To build PyWENO and create symlinks to the extension modules:
$ python setup.py build
$ cd pyweno
$ for so in ../build/lib*/pyweno/*.so; do ln -s $so; done
Now, nosetests should work:
$ nosetests
License
-------
Please see LICENSE for copyright information.
Contributors
------------
* Matthew Emmett
* Michael Welter
* Ben Thompson