diff options
Diffstat (limited to '3814/CH2/EX2.7/Ex2_7.sce')
-rw-r--r-- | 3814/CH2/EX2.7/Ex2_7.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3814/CH2/EX2.7/Ex2_7.sce b/3814/CH2/EX2.7/Ex2_7.sce new file mode 100644 index 000000000..08b5449f4 --- /dev/null +++ b/3814/CH2/EX2.7/Ex2_7.sce @@ -0,0 +1,8 @@ +// to calculate air velocity assuming density of air 1.2kg/m3
+clc;
+gammma=9800 // constant gammma
+h=4e-3 // height of water in mm
+pair=1.2 // air velocity of air in kg/m3
+deltap=h*gammma
+V=sqrt((2*deltap)/pair)
+mprintf('V =%f m/s',V)
|