亚洲欧美日韩国产一区二区精品_亚洲国产精品一区二区动图_级婬片A片手机免费播放_亚洲国产成人Av毛片大全,男女爱爱好爽好疼视频免费,中文日韩AV在线,无码视频免费,欧美在线观看成人高清视频,在线播放免费人成毛片,成 人 网 站 在 线 视 频A片 ,亚洲AV成人精品一区二区三区

機械社區(qū)

 找回密碼
 注冊會員

QQ登錄

只需一步,,快速開始

搜索
查看: 36029|回復(fù): 26
打印 上一主題 下一主題

漸開線的公式和畫法

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
1#
發(fā)表于 2006-3-28 19:30:57 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式

漸開線的公式是

; F4 c5 _' l' a! N

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

, u! B2 P' p# f* B1 n

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

8 G5 Z2 S1 o Y- J

r - 基圓半徑

' m" @( u. s( Q0 O& k6 v

theta - 成形角,,弧度值

- r; {8 }! e, `/ R) \( ^

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

) r( n5 ~ X1 G+ l1 D

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

$ p1 q5 I- G& _9 p9 D8 k

;*************************************************************************************
;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.

: g& y9 ~5 C( i; ~8 s

 

3 q: X, U, i: [' R: A

(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:"))

* H5 s7 K K1 z: f, T

(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))) ""
  )
)

. ?) O$ L; K6 k( _& _% \

(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 w! e8 \$ e" B# ~7 i" g

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

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

Re: 漸開線的公式和畫法

ding@( p6 W* S0 ?% X1 X/ y, w# a3 v
3#
發(fā)表于 2006-4-4 21:22:26 | 只看該作者

Re: 漸開線的公式和畫法

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

Re: 漸開線的公式和畫法

你看的仔細。是寫錯了,。
; W- E. f" s2 t2 L- R是齒輪的基圓,。坐標原點自己點。
5#
發(fā)表于 2006-4-9 21:35:25 | 只看該作者

Re: 漸開線的公式和畫法

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

Re: 漸開線的公式和畫法

原帖由 zhiqiu 發(fā)表 4 R" A3 Q( j. p% T4 p 應(yīng)該是y=r(sin(theta)-theta*cos(theta)),,請問基圓是不是齒輪的基圓(就是齒輪分度圓半徑與cosα的乘積,,α是齒輪壓力角,標準為20度),?坐標原點在哪,?

0 O0 ?5 K/ T7 T

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

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

Re: 漸開線的公式和畫法

各位老大,,我想知道齒輪刀具與被切齒輪嚙合時的包絡(luò)曲線畫法,,特別是用于校驗矩形花鍵滾刀的齒形設(shè)計,謝謝了,!跪拜了,!
, ~% p- N" Z/ K4 S! shui:   [email protected]
8#
發(fā)表于 2006-4-27 16:32:38 | 只看該作者

Re: 漸開線的公式和畫法

又問:樓主,是否能找到《工具技術(shù)》1998年05期刊“修緣插齒刀齒形技術(shù)方法”急用,!謝謝! m9 S4 R' f; z4 [
9#
發(fā)表于 2006-4-27 16:51:55 | 只看該作者

Re: 漸開線的公式和畫法

原帖由 帶魚 發(fā)表2 ]8 R7 l `& C8 | 又問:樓主,,是否能找到《工具技術(shù)》1998年05期刊“修緣插齒刀齒形技術(shù)方法”急用!謝謝

1 O6 I2 u0 M% t7 z

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

本帖子中包含更多資源

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

x
10#
 樓主| 發(fā)表于 2006-4-27 19:45:23 | 只看該作者

Re: 漸開線的公式和畫法

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

本版積分規(guī)則

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

GMT+8, 2025-4-23 11:00 , Processed in 0.061606 second(s), 15 queries , Gzip On.

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回復(fù) 返回頂部 返回列表