说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 液压螺栓
1)  hydraulic radial-fit bolt
液压螺栓
1.
Compared with conventional coupling bolts, the hydraulic radial-fit bolts can effectively prevent unsmooth stagnation.
详细介绍了美国PIGRIM公司生产的联轴器液压螺栓的结构、特点、工作原理及其检修工艺等。
2)  hydraulic expansion bolt
液压紧配螺栓
1.
The current development and application of hydraulic expansion bolt in ships and power plants are introduced and analyzed.
分析了国内外舰船和电站中液压紧配螺栓的研究应用现状,阐述了轴系用高强度液压紧配螺栓的设计理念,列出了各国船级社对液压紧配螺栓直径量的选取及相关要求,指出了现阶段存在的主要问题以及今后的主要研究方向。
2.
Three-dimensional finite element model of hydraulic expansion bolt was built by using finite element software ANSYS.
利用有限元软件ANSYS软件建立液压紧配螺栓三维有限元模型,考虑了预紧安装、工作、拆卸3种不同工况,计算得到3种工况下液压紧配螺栓关键部位的应力、变形情况,与理论值对比误差较小,验证了有限元方法及模型的正确性。
3)  hydraulic tensile bolt
液压拉伸螺栓
4)  hydraulic bolt tensioning jack
液压螺栓拉伸器
1.
This paper briefly expounds the working principles of the hydraulic bolt tensioning jack, analyzes the features of the hydraulic bolt tensioning jack, and emphatically probes into the problems existing in its application and solving methods.
简述了液压螺栓拉伸器的工作原理,分析了液压螺栓拉伸器的特点,重点探讨了其使用中存在的问题及解决办法。
5)  hydraulic stud tensioner
液压螺栓拉伸机
6)  radial fit coupling bolts
径向紧固液压螺栓
补充资料:齿轮轮齿渐开线、螺栓、弹簧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))  

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