From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3772/CH8/EX8.6/Ex8_6.sce | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 3772/CH8/EX8.6/Ex8_6.sce (limited to '3772/CH8/EX8.6/Ex8_6.sce') diff --git a/3772/CH8/EX8.6/Ex8_6.sce b/3772/CH8/EX8.6/Ex8_6.sce new file mode 100644 index 000000000..b0c9e6436 --- /dev/null +++ b/3772/CH8/EX8.6/Ex8_6.sce @@ -0,0 +1,40 @@ +// Problem 8.6,Page no.209 + +clc;clear; +close; + +W=200 //N //weight +v=4 //m/s //velocity of spring +sigma=600 //MPa //max allowable stress in spring +G=80 //GPa //Modulus of rigidity +rho=78000 //N/m**3 //density +d=8 //mm //diameter of spring +D=5 //cm //Mean Diameter of coil + + +//Calculation + +E=W*v**2*(2*9.81)**-1 //N*m //Kinetic Energy //Notification has been changed + +//U=sigma_s**2*V*(4*G)**-1 //Strain Energy stored inthe spring + +//After substituting values in above equation and simplifying we get +V=163.1*4*80*10**9*((600*10**6)**2)**-1 //Volume + +W=rho*V //N //Weight of spring + +//Now V=%pi*4**-1*d**2*%pi*D*n +//After substituting values in above equation and simplifying we get +n=0.000145*4*(%pi**2*0.008**2*0.05)**-1 //number of turns of spring + +//T=P*R=%pi*16**-1*d**3*sigma_s //Torsion +//After substituting values in above equation and simplifying we get +P=%pi*0.008**3*600*10**6*(0.025*16)**-1 //N + +//Now U=P*dell*2**-1 +//Again,After substituting values in above equation and simplifying we get +dell=163.1*2*(2412.743)**-1*10**2 //cm + +//Result +printf("The Max Deflection Produced is %.2f",dell);printf(" cm") +printf("\n Number of coil are %d",ceil(n)) -- cgit