summaryrefslogtreecommitdiff
path: root/3864/CH6/EX6.24
diff options
context:
space:
mode:
Diffstat (limited to '3864/CH6/EX6.24')
-rw-r--r--3864/CH6/EX6.24/Ex6_24.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3864/CH6/EX6.24/Ex6_24.sce b/3864/CH6/EX6.24/Ex6_24.sce
new file mode 100644
index 000000000..54c23cd26
--- /dev/null
+++ b/3864/CH6/EX6.24/Ex6_24.sce
@@ -0,0 +1,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)