Flisp
- 79
- 8
Great, that looks managable.jartsa said:Here's a little python program, a numerical simulation. A 100 kg rocket annihilates 1 kg of fuel every second of rocket time. Thrust in Newtons happens to be the same number as c in meters per second at that fuel consumption rate.
Code:import math c=3.0*10**9 mass=100.0 rapidity=0.0 while 1: mass=mass-1 force=c acceleration = force/mass rapidity=rapidity+acceleration speed = math.tanh(rapidity/c) print mass, speed
I tried to put that into a spread sheet and get higher speeds than with DrStupids equation. I believe that is correct.
Can I simply t take rapidity - acceleration to decelerate?
It looks as if all mass is transformed into thrust. If I want to work with lower than 1 (100%) efficiency, is it then enough to say acceleration = force/mass * efficiency? I tried that too and get a final speed of 0.62 c with your equation vs 0.566 c with DrStupids at a 100:1 fuel-payload ratio Is that correct?
And how do I convert that proper time and speed into observed time and speed?