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/CH5/EX5.28 | |
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/CH5/EX5.28')
-rwxr-xr-x | 2744/CH5/EX5.28/Ex5_28.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2744/CH5/EX5.28/Ex5_28.sce b/2744/CH5/EX5.28/Ex5_28.sce new file mode 100755 index 000000000..ce161a25e --- /dev/null +++ b/2744/CH5/EX5.28/Ex5_28.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+b = 9/2;// inches
+D = 12;// inches
+d = 10;// inches
+t = 1/2;// inches
+f_w = 1000;// lb/in^2
+m = 18;//m = E_s/E_w
+f_t = m*d*f_w/D ;// lb/in^2
+M_w = f_w*(1/6)*2*b*D^2;// lb-inches
+M_s = f_t*(1/6)*t*d^2;// lb-inches
+M = M_w + M_s;// lb-inches
+printf('Skin stresse in steel plate is, M_s = %d lb-inches\n The total moment of resistance is M = %d lb-inches',M_s,M);
|