blob: e16e376d577de11b51726b238a65650c88b44ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-12.8 Page No.272\n');
Ng=42;
Np=24;
Q=2*Ng/(Ng+Np);
Kg=270;
Dp=1.5;
b=1;
Fw=Dp*b*Q*Kg;
Fd=699;
Nsf=1.2;
if (Fw/Nsf)<Fd then
mprintf('\n (Fw/Nsf)<Fd So this would not be suitable design');
end
//If the surfaces each had a BHN = 450
Kg=470;
Fw=Dp*b*Q*Kg;
if(Fw/Nsf)>Fd then
mprintf('\n\n If the surfaces each had a BHN = 450');
mprintf('\n (Fw/Nsf)>Fd So this would be suitable design.');
end
|