blob: 9e6cc209974f1bd87346aef01c6df67ab56f49d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//find
clc
//solution
//given
Wr=2500//N
Wa=1500//N
//Wa/Wr=0.6
//refer table 27.4
X=1
V=1
Y=0
W=X*V*Wr + Y*Wa//N
//from table 27.5,Ks=1.5...
Ks=1.5
W1=W*Ks//N
//ref table 27.6
C=53000//N
L=(C/W)^(3)*10^6
printf("rating life is,%f rev\n",L)
|