summaryrefslogtreecommitdiff
path: root/536/CH11/EX11.1/Example_11_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '536/CH11/EX11.1/Example_11_1.sce')
-rwxr-xr-x536/CH11/EX11.1/Example_11_1.sce17
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