人妻暴雨中被强制侵犯在线,亚洲国产欧美日韩精品一区二区三区,四虎影免看黄,国产无人区二卡三卡四卡不见星空

 找回密碼
 注冊(cè)會(huì)員

QQ登錄

只需一步,快速開(kāi)始

搜索
查看: 36378|回復(fù): 26

漸開(kāi)線的公式和畫(huà)法

[復(fù)制鏈接]
1#
發(fā)表于 2006-3-28 19:30:57 | 只看該作者 |倒序?yàn)g覽 |閱讀模式

漸開(kāi)線的公式是

6 _/ q3 {$ @" P3 {/ Q V. G, z: Q

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

7 N) l9 |, y. D- y3 ]& B6 Y

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

' ^9 d H$ F/ b5 Z& X8 w, J, l% Z- v

r - 基圓半徑

( a4 t! A: s; n

theta - 成形角,弧度值

- [* Z' I0 d3 n2 V

在不同theta時(shí)算出x和y即可。

$ J1 ~2 k6 j6 Y1 f* c2 S

我用Autolisp做了個(gè)程序,希望對(duì)大家有用。歡迎大家討論。這里用的極坐標(biāo)。

% P$ D6 S" X9 j( R {$ [

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

, q& k) _2 W% _5 O- h* u+ X

 

: m! c) ~3 H2 }) W5 q3 V" }

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

/ x2 z- `- }, w9 z& n; i

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

/ }& K! @2 \/ N' D- s- D

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

! o5 g' b0 J* f

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

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

Re: 漸開(kāi)線的公式和畫(huà)法

ding@
$ @1 \. C% q% r1 k8 V
3#
發(fā)表于 2006-4-4 21:22:26 | 只看該作者

Re: 漸開(kāi)線的公式和畫(huà)法

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

Re: 漸開(kāi)線的公式和畫(huà)法

你看的仔細(xì)。是寫(xiě)錯(cuò)了。; S$ Y6 C3 ^! C
是齒輪的基圓。坐標(biāo)原點(diǎn)自己點(diǎn)。
5#
發(fā)表于 2006-4-9 21:35:25 | 只看該作者

Re: 漸開(kāi)線的公式和畫(huà)法

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

Re: 漸開(kāi)線的公式和畫(huà)法

原帖由 zhiqiu 發(fā)表# Q f4 `2 r9 ^: i1 C. g+ d 應(yīng)該是y=r(sin(theta)-theta*cos(theta)),請(qǐng)問(wèn)基圓是不是齒輪的基圓(就是齒輪分度圓半徑與cosα的乘積,α是齒輪壓力角,標(biāo)準(zhǔn)為20度)?坐標(biāo)原點(diǎn)在哪?

j, g* ?8 F* E2 K: X9 d

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

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

Re: 漸開(kāi)線的公式和畫(huà)法

各位老大,我想知道齒輪刀具與被切齒輪嚙合時(shí)的包絡(luò)曲線畫(huà)法,特別是用于校驗(yàn)矩形花鍵滾刀的齒形設(shè)計(jì),謝謝了!跪拜了!! ?9 [: Z) p- T$ X
hui:   xcy889900@163.com
8#
發(fā)表于 2006-4-27 16:32:38 | 只看該作者

Re: 漸開(kāi)線的公式和畫(huà)法

又問(wèn):樓主,是否能找到《工具技術(shù)》1998年05期刊“修緣插齒刀齒形技術(shù)方法”急用!謝謝
& q2 L4 w' v# r% Z/ K
9#
發(fā)表于 2006-4-27 16:51:55 | 只看該作者

Re: 漸開(kāi)線的公式和畫(huà)法

原帖由 帶魚(yú) 發(fā)表 5 K$ k! K3 _1 C+ s5 @8 Q 又問(wèn):樓主,是否能找到《工具技術(shù)》1998年05期刊“修緣插齒刀齒形技術(shù)方法”急用!謝謝

0 g8 }0 a: U9 [9 n( {* _

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

本帖子中包含更多資源

您需要 登錄 才可以下載或查看,沒(méi)有賬號(hào)?注冊(cè)會(huì)員

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

Re: 漸開(kāi)線的公式和畫(huà)法

多謝梧桐站友

本版積分規(guī)則

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

GMT+8, 2025-7-16 15:13 , Processed in 0.076740 second(s), 16 queries , Gzip On.

Powered by Discuz! X3.5 Licensed

© 2001-2025 Discuz! Team.

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