久久久国产一区二区_国产精品av电影_日韩精品中文字幕一区二区三区_精品一区二区三区免费毛片爱

 找回密碼
 注冊會員

QQ登錄

只需一步,快速開始

搜索
查看: 36398|回復: 26

漸開線的公式和畫法

[復制鏈接]
1#
發表于 2006-3-28 19:30:57 | 只看該作者 |倒序瀏覽 |閱讀模式

漸開線的公式是

$ Y2 Z+ _0 R! I8 z [

x=r(cos(theta)+theta*sin(theta))

; M# W0 r f ?' w0 J* x! ~' S7 }

y=r(sin(theta)-theta*sin(theta))

! J0 b8 w& w& \+ X" u% ?& y$ s+ f

r - 基圓半徑

) y+ ~; i- Y9 y Q* s& F0 Z

theta - 成形角,弧度值

# ?( |5 c5 ?! R& q+ C5 Y

在不同theta時算出x和y即可。

& D, F5 z' k8 y( I7 J

我用Autolisp做了個程序,希望對大家有用。歡迎大家討論。這里用的極坐標。

3 k7 h) q( j3 K2 \, Y

;*************************************************************************************
;This program is to draw a involute in AutoCAD, anyone can use it freely without permission.
;Take the risk youself, suggest you to open a new drawing and run this program first, then
;copy it to your drawing.
;Chen Xiangsong
;
;Distance Offset: means when you draw a curve rather than a standard involute.
;   it starts to draw the curve not from the base circle.
;   it is curtate or prolate involute. it is useful as you draw gear root.
;   standard involute, enter 0
;
;Radius of Base Circle: You have to know the meaning, or the program is useless to you
;
;Angle to go:  means the length of involute you want. in degrees. it is not pressure
;   angle, it is the pressure angle add involute Phi.
;
;Accurancy:  the density of points you want on the curve, the smaller the more accurate.
;   but will slow down your pc's speed. I normally enter 0.01
;
;Center of Curve: LEASE PICK A POINT ON THE SCREEN RANDOMLY, IT IS VERY IMPORTANT.
;   DON'T PICK A SPECIAL POINT. That's the disadvantage of my program.

3 u; L5 j5 R/ u( c: ^8 t4 N! I8 H" n

 

% N% P. u+ {: b7 B0 X

(defun c:involute ()
(command "_undo" "be")
(setq os (getvar "osmode"))
(setvar "osmode" 0)
(setq q 0)
(setq f 0)
(setq h (getreal "\nDistance Offset:"))
(setq r (getreal "\nRadius of Base Circle:"))
(setq t (getreal "\nAngle to go:"))
(setq n (getreal "\nAccurancy:"))
(setq cent (getpoint "\nCenter of Curve:"))

" Q1 U- s& }* h3 O! e* {$ R' `* W

(if (= h 0)  (command "pline"  (list (+ 0       (car cent)) (cadr cent))
     (list (+ (/ r 2) (car cent)) (cadr cent)) ""
  )
  (command "pline" (setq trimpoint (list (+ h r (car cent)) ((if (> h 0) - +) (cadr cent) (/ r 1))))
     (list (+ h r (car cent)) ((if (> h 0) - +) (cadr cent) (/ r 2))) ""
  )
)

8 U- ?7 P- g% w3 u% f! `% I

(while (< f (* t (/ pi 180)))
 (setq a (atan (* r f) (+ r h)))
 (setq ri (/ (+ r h) (cos a)))
 (setq q (- f a))
 (setq pt0 (polar cent q ri))
 (command "pline" "" pt0 "")
 (setq f (+ f n))
)
(command "pedit" (entlast) "j" "all" "" "f" "")
(command "circle" cent r)
(setq bs (entlast))
(command "line" cent (list (+ 1 r h (car cent)) (cadr cent)) "")
(setq lt (entlast))
(if (= h 0) (command "trim" bs "" cent "")
  (command "trim" lt "" trimpoint "")
)
(command "erase" lt "")

$ ^8 V$ T/ C1 G" w

(setvar "osmode" os)
(command "_undo" "e")
(princ)
)

回復

使用道具 舉報

2#
發表于 2006-3-31 22:02:03 | 只看該作者

Re: 漸開線的公式和畫法

ding@1 m# J/ g% l# ?4 V! ?: D
3#
發表于 2006-4-4 21:22:26 | 只看該作者

Re: 漸開線的公式和畫法

應該是y=r(sin(theta)-theta*cos(theta)),請問基圓是不是齒輪的基圓(就是齒輪分度圓半徑與cosα的乘積,α是齒輪壓力角,標準為20度)?坐標原點在哪?
4#
 樓主| 發表于 2006-4-5 18:51:56 | 只看該作者

Re: 漸開線的公式和畫法

你看的仔細。是寫錯了。
9 n2 @# w; }+ K) W$ Y( w是齒輪的基圓。坐標原點自己點。
5#
發表于 2006-4-9 21:35:25 | 只看該作者

Re: 漸開線的公式和畫法

我要
6#
發表于 2006-4-27 14:38:35 | 只看該作者

Re: 漸開線的公式和畫法

原帖由 zhiqiu 發表 W, l- |, K7 `" y% U/ b/ U: s 應該是y=r(sin(theta)-theta*cos(theta)),請問基圓是不是齒輪的基圓(就是齒輪分度圓半徑與cosα的乘積,α是齒輪壓力角,標準為20度)?坐標原點在哪?

8 `- D+ ^# [ i& d' Z

呵呵!看的仔細!強!雖然三年以前學過,也編過幾個復雜的。但現在還是看不懂了。沒精力去搞這個。感覺auto cad 在這方面不是很強。學習探討一下倒是不錯。在實際應用上還是建議使用專業的三維制圖軟件。

7#
發表于 2006-4-27 16:29:50 | 只看該作者

Re: 漸開線的公式和畫法

各位老大,我想知道齒輪刀具與被切齒輪嚙合時的包絡曲線畫法,特別是用于校驗矩形花鍵滾刀的齒形設計,謝謝了!跪拜了!4 [5 a3 c7 R6 y+ Q
hui:   xcy889900@163.com
8#
發表于 2006-4-27 16:32:38 | 只看該作者

Re: 漸開線的公式和畫法

又問:樓主,是否能找到《工具技術》1998年05期刊“修緣插齒刀齒形技術方法”急用!謝謝9 n1 }" [8 j" K# P; q
9#
發表于 2006-4-27 16:51:55 | 只看該作者

Re: 漸開線的公式和畫法

原帖由 帶魚 發表; e( ^" k! R: r6 S# A9 V 又問:樓主,是否能找到《工具技術》1998年05期刊“修緣插齒刀齒形技術方法”急用!謝謝

3 s+ S c5 H; ?; ~

和你說的不是完全一樣,但是《工具技術》1998年05期的文章也只有這篇了。

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒有賬號?注冊會員

×
10#
 樓主| 發表于 2006-4-27 19:45:23 | 只看該作者

Re: 漸開線的公式和畫法

多謝梧桐站友
您需要登錄后才可以回帖 登錄 | 注冊會員

本版積分規則

Archiver|手機版|小黑屋|機械社區 ( 京ICP備10217105號-1,京ICP證050210號,浙公網安備33038202004372號 )

GMT+8, 2025-7-19 21:34 , Processed in 0.074313 second(s), 16 queries , Gzip On.

Powered by Discuz! X3.5 Licensed

© 2001-2025 Discuz! Team.

快速回復 返回頂部 返回列表