Deadhead: Difference between revisions

From Hazeron Wiki
Jump to navigation Jump to search
(→‎Travel Time: Added the math for fun.)
(→‎Travel Time: Doesn't support less than acceleration 2*distances, but it works!)
Line 10: Line 10:
Commonly it takes about 10 minutes to reach the [[Lightspeed|speed of light]], then 10 minutes per [[parsec]], followed by another ~10 minutes of deceleration.
Commonly it takes about 10 minutes to reach the [[Lightspeed|speed of light]], then 10 minutes per [[parsec]], followed by another ~10 minutes of deceleration.


  c = Lightspeed
  Acceleration = The acceleration speed of the spacecraft's maneuver drive‎.
  a = Acceleration
  Lightspeed = 150'876 m/s
t = Time
  DestinationDistance = Distance to the destination, In meters.
  d = Distance
   
   
  Acceleration to lightspeed in seconds
  Acceleration to lightspeed in seconds.
  t = c / a
  AccelerationTime = Lightspeed / Acceleration
   
   
  Distance traveled during acceleration
  Distance traveled during acceleration.
  d = 0.5 * a * t ^ 2
  AccelerationDistance = 0.5 * Acceleration * AccelerationTime ^ 2
   
   
  <small>Modified from [http://www.dummies.com/how-to/content/how-to-calculate-time-and-distance-from-accelerati.html dummies.com].</small>
Total travel time to destination.
DestinationTime = AccelerationTime * 2 + Lightspeed / (DestinationDistance - (AccelerationDistance * 2))
  <small>See [http://www.dummies.com/how-to/content/how-to-calculate-time-and-distance-from-accelerati.html dummies.com].</small>


[[Category:Science]]
[[Category:Science]]

Revision as of 21:06, 16 September 2015

Deadheading the name given to sublight interstellar travel. The art of flying from one solar system to another at the speed of light under the power of conventional engines.

It is commonly the only way for low TL empires to get to distant stars when the wormhole routes are nonexistent or too dangerous and they haven't discovered warp drive technology yet.

If a spacecraft without a avatar or officer on board tries to leave a system though, they will collide with dark matter.

Travel Time

Deadheading to a solar system can take anywhere from half an hour to several hours, depending on the distance to the destination and acceleration of the spacecraft.

Commonly it takes about 10 minutes to reach the speed of light, then 10 minutes per parsec, followed by another ~10 minutes of deceleration.

Acceleration = The acceleration speed of the spacecraft's maneuver drive‎.
Lightspeed = 150'876 m/s
DestinationDistance = Distance to the destination, In meters.

Acceleration to lightspeed in seconds.
AccelerationTime = Lightspeed / Acceleration

Distance traveled during acceleration.
AccelerationDistance = 0.5 * Acceleration * AccelerationTime ^ 2

Total travel time to destination.
DestinationTime = AccelerationTime * 2 + Lightspeed / (DestinationDistance - (AccelerationDistance * 2))

See dummies.com.