https://github.com/hatoo/apd
Simple fluid simulation library supports Advect, Project and Diffuse operations.
https://github.com/hatoo/apd
fluid fluid-simulation rust
Last synced: 9 months ago
JSON representation
Simple fluid simulation library supports Advect, Project and Diffuse operations.
- Host: GitHub
- URL: https://github.com/hatoo/apd
- Owner: hatoo
- License: mit
- Created: 2021-09-29T13:16:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-04T08:47:29.000Z (about 4 years ago)
- Last Synced: 2025-03-26T14:56:07.322Z (10 months ago)
- Topics: fluid, fluid-simulation, rust
- Language: Rust
- Homepage:
- Size: 1.13 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# APD: Advect, Project, Diffuse
[](https://crates.io/crates/apd)
APD is a simple fluid simulation library supports
- Advect
- Project
- Diffuse
operations.
# Examples
## Advect
```
cargo run --package advect --release
```

## Project (and self advect)
```
cargo run --package project --release
```

## Diffuse
```
cargo run --package diffuse --release
```
