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 /2021/CH11/EX11.2 | |
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 '2021/CH11/EX11.2')
-rwxr-xr-x | 2021/CH11/EX11.2/EX11_2.pdf | bin | 0 -> 16790 bytes | |||
-rwxr-xr-x | 2021/CH11/EX11.2/EX11_2.sce | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/2021/CH11/EX11.2/EX11_2.pdf b/2021/CH11/EX11.2/EX11_2.pdf Binary files differnew file mode 100755 index 000000000..d8fc8069a --- /dev/null +++ b/2021/CH11/EX11.2/EX11_2.pdf diff --git a/2021/CH11/EX11.2/EX11_2.sce b/2021/CH11/EX11.2/EX11_2.sce new file mode 100755 index 000000000..7cea72a88 --- /dev/null +++ b/2021/CH11/EX11.2/EX11_2.sce @@ -0,0 +1,15 @@ +//Finding of Pressure Drop
+//Given
+mu=0.15;
+spgr=.9;
+rho=900;
+D=.055;
+L=325;
+R=D/2;
+q=.0037;
+//To Find
+P=(128*mu*q*L)/(%pi*D^4);
+p1=P/100;
+x=(p1/L)*R;
+x1=x*10^4;
+disp("Pressure Drop ="+string(x1)+" N/m^2")
|