diff options
Diffstat (limited to '629/CH6/EX6.11/example6_11.sce')
-rw-r--r-- | 629/CH6/EX6.11/example6_11.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/629/CH6/EX6.11/example6_11.sce b/629/CH6/EX6.11/example6_11.sce new file mode 100644 index 000000000..21df5043f --- /dev/null +++ b/629/CH6/EX6.11/example6_11.sce @@ -0,0 +1,10 @@ +clear
+clc
+//Example 6.11 PROPELLANT MASS RATIO FOR ACHIEVING ORBITAL VELOCITY
+Vbo=7600; //orbital velocity[m/s]
+Isp=3200; //specific impulse[m/s]
+//Vbo=Isp*log(mi/mf)
+mif=exp(Vbo/Isp) //mif=mi/mf
+//mp=mi-mf
+mpi=1-1/mif //mpi=mp/mi
+printf("\n The ratio of propellant mass to initial mass to achieve orbital velocity = %.3f.\n",mpi)
\ No newline at end of file |