我想看一级黄色大片_久久亚洲国产精品一区二区_久久精品免视看国产明星_91久久青青青国产免费

您的位置:網站首頁 > Proe教程

Pro/E 各種曲線方程集合(二)

時間:2010-11-17 09:25:09 來源:未知

39.圓
x = cos ( t *(5*180))
y = sin ( t *(5*180))
z = 0

 



圖39


40.封閉球形環繞曲線
rho=2
theta=360*t
phi=t*360*10



圖40


41.柱坐標螺旋曲線
x = 100*t * cos ( t *(5*180))
y = 100*t * sin ( t *(5*180))
z = 0



圖41

 

42.蛇形曲線
x = 2 * cos ( (t+1) *(2*180))
y = 2 * sin ( t *(5*360))
z = t*(t+1)



圖42


43.8字形曲線
柱坐標
theta = t*360
r=10+(8*sin(theta))^2



圖43


44.橢圓曲線
笛卡爾坐標系
a = 10
b = 20
theta = t*360
x = a*cos(theta)
y = b*sin(theta)



圖44


45.梅花曲線
柱坐標
theta = t*360
r=10+(3*sin(theta*2.5))^2



圖45


46.另一個花曲線
theta = t*360
r=10-(3*sin(theta*3))^2
z=4*sin(theta*3)^2



圖46


47.改一下就成為空間感更強的花曲線了;)
theta = t*360
r=10-(3*sin(theta*3))^2
z=(r*sin(theta*3))^2



圖47


48.螺旋上升的橢圓線
a = 10
b = 20
theta = t*360*3
x = a*cos(theta)
y = b*sin(theta)
z=t*12



圖48


49.甚至這種螺旋花曲線
theta = t*360*4
r=10+(3*sin(theta*2.5))^2
z = t*16



圖49


50 鼓形線

笛卡爾方程

r=5+3.3*sin(t*180)+t
theta=t*360*10
z=t*10



圖50


51 長命鎖曲線

笛卡爾方程:
a=1*t*359.5
b=q2*t*360
c=q3*t*360
rr1=w1
rr2=w2
rr3=w3
x=rr1*cos(a)+rr2*cos(b)+rr3*cos(c)
y=rr1*sin(a)+rr2*sin(b)+rr3*sin(c)



圖51


52 簪形線

球坐標

方程:
rho=200*t
theta=900*t
phi=t*90*10



圖52


53.螺旋上升曲線
r=t^10
theta=t^3*360*6*3+t^3*360*3*3
z=t^3*(t+1)



圖53


54.蘑菇曲線
rho=t^3+t*(t+1)
theta=t*360
phi=t^2*360*20*20



圖54


55. 8字曲線
a=1
b=1
x=3*b*cos(t*360)+a*cos(3*t*360)
Y=b*sin(t*360)+a*sin(3*t*360)



圖55


56.梅花曲線
theta=t*360
r=100+50*cos(5*theta)
z=2*cos(5*theta)



圖56


57.桃形曲線
rho=t^3+t*(t+1)
theta=t*360
phi=t^2*360*10*10



圖57


58.名稱:碟形彈簧
建立環境:pro/e
圓柱坐
r = 5
theta = t*3600
z =(sin(3.5*theta-90))+24



圖58


59.環形二次曲線
笛卡兒方程:

x=50*cos(t*360)
y=50*sin(t*360)
z=10*cos(t*360*8)



圖59


60 蝶線

球坐標:

rho=4*sin(t*360)+6*cos(t*360^2)
theta=t*360
phi=log(1+t*360)*t*360



圖60


61.正弦周彈簧

笛卡爾:

ang1=t*360
ang2=t*360*20
x=ang1*2*pi/360
y=sin(ang1)*5+cos(ang2)
z=sin(ang2)