summaryrefslogtreecommitdiff
path: root/2789/CH7/EX7.7/Ex7_7.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2789/CH7/EX7.7/Ex7_7.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2789/CH7/EX7.7/Ex7_7.sce')
-rwxr-xr-x2789/CH7/EX7.7/Ex7_7.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2789/CH7/EX7.7/Ex7_7.sce b/2789/CH7/EX7.7/Ex7_7.sce
new file mode 100755
index 000000000..dd20d3ec2
--- /dev/null
+++ b/2789/CH7/EX7.7/Ex7_7.sce
@@ -0,0 +1,16 @@
+clear;
+clc;
+
+//page no.244
+
+h_L = 30;//ft
+l = 200;//ft
+d = 2;//ft
+r = 8;//in
+//part (a)
+tau_0 = h_L*62.4/(d*l);
+
+//part(b)
+tau = (0.5*r/12)*(tau_0*0.00694);
+printf('Part(a): Shear stress = %.2f psf = %.4f psi ',tau_0,tau_0*0.00694);
+printf('\n Part(b): Shear stress = %.4f psi ',tau);