图2.1 双圆柱接触的等效模型
接触半宽可表示为:
式中,Q表示作用在轴承上的径向载荷,R1表示滚子半径,R2表示内圈滚道半径,l表示滚子等效接触长度和E′表示等效弹性模量。E′的表达式为:
Palmgren公式求刚度
clear;
clc;
format short
Q=100:100:1000;
l=28.8;
delta=3.84*1e-5*(Q.^0.9)./(l^0.8);
Y=log(Q);
X=log(delta);
p=polyfit(X,Y,1);
K=exp(p(2))*1000;
n=p(1);
K2=8.06e+4*(l)^(8/9)*1000;
[1] G. Lundberg, A. Palmgren. Dynamic capacity of rolling bearings[J]. Journal of Applied Mechanics 16 (2) (1949) 165-172.
[2] Hertz H. On the
contact of elastic solids [J]. Journal of Reine and Angewandlte Mathematik,
1881, 92: 156-171.
备注:下一章展示滚动轴承动力学建模方法。