Difference between revisions of "Tutorial: Basic Orbiting (Math)"

From Kerbal Space Program Wiki
Jump to: navigation, search
Line 1: Line 1:
{{Stub|Needs a simplified version}}
+
{{Stub||Needs a simplified version -- [[User:N3X15|N3X15]] ([[User talk:N3X15|talk]]) 19:50, 8 July 2012 (UTC)}}
  
 
==Target Speed for Stable [[Orbit]]==
 
==Target Speed for Stable [[Orbit]]==

Revision as of 19:50, 8 July 2012

This article is a stub. You can help KSP Wiki by expanding it.

Target Speed for Stable Orbit

In the basic orbiting tutorial, you were introduced to the concept of orbiting, and basic orbit stabilization, as well as an orbital table to help you along. Now, what if you want an orbit that isn't on that table? What if you want to have an orbit with a specific period? That's where these formulae come in.

The relation between orbital speed and acceleration is given by the formula:

a = v2 / r,

where a is the acceleration due to gravity, v is the horizontal speed, and r is the radius of orbit.

Of course, gravity varies depending on your distance from the planet, so we also need the following formula to determine a based on your altitude:

a = g * (R / (R + h))2,

where g is the acceleration due to gravity at sea level (9.807 m/s2), R is the radius of Kerbin (600 km), and h is the altitude of your orbit.

Note: From here, we will substitute R + h for r, since the radius of your orbit is equal to the radius of Kerbin plus your altitude.

Substituting for a and simplifying, we get:

g * (R / (R + h))2 = v2 / (R + h)

g * R2 / (R + h) = v2

v = R * sqrt(g / (R + h))

Finally, substituting known values for g and R,

v = 600 000 m * sqrt(9.807 m/s2 / (600 000 m + h)) ne. From the basic mechanics formula: d = v * t We know v from the above, and d is simply the circumference of a circle with a radius equal to your orbital altitude plus the radius of Kerbin: t = 2π * (600 000 m + h) / v


From these two formulas, you can easily find orbital speed, as well as orbital period, if you know your way around a calculator.