diff options
Diffstat (limited to '3764/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3764/CH4/EX4.1/Ex4_1.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3764/CH4/EX4.1/Ex4_1.sce b/3764/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..f7a372f6f --- /dev/null +++ b/3764/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,33 @@ +clc +// + +//Variable declaration +sY=40 // Stress(ksi) +sU=60 // Stress(ksi) +E=(10.6)*((10**6)) // Modulus of rigidity(psi) +FS=3 // Factor of safety + +//Calculation +//Moment of Inertia +E=(10.6)*((10**6)) // Modulus of rigidity(psi) +I=(((1/12.0)*3.25*(5**3))-((1/12)*(2.75)*(4.5**3))**2) // Centroidal moment of inertia of a rectangle + +//Allowable Stress +sALL=(sU/FS) // Allowable stress(ksi) +//Case(a) Bending Moment +c=(1/2.0)*(5) // Radius(in) +M=((12.97)*(20))/2.5 // Bending moment(kip.in) +//Case(b) Radius of Curvature +p=((10.6*(10**6)*12.97)/(103.8*(10**3))**1) // Radius of curvature(in) + +p=((p*0.08333)) // Converting into feet(ft) + +//Alternative Solution. +Em=(sALL/(E*((10**-3))*(1.0))) // Maximum strain(in./in) +p=(c/Em) // Radius of curvature(in) +p=((p*0.08333)) // Converting into feet(ft) + + +// Result +printf("\n Bending moment M for which factor of safety is 3 = %0.3f kip.in' ,M) +printf("\n Radius of curvature of tube = %0.3f ft' ,p) |