Skip to main content

License CI Coverage

Python version PyPI version PyPI downloads

MoltenSaltCalc

A Python package for running and analyzing molecular dynamics (MD) simulations of molten salts using machine-learned interatomic potentials (MLIPs) within the Atomic Simulation Environment (ASE).

Authors

Daniel Isler, Lei Zhang, Max van Brenk, Süleyman Er

Features

  • System Construction: Construct molten salt systems with customizable compositions in ASE
  • MLIP Integration: Support for FAIRCHEM, MACE, GRACE, ... MLIPs (other MLIPs can also be added by the user)
  • Molecular Dynamics: Run NPT (constant pressure-temperature) and NVT (constant volume-temperature) simulations
  • Property Analysis: Compute thermodynamic and transport properties such as density, diffusion coefficients, viscosity, and heat capacity

Installation

Create a virtual environment and install the package with the desired MLIP backend. Each MLIP backend has separate and potentially conflicting dependencies. Therefore, only one backend should be installed per environment.

Tested on Python 3.11, 3.12, 3.13 and 3.14. All uMLIPs work on Python 3.12, but some of them do not work on the lower / higher versions. E.g. the fairchem (uma), mace and upet uMLIPs do not work with Python 3.10. On python 3.14, so far only chgnet, mattersim and upet work.

By default, the installation is shipped along with the torch-dftd3 calculator for long-range interactions. If you do not wish to install/use the dispersion calculator at all, install with -nodisp instead, e.g. pip install moltensaltcalc[mace-nodisp]. If you want to use the (slower but more accurate) dftd4 calculator, install the dftd4 variant, e.g. pip install moltensaltcalc[mace-nodisp,dftd4].

GRACE

python3 -m venv .venv        # Or any other name
source .venv/bin/activate   # Linux/macOS
# or
.venv\Scripts\activate      # Windows

pip install moltensaltcalc[mace]

FAIRCHEM

pip install moltensaltcalc[fairchem]

MACE

pip install moltensaltcalc[mace]

MatterSim

pip install moltensaltcalc[mattersim]

7net

pip install moltensaltcalc[7net]

Nequip

pip install moltensaltcalc[nequip]

Nequix

pip install moltensaltcalc[nequix]

UPET

pip install moltensaltcalc[upet]

CHGNet

pip install moltensaltcalc[chgnet]

equiformer_v3

pip install moltensaltcalc[equiformer_v3]

ORB-V3 (orbitals)

pip install moltensaltcalc[orbitals]

TACE

pip install moltensaltcalc[tace]

EquFlash

pip install moltensaltcalc[equflash]

Development

If you want to contribute or make modifications to the code, lfs (to include the large uv.lock file) clone the repo and install in edit mode. For further details, please check our contributing guidelines.

git lfs clone https://github.com/leiapple/moltensaltcalc.git
cd moltensaltcalc
python3 -m venv .venv        # Or any other name
source .venv/bin/activate   # Linux/macOS
# or
.venv\Scripts\activate      # Windows
pip install -e .[dev,mace]  # Installs the selected MLIP backend and all development dependencies (pytest, etc.) in editable mode

To upload a changed lockfile to GitHub, run

git lfs push origin --all

Usage

Quick start

pip install moltensaltcalc[grace]
import numpy as np

from moltensaltcalc import MoltenSaltSimulator, MoltenSaltAnalyzer

np.random.seed(42)  # Ensure reproducibility (initial random placements)

sim = MoltenSaltSimulator(
    model_name="mace",  # Use the MACE model
    model_parameters={
        "model_size": "small",  # Use the MACE-MP-0a small model
        "model_task": "Default"
    },
    dispersion=None  # Disable dispersion
)
atoms = sim.build_system(
    salt_anion=["F", "Cl"],
    salt_cation=["Na"],
    n_anions=[10, 5],  # 10 F atoms and 5 Cl atoms
    n_cations=[15],  # 15 Na atoms
    density_guess=2.0,  # g/cm³
)
sim.run_npt_simulation(
    atoms,
    T=1100,  # K
    steps=1000,  # MD steps
    timestep_fs=1.0,  # fs
    traj_file="npt_simulation.traj",  # Trajectory file
)

analyzer = MoltenSaltAnalyzer(
    traj_files_npt=["npt_simulation.traj"],  # Trajectory file(s)
    temperatures_npt=[1100],  # K
)
density = analyzer.compute_eq_density(T=1100)  # 1.68 g/cm³
C = analyzer.compute_heat_capacity(T=1100, eq_fraction=0.2)  # 0.07 J/g/K

Demo

Run the example notebooks in the demo/ directory to explore:

  • system setup
  • running MD simulations
  • post-processing and analysis

Workflow

The workflow of the MoltenSaltCalc aims to provide an optimized environment for molecular dynamics (MD) simulations of molten salts. A typical simulation starts by loading the MLIP backend, done in a lazy manner so the package could also be used without it (e.g. only for analysis or system setup). Next, the system is built starting out from the rocksalt structure, which is different from the usually applied random placements (which can still be used by setting the parameter lattice in build_system to "random") in order to ensure the absence of clusters of ions with the same charge which typically lead to an initial volume expansion thus requiring a longer volume equilibration simulation. Since the rocksalt contains two atoms per unit cell, but we want to allow an arbitrary number of anions and cations, some random positions are removed from the larger lattice to match the desired composition. The volume of the resulting system is adjusted to match the desired density guess (input variable density_guess in g/cm3).

Before starting the MD simulation, the velocities are initialized with a Maxwell-Boltzmann distribution according to the desired temperature, while keeping the center of mass and the overall rotation fixed to ensure the temperature is not under-shot because the whole system is moving. Starting out from this, first an NPT (constant particles, pressure, temperature) simulation is run to equilibrate the system volume and obtain the density and thermal expansion of the molten salt (MoltenSaltAnalyzer). Then an NVT (constant particles, volume, temperature) simulation is run to obtain more properties such as diffusion, viscosity or heat capacity of the molten salt (MoltenSaltAnalyzer). The workflow is illustrated below:

Workflow

Project Structure

moltensaltcalc/
├── .github/workflows/ci.yml# CI workflow
├── badges/coverage.svg     # Coverage badge
├── demo/
│   ├── simulator.ipynb     # Demo notebook for the simulator
│   ├── analyzer.ipynb      # Demo notebook for the analyzer
|   └── demo_simulation_results/ # Example trajectory used by the demo
├── docs/...                # Documentation
├── src/moltensaltcalc/     # Source code
│   ├── __init__.py         # Package exports and available models
│   ├── simulator.py        # MoltenSaltSimulator class
│   ├── analyzer.py         # MoltenSaltAnalyzer class
│   ├── model_discovery.py  # Discovery of available MLIPs
│   ├── model_errors.py     # Error formatting
│   ├── registry.py         # MLIP model registration
|   └── models/             # MLIP model implementations
|       ├── __init__.py
|       ├── 7net.py
|       ├── alphanet.py
|       ├── chgnet.py
|       ├── deepmd.py
|       ├── eqnorm.py
|       ├── equflash.py
|       ├── equiformer_v3.py
|       ├── fairchem.py
|       ├── grace.py
|       ├── hienet.py
|       ├── mace.py
|       ├── matgl.py
|       ├── matris.py
|       ├── mattersim.py
|       ├── nequip.py
|       ├── nequix.py
|       ├── orbitals.py
|       ├── tace.py
|       ├── upet.py
|       └── vasp.py
├── tests/                  # PyTests
│   ├── __init__.py
│   ├── test_simulator.py   # Tests for the simulator using the GRACE uMLIP
│   ├── test_analyzer.py    # Tests for the analyzer using the stored trajectories
|   ├── test_uMLIPs.py      # Tests for the different uMLIP backends
│   ├── test_analyzer_trajectories/  # Example trajectories used by the tests
|   └── test_uMLIP_precompiled/  # Precompiled models used by the tests
├── .gitattributes
├── .gitignore              # Gitignore file: Python template + some custom rules at the end
├── .readthedocs.yaml       # ReadTheDocs configuration
├── .pre-commit-config.yaml # Pre-commit configuration
├── CITATION.cff            # Citation file
├── CONTRIBUTING.md         # Contributing guidelines
├── LICENSE                 # License file
├── mkdocs.yml              # MkDocs configuration
├── noxfile.py              # Nox configuration for uMLIP testing in different environments
├── pyproject.toml          # Build configuration
├── README.md               # This file
└── uv.lock                 # Uv lock file (stored in git lfs, get with `git lfs clone`)

License

This project is licensed under the MIT License, see the LICENSE file for details.

Support

For questions, bug reports, or feature requests, please open an issue on GitHub.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

moltensaltcalc-0.1.5.tar.gz (35.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

moltensaltcalc-0.1.5-py3-none-any.whl (47.0 kB view details)

Uploaded Python 3

File details

Details for the file moltensaltcalc-0.1.5.tar.gz.

File metadata

  • Download URL: moltensaltcalc-0.1.5.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for moltensaltcalc-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0378d2b03af6f7afaa16a065a8198949dcfe40ef97f0d5e2cbb7877514576450
MD5 1cbfa270c75165b8e02e5d76ce87cb16
BLAKE2b-256 69c22ec484a900b46386a3a08e8271cfab54c910f1f2687fb49e27ef27dd60f9

See more details on using hashes here.

File details

Details for the file moltensaltcalc-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: moltensaltcalc-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 47.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for moltensaltcalc-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 542da772238fbe826f4ee278eb5849de353c7b562abb76cd8b824686e77a92d3
MD5 88c27a025cc3f9ed88ae2bce35e73f31
BLAKE2b-256 f791fc5e535822a12cd56c9b2b1b0c6e5f8a3746b75a56c84bb73b046da00093

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.5 This release

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page