Skip to content
Permalink
d5a738a582
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (23 sloc) 778 Bytes
package jat.application.DE405Propagator;
import jat.core.ephemeris.DE405Body.body;
import jat.core.ephemeris.DE405Frame.frame;
import jat.core.spacetime.TimeAPL;
public class DE405PropagatorParameters {
public String Name;
public TimeAPL simulationDate;
int numberOfBodies = body.values().length;
boolean[] showPlanet = new boolean[numberOfBodies];
public boolean[] bodyGravOnOff = new boolean[numberOfBodies];
public frame Frame;
public double[] y0=new double[6] ; // initial position and velocity
public double tf;
public DE405PropagatorParameters() {
for (int i = 0; i < numberOfBodies; i++) {
this.showPlanet[i] = true;
bodyGravOnOff[i] = false;
}
}
public DE405PropagatorParameters(boolean[] planetOnOff) {
this.showPlanet = planetOnOff;
}
}