diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /650/CH8/EX8.14 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '650/CH8/EX8.14')
-rwxr-xr-x | 650/CH8/EX8.14/14.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/650/CH8/EX8.14/14.sce b/650/CH8/EX8.14/14.sce new file mode 100755 index 000000000..599beeb26 --- /dev/null +++ b/650/CH8/EX8.14/14.sce @@ -0,0 +1,20 @@ +clc
+
+d0=0.15; // m
+d1=0.1; // m
+Q=50/3600; // m^3/s
+f=0.0052;
+Rho=972;
+
+a=%pi/4*((d0)^2-(d1)^2);
+
+P=%pi*((d0)+(d1));
+
+d_eq=4*a/P;
+
+v=Q/a;
+
+del_p_f=2*f*Rho*v^2/d_eq;
+disp("the pressure drop due to friction per metre length of tube is found to be ")
+disp(del_p_f)
+disp("Nm^2/m")
\ No newline at end of file |