From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001
From: priyanka
Date: Wed, 24 Jun 2015 15:03:17 +0530
Subject: initial commit / add all books

---
 213/CH13/EX13.6/13_6.sce | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100755 213/CH13/EX13.6/13_6.sce

(limited to '213/CH13/EX13.6/13_6.sce')

diff --git a/213/CH13/EX13.6/13_6.sce b/213/CH13/EX13.6/13_6.sce
new file mode 100755
index 000000000..761ebd50c
--- /dev/null
+++ b/213/CH13/EX13.6/13_6.sce
@@ -0,0 +1,19 @@
+//To find speed of gears B and C
+clc
+//Given:
+TA=72, TC=32
+NEF=18 //Speed of arm EF, rpm
+//Solution:
+//Refer Table 13.5
+//Speed of gear C:
+y=18 //rpm
+x=y*(TA/TC)
+NC=x+y //Speed of gear C, rpm
+//Speed of gear B:
+//Calculating the number of teeth on gear B
+TB=(TA-TC)/2
+//Calculating the speed of gear B
+NB=y-x*(TC/TB) //Speed of gear B, rpm
+//Solution:
+printf("\n\n Speed of gear C = %.1f rpm.\n\n",NC)
+printf(" Speed of gear B = %.1f rpm in the opposite direction of arm.\n\n",-NB)
\ No newline at end of file
-- 
cgit