summaryrefslogtreecommitdiff
path: root/3886/CH7/EX7.9/7_9.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH7/EX7.9/7_9.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH7/EX7.9/7_9.sce')
-rw-r--r--3886/CH7/EX7.9/7_9.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3886/CH7/EX7.9/7_9.sce b/3886/CH7/EX7.9/7_9.sce
new file mode 100644
index 000000000..8eb7c11b5
--- /dev/null
+++ b/3886/CH7/EX7.9/7_9.sce
@@ -0,0 +1,16 @@
+//parallel shafts connected with spur gearing
+l=540 //mm
+//d2=1080/4 //mm
+//d1=3*d2
+//for a module of 8
+//T1=810/8 but number of teeth is whole no.
+T1=102
+//T2=270/8 but number of teeth is whole no.
+T2=34
+//pitch circle diameter are
+d1=102*8 //mm
+d2=34*8 //mm
+//The exact distance between the shafts
+l=(d1+d2)/2 //mm
+printf("\nT1=%.0d \nT2=%.0d \nl=%.0d mm",T1,T2,l)
+