iCAx开思网

标题: 请问各位,如何在autocad中画渐开线齿形? [打印本页]

作者: generallee    时间: 2003-4-28 12:02
标题: 请问各位,如何在autocad中画渐开线齿形?
请问各位,如何在autocad中画渐开线齿形?
作者: Know?    时间: 2003-4-28 16:19
你用图板怎么画就怎么画
作者: Joseph Lin    时间: 2003-4-28 16:54
我已將Gear WBLOCK (Gear.zip)傳給你了。
解壓縮後會得到Module M1~M10 的公制Wblock,
它是我跟據JIS製圖標準畫的,已經使用十幾年了,大概不會出差錯吧。
  使用法: ﹝以畫 module=3  n=24 之Spurgear 為例﹞
  1. 以節圓直徑 O( 3x24 =72) 畫一圓
  2  在圓上任一點insert m3 的wblock
   3. object=wblock, O72圓心為polar軸心,number=24,作polar array即可
作者: hailuo2003    时间: 2003-4-30 22:37
在一些三维外挂软件中做齿轮造型时,经常找不到特殊模数的齿轮,Joseph Lin大哥,能否将Gear WBLOCK等齿轮文件传上来,让大家共享,谢谢!
作者: Joseph Lin    时间: 2003-5-1 14:28
OK!我請baiyears兄幫忙貼四個flies
1. Metric Gear (m0~m10) wblock Gear.Zip
2.2Dgear.lsp
3.3dgear.lsp
4.Autogear (for R14 only)
  
讓你吃個飽,小心不要噎著了!
作者: aponline    时间: 2003-5-3 13:42
我自己作的,看看行不,精度可以调节的
;绘制渐线
  (defun inv(/ p0 phi phimax phimin)
  (setq p0 (getpoint "\n输入基圆圆心:"))
  (setq r (getdist p0 "\n输入基圆的半径:"))
  (command "circle" p0 r);绘制圆
  (setq phimin (getreal "\n输入渐开线的起始角度(弧度):"))
  (setq phimax (getreal "\n输入渐开线的终止角度(弧度)"))
  (setq dphi (getreal "\n输入角度增量(弧度)"))
  (setq n (/ (- phimax phimin) dphi))
  (setq dphi (/ (- phimax phimin) n))
  (setq x0 (car p0) y0 (cadr p0))
  (setq phi phimin)
  (setq x1 (+ x0 (* r (+ (cos phi) (* phi (sin phi))))))
  (setq y1 (+ y0 (* r (- (sin phi) (* phi (cos phi))))))
  (while (<= phi phimax)
     (setq phi (+ phi dphi))
     (setq x2 (+ x0 (* r (+ (cos phi) (* phi (sin phi))))))
     (setq y2 (+ y0 (* r (- (sin phi) (* phi (cos phi))))))
     (command "line" (list x1 y1)(list x2 y2)"")
     (setq x1 x2 y1 y2)
   )
  )
作者: aponline    时间: 2003-5-3 13:44
那个笑脸符号是个括号哦,不要搞错了
作者: QianFD    时间: 2003-5-3 14:54
good,不过速度很慢呀!
作者: baiyears    时间: 2003-5-5 09:57
Joseph Lin wrote:
OK!我請baiyears兄幫忙貼四個flies  
  1. Metric Gear (m0~m10) wblock Gear.Zip  
  2.2Dgear.lsp  
  3.3dgear.lsp  
  4.Autogear (for R14 only)  
  
  讓你吃個飽,小心不要噎著了!

作者: QianFD    时间: 2003-5-5 18:39
哈哈!加密过的呀!让俺试一把!
作者: QianFD    时间: 2003-5-5 18:50
好像只能画标准齿形正常齿的。
作者: ritt    时间: 2006-8-1 14:20
Good! I  am using it!
作者: shyer    时间: 2010-7-19 07:33
真的谢谢楼主!!!!
作者: 168-cnc    时间: 2010-8-14 14:28
我来支持下
作者: pihhip    时间: 2010-11-3 09:34



偶正需要
靠,想不给你加分都难





欢迎光临 iCAx开思网 (https://www.icax.org/) Powered by Discuz! X3.3