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.
- Host: GitHub
- URL: https://github.com/jborrow/sph-convolve
- Owner: JBorrow
- Created: 2018-03-14T11:40:53.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-16T14:43:05.000Z (about 7 years ago)
- Last Synced: 2024-12-27T06:41:29.587Z (5 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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_positionsconvolved = convolve_positions(
y=y_values,
h=smoothing_length,
N_neigh=48,
dim=3
)
```License
-------MIT.