diff options
Diffstat (limited to '3785/CH5/EX5.6')
-rw-r--r-- | 3785/CH5/EX5.6/Ex5_6.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3785/CH5/EX5.6/Ex5_6.sce b/3785/CH5/EX5.6/Ex5_6.sce new file mode 100644 index 000000000..a9342e564 --- /dev/null +++ b/3785/CH5/EX5.6/Ex5_6.sce @@ -0,0 +1,9 @@ +// Example 5_6
+clc;funcprot(0);
+// Given data
+m=2;// The mass flow rate in kg/s
+V_e=200;// The rocket exhaust velocity in m/s
+
+// Calculation
+F=m*V_e;// The restraining force required to hold the rocket in place in N
+printf("\nThe restraining force required to hold the rocket in place,F_c=%0.0f N",F);
|