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 /2744/CH6/EX6.10 | |
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 '2744/CH6/EX6.10')
-rwxr-xr-x | 2744/CH6/EX6.10/Ex6_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2744/CH6/EX6.10/Ex6_10.sce b/2744/CH6/EX6.10/Ex6_10.sce new file mode 100755 index 000000000..332f01eed --- /dev/null +++ b/2744/CH6/EX6.10/Ex6_10.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+b = 18;// inches
+d = 6;// inches
+l = 16;// feet
+W = 2;// tons
+h = 1/2;// inches
+I_xx = 841.76;// in^4
+E = 13000;// tons/in^2
+P = W + sqrt(2*W*h*48*E*I_xx/(l*12)^3 + 2*W);// tons
+M_max = P*l*12/4;// ton-inches
+Z = 2*I_xx/b ;// in^3
+f = M_max/Z ;// tons/in^2
+delta = P*(l*12)^3 /(48*E*I_xx);// inches
+printf('The maximum instantaneous deflection delta = %.4f inches\n and stress induced, f = %.3f tons/in^2',delta,f);
+//there is an error in the answer given in text book
|