From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3776/CH9/EX9.5/Ex9_5.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3776/CH9/EX9.5/Ex9_5.sce (limited to '3776/CH9/EX9.5') diff --git a/3776/CH9/EX9.5/Ex9_5.sce b/3776/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..ee3f65e4e --- /dev/null +++ b/3776/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,23 @@ +clear +//Given +M = 10 //KN-m moment +v = 8.0 //KN - shear Stress +stress_allow = 8 //MPa - The maximum allowable stress +shear_allow_per = 1.4 //MPa - The allowable stress perpendicular to grain +stress_allow_shear = 0.7 //MPa - The maximum allowable shear stress +//Caliculations + +S = M*(10**6)/stress_allow //mm3 +//lets arbitarly assume h = 2b +//S = b*(h**2)/6 +h = (12*S**0.333) //The depth of the beam +b = h/2 //mm The width of the beam +A = h*b //mm2 The area of the crossection , assumption +stress_shear = 3*v*(10**3)/(2*A) //MPa The strear stress +if stress_shear