An open API service indexing awesome lists of open source software.

https://github.com/jborrow/sph-convolve

A python package to convolve your data with an SPH kernel.
https://github.com/jborrow/sph-convolve

Last synced: 3 months ago
JSON representation

A python package to convolve your data with an SPH kernel.

Awesome Lists containing this project

README

        

SPHConvolve
===========

A small package used to convolve an SPH kernel with your data.

Requirements
------------

+ `python3`
+ `numpy`

For the tests,

+ `pytest`
+ `matplotlib`

Usage
-----

```python
from sphconvolve import convolve_positions

convolved = convolve_positions(
y=y_values,
h=smoothing_length,
N_neigh=48,
dim=3
)
```

License
-------

MIT.