https://github.com/bradenn/monoverse
A deterministic universe simulation playground written in Go. Experiment with gravity, electromagnetic forces, and cellular automaton.
https://github.com/bradenn/monoverse
cellular-automaton em gravity simulator
Last synced: 5 months ago
JSON representation
A deterministic universe simulation playground written in Go. Experiment with gravity, electromagnetic forces, and cellular automaton.
- Host: GitHub
- URL: https://github.com/bradenn/monoverse
- Owner: bradenn
- Created: 2021-04-09T01:01:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T20:07:47.000Z (over 3 years ago)
- Last Synced: 2024-06-21T16:56:58.270Z (almost 2 years ago)
- Topics: cellular-automaton, em, gravity, simulator
- Language: Go
- Homepage:
- Size: 3.49 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monoverse
Simulating the universe, one headache at a time.
While the project started off and technically still functions as a physics simulator, its more of a windowed graphics engine since last it was edited in 2021.
This project was retired and replaced by bradenn/nbodies.
### Hexagonal Cellular Automata

### Barnes Hut N-Bodies approximation

### Generic Instancing

### Unbounded Hexagonal Cellular Automata

### Performance Monitoring

## Notes for Physics Simulations
### Matter Construction
```text
Quark Construction:
Baryon Construction:
Proton:
Quarks:
Up1 <-> Gluon <-> Up2
Up2 <-> Gluon <-> Down1
Down1 <-> Gluon <-> Up1
Neutron:
Quarks:
Up1 <-> Gluon <-> Down1
Down1 <-> Gluon <-> Down2
Down2 <-> Gluon <-> Up1
```