diff options
Diffstat (limited to '1835/CH4/EX4.13/Ex4_13.sce')
-rwxr-xr-x | 1835/CH4/EX4.13/Ex4_13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1835/CH4/EX4.13/Ex4_13.sce b/1835/CH4/EX4.13/Ex4_13.sce new file mode 100755 index 000000000..ef3b1807b --- /dev/null +++ b/1835/CH4/EX4.13/Ex4_13.sce @@ -0,0 +1,21 @@ +//Chapter-4, Illustration 13, Page 145
+//Title: Gears and Gear Drivers
+//=============================================================================
+clc
+clear
+
+//Input data
+Tp=20;//Teeth of wheel P
+Tq=30;//Teeth of wheel Q
+Tr=10;//Teeth of wheel R
+Nx=50;//Speed of shaft X in rpm
+Na=100;//Speed of arm A in rpm
+
+//Calculations
+//x+y=-50
+//y=100
+x=(-Nx-Na)
+y=(-2*x+Na);//Speed of Y in rpm
+
+//Output
+mprintf('Speed of driven shaft Y is %3.0f rpm \n Direction of driven shaft Y is anti-clockwise',y)
|