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.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 '2744/CH6/EX6.1')
-rwxr-xr-x | 2744/CH6/EX6.1/Ex6_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2744/CH6/EX6.1/Ex6_1.sce b/2744/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..ad6408598 --- /dev/null +++ b/2744/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,14 @@ +clear; +clc; +l = 5;// feet +W = 150;// lb +w = 120;// lb. per foot run +l1 = 3;// feet +b = 3;// inches +d = 6;// inches +E = 1.5*10^6;// lb/in^2 +I = (1/12)*b*d^3;// in^4 +y_B1 = (W*l^3)/(3*E*I);// feet +y_B2 = (w*l1*l1^3)/(8*E*I) + (l-l1)*(w*l1*l1^2)/(6*E*I);// feet +y_B = (12^3)*(y_B1+y_B2);// inches +printf('The deflection at the free end = %.4f inches',y_B); |