Template Files
Documentation for writing template files.
Writing Template Files
Complete Template File
{
"name": "my-system", // name of the system
"author": "My Name", // author of the system
"limit": "365d", // time the simulation
"delta": "10min", // change in time (calculation frequency)
"t": 0, // starting time (0 in template files)
"radius_multiplier": 1,
"bodies": [ // list of bodies
{
"name": "name", // name of the body
"mass": 1, // mass of the body in kg
"radius": "1km", // radius of the body
"color": "red", // color of the body
"r": [0, 0, 0], // starting position
"v": [0, 0, 0] // starting velocity
}
]
}Writing Meta Files
Example Meta File (from solar-system.meta.ax in v1.11)
solar-system.meta.ax in v1.11)Template File Conventions and Methodology
Last updated