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/CH13/EX13.6 | |
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/CH13/EX13.6')
-rwxr-xr-x | 213/CH13/EX13.6/13_6.sce | 19 |
1 files changed, 19 insertions, 0 deletions
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 |