kim-convergence designed to help in automatic equilibration detection & run length control.
Project description
kim-convergence
Stop guessing how long your simulation should run.
kim-convergence auto-detects equilibration and stops precisely when your data
is statistically reliable.
Why Use kim-convergence?
Manual estimation of simulation length is unreliable and wasteful. Different observables converge at different rates, and visual inspection can't guarantee statistical reliability. This package automates it all using proven methods like MSER-m for equilibration and adaptive confidence intervals for precision.
The Challenge: Estimating Simulation Length
| |
|
|
| |
|
|
Top row: 10 ps simulation | Bottom row: 50 ps simulation
Key observations:
- Different properties (e.g., temperature, pressure, volume) converge at varying speeds.
- Visual checks alone can't ensure statistical reliability. Where running too short biases results and too long wastes resources.
kim-convergencesolves this by detecting equilibration and controlling run length based on your accuracy needs.
Jump to Quick Start or docs for theory and examples.
It is desirable to simulate the minimum amount of time necessary to reach an acceptable amount of uncertainty in the quantity of interest.
The first place you save time is by cutting the warm-up correctly.
How Do You Spot the Warm-Up?
| |
Equilibration = the transient stretch until your sim forgets its starting point.
- Cut too early -> biased averages
- Cut too late -> wasted cycles
kim-convergence runs MSER-m automatically: it scans truncation points and
picks the one that minimizes the batch-means standard error.
Key Features
- Auto equilibration detection – MSER-m + autocorrelation refinement
- Adaptive run length – quits the instant every observable hits your accuracy target
- Proven CI engines – MSER-m, Heidelberger-Welch, N-SKART, uncorrelated samples
- Time-series toolkit – statistical inefficiency, autocorrelation, effective sample size, uncorrelated subsampling
- Zero-friction integration – callbacks for LAMMPS & OpenMM using one-function API for custom codes
- Multi-observable – per-variable accuracy. The run ends only when all converge
⚙️ Installation
Install with one command:
pip install kim-convergence
# or:
conda install -c conda-forge kim-convergence
🚀 Quick Start
import numpy as np
import kim_convergence as cr
def trajectory(nstep):
# Fake temperature data from a simulation (in K)
return np.random.normal(300, 5, nstep) # Mean 300 K, std 5 K
if __name__ == "__main__":
result = cr.run_length_control(
get_trajectory=trajectory,
relative_accuracy=0.01, # Target ±1 % precision on the mean
maximum_run_length=200_000,
fp="return",
)
print(result)
That's it—head to the docs for platform notes, developer install, LAMMPS/OpenMM integration, multi-observable examples, etc.
Documentation
For installation instructions, usage examples, theoretical background, best practices, troubleshooting tips, and the full API reference, see the documentation.
Contributing
Bug reports, feature requests, pull requests: GitHub Issues
Guidelines: Contributing Guide
License
LGPL-2.1-or-later — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kim_convergence-0.1.0.tar.gz.
File metadata
- Download URL: kim_convergence-0.1.0.tar.gz
- Upload date:
- Size: 481.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b13b626e323a9b35078ea75dcb1e56840d9d54f9d841390ec1369732e210a0f9
|
|
| MD5 |
20ce98ef8b10ce1db5e18b7d6eb9436c
|
|
| BLAKE2b-256 |
5ce97462d8a422341838e9d151d40fb113f3d1a24e555b3cffebe0bbefbc638e
|
File details
Details for the file kim_convergence-0.1.0-py3-none-any.whl.
File metadata
- Download URL: kim_convergence-0.1.0-py3-none-any.whl
- Upload date:
- Size: 130.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
500afbe1a82698d7a73cadf4b9fb96edea63858f58c85d1f559cabbfab373fa3
|
|
| MD5 |
9d86877dbc11ff069faf103d4689c329
|
|
| BLAKE2b-256 |
453229d79c92662336c8548f451f7ab34ceee412248198c6ffe9bf5141fcdf85
|