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.18 | |
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.18')
-rwxr-xr-x | 213/CH13/EX13.18/13_18.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/213/CH13/EX13.18/13_18.sce b/213/CH13/EX13.18/13_18.sce new file mode 100755 index 000000000..8dded6a25 --- /dev/null +++ b/213/CH13/EX13.18/13_18.sce @@ -0,0 +1,16 @@ +//To find speed of road wheel
+clc
+//Given:
+TA=10, TB=60
+NA=1000, NQ=210, ND=NQ //rpm
+//Solution:
+//Refer Fig. 13.24 and Table 13.20
+//Calculating the speed of crown gear B
+NB=NA*(TA/TB) //rpm
+//Calculating the values of x and y
+y=200
+x=y-210
+//Calculating the speed of road wheel attached to axle P
+NC=x+y //Speed of road wheel attached to axle P, rpm
+//Results:
+printf("\n\n Speed of road wheel attached to axle P = %d rpm.\n\n",NC)
\ No newline at end of file |