说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 埋螺栓
1)  Embedded bolt
埋螺栓
2)  direct embedment bolt
直埋螺栓
1.
Use the technologies of the density square grid,the small portaltype frame,the typicallized mould and the trimming to assemble the bolt built-in frame and check up the direct embedment bolt so that you can improve the speed and the precision of the assemblage quickly and ensure the progress of the whole construction project.
文中阐述了采用加密方格网、小型龙门挂线架、定型模具及微调技术安装螺栓固定架及校核直埋螺栓施工工艺,在施工中采用此方法,能有效提高安装速度和安装精度,确保工程整体施工进度。
3)  embedded blots
预埋螺栓
1.
Considering to the cases of deviation of embedded blots in building construction corresponding measures are proposed based upon causes analysis.
针对土建施工中预埋螺栓位置偏移达不到设备安装要求的情况,从原因入手制定了相应的技术措施,强调了螺栓定位控制在施工过程中的重要性,介绍了螺栓固定的几种方法,有效地保证了螺栓的预埋精度。
4)  bolt embedment
螺栓预埋
5)  Counter sunk head screw
埋头螺栓
6)  pre-buried bolt sleeves
预埋螺栓套筒
1.
Possible troubles and difficulties existed in installation of pre-buried bolt sleeves in storage silo were analyzed and forecasted.
南海石化项目的21个储存料仓为大型钢筋混凝土框架结构,每个料仓有40个预埋螺栓套筒,由于料仓基础圈粱钢筋密集,预埋螺栓套筒的安装和精度控制比较困难。
补充资料:齿轮轮齿渐开线、螺栓、弹簧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))  

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