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 /536/CH11/EX11.1/Example_11_1.sce | |
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 '536/CH11/EX11.1/Example_11_1.sce')
-rwxr-xr-x | 536/CH11/EX11.1/Example_11_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/536/CH11/EX11.1/Example_11_1.sce b/536/CH11/EX11.1/Example_11_1.sce new file mode 100755 index 000000000..2d85ab4c7 --- /dev/null +++ b/536/CH11/EX11.1/Example_11_1.sce @@ -0,0 +1,17 @@ +clc;
+clear;
+
+printf("\n Example 11.1\n");
+
+u_s=1; //Velocity of water
+w=0.6; //Width of plane surface
+l=1; //Length of plane surface
+A=0.6*1; //Area of the surface
+//Taking
+Meu=1e-3;//Viscosity of water
+rho=1000; //Density of water
+//Mean value of S/pw2 from equation 11.41
+//X=R/(rho*u^2)
+X=0.00214;
+F=X*rho*u_s^2*A;
+printf("\n Total drag force = %.2f N",F);
\ No newline at end of file |