API:FlightGlobals

From Kerbal Space Program Wiki
Revision as of 13:28, 21 April 2013 by XZise (talk | contribs) (*update to templates;)
Jump to: navigation, search

The FlightGlobals class contains a number of useful static functions and fields.

Useful members

This is not a complete listing of the class's members. It includes only the members that someone has figured out how to use and written an explanation for. If you figure out what the other members that aren't listed here do, you should add them to the list!

A number of FlightGlobals functions have two versions: one that takes a CelestialBody as an argument and one that doesn't. Presumably the second version uses the mainBody of the active vessel. Below are listed only the versions that take an explicit CelestialBody argument.

Signature Description
float GetAltitudeAtPos(Vector3 position, CelestialBody body) Gives the altitude of a given world position above body's sea level.
double getAtmDensity(double pressure) Calculates an atmospheric density in some arbitrary units. Presumably it's meant to take as input the output of FlightGlobals.getStaticPressure. The following code seems to work quite well to compute the drag force on a part and may in fact be the game's drag formula:

double rho = FlightGlobals.DragMultiplier * FlightGlobals.getAtmDensity(FlightGlobals.getStaticPressure(position, body));

Vector3d airVel = vessel.orbit.GetVel() - body.getRFrmVel(position); //the velocity of the vessel relative to the air

Vector3d dragForce = -0.5 * rho * part.mass * part.maximum_drag * airVel.magnitude * airVel;

Vector3d getGeeForceAtPosition(Vector3d pos) The gravitational acceleration (not force) at the position pos. Does this compute which SOI pos is in or does it assume that pos is in the SOI of the active vessel's mainBody?
double getStaticPressure(Vector3d position, CelestialBody body) The air pressure of body's atmosphere at position, in some arbitrary units.
Vessel ActiveVessel { get; } The vessel currently being controlled by the player.
CelestialBody Bodies { get; } An array containing all the celestial bodies in the universe.
float DragMultiplier { get; } A proportionality constant that scales the strength of aerodynamic drag forces.
List Vessels { get; } A list of all the Vessels in the universe.