summaryrefslogtreecommitdiff
path: root/3764/CH4/EX4.1/Ex4_1.sce
blob: f7a372f6fc06516524bca17273797d62369aa05c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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)