1
0
mirror of https://github.com/christiaangoossens/Planetary-Orbit-Simulator synced 2025-07-02 09:40:48 +00:00

Finished up the v1 simulator

This commit is contained in:
2016-12-17 13:16:10 +01:00
parent 2e732967cd
commit 910e82b07d
3 changed files with 308 additions and 166 deletions

View File

@ -59,7 +59,7 @@ public class Main {
* Object listing
*/
Object[] objects = {sun, jupiter, object1, object2};
Object[] objects = {sun, earth, moon, jupiter, mars, venus};
/**

View File

@ -1,19 +1,37 @@
package com.verictas.pos.simulator;
public class SimulatorConfig {
/**
* (Example) Settings for the EARTH
* Rounds: 1051896 * (amount of years to run)
* Time: 30
*/
/**
* (Example) Settings for SEDNA
* Rounds: 184000000 (approx. 1 million years)
* Time: 172800 (2 days)
*/
/**
* (Example) Settings for 2012 VP113
* Rounds: 184000000 (approx. 1 million years)
* Time: 172800 (2 days)
*/
/**
* Time settings
*/
public static int rounds = 3000000; // Amount of rounds to run the simulator for // 3000000 = 250.000 jaar
public static double time = 2592000; // Time steps in seconds // 259200 = 1 month
public static int rounds = 1051896*500; // Amount of rounds to run the simulator for // 3000000 = 250.000 jaar
public static double time = 30; // Time steps in seconds // 2592000 = 1 month
/**
* Object settings
*/
public static String sunName = "Sun"; // The name of the sun to calculate values TO
public static String[] objectNames = { "Sedna", "2012 VP113" }; // The name of the object(s) your want to calculate the values OF
public static String[] objectNames = { "Earth" }; // The name of the object(s) your want to calculate the values OF
/**
* Output preferences