OpenMD is an open source molecular dynamics engine which is capable of efficiently simulating liquids, proteins, nanoparticles, interfaces, and other complex systems using atom types with orientational degrees of freedom (e.g. "sticky" atoms, point dipoles, and coarse-grained assemblies). Proteins, zeolites, lipids, transition metals (bulk, flat interfaces, and nanoparticles) have all been simulated using force fields included with the code. OpenMD works on parallel computers using the Message Passing Interface (MPI), and comes with a number of analysis and utility programs that are easy to use and modify. An OpenMD simulation is specified using a very simple meta-data language that is easy to learn.
Simulations are started in OpenMD using a single Molecular Dynamics (.omd)
file. These files must start with the <OpenMD>
tag and must have two
sections:
-
a
<MetaData>
section, and -
a
<Snapshot>
block for initial coordinate and velocity information.
Detailed descriptions of the structures of these files are available
in the docs
directory. Sample simulations are available in the
samples
directory and QUICK_START.md walks you through a
procedure for running and analyzing your first OpenMD simulation.
- A good C++17-compliant compiler. We've built and tested OpenMD on the following architecture & compiler combinations:
Architecture | CXX | Notes |
---|---|---|
macOS Sequoia (intel & arm) | c++ | (Apple Xcode 16.0, Open MPI 5.0.3) |
Linux (Ubuntu 24.04 - x86_64) | g++ | (GNU version 13.2 Open MPI 4.1.6) |
Linux (RHEL 9.4 - x86_64) | icpx | (Intel version 23.0, Intel MPI 2021.13) |
OpenMD uses features in the C++ standard library and language features from C++17. Most (but not all) C++ compilers support these features.
-
CMake (version 3.20 or higher), a cross-platform build system which is available at cmake.org. Most Linux and some Unix distributions provide CMake as a standard package. If not, please download it, and make sure you get a recent version. Mac OS X users can either download the CMake installer or install it from the command line using homebrew or macports.
-
An implementation of MPI-2 is optional for the single processor version of OpenMD, but is required if you want OpenMD to run in parallel. We like OpenMPI and MPICH. Other implementations of MPI-2 might work, but we haven't tried. You can get Open MPI here: open-mpi.org and MPICH here: mpich.org
-
Other optional libraries that unlock some features of OpenMD:
- Open Babel (version 3.1.1 or newer): openbabel.org
- Qhull (version 2020.2 or newer): www.qhull.org
- FFTW (version 3.3.10 or newer): www.fftw.org
- Doxygen (version 1.12.0 or newer): www.doxygen.org
-
Some of the utility scripts depend on Python (v3 required), NumPy, and SciPy. These are common installations on most flavors of Unix and Mac OS X.
- Get, build, and test the required pieces above.
- mkdir build
- cd build
- cmake ..
- make
- umask 0022; sudo make install
That's it. For more information on building and configuring OpenMD, check out our INSTALL.md instructions.
Please read CONTRIBUTING.md for details on how you can become a contributor and the process for submitting pull requests to us.
Copyright (c) 2004-2024, OpenMD. All rights reserved.
Licensed under the BSD 3-Clause License.