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

https://github.com/mcgalcode/lennard-jones-md


https://github.com/mcgalcode/lennard-jones-md

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Welcome to Lennard-Jones Molecular Dynamics

This is a simple code that implements a Lennard-Jones forcefield for 1D MD simulations.

## Installation instructions

This package can only be installed from source. First, clone this package:

```
git clone https://github.com/mcgalcode/lennard-jones-md.git
```

Next, you can use pip to install it directly:

```
cd lennard-jones-md
pip install .
```

### Verifying your installation

Open a python REPL and try importing the package:

```
python
Python 3.10.6 (main, Oct 7 2022, 15:17:36) [Clang 12.0.0 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import lennard_jones_md as ljmd
```

If the import works correctly, you should be good to go!