diff options
Diffstat (limited to '3764/CH6/EX6.6/Ex6_6.sce')
-rw-r--r-- | 3764/CH6/EX6.6/Ex6_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3764/CH6/EX6.6/Ex6_6.sce b/3764/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..d2bad348c --- /dev/null +++ b/3764/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,18 @@ +clc +// +// + +//Variable declaration +V=2.5 // Force(kips) +b=4 // Distance(in) +t=0.15 // Thickness(in) +h=6 // Height(in) + + +//Calculation +tB=(6*V*b)/((t*h)*(6.0*b+h)) // Horizontal shearing stress(ksi) +tMAX=(3*(V)*(4*b+h))/(2.0*t*h*(6.0*b+h)) // Shearing stress in web(ksi) + +// Result +printf("\n Shearing stress in flanges = %0.3f ksi' ,tB) +printf("\n Shearing stress in web = %0.3f ksi' ,tMAX) |