diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3594/CH11/EX11.1/Ex11_1.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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)
|