Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carstenbauer/montecarloobservable.jl
Observable for Markov chain Monte Carlo simulations
https://github.com/carstenbauer/montecarloobservable.jl
monte-carlo-simulation numerical-simulations physics-simulation quantum-monte-carlo
Last synced: 23 days ago
JSON representation
Observable for Markov chain Monte Carlo simulations
- Host: GitHub
- URL: https://github.com/carstenbauer/montecarloobservable.jl
- Owner: carstenbauer
- License: other
- Created: 2017-12-18T19:31:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-05T21:01:16.000Z (over 3 years ago)
- Last Synced: 2024-10-10T05:35:24.800Z (26 days ago)
- Topics: monte-carlo-simulation, numerical-simulations, physics-simulation, quantum-monte-carlo
- Language: Julia
- Homepage: https://crstnbr.github.io/MonteCarloObservable.jl/latest/
- Size: 3.93 MB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![logo](https://github.com/crstnbr/MonteCarloObservable.jl/blob/master/docs/src/assets/logo_with_text.png)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://crstnbr.github.io/MonteCarloObservable.jl/latest)
[![github-ci](https://github.com/crstnbr/MonteCarloObservable.jl/workflows/Run%20tests/badge.svg)](https://github.com/crstnbr/MonteCarloObservable.jl/actions?query=workflow%3A%22Run+tests%22)
[![codecov][codecov-img]](http://codecov.io/github/crstnbr/MonteCarloObservable.jl?branch=master)
[![license: MIT](https://img.shields.io/badge/License-MIT-red.svg)](https://opensource.org/licenses/MIT)[travis-img]: https://img.shields.io/travis/crstnbr/MonteCarloObservable.jl/master.svg?label=Linux
[appveyor-img]: https://img.shields.io/appveyor/ci/crstnbr/montecarloobservable-jl/master.svg?label=Windows
[codecov-img]: https://img.shields.io/codecov/c/github/crstnbr/MonteCarloObservable.jl/master.svg?label=codecovAn implementation of an observable for Markov Chain Monte Carlo simulations (like the currently out-dated [MonteCarlo.jl](https://github.com/crstnbr/MonteCarlo.jl)).
During a [Markov chain Monte Carlo simulation](https://en.wikipedia.org/wiki/Markov_chain_Monte_Carlo) a Markov walker (after thermalization) walks through configuration space according to the equilibrium distribution. Typically, one measures observables along the Markov path, records the results, and in the end averages the measurements. `MonteCarloObservable.jl` provides all the necessary tools for conveniently conducting these types of measurements, including estimation of one-sigma error bars through binning or jackknife analysis.
### Installation
In the REPL, switch to pkg mode (by pressing `]`) and enter
```julia
add MonteCarloObservable
```Alternatively, you can install the package per
```julia
using Pkg
Pkg.add("MonteCarloObservable")
```### Documentation
Look at the [documentation](https://crstnbr.github.io/MonteCarloObservable.jl/latest) for more information.