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/CH13/EX13.4 | |
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/CH13/EX13.4')
-rwxr-xr-x | 2744/CH13/EX13.4/Ex13_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2744/CH13/EX13.4/Ex13_4.sce b/2744/CH13/EX13.4/Ex13_4.sce new file mode 100755 index 000000000..dee497d07 --- /dev/null +++ b/2744/CH13/EX13.4/Ex13_4.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+m = 15;
+t = 18000;// lb/in^2
+c = 700;// lb/in^2
+b = 12;;// inches
+M = 900000;//bending moment lb/inches
+k1 = 1/((t/(m*c))+1);//k = n/d
+k2 = 1-k1/3;//k2 = a/d
+p = 0.5*c*k1/(t);
+d = sqrt(M/(0.5*c*b*k1*k2));//inches
+A_t = p*b*d;// sq.inches
+A_t_previous = 0.25*%pi*(7/8)^2;//section area with diameter 7/8 inches
+n = A_t/A_t_previous;
+printf('Effective deapth is d = %.2f inches',d);
+printf('\n A_t = %.3f sq.inches',A_t);
|