diff options
Diffstat (limited to '1835/CH4/EX4.16/Ex4_16.sce')
-rwxr-xr-x | 1835/CH4/EX4.16/Ex4_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1835/CH4/EX4.16/Ex4_16.sce b/1835/CH4/EX4.16/Ex4_16.sce new file mode 100755 index 000000000..92656221a --- /dev/null +++ b/1835/CH4/EX4.16/Ex4_16.sce @@ -0,0 +1,19 @@ +//Chapter-4, Illustration 16, Page 148
+//Title: Gears and Gear Drivers
+//=============================================================================
+clc
+clear
+
+//Input data
+Ta=12// no of teeth on gear A
+Tb=60// no of teeth on gear B
+N=1000// speed of propeller shaft in rpm
+Nc=210// speed of gear C in rpm
+
+//Calculations
+Nb=(Ta*N)/Tb// speed of gear B in rpm
+x=(Nb-Nc)
+Nd=Nb+x// speed of road wheel driven by D
+
+//Output
+printf('speed of road wheel driven by D= %d rpm',Nd)
|