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.12/10_12.sce | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 213/CH10/EX10.12/10_12.sce (limited to '213/CH10/EX10.12') diff --git a/213/CH10/EX10.12/10_12.sce b/213/CH10/EX10.12/10_12.sce new file mode 100755 index 000000000..149270d5d --- /dev/null +++ b/213/CH10/EX10.12/10_12.sce @@ -0,0 +1,28 @@ +//To find length of lever +clc +//Given: +W=10*1000,P1=100 //N +p=12,d=50 //mm +mu=0.15 +//Solution: +//Calculating the helix angle +alpha=atan(p/(%pi*d)) //radians +//Calculating the effort required at the circumference of the screw to raise the load +phi=atan(mu) //Limiting angle of friction, radians +P=W*tan(alpha+phi) //N +//Calculating the torque required to overcome friction +T=P*d/2 //N-mm +//Calculating the length of the lever +l=T/P1 //mm +//Calculating the mechanical advantage +MA=W/P1 +//Calculating the efficiency of the screw jack +eta=tan(alpha)/tan(alpha+phi)*100 //% +//Results: +printf("\n\n The length of the lever to be used, l = %.1f mm.\n",l) +printf(" Mechanical advantage obtained, M.A. = %d.\n",MA) +if eta<50 then + printf(" The screw is a self locking screw.\n\n"); +else + printf(" The screw is not a self locking screw."); +end \ No newline at end of file -- cgit