Iskierka

Shortening

Nov 2nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. massVel = shipMass * exhaustVel.
  2. thrustVel = shipThrust * exhaustVel.
  3. logThrustTimeMassVel = LN(ABS(shipThrust * suicideBurnDuration - massVel)).
  4.  
  5. shipThrust * exhaustVel * (shipMass * exhaustVel * LN(ABS(shipThrust * suicideBurnDuration - shipMass * exhaustVel)) / shipThrust^2 + suicideBurnDuration / shipThrust) - suicideBurnDuration * exhaustVel * LN(ABS(shipThrust * suicideBurnDuration - shipMass * exhaustVel)) - suicideBurnDuration^2 * gAcc / 2 + suicideBurnDuration * exhaustVel * LN(shipMass * exhaustVel) - shipThrust * exhaustVel^2 * shipMass * LN(shipMass * exhaustVel) / shipThrust^2
  6.  
  7. exhaustVel * (massVel * logThrustTimeMassVel / shipThrust + suicideBurnDuration) - suicideBurnDuration * exhaustVel * logThrustTimeMassVel - suicideBurnDuration^2 * gAcc / 2 + suicideBurnDuration * exhaustVel * LN(massVel) - thrustVel * massVel * LN(massVel) / shipThrust^2.
  8.  
  9. exhaustVel * (massVel * logThrustTimeMassVel / shipThrust + suicideBurnDuration) + suicideBurnDuration * (exhaustVel * (LN(massVel) - logThrustTimeMassVel) - suicideBurnDuration * gAcc / 2) - thrustVel * massVel * LN(massVel) / shipThrust^2.
Advertisement
Add Comment
Please, Sign In to add comment