Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smoren/particle-modeling-ipynb
Examples of algorithms for calculating particle interactions
https://github.com/smoren/particle-modeling-ipynb
lennard-jones-potential molecular-dynamics morse-potential particle-physics verlet-integration
Last synced: about 1 month ago
JSON representation
Examples of algorithms for calculating particle interactions
- Host: GitHub
- URL: https://github.com/smoren/particle-modeling-ipynb
- Owner: Smoren
- Created: 2023-12-01T07:32:49.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-01T18:50:38.000Z (about 1 year ago)
- Last Synced: 2023-12-02T09:32:11.450Z (about 1 year ago)
- Topics: lennard-jones-potential, molecular-dynamics, morse-potential, particle-physics, verlet-integration
- Language: Jupyter Notebook
- Homepage:
- Size: 12.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Examples of algorithms for calculating particle interactions
## Consist
* [Lennard Jones Potential](https://en.wikipedia.org/wiki/Lennard-Jones_potential)
* [Morse Potential](https://en.wikipedia.org/wiki/Morse_potential)
* [Verlet integration Algorithm](https://en.wikipedia.org/wiki/Verlet_integration)
* [Euler Method](https://en.wikipedia.org/wiki/Euler_method)## Prepare
```bash
# Install system dependencies (Ubuntu example)
sudo apt install python3 python3-venv python3-pip# Create virtual environment
python3 -m venv venv# Activate virtual environment
source venv/bin/activate# Install python dependencies
pip install -r requirements.txt
```