summaryrefslogtreecommitdiff
path: root/2339/CH13/EX13.5.1/Ex13_5.sce
blob: dec97ea9b9c863a2eaf3f5e365b7e144fa113030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc
clear

N1=1000;
Z1=30;
Z2=45;
Z3=75;

N13=Z3/Z1;
N3=N1/N13;

printf('Velocity Ratio of gear train= %2.1f ',N13);
printf('\n');
printf('N3= %2.1f RPM',N3);
printf('\n');