0% found this document useful (0 votes)
35 views5 pages

Ayush Dots

The document describes the design of a 9-gear box transmission. It prompts the user to input parameters like motor power, speeds, stresses, and calculates the center distances, tooth modules, and number of teeth for each gear using formulas to achieve the desired gear ratios between input and output speeds. Key values calculated include center distances a1 and a2, tooth modules m1 and m2, and number of teeth for each gear Z1 through Z12.

Uploaded by

Ayush Jalan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views5 pages

Ayush Dots

The document describes the design of a 9-gear box transmission. It prompts the user to input parameters like motor power, speeds, stresses, and calculates the center distances, tooth modules, and number of teeth for each gear using formulas to achieve the desired gear ratios between input and output speeds. Key values calculated include center distances a1 and a2, tooth modules m1 and m2, and number of teeth for each gear Z1 through Z12.

Uploaded by

Ayush Jalan
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

% 9 gear box

P=input('power in KW
N=input('motor speed in rpm
Nmax=input('max output speed
Nmin=input('min output speed
r=input('number of speeds

');
');
');
');
');

fprintf('progression ratio \n')


q=(Nmax/Nmin)^(1/(r-1))
fprintf('input all the values of speed form max to min using data book\n')
N1=input('speed1
');
N2=input('speed2
');
N3=input('speed3
');
N4=input('speed4
');
N5=input('speed5
');
N6=input('speed6
');
N7=input('speed7
');
N8=input('speed8
');
N9=input('speed9
');
fprintf('\n');
i1=(N/N1)^(1/3);
N10=i1*N1;
i2=N10/N2;
i3=N10/N3;
i4=i1;
N11=i4*N4;
i5=i2;
i6=i3;
i7=i1;
N12=i7*N7;
i8=i2;
i9=i3;
i10=max(N,N10)/min(N,N10);
i11=max(N,N11)/min(N,N11);
i12=max(N,N12)/min(N,N12);

fprintf('\n')
fprintf('input the values of stresses\n')
% first
Sc=input('compressive strength of the material
');
Sb=input('bending strength of the material
');
E=input('equivalent modulus
');
U=0.3;
fprintf('min centre distance and modulus between spindle and shaft1')
i=i1;
Mt1=97420*P*1.3/N10;
a1=((((0.74/Sc)^2)*E*Mt1)/(i*U))^(1/3)*(i+1)

Z=20;
y=0.389;
Um=10;
m1=((Mt1/(y*Sb*Um*Z))^(1/3))*1.26
Z1=round((2*a1)/(m1*(i+1)))
Z2=round(i*Z1)
fprintf('number of teeths in other mating gears\n')
d=Z1+Z2;
Z3=round( (d*i2)/(i2+1))
Z4= round(d/(i2+1))
Z5= round((d*i3)/(i3+1))
Z6= round(d/(i3+1))

%second
fprintf('\n');
fprintf('min centre distance and modulus between shaft1 and motor')
i=i10;
Mt2=97420*P*1.3/N;
a2=((((0.74/Sc)^2)*E*Mt2)/(i*U))^(1/3)*(i+1)
Z=20;
m2=((Mt2/(y*Sb*Um*Z))^(1/3))*1.26
Z7=round((2*a2)/(m2*(i+1)))
Z8=round(i*Z7)
fprintf('number of teeths in other mating gears\n')
d=Z7+Z8;
Z9= round((d*i11)/(i11+1))
Z10= round(d/(i11+1))
Z11= round((d*i12)/(i12+1))
Z12= round(d/(i12+1))

RESULT
power in KW

motor speed in rpm 1400


max output speed 700
min output speed 100
number of speeds

progression ratio
q=
1.2754
input all the values of speed form max to min using data book
speed1

100

speed2

125

speed3

160

speed4

200

speed5

250

speed6

315

speed7

400

speed8

500

speed9

630

input the values of stresses


compressive strength of the material 11000
bending strength of the material
equivalent modulus

4000
2.15*1000000

mincentre distance and modulus between spindle and shaft1


a1 =
11.1926

m1 =
0.2566
Z1 =
26
Z2 =
63

number of teeths in other mating gears


Z3 =
59
Z4 =
30

Z5 =
53
Z6 =
36

mincentre distance and modulus between shaft1 and motor


a2 =
9.2722
m2 =
0.1427

Z7 =
19
Z8 =
110

number of teeths in other mating gears


Z9 =
96
Z10 =
33
Z11 =
76
Z12 =
53

You might also like