blob: 54c23cd26f45c7206846b294466e27f6a418da59 (
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
|
clear
//
//
//Initilization of Variables
m=5*10**5 //Wagon Weighing
v=18*1000*36000**-1
d=300 //mm //Diameter of Beffer springs
n=18 //no.of turns
G=80*10**3 //N/mm**2
dell=225
R=100 //mm //Mean Radius
//Calculations
//Energy of Wagon
E=m*v**2*(9.81*2)**-1 //N-mm
//Load applied
W=dell*G*d**4*(64*R**3*n)**-1 //N
//Energy each spring can absorb is
E2=W*dell*2**-1 //N-mm
//No.of springs required to absorb energy of Wagon
n2=E*E2**-1 *10**7
//Result
printf("\n No.of springs Required for Buffer is %0.2f ",n2)
|