25-曲柄滑块-摇杆机构点水平运动速度分析2014.1.18
- 格式:pdf
- 大小:261.47 KB
- 文档页数:3
曲柄滑块机构的运动分析及应用编辑整理:尊敬的读者朋友们:这里是精品文档编辑中心,本文档内容是由我和我的同事精心编辑整理后发布的,发布之前我们对文中内容进行仔细校对,但是难免会有疏漏的地方,但是任然希望(曲柄滑块机构的运动分析及应用)的内容能够给您的工作和学习带来便利。
同时也真诚的希望收到您的建议和反馈,这将是我们进步的源泉,前进的动力。
本文可编辑可修改,如果觉得对您有帮助请收藏以便随时查阅,最后祝您生活愉快业绩进步,以下为曲柄滑块机构的运动分析及应用的全部内容。
机械原理课程机构设计实验报告题目:曲柄滑块机构的运动分析及应用小组成员与学号:刘泽陆(11071182)陈柯宇 (11071177)熊宇飞(11071174)张保开(11071183)班级: 1107172013年6月10日摘要 (4)曲柄滑块机构简介 (5)曲柄滑块机构定义 (5)曲柄滑块机构的特性及应用 (5)曲柄滑块机构的分类 (9)偏心轮机构简介 (10)曲柄滑块的动力学特性 (11)曲柄滑块的运动学特性 (12)曲柄滑块机构运行中的振动与平衡 (15)参考文献 (16)组员分工 (16)摘要本文着重介绍了曲柄滑块机构的结构,分类,用途,并进行了曲柄滑块机构的动力学和运动学分析,曲柄滑块机构的运动学特性分析,得出了机构压力表达式,曲柄滑块机构的运动特性分析,得出了滑块的位移、速度和加速度的运动表达式。
最后,对曲柄滑块机构运动中振动、平衡稳定性等进行了总结.关键字:曲柄滑块动力与运动分析振动与平稳性ABSTRACTThe paper describes the composition of planar linkage, focusing on the structure, classification, use of a slider—crank mechanism and making the dynamic and kinematic analysis, kinematics characteristics of the crank slider mechanism analysis for a slider—crank mechanism, on one hand , we obtain the drive pressure of the slider—crank mechanism ,on the other hand,we obtain the expression of displacement, velocity and acceleration of movement。
曲柄滑块机构运动分析一、相关参数在图1所示的曲柄滑块机构中,已知各构件的尺寸分别为mm l 1001=,mm l 3002=,s rad /101=ω,试确定连杆2和滑块3的位移、速度和加速度,并绘制出运动线图。
图1 曲柄滑块机构二、数学模型的建立1、位置分析为了对机构进行运动分析,将各构件表示为矢量,可写出各杆矢所构成的封闭矢量方程。
将各矢量分别向X 轴和Y 轴进行投影,得0sin sin cos cos 22112211=+=+θθθθl l S ll C(1) 由式(1)得2、速度分析将式(1)对时间t 求导,得速度关系C v l l l l =--=+222111222111sin sin 0cos cos θωθωθωθω(2) 将(2)式用矩阵形式来表示,如下所示⎥⎦⎤⎢⎣⎡-=⎥⎦⎤⎢⎣⎡⎥⎦⎤⎢⎣⎡-1111122222cos sin . 0 cos 1 sin θθωωθθl l v l lC(3) 3、加速度分析将(2)对时间t 求导,得加速度关系三、计算程序1、主程序%1.输入已知数据clear;l1=0.1;l2=0.3;e=0;hd=pi/180;du=180/pi;omega1=10;alpha1=0;%2.曲柄滑块机构运动计算for n1=1:721theta1(n1)=(n1-1)*hd;%调用函数slider_crank计算曲柄滑块机构位移、速度、加速度[theta2(n1),s3(n1),omega2(n1),v3(n1),alpha2(n1),a3(n1)]=slider_crank(theta1(n1),omega1,alpha1,l1,l2,e); endfigure(1);n1=0:720;subplot(2,3,1)plot(n1,theta2*du);title('连杆转角位移线图');xlabel('曲柄转角\theta_1/\circ');ylabel('连杆角位移/\circ');grid onsubplot(2,3,2)plot(n1,omega2);title('连杆角速度运动线图');xlabel('曲柄转角\theta_1/\circ');ylabel('连杆角速度/rad\cdots^{-1}');grid onsubplot(2,3,3)plot(n1,alpha2);title('连杆角加速度运动线图');xlabel('曲柄转角\theta_1/\circ');ylabel('连杆角加速度/rad\cdots^{-2}');grid onsubplot(2,3,4)plot(n1,s3);title('滑块位移线图');xlabel('曲柄转角\theta_1/\circ');ylabel('滑块位移/\m');grid onsubplot(2,3,5)plot(n1,v3);title('滑块速度运动线图');xlabel('曲柄转角\theta_1/\circ');ylabel('滑块速度/m\cdots^{-1}');grid onsubplot(2,3,6)plot(n1,a3);title('滑块加速度运动线图');xlabel('曲柄转角\theta_1/\circ');ylabel('滑块加速度/m\cdots^{-2}');grid on2、子程序function[theta2,s3,omega2,v3,alpha2,a3]=slider_crank(theta1,omega1,alpha1,l1,l2,e);%计算连杆2的角位移和滑块3的线位移s3=l1*cos(theta1)+l2*cos(theta2);theta2=asin((e-l1*sin(theta1))/l2);%计算连杆2的角速度和滑块3的线速度A=[l2*sin(theta2),1;-l2*cos(theta2),0];B=[-l1*sin(theta1);l1*cos(theta1)];omega=A\(omega1*B);omega2=omega(1);v3=omega(2);%计算连杆2的角加速度和滑块3的线加速度At=[omega2*l2*cos(theta2),0;omega2*l2*sin(theta2),0];Bt=[-omega1*l1*cos(theta1);-omega1*l1*sin(theta1)];alpha=A\(-At*omega+alpha1*B+omega1*Bt);alpha2=alpha(1);a3=alpha(2);四、程序运行结果及分析图2 运动规律曲线图从仿真曲线可以看出,当曲柄以w1=10rad/s匀速转动时,连杆的转角位移变化范围大约在-20~20度之间,在90°或270°有极值,呈反正弦变化趋势;连杆的角速度变化范围大约在-3.3~3.3rad/s,在0°或180°有极值,成反余弦变化趋势;连杆角加速度变化范围大约在-35~35rad/s2,在90°或270°有极值,呈正弦变化趋势。
机械原理课程机构设计实验报告题目:曲柄滑块机构的运动分析及应用小组成员与学号:刘泽陆(********)陈柯宇(11071177)熊宇飞(11071174)张保开(11071183)班级:1107172013年6月10日摘要 (3)曲柄滑块机构简介 (4)曲柄滑块机构定义 (4)曲柄滑块机构的特性及应用 (4)曲柄滑块机构的分类 (8)偏心轮机构简介 (9)曲柄滑块的动力学特性 (10)曲柄滑块的运动学特性 (11)曲柄滑块机构运行中的振动与平衡 (14)参考文献 (15)组员分工 (15)摘要本文着重介绍了曲柄滑块机构的结构,分类,用途,并进行了曲柄滑块机构的动力学和运动学分析,曲柄滑块机构的运动学特性分析,得出了机构压力表达式,曲柄滑块机构的运动特性分析,得出了滑块的位移、速度和加速度的运动表达式。
最后,对曲柄滑块机构运动中振动、平衡稳定性等进行了总结。
关键字:曲柄滑块动力与运动分析振动与平稳性ABSTRACTThe paper describes the composition of planar linkage, focusing on the structure, classification, use of a slider-crank mechanism and making the dynamic and kinematic analysis, kinematics characteristics of the crank slider mechanism analysis for a slider-crank mechanism, on one hand , we obtain the drive pressure of the slider-crank mechanism ,on the other hand,we obtain the expression of displacement, velocity and acceleration of movement. Finally, the movement of the vibration and balance stability of the crank slider mechanism are summarized.曲柄滑块机构简介曲柄滑块机构定义曲柄滑块机构是铰链四杆机构的演化形式,由若干刚性构件用低副(回转副、移动副)联接而成的一种机构。
曲柄滑块机构的运动分析及应用精编W O R D版IBM system office room 【A0816H-A0912AAAHH-GX8Q8-GNTHHJ8】机械原理课程机构设计实验报告题目:曲柄滑块机构的运动分析及应用小组成员与学号:刘泽陆(11071182)陈柯宇 (11071177)熊宇飞(11071174)张保开 (11071183)班级: 1107172013年6月10日摘要 (3)曲柄滑块机构简介 (4)曲柄滑块机构定义 (4)曲柄滑块机构的特性及应用 (4)曲柄滑块机构的分类 (8)偏心轮机构简介 (9)曲柄滑块的动力学特性 (10)曲柄滑块的运动学特性 (11)曲柄滑块机构运行中的振动与平衡 (14)参考文献 (15)组员分工 (15)摘要本文着重介绍了曲柄滑块机构的结构,分类,用途,并进行了曲柄滑块机构的动力学和运动学分析,曲柄滑块机构的运动学特性分析,得出了机构压力表达式,曲柄滑块机构的运动特性分析,得出了滑块的位移、速度和加速度的运动表达式。
最后,对曲柄滑块机构运动中振动、平衡稳定性等进行了总结。
关键字:曲柄滑块动力与运动分析振动与平稳性ABSTRACTThe paper describes the composition of planar linkage, focusing on the structure, classification, use of a slider-crank mechanism and making the dynamic and kinematic analysis, kinematics characteristics of the crank slider mechanism analysis for a slider-crank mechanism, on one hand , we obtain the drive pressure of the slider-crank mechanism ,on the other hand,we obtain the expression of displacement, velocity and acceleration of movement. Finally, the movement of the vibration and balance stability of the crank slider mechanism are summarized.曲柄滑块机构简介曲柄滑块机构定义曲柄滑块机构是铰链四杆机构的演化形式,由若干刚性构件用低副(回转副、移动副)联接而成的一种机构。
曲柄摇杆机构的运动分析研究作者:黄帆来源:《科技视界》2016年第01期【摘要】本文介绍平面连杆机构运动分析杆组法,并针对曲柄摇杆机构的运动特性进行分析,给出了曲柄摇杆的数值参数设计方面的理论依据。
【关键词】曲柄摇杆;运动分析;急回特性【Abstract】This paper introduces the kinematic analysis of the planar linkage mechanism,analyzes the kinematic characteristics of the crank and rocker mechanism, and gives the theoretical basis of the numerical parameters design of the crank rocker.【Key words】Crank and rocker; Motion analysis; Quick return characteristics0 前言曲柄摇杆机构是一种典型的四杆机构之一,由曲柄、摇杆、连杆、机架组成的。
曲柄或摇杆通过直接接触将预定的运动传给从动件。
由于曲柄摇杆机构可以实现各种复杂的运动要求,而且具有结构简单紧凑的特点,所以广泛应用于各种自动化机器、仪器和装配线,例如在纺织机械、印刷机械以及一些控制系统等装置中,广泛应用着各种类型的曲柄摇杆机构。
具有急回特性的曲柄摇杆机构是常用的曲柄摇杆机构,曲柄的转动使从动件按预定的运动规律摆动。
由于曲柄摇杆机构的运动特征依赖于曲柄、摇杆、连杆的长度和行程速比的类型,在常规设计中,为了获得从动件的预定输出运动(位移、速度和加速度),必须合理选择从动件的类型和机构参数后精确地设计曲柄摇杆的数值参数。
1 平面连杆机构运动分析杆组法简介平面连杆机构的运动分析,早已有成熟的算法,其中阿氏杆组法最为简单有效。
大部分连杆机构都是在基本机构上增加一个或多个常用的阿氏杆组构成的。
机械原理课程机构设计实验报告题目:曲柄滑块机构的运动分析及应用小组成员与学号:泽陆(11071182)柯宇(11071177)熊宇飞(11071174)保开(11071183)班级:1107172013年6月10日摘要 (3)曲柄滑块机构简介 (4)曲柄滑块机构定义 (4)曲柄滑块机构的特性及应用 (4)曲柄滑块机构的分类 (8)偏心轮机构简介 (9)曲柄滑块的动力学特性 (10)曲柄滑块的运动学特性 (11)曲柄滑块机构运行中的振动与平衡 (14)参考文献 (15)组员分工 (15)摘要本文着重介绍了曲柄滑块机构的结构,分类,用途,并进行了曲柄滑块机构的动力学和运动学分析,曲柄滑块机构的运动学特性分析,得出了机构压力表达式,曲柄滑块机构的运动特性分析,得出了滑块的位移、速度和加速度的运动表达式。
最后,对曲柄滑块机构运动中振动、平衡稳定性等进行了总结。
关键字:曲柄滑块动力与运动分析振动与平稳性ABSTRACTThe paper describes the composition of planar linkage, focusing on the structure, classification, use of a slider-crank mechanism and making the dynamic and kinematic analysis, kinematics characteristics of the crank slider mechanism analysis for a slider-crank mechanism, on one hand , we obtain the drive pressure of the slider-crank mechanism ,on the other hand,we obtain the expression of displacement, velocity and acceleration of movement. Finally, the movement of the vibration and balance stability of the crank slider mechanism are summarized.曲柄滑块机构简介曲柄滑块机构定义曲柄滑块机构是铰链四杆机构的演化形式,由若干刚性构件用低副(回转副、移动副)联接而成的一种机构。
曲柄滑块机构最大速度位置求解法及运动分析
黄晨华;李湘勤;毛桂生
【期刊名称】《机械工程与自动化》
【年(卷),期】2022()6
【摘要】曲柄滑块机构是很多机械中常用到的一种机构,滑块的最大速度位置是该种机构的一个特殊位置,不同的文献中对该特殊位置的求解有不同的结论。
针对常
用的对位置方程求导获得机构速度、加速度的方法存在计算过程复杂等不足,提出
了结合速度、加速度求解用到的解析法和图解法的长度求解法:依据极值处的导数
为零这一数学规律,首先作出机构的加速度多边形图,然后令加速度多边形图中与滑
块加速度对应的边长为零,求出对应的曲柄转过的角度,从而得到曲柄与连杆的夹角。
用实例对比了两种求解方法,验证了提出的长度求解法正确可行。
经运动分析得出
滑块处于最大速度时:①曲柄并不是一定与连杆垂直,只有在偏心距与曲柄相等且在
去程时,曲柄与连杆的夹角为90°;②当偏心距为0时,只有曲柄长度远小于连杆长度(比值小于5%),曲柄与连杆的夹角才为90°;③不同的曲柄滑块机构几何尺寸,曲柄与连杆的夹角不同。
【总页数】3页(P19-21)
【作者】黄晨华;李湘勤;毛桂生
【作者单位】韶关学院智能工程学院
【正文语种】中文
【中图分类】TH112
【相关文献】
1.曲柄滑块机构中滑块最大速度的位置探讨
2.曲柄滑块机构运动分析的简便图解法
3.简便的曲柄滑块机构运动分析图解法及其证明
4.曲柄滑块机构运动分析的简便图解法
5.求曲柄滑块机构滑块加速度的速度瞬心法
因版权原因,仅展示原文概要,查看原文内容请购买。