diff options
Diffstat (limited to '3705/CH5/EX5.8/Ex5_8.sce')
-rw-r--r-- | 3705/CH5/EX5.8/Ex5_8.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3705/CH5/EX5.8/Ex5_8.sce b/3705/CH5/EX5.8/Ex5_8.sce new file mode 100644 index 000000000..fd5ca7985 --- /dev/null +++ b/3705/CH5/EX5.8/Ex5_8.sce @@ -0,0 +1,24 @@ + +clear//
+
+//Variable Declaration
+I=547 //Moment of inertia in inches^4
+d=8.9 //NA deoth in inches
+V=12 //Shear Force in kips
+h=7.3 //Depth of NA
+b=2 //Width in inches
+t=1.2 //Thickness in inches
+h2=7.5 //Depth in inches
+
+//Calculations
+//Shear Stress at NA
+Q=(b*h)*(h*0.5) //First Moment about NA in in^3
+tau=(V*10**3*Q)/(I*b) //Shear stress at NA in psi
+
+//Shear Stress at a-a
+Q_1=(t*h2)*(d-h2*0.5) //First moment about NA in in^3
+tau1=(V*Q_1)/(I*t) //Shear Stress in psi
+
+//Result
+printf("\n Comparing two stresses")
+printf("\n The maximum stress is %0.0f psi",max(tau,tau1))
|