diff options
Diffstat (limited to '3648/CH6/EX6.7')
-rw-r--r-- | 3648/CH6/EX6.7/Ex6_7.sce | 9 | ||||
-rw-r--r-- | 3648/CH6/EX6.7/Ex6_7.txt | 1 |
2 files changed, 10 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)
diff --git a/3648/CH6/EX6.7/Ex6_7.txt b/3648/CH6/EX6.7/Ex6_7.txt new file mode 100644 index 000000000..ef24f6dcc --- /dev/null +++ b/3648/CH6/EX6.7/Ex6_7.txt @@ -0,0 +1 @@ +The Thrust is F=65000000 Newtons
\ No newline at end of file |