summaryrefslogtreecommitdiff
path: root/213/CH13/EX13.16/13_16.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /213/CH13/EX13.16/13_16.sce
downloadScilab-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.16/13_16.sce')
-rwxr-xr-x213/CH13/EX13.16/13_16.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/213/CH13/EX13.16/13_16.sce b/213/CH13/EX13.16/13_16.sce
new file mode 100755
index 000000000..ea27b8148
--- /dev/null
+++ b/213/CH13/EX13.16/13_16.sce
@@ -0,0 +1,15 @@
+//To find speed of shaft
+clc
+//Given:
+TA=40, TB=30, TC=50
+NX=100, NA=NX //rpm
+Narm=100 //Speed of arm, rpm
+//Solution:
+//Refer Fig. 13.22 and Table 13.18
+//Calculating the values of x and y
+y=+100
+x=-100-y
+//Calculating the speed of the driven shaft
+NY=y-x*(TA/TB) //rpm
+//Results:
+printf("\n\n Speed of the driven shaft, NY = %.1f rpm, anticlockwise.\n\n",NY) \ No newline at end of file