A JSON based lattice file format
Project description
LatticeJSON
LatticeJSON is a JSON based lattice file format. JSON is able to describe complex data structures, has a human readable syntax and is available in all common programming language. It is therefore an appropriate choice to characterize the magnetic lattice of a particle accelerator.
Specification
This repository contains the Specification of LatticeJSON in form of a JSON Schema.
Example
A LatticeJSON file for a FODO lattice:
{ "version": "2.2", "title": "FODO Lattice", "info": "This is the simplest possible strong focusing lattice.", "root": "ring", "elements": { "d1": ["Drift", {"length": 0.55}], "q1": ["Quadrupole", {"length": 0.2, "k1": 1.2}], "q2": ["Quadrupole", {"length": 0.4, "k1": -1.2}], "b1": ["Dipole", {"length": 1.5, "angle": 0.392701, "e1": 0.1963505, "e2": 0.1963505}] }, "lattices": { "cell": ["q1", "d1", "b1", "d1", "q2", "d1", "b1", "d1", "q1"], "ring": ["cell", "cell", "cell", "cell", "cell", "cell", "cell", "cell"] } }
LatticeJSON CLI
This repository also contains a Python based command-line tool which is able validate and convert LatticeJSON files into other common lattice file formats and vice versa.
You can install and update it using pip or pipenv:
pip install -U latticejson
Validate a LatticeJSON file:
latticejson validate /path/to/lattice.json
Convert an elegant lattice file to the LatticeJSON format:
latticejson convert --to json /path/to/lattice.lte
Autoformat one or more LatticeJSON files:
latticejson autoformat /path/to/lattice.json ...
To activate Bash completion add
eval "$(_LATTICEJSON_COMPLETE=source latticejson)"
to your .bashrc
. Or, create an activation script with:
_LATTICEJSON_COMPLETE=source latticejson > latticejson-complete.sh
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size LatticeJSON-0.1.5-py3-none-any.whl (28.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size LatticeJSON-0.1.5.tar.gz (10.0 kB) | File type Source | Python version None | Upload date | Hashes View |
Hashes for LatticeJSON-0.1.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ec8616321781c16708c96cdad2951e80c7d855090edf0935ac2ccdab084281b |
|
MD5 | ef4bebee8590f1e090ba5b855bb1092b |
|
BLAKE2-256 | b3b584706db63e68031549c3e6f7f899ed85cd6b29ab0bbe975df20f8e44d147 |