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
31 lines (27 sloc) 712 Bytes
package jat.application.missionPlan;
import jat.core.ephemeris.DE405Body;
import jat.core.spacetime.TimeAPL;
import jat.coreNOSA.cm.Lambert;
import jat.coreNOSA.math.MatrixVector.data.VectorN;
import jat.jat3D.Sphere3D;
import jat.jat3D.TwoBodyOrbit3D;
import javax.vecmath.Color3f;
public class Flight {
String flightName;
Color3f color;
String satelliteName;
public double mu;
DE405Body.body departure_planet;
String departurePlanetName;
String arrivalPlanetName;
DE405Body.body arrival_planet;
TimeAPL departureDate;
TimeAPL arrivalDate;
double tof;
Lambert lambert;
VectorN r0, v0, rf, vf, dv0, dvf;
public double totaldv;
double t0_on_orbit;
TwoBodyOrbit3D orbit;
Sphere3D satellite;
}