summaryrefslogtreecommitdiff
path: root/629/CH9/EX9.4
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH9/EX9.4
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '629/CH9/EX9.4')
-rw-r--r--629/CH9/EX9.4/ex9_4.txt3
-rw-r--r--629/CH9/EX9.4/example9_4.sce18
2 files changed, 21 insertions, 0 deletions
diff --git a/629/CH9/EX9.4/ex9_4.txt b/629/CH9/EX9.4/ex9_4.txt
new file mode 100644
index 000000000..bd965be6b
--- /dev/null
+++ b/629/CH9/EX9.4/ex9_4.txt
@@ -0,0 +1,3 @@
+
+The shear resistance on one side of the plate = 0.108 lbf.
+ \ No newline at end of file
diff --git a/629/CH9/EX9.4/example9_4.sce b/629/CH9/EX9.4/example9_4.sce
new file mode 100644
index 000000000..f484bd771
--- /dev/null
+++ b/629/CH9/EX9.4/example9_4.sce
@@ -0,0 +1,18 @@
+clear
+clc
+//Example 9.4 RESISTANCE CALCULATION FOR LAMINAR BOUNDARY LAYER ON A FLAT PLATE
+//To find Approx Value
+function [A]= approx (V,n)
+ A= round(V*10^n)/10^n; //V-Value, n-to what place
+ funcprot (0)
+endfunction
+L=6; //[ft]
+v=10^-4; //viscosity [ft^2/s]
+Uo=1; //[ft/s]
+Re=Uo*L/v //Reynolds number
+Cf=approx(1.33/Re^(1/2),4)
+B=4; //[ft]
+S=0.86;
+rho=S*1.94 //[slugs/ft^3]
+Fs=approx((Cf*B*L*rho*Uo^2)/2,3) //shear force [lbf]
+printf("\nThe shear resistance on one side of the plate = %.3f lbf.\n",Fs) \ No newline at end of file