summaryrefslogtreecommitdiff
path: root/213/CH10/EX10.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /213/CH10/EX10.12
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '213/CH10/EX10.12')
-rwxr-xr-x213/CH10/EX10.12/10_12.sce28
1 files changed, 28 insertions, 0 deletions
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