summaryrefslogtreecommitdiff
path: root/3648/CH6/EX6.7/Ex6_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH6/EX6.7/Ex6_7.sce')
-rw-r--r--3648/CH6/EX6.7/Ex6_7.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH6/EX6.7/Ex6_7.sce b/3648/CH6/EX6.7/Ex6_7.sce
new file mode 100644
index 000000000..132668ccb
--- /dev/null
+++ b/3648/CH6/EX6.7/Ex6_7.sce
@@ -0,0 +1,9 @@
+//Example 6_7
+clc();
+clear;
+//To calculate how large a forward push given to the rocket
+m=1300 //units in Kgs
+vf=50000 //units in meters/sec
+v0=0 //units in meters/sec
+F=((m*vf)-(m*v0)) //units in Newtons
+printf("The Thrust is F=%d Newtons",F)