1)  assembly bolt,assembling bolt,mounting bolt, fitting-up bolt
装配螺栓
2)  assembling
装配
1.
Innovation of Assembling and Packing Techniques of Textile Machinery;
纺机装配包装技术的创新
2.
Controlling Measures of Assembling Quality for Typical Cable Connector;
典型电缆连接器的装配质量控制措施
3.
Design and application of quick-setting assembling sub-embankment for flood prevention;
快速设置装配式防洪子堤的设计及应用
3)  assembly
装配
1.
Study on the Visual Assembly and Simulation of Spindle Box Based on 3D Model;
基于3D模型的数控机床主轴箱装配和运动仿真研究
2.
Assembly of Guide Pulley Subassembly and Analysis of Problem Existing in Assembly;
电火花线切割机导轮组合件装配及相关问题的解决
3.
Application of Semiautomatic System on Target Assembly;
用于装配微靶的半自动系统
4)  assemble
装配
1.
Achieving assemble and drawing of reducers by CAXA 3D electronic planning board;
用CAXA三维电子图板实现减速器装配和出图
2.
Discussing the Key Technique Requirements About Locale Choice of Assemble Work for Super and Heavy Product;
论超大型/重型产品装配厂选址的关键技术要求
5)  assembly stress
装配应力
1.
The numerical analysis for the assembly stress in the local short fault of a vessel girth joint;
压力容器环焊缝局部短错边装配应力数值分析
6)  virtual assembly
虚拟装配
1.
Application of Virtual Assembly Technology Based on 3D Model;
基于三维模型的虚拟装配技术应用
2.
Design of the virtual assembly of the vibration mechanism of Continuous Casting Mold based on Autodesk Inventor;
连铸机结晶器振动装置的虚拟装配设计
3.
Comprehensive evaluation of assembly sequence for virtual assembly;
面向虚拟装配的装配顺序综合评价
参考词条
补充资料:齿轮轮齿渐开线、螺栓、弹簧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))  

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