summaryrefslogtreecommitdiff
path: root/51/CH8/EX8.5/8_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '51/CH8/EX8.5/8_5.sce')
-rwxr-xr-x51/CH8/EX8.5/8_5.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/51/CH8/EX8.5/8_5.sce b/51/CH8/EX8.5/8_5.sce
new file mode 100755
index 000000000..202dce95e
--- /dev/null
+++ b/51/CH8/EX8.5/8_5.sce
@@ -0,0 +1,18 @@
+clc;
+clear;
+D=4;//mm
+V=50;//m/sec
+l=0.1;//m
+d=1.23;//kg/(m^3)
+vis=1.79/100000;//N*sec/(m^2)
+Re=d*V*(D/1000)/vis;
+//if flow is laminar
+f=64/Re;
+pdiff=f*l*0.5*d*(V^2)/((D/1000)*1000);//kPa
+disp("kPa",pdiff,"The pressure drop if the flow is laminar=")
+//if flow is turbulent
+//roughness=0.0015; hence f=0.028
+f1=0.028;
+pdiff1=f1*l*0.5*d*(V^2)/((D/1000)*1000);//kPa
+disp("kPa",pdiff1,"The pressure drop if flow is turbulent=")
+