# gmso
**Repository Path**: aqsplo/gmso
## Basic Information
- **Project Name**: gmso
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-08-03
- **Last Updated**: 2025-08-03
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## GMSO: General Molecular Simulation Object

[](https://anaconda.org/conda-forge/gmso)
[](https://github.com/mosdef-hub/gmso/actions/workflows/CI.yaml)
[](undefined)
`GMSO`is a flexible storage of chemical topology for molecular simulation.
With a few lines of `GMSO` code, together with [`mBuild`](https://mbuild.mosdef.org) and [`foyer`](https://foyer.mosdef.org), users can rapidly prototype arbitrary parameterized chemical systems and generate data files for a wide variety of simulation engines.
To learn more, get started, or contribute, check out our [Documentation](https://gmso.mosdef.org).
#### GMSO within the MoSDeF Ecosystem
This is an example using `mBuild` and `Foyer` to build a `GMSO` topology and write out to [`LAMMPS`](https://docs.lammps.org/).
```python
import foyer
import forcefield_utilities as ffutils
from mbuild.lib.molecules import Ethane
from gmso.external.convert_mbuild import from_mbuild
from gmso.parameterization import apply
from gmso.formats.lammpsdata import write_lammpsdata
# Start with a mBuild compound
mb_ethane = Ethane()
oplsaa = ffutils.FoyerFFs().load('oplsaa').to_gmso_ff()
# atomtype the system with foyer, and convert the resulting structure to a topology
gmso_ethane = from_mbuild(mb_ethane)
apply(top=gmso_ethane,
forcefields=oplsaa,
identify_connections=True)
# Write out lammps datafile
write_lammpsdata(gmso_ethane, filename='ethane.lammps', atom_style='full')
```
Introduction
------------
`GMSO` is designed to be a general and flexible representation of chemical topolgies for molecular simulation.
With an emphasis on assuming as little as possible about the chemical system, model, or engine, `GMSO` can enable support for a variety of systems.
`GMSO` is a part of the [MoSDeF (Molecular Simulation and Design Framework)](https://mosdef.org) ecosystem, and is intended to be the backend replacement for the [`foyer` package](https://foyer.mosdef.org).
Libraries in the MoSDeF ecosystem are designed to provide utilities neccessary to streamline
a researcher's simulation workflow. When setting up simulation studies,
we also recommend users to follow the [TRUE](https://www.tandfonline.com/doi/full/10.1080/00268976.2020.1742938)
(Transparent, Reproducible, Usable-by-others, and Extensible) standard, which is a set of common
practices meant to improve the reproducibility of computational simulation research.
Goals and Features
------------------
`GMSO`'s goal is to provide a flexible backend framework to store topological information of a chemical system in a reproducible fashion.
**Topology** in this case is defined as the information needed to initialize a molecular simulation.
Depending on the type of simulation performed, this ranges from:
* particle positions
* particle connectivity
* box information
* forcefield data
- functional forms defined as [`sympy` expressions](https://www.sympy.org)
- parameters with defined units
- partial charges
- tabulated data
- etc.
* Other optional data
- particle mass
- elemental data
- etc.
With these driving goals for `GMSO`, the following features are enabled:
1. __Supporting a variety of models__ in the molecular simulation/computational
chemistry community_:
No assumptions are made about an interaction site
representing an atom or bead, instead these can be atomistic,
united-atom/coarse-grained, polarizable, and other models!
1. __Greater flexibility for exotic potentials__: The [`AtomType`](./gmso/core/atom_type.py) (and [analogue
classes for intramolecular interactions](./gmso/core)) uses [`sympy`](https://www.sympy.org) to store any
potential that can be represented by a mathematical expression.
1. __Adaptable for new engines__: by not being designed for
compatibility with any particular molecular simulation engine or ecosystem,
it becomes more tractable for developers in the community to add glue for
engines that are not currently supported.
1. __Compatibility with existing community tools__: No single molecular simulation
tool will ever be a silver bullet, so ``GMSO`` includes functions to convert
between various file formats and libraries. These can be used in their own right to convert between objects in-memory
and also to support conversion to file formats not natively supported at
any given time. Currently supported conversions include:
* [`ParmEd`](./gmso/external/convert_parmed.py)
* [`OpenMM`](./gmso/external/convert_openmm.py)
* [`mBuild`](./gmso/external/convert_mbuild.py)
* more in the future!
1. __Native support for reading and writing many common file formats__: We natively have support for:
* [`XYZ`](./gmso/formats/xyz.py)
* [`GRO`](./gmso/formats/gro.py)
* [`TOP`](gmso/formats/top.py)
* [`LAMMPSDATA`](gmso/formats/lammpsdata.py)
* indirect support, through other libraries, for many more!
Installation
------------
For full, detailed instructions, refer to the [documentation for installation](https://gmso.mosdef.org/en/latest/installation.html)
### `conda` installation quickstart
`GMSO` is available on `conda` and can be installed as:
```bash
conda install -c conda-forge gmso
```
### Installing from source
Dependencies of GMSO are listed in the files ``environment.yml`` (lightweight environment specification containing minimal dependencies) and ``environment-dev.yml`` (comprehensive environment specification including optional and testing packages for developers).
The ``gmso`` or ``gmso-dev`` conda environments can be created with
```.. code-block:: bash
git clone https://github.com/mosdef-hub/gmso.git
cd gmso
# for gmso conda environment
conda env create -f environment.yml
conda activate gmso
# for gmso-dev
conda env create -f environment-dev.yml
conda activate gmso-dev
# install a non-editable version of gmso
pip install .
```
### Install an editable version from source
Once all dependencies have been installed and the ``conda`` environment has been created, the ``GMSO`` itself can be installed.
``` code-block:: bash
cd gmso
conda activate gmso-dev # or gmso depending on your installation
pip install -e .
```
Documentation
-------------
The full documentation can be found at [gmso.mosdef.org](https://gmso.mosdef.org).