diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /213/CH10/EX10.10 | |
download | Scilab-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.10')
-rwxr-xr-x | 213/CH10/EX10.10/10_10.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/213/CH10/EX10.10/10_10.sce b/213/CH10/EX10.10/10_10.sce new file mode 100755 index 000000000..28833e896 --- /dev/null +++ b/213/CH10/EX10.10/10_10.sce @@ -0,0 +1,26 @@ +//To find ratio of torques and efficiency
+clc
+//Given:
+d=50,p=12.5 //mm
+mu=0.13
+W=25*1000 //N
+//Solution:
+//Calculating the helix angle
+alpha=atan(p/(%pi*d)) //radians
+//Calculating the force required on the screw to raise the load
+phi=atan(mu) //Limiting angle of friction, radians
+P1=W*(alpha+phi) //N
+//Calculating the torque required on the screw to raise the load
+T1=P1*d/2 //N-mm
+//Calculating the force required on the screw to lower the load
+P2=W*tan(phi-alpha) //N
+//Calculating the torque required to lower the load
+T2=P2*d/2 //N
+//Calculating the ratio of the torques required
+r=T1/T2 //Ratio of the torques required, N-mm
+//Calculating the efficiency of the machine
+eta=tan(alpha)/tan(alpha+phi)*100 //%
+//Results:
+printf("\n\n Torque required on the screw to raise the load, T1 = %d N-mm.\n",T1)
+printf(" Ratio of the torque required to raise the load to the torque required to lower the load = %.1f.\n",r)
+printf(" Efficiency of the machine, eta = %.1f %c.\n\n",eta,"%")
\ No newline at end of file |