机械原理课程设计_牛头刨床说明书(编辑修改稿)内容摘要:
ABLwcosβ cosβ + AB 0 0 15 (53) 用 MATLAB 画出的图像为: MATLAB 的源程序代码为 : clear all。 clc。 l1=。 l3=。 l4=。 l6=。 l61=。 w1=。 for m=1:3601 o1(m)=pi*(m1)/1800。 o31(m)=atan((l6+l1*sin(o1(m)))/(l1*cos(o1(m))))。 if o31(m)=0 o3(m)=o31(m)。 else o3(m)=pi+o31(m)。 end。 s3(m)=(l1*cos(o1(m)))/cos(o3(m))。 o4(m)=piasin((l61l3*sin(o3(m)))/l4)。 se(m)=l3*cos(o3(m))+l4*cos(o4(m))。 if o1(m)==pi/2 o3(m)=pi/2。 s3(m)=l1+l6。 end if o1(m)==3*pi/2 16 o3(m)=pi/2。 s3(m)=l6l1。 end A1=[cos(o3(m)),s3(m)*sin(o3(m)),0,0。 sin(o3(m)),s3(m)*cos(o3(m)),0,0。 0,l3*sin(o3(m)),l4*sin(o4(m)),1。 0,l3*cos(o3(m)),l4*cos(o4(m)),0]。 B1=w1*[l1*sin(o1(m))。 l1*cos(o1(m))。 0。 0]。 D1=A1\B1。 E1(:,m)=D1。 ds(m)=D1(1)。 w3(m)=D1(2)。 w4(m)=D1(3)。 ve(m)=D1(4)。 A2=[cos(o3(m)),s3(m)*sin(o3(m)),0,0。 sin(o3(m)),s3(m)*cos(o3(m)),0,0。 0,l3*sin(o3(m)),l4*sin(o4(m)),1。 0,l3*cos(o3(m)),l4*cos(o4(m)),0]。 B2=[w3(m)*sin(o3(m)),(ds(m)*sin(o3(m))s3(m)*w3(m)*cos(o3(m))),0,0。 w3(m)*cos(o3(m)),(ds(m)*cos(o3(m))s3(m)*w3(m)*sin(o3(m))),0,0。 0,l3*w3(m)*cos(o3(m)),l4*w4(m)*cos(o4(m)),0。 0,l3*w3(m)*sin(o3(m)),l4*w4(m)*sin(o4(m)),0]*[ds(m)。 w3(m)。 w4(m)。 ve(m)]。 C2=w1*[l1*w1*cos(o1(m))。 l1*w1*sin(o1(m))。 0。 0]。 B=B2+C2。 D2=A2\B。 E2(:,m)=D2。 dds(m)=D2(1)。 a3(m)=D2(2)。 a4(m)=D2(3)。 ae(m)=D2(4)。 end。 o11=o1*180/pi。 y=[o3*180/pi。 o4*180/pi]。 w=[w3。 w4]。 a=[a3。 a4]。 figure。 subplot(221)。 h1=plotyy(o11,y,o11, se)。 axis equal。 title(39。 位 置 线 图39。 )。 xlabel(39。 \it\theta139。 )。 ylabel(39。 \it\theta3,\theta4,Se39。 )。 subplot(222)。 h2=plotyy(o11,w,o11,ve)。 title(39。 速度线图 39。 )。 xlabel(39。 \it\theta139。 )。 ylabel(39。 \it\omega3,\omega4,Ve39。 )。 subplot(212)。 h3=plotyy(o11,a,o11,ae)。 title(39。 加速度线图 39。 )。 xlabel(39。 \it\theta139。 )。 ylabel(39。 \it\alpha3,\alpha4,\alphaE39。 )。 F=[o11。 o3./pi*180。 o4./pi*180。 se。 w3。 w4。 ve。 a3。 a4。 ae]39。 G=F(1:100:3601,:) 17 主机构受力分析 解析法分析 用 MATLAB 画出的力矩图像以及部分数据的表格: 由 MATLAB 软件所得所有数据可以算出等效阻力矩为: MNM MATLAB 的源程序代码为 : clear all。 clc。 %初始条件 theta1=linspace(,100)。 %单位度 theta1=theta1*pi/180。 %转换为弧度制 W1=*pi/30。 %角速度 单位 rad/s H=。 %行程 单位 m L1=。 %O2A的长度 单位 m 角度 力矩 18 36 54 72 90 108 126 144 162 180 198 216 234 252 270 288 306 324 342 360 18 L3=。 %O3B的长度 单位 m L4=。 %BF的长度 单位 m L6=。 %O2O3的长度 单位 m L6u=。 %O3D的长度 单位 m Z=pi/180。 %角度与弧度之间的转换 dT=(theta1(3)theta1(2))/W1。 %时间间隔 for j=1:100 t(j)=dT*(j1)。 %时间因素 end %求解 S Theta Theta4和 SE四个变量 S3=((L6)^2+(L1)^22*L6*L1*cos(theta1+pi/2)).^。 %求出 O3A的值 for i=1:100%求解角度 theta Theta4和 SE的长度 theta3(i)=acos(L1*cos(theta1(i))/S3(i))。 theta4(i)=asin((L6uL3*sin(theta3(i)))/L4)。 SE(i)=L3*cos(theta3(i))+L4*cos(theta4(i))。 end%求解完成 %求解完成 %求解 VS W W4和 VE四个变量 for i=1:100 J= inv([cos(theta3(i)),S3(i)*sin(theta3(i)),0,0。 sin(theta3(i)),S3(i)*cos(theta3(i)),0,0。 0,L3*sin(theta3(i)),L4*sin(theta4(i)),1。 0,L3*cos(theta3(i)),L4*cos(theta4(i)),0])。 K=J*W1*[L1*sin(theta1(i))。 L1*cos(theta1(i))。 0。 0]。 VS3(i)=K(1)。 W3(i)=K(2)。 W4(i)=K(3)。 VE(i)=K(4)。 end%求解完成 %求解 aS a a aE四个变量 for i=1:100 J= inv([cos(theta3(i)),S3(i)*sin(theta3(i)),0,0。 sin(theta3(i)),S3(i)*cos(theta3(i)),0,0。 0,L3*sin(theta3(i)),L4*sin(theta4(i)),1。 0,L3*cos(theta3(i)),L4*cos(theta4(i)),0])。 P=W1*W1*[L1*cos(theta1(i))。 L1*sin(theta1(i))。 0。 0]。 M=。机械原理课程设计_牛头刨床说明书(编辑修改稿)
相关推荐
0 470 设计提示 高位自卸汽车中的举升机构、翻转机构和后箱门打开机构都具有行程较大,做往复运动及承受较大的载荷的共同特点。 齿轮机构比较适合连续的回转运动,凸轮机构适合行程和受力都不太大的场合,因此齿轮机构与凸轮机构都不太适用,连杆机构比较适合在这里的应用。 6 2 机构选型设计 举升机构基本要求 因为在众多场合,受到场地因素,普通自卸汽车的卸载高度远远不够
100 分,其中制作分 50分,创新分 40分,教室打扫 10 分 辅导员老师以及大赛评审组结合各组上交的作品说明书对上交作品进行评比,评比结果将在一周后公布,并且在本次系列活动的闭幕式上颁发荣誉证书以及奖品。 提供材料 一次性筷子 5 双 易拉罐 2 个 矿泉水瓶 2 个 彩色纸 1 包 光盘 2 个 透明胶 1 个 卡纸 1 张 胶水 1 瓶 502 胶 1 瓶 泡沫 1 块 (面巾纸 2
the tachometer, and a 12 bit D/A converter to control the motor amplifier。 we have used an oftheshelf motor amplifier (Galil Motion Control model SSA8/80) to drive the DCmotor. For modules with more
00r/min。 执行构件的运动协调性(运动循环图)设计 根据工艺动作顺序可知该系统运动方案有两个主要构件需要进行运动协调设计,即压紧滑块、磨削砂轮。 以主轴的转角作为参考基准得出机构运动循环图如图 5所示。 图 5 光纤接头保护玻璃管内倒角自动磨削机的设计 7 机构选型及组合 根据执行机构的运动规律,以及工艺动作的分解,选择机构类型,如表 1所示。 表 1 对表 1所选机构类型,分别从运动性能
析,明确本工序需要加工的内容: 保证中心距尺寸 177。 0 , 05 mm 沈阳理工大学课设说明书 6 2)选择定位方式 为保证工件加工孔 28 的定位要求,选择 底面作定位基准,采用 销 定位,与 孔 12配合, 限制六 个自由度。 选择夹紧机构 ( 1)夹紧力的方向 夹紧力的方向要有利于工件的定位,并注意工件的刚性方向,不能使工件有脱离定 位表面的趋势
度 因为加工余量不大, 一次加工完成 mmap 2) 决定每次进给量及切削速度 根据 X51 型铣床说明书,其功率为为 ,中等系统刚度。 根据表查出 齿/ mmfz ,则 m in/ rd vn s 按机床标准选取 wn = 750 min/r m in/ 4 11 0 0 0 7 5 0501 0 0 0 mdnv w 第 8 页 共 30 页 当