blob: 05d97530fb8455f80a515443d7d7e8d0df86c2a4 (
plain)
1
2
3
4
5
6
|
clc
//Example 7.9
//Calculate the specific impulse for a rocket
Vy_exh=-3000//m/s in negative y direction
Isp=-Vy_exh/1000//KN.s/Kg
printf("The specific impulse on the rocket is %f KN.s/Kg",Isp);
|