https://github.com/singularitti/simpleising.jl
This repo implements the Metropolis–Hastings algorithm (MCMC method) and the Swendsen–Wang cluster algorithm for the Ising model
https://github.com/singularitti/simpleising.jl
ising-model ising-model-2d julia numerical-methods scientific-computing solid-state-physics
Last synced: about 2 months ago
JSON representation
This repo implements the Metropolis–Hastings algorithm (MCMC method) and the Swendsen–Wang cluster algorithm for the Ising model
- Host: GitHub
- URL: https://github.com/singularitti/simpleising.jl
- Owner: singularitti
- License: mit
- Created: 2022-11-14T02:48:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T21:23:21.000Z (7 months ago)
- Last Synced: 2025-04-06T10:42:15.371Z (2 months ago)
- Topics: ising-model, ising-model-2d, julia, numerical-methods, scientific-computing, solid-state-physics
- Language: TeX
- Homepage: https://singularitti.github.io/SimpleIsing.jl/
- Size: 2.73 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleIsing
| **Documentation** | [](https://singularitti.github.io/SimpleIsing.jl/stable/) [](https://singularitti.github.io/SimpleIsing.jl/dev/) |
| :---------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Build Status** | [](https://github.com/singularitti/SimpleIsing.jl/actions/workflows/CI.yml?query=branch%3Amain) [](https://ci.appveyor.com/project/singularitti/SimpleIsing-jl)[](https://cirrus-ci.com/github/singularitti/SimpleIsing.jl) |
| **Coverage** | [](https://github.com/singularitti/SimpleIsing.jl/commits/main) [](https://codecov.io/gh/singularitti/SimpleIsing.jl) |
| **Others** | [](https://github.com/invenia/BlueStyle) [](https://github.com/singularitti/SimpleIsing.jl/blob/main/LICENSE) |The code, which is [hosted on GitHub](https://github.com/singularitti/SimpleIsing.jl), is tested
using various continuous integration services for its validity.This repository is created and maintained by
[@singularitti](https://github.com/singularitti), and contributions are highly welcome.## Package features
## Installation
The package can be installed with the Julia package manager.
From [the Julia REPL](https://docs.julialang.org/en/v1/stdlib/REPL/), type `]` to enter
the [Pkg mode](https://docs.julialang.org/en/v1/stdlib/REPL/#Pkg-mode) and run:```julia-repl
pkg> add SimpleIsing
```Or, equivalently, via [`Pkg.jl`](https://pkgdocs.julialang.org/v1/):
```julia
julia> import Pkg; Pkg.add("SimpleIsing")
```## Documentation
- [**STABLE**](https://singularitti.github.io/SimpleIsing.jl/stable/) — **documentation of the most recently tagged version.**
- [**DEV**](https://singularitti.github.io/SimpleIsing.jl/dev/) — _documentation of the in-development version._## Project status
The package is developed for and tested against Julia `v1.6` and above on Linux, macOS, and
Windows.## Questions and contributions
You can post usage questions on
[our discussion page](https://github.com/singularitti/SimpleIsing.jl/discussions).We welcome contributions, feature requests, and suggestions. If you encounter any problems,
please open an [issue](https://github.com/singularitti/SimpleIsing.jl/issues).
The [Contributing](@ref) page has
a few guidelines that should be followed when opening pull requests and contributing code.