Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/rafalkornel/particle_simulation_template
- Owner: RafalKornel
- Created: 2021-04-09T23:11:54.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-10T18:49:19.000Z (over 3 years ago)
- Last Synced: 2024-01-17T00:16:11.360Z (10 months ago)
- Topics: matplotlib, particles, physics, physics-simulation, python, simulation, template, template-repository
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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