summaryrefslogtreecommitdiff
path: root/2744/CH5/EX5.28
diff options
context:
space:
mode:
Diffstat (limited to '2744/CH5/EX5.28')
-rwxr-xr-x2744/CH5/EX5.28/Ex5_28.sce13
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);