From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 213/CH10/EX10.7/10_7.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 213/CH10/EX10.7/10_7.sce (limited to '213/CH10/EX10.7/10_7.sce') diff --git a/213/CH10/EX10.7/10_7.sce b/213/CH10/EX10.7/10_7.sce new file mode 100755 index 000000000..856381c1d --- /dev/null +++ b/213/CH10/EX10.7/10_7.sce @@ -0,0 +1,18 @@ +//To find diameter of hand wheel +clc +//Given: +d=50,p=12.5,D=60,R=D/2 //mm +W=10*1000,P1=100 //N +mu=0.15,mu1=0.18 +//Solution: +//Calculating the helix angle +alpha=atan(p/(%pi*d)) //radians +//Calculating the tangential force required at the circumference of the screw +phi=atan(mu) //Limiting angle of friction, radians +P=W*tan(alpha+phi) //N +//Calculating the total torque required to turn the hand wheel +T=P*d/2+mu1*W*R //N-mm +//Calculating the diameter of the hand wheel +D1=T/(2*P1*1000)*2 //m +//Results: +printf("\n\n Diameter of the hand wheel, D1 = %.3f m.\n\n",D1) \ No newline at end of file -- cgit