Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rafalkornel/particle_simulation_template

Particles simulation in python template repository.
https://github.com/rafalkornel/particle_simulation_template

matplotlib particles physics physics-simulation python simulation template template-repository

Last synced: 12 days ago
JSON representation

Particles simulation in python template repository.

Awesome Lists containing this project

README

        

# Python particles simulation template repository
This repository is empty template, with basic file structure and empty classes (with type annotations and comments).
It has *visualize* module, which creates animation from Simulator object, using matplotlib.

Make sure you have required packages before running (mainly matplotlib).
You can install them by this command:

`pip install -r requirements.txt`

File structure:
```
project
|─ main.py
|─ profiling_commands.txt
│─ README.md
│─ requirements.txt
|─ .gitignore
|
└── src
│ │─ particle.py
│ │─ simulator.py
│ │─ visualize.py
| └─ utilities.py

└── examples
│─ benchmark.py
└─ visualization.py