Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```