diff options
Diffstat (limited to '3594/CH11/EX11.1/Ex11_1.sce')
-rw-r--r-- | 3594/CH11/EX11.1/Ex11_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3594/CH11/EX11.1/Ex11_1.sce b/3594/CH11/EX11.1/Ex11_1.sce new file mode 100644 index 000000000..729464e51 --- /dev/null +++ b/3594/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,18 @@ +
+clc
+//given
+Ns=26//rpm of spindle
+N1=4//rpm of lead screw
+//the only wheel in the set of which 13 is a factor is that with 65 teeth
+T1=65
+T2=25//to satisfy the Ns/n1 ratio and to select from given set
+T3=75//to satisfy the Ns/n1 ratio and to select from given set
+T4=T1*T3*N1/(Ns*T2)
+//solution b
+Ns1=35
+N1=4
+Tb1=105//to satisfy the Ns/n1 ratio and to select from given set
+Tb2=30//to satisfy the Ns/n1 ratio and to select from given set
+Tb3=100//to satisfy the Ns/n1 ratio and to select from given set
+Tb4=Tb1*Tb3*N1/(Ns1*Tb2)
+printf("\na) The change wheel used will have %.f, %.f, %.f and %.f teeths\nb) The change wheel used will have %.f, %.f, %.f and %.f teeths",T1,T2,T3,T4,Tb1,Tb2,Tb3,Tb4)
|