diff options
Diffstat (limited to '1268/CH2/EX2.5/2_5.sce')
-rw-r--r-- | 1268/CH2/EX2.5/2_5.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1268/CH2/EX2.5/2_5.sce b/1268/CH2/EX2.5/2_5.sce new file mode 100644 index 000000000..181dd693e --- /dev/null +++ b/1268/CH2/EX2.5/2_5.sce @@ -0,0 +1,9 @@ +clc;
+disp("Example 2.5")
+// MAximum velocity is density*g*m^3/2*mew
+// avergare velocity is density*g*m^3/3*mew
+// hence the ratio is 1.5
+
+ratio=3/2
+disp("Mximum velocity/average velocity is ")
+disp(ratio)
|