diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3720/CH11/EX11.4/Ex11_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3720/CH11/EX11.4/Ex11_4.sce')
-rw-r--r-- | 3720/CH11/EX11.4/Ex11_4.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3720/CH11/EX11.4/Ex11_4.sce b/3720/CH11/EX11.4/Ex11_4.sce new file mode 100644 index 000000000..38be355b8 --- /dev/null +++ b/3720/CH11/EX11.4/Ex11_4.sce @@ -0,0 +1,18 @@ +//Example 11_4
+clc;clear;funcprot(0);
+//Properties
+rho=999.1;//kg/m^3
+mu=1.138*10^-3;// kg/m.s
+//Given values
+D=0.022;// m
+V=4;// m/s
+L=30;// m
+A=L*D;// m^2
+
+//Calculation
+Re=(rho*V*D)/mu;
+//The drag coefficient corresponding to the value Re from Fig. 11–34
+C_d=1;
+F_d=C_d*A*rho*(V^2/2);
+printf('The drag force acting on the pipe,F_d =%0.0f N\n',F_d);
+disp('The drag force acting on the pipe,F_d ~=5300 N');
|