blob: 69ce31f2f30691f234ffb1253f63004fe1d39a92 (
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
|
clear//
//Variable Declaration
b=0.060 //Breadth of the section in mm
d=0.03 //Depth of the section in mm
L=1.2 //Length in m
m=80 //Mass in kg
g=9.81 //Acceleration due to gravity in m/s^2
E=200*10**9 //Youngs Modulus in Pa
e=0.015
h=0.01 //height in m
//Calculations
//Part 1
I=b*d**3*12**-1 //Moment of Inertia in m^4
delta_st=m*g*L**3/(48*E*I) //Mid-span Displacement in m
n=1+sqrt(1+(2*h/delta_st)) //Impact Factor
//Part 2
P_max=n*m*g //Maximum dynamic load in N at midspan
M_max=P_max*0.5*L*0.5 //Maximum moment in N.m
sigma_max=M_max*e/I //Maximum dynamic Bending Stress in Pa
//Result
printf("\n The impact factor is %0.3f ",n)
printf("\n The maximum dynamic Bending Moment is %0.1f MPa",sigma_max*10**-6)
|