说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 火药螺栓
1)  exploxive bolt
火药螺栓
2)  breeching bolt
火砖螺栓
3)  bolt [英][bəʊlt]  [美][bolt]
螺栓
1.
Testing Application of Array Eddy Current Probes to Bolts;
涡流阵列探头技术在螺栓探伤中的应用
2.
Failure analysis of bolt on the compress gas cooler;
压缩富气冷却器浮头螺栓断裂失效分析
3.
Optimum Analysis of the Finite Element of the Bolt Connection Structure;
螺栓联结结构的有限元优化分析
4)  Bolts [英][bəult]  [美][bolt]
螺栓
1.
Fault Diagnosis of Diesel Engine As Connecting Rod Bolts Coming Loose;
柴油机连杆螺栓松动故障的诊断
5)  screw [英][skru:]  [美][skru]
螺栓
1.
Design of the screw for suspended load based on fuzzy analysis theory;
基于模糊理论的吊具起吊螺栓设计
2.
Changing the positions of thin and thick nuts and using the right thick nut tightening torque ensure safe operation of the crane and longer lives of the screws.
通过试验和理论分析厚、扁螺母在紧固过程中的受力情况,并从试验结果得到一个较合理的厚螺母拧紧力矩,既能保证塔式起重机的安全运行,又能延长螺栓的使用寿命。
3.
The safety screw is one of the most important parts of the paper knife.
切纸刀保护螺栓是切纸刀的关键保护部件。
6)  bolt [英][bəʊlt]  [美][bolt]
骨栓,螺栓
补充资料:齿轮轮齿渐开线、螺栓、弹簧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))  

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