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 /557/CH11/EX11.1 | |
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 '557/CH11/EX11.1')
-rwxr-xr-x | 557/CH11/EX11.1/1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/557/CH11/EX11.1/1.sce b/557/CH11/EX11.1/1.sce new file mode 100755 index 000000000..9ed1c4a7f --- /dev/null +++ b/557/CH11/EX11.1/1.sce @@ -0,0 +1,19 @@ +clc; funcprot(0); //Example 11.1
+
+//Initializing the variables
+rho = 860;
+v = 10^-5;
+Us = 3;
+b = 1.25;
+l = 2;
+
+//Calculations
+x = 1; // At x =1
+Rex = Us*x/v;
+ReL = Us*l/v ;
+mu = rho*v;
+T0 = 0.332*mu*Us/x*Rex^0.5;
+Cf = 1.33*ReL^-0.5;
+F = rho*Us^2*l*b*Cf ;
+
+disp(F,"Total, double-sided resistance of the plate (N) :",T0,"Shear stress at mid-length(N/m2)");
\ No newline at end of file |