1)  gear engagement
轮齿啮合
2)  gear tooth engagement
齿轮齿啮合
3)  gear tooth
轮齿
1.
In this paper,the formula for calculating the deformation of tooth meshing point is derived by simplifying the beveloid gear tooth as a beam with variable sections along radial and axial directions For the first time,the meshing synthetic rigidity of beveloid gear could be calculated through a mathematic model.
通过将变厚齿轮轮齿简化为沿径向和轴向都为变截面的悬臂梁 ,推导出了轮齿啮合点变形的计算公式 ,首次解决了变厚齿轮轮齿啮合综合刚度的计算问题 ,并编制程序计算出了一对内啮合变厚齿轮轮齿的啮合综合刚
4)  wheel teeth shape
轮齿形状
5)  tooth contact
轮齿接触
1.
We simulate the tooth contact during the lapping of gears and analyze their tooth contact stress,surface sliding coefficient and probability of contact lapping.
首次通过对研齿过程的轮齿接触仿真,齿面瞬时接触应力、齿面滑动系数与齿面研磨概率的研究分析,建立了齿面综合研磨率的评价指标,并进行了研齿性能试验。
6)  Gear and Rack
齿轮齿条
1.
The design of self-lock mechanism in gear and rack;
一种齿轮齿条自锁机构的设计
参考词条
补充资料:齿轮轮齿渐开线、螺栓、弹簧autolsp源程序
 

一、齿轮轮齿渐开渐开线


(defun c:gear(/)
(
 setq
p0 (getpoint"输入齿轮中心p0: ")
m  (getreal"输入齿轮模数M: ")
z  (getint"输入齿轮齿数Z: ")
ha 1
c 0.25
a (/ pi 9)
ra(/ (* (+ z (+ ha ha)) m) 2)
rf(/ (* (- z (+ (+ ha ha) c)) m) 2)
r(/ ( * m z) 2)
rb ( * r (cos a))
ri rb
ang 0
g (polar p0 ang rb)
)
(command "circle" p0 ra)
(command "circle" p0 rf)
(command "circle" p0 r)
(command "line"  g)
 
(while (< ri ra)
(setq
ang ( + ang(/ pi 360))
ri ( / rb (cos ang))
cta ( - (/ (sin ang) (cos ang)) ang)
g(polar p0 cta ri)
)


(command g)
)
(command )
)



二、螺旋源程序


(defun errMsg (s)
  (if (/= s "function cancelled") (princ (strcat "\nError: " s)))
     ; 当命令执行时出现错误
  (setvar "cmdecho" ocmdold)                                      ; 例如用户按下了CTRL + C
  (setvar "osmode" osmold)
  (setq *error* olderr)   ; 恢复旧的错误处理
  (princ)
)


(defun c:3Dthread (/ radouter threadpitch threadlength threadangle
                   ptStart innerdiafactor radmid radinner ocmdold osmold 4H 5H 6H h6 g6)
   ;-------------------------------------------------------------------
   ; 获取公制外径大小、螺距总长
   ; 然后计算一系列几何点
   ; 并且关闭对象捕捉、命令回显
   ;-------------------------------------------------------------------
   (setq 4H (list 0.0015 0.002 0.002 0.0025 0.003 0.0035 0.004 0.005 0.006 0.007 0.008 0.009 0.010))  
   (setq 5H (list 0.002 0.0025 0.003 0.004 0.0045 0.0055 0.0065 0.0075 0.009 0.010 0.0115 0.0125 0.0135))  
   (setq 6H (list 0.003 0.004 0.0045 0.0055 0.0065 0.008 0.0095 0.011 0.0125 0.0145 0.016 0.018 0.020))  

说明:补充资料仅用于学习参考,请勿用于其它任何用途。