UNIVERSITY OF KWAZULU-NATAL EXAMINATIONS: NOVEMBER 2013 COURSE, SUBJECT AND CODE: THEORY OF MACHINES ENME3TMH2 MECHANICAL ENGINEERING

Size: px
Start display at page:

Download "UNIVERSITY OF KWAZULU-NATAL EXAMINATIONS: NOVEMBER 2013 COURSE, SUBJECT AND CODE: THEORY OF MACHINES ENME3TMH2 MECHANICAL ENGINEERING"

Transcription

1 UNIVERSITY OF KWAZULU-NATAL EXAMINATIONS: NOVEMBER 2013 COURSE, SUBJECT AND CODE: THEORY OF MACHINES ENME3TMH2 DURATION: 3 Hours MARKS: 100 MECHANICAL ENGINEERING Internal Examiner: Dr. R.C. Loubser Indeendent Moderator: Prof G. Bright INSTRUCTIONS: 1. The aer consists of two questions. Answer both questions. 2. The questions may be answered in any order but start each question on a new age. 3. Pencil may be used. 4. Illegible work will not be marked. 5. Students are ermitted to bring to the examination an A4 age with information hand written on one side only. 6. Calculators may NOT be used in this examination all calculations must be coded in the MATLAB. 7. A worksheet is rovided. Make sure you hand this in with your exam book. 8. Changes may be made to the text in the temlates if necessary.

2 Question 1 [45 marks] The mechanism shown in figure 1 consists of rods. The end of link 2 at A is constrained to move vertically and the end at B is constrained to move horizontally. The centre of link 2 is attached to a slide through a revolute oint at C. The slider slides on link 3. Link 3 is attached to the inertial frame through a revolute oint at O. Link 2 and link 3 are L=200 mm long. The distance OA is y and the distance OB is x. Link 3 is driven according to the relationshi ( ) where and The co-ordinate vector for the system is q=[ 2, 3,x,y,s]T The following imlementation of the Newton Rahson exists and may be used where necessary in the code. Do not write out this function. function q=osmech(q,l,th3) esilon=1.e-9; Phi= mech(q,lth3); while norm(phi)>esilon J=gradmech(q,L); dq=j\phi; q=q-dq; Phi= mech(q,l,th3); end Question 1a [5] Noting that OCB and OAB form closed loos derive the constraint equations for the mechanism in the horizontal and vertical directions for each loo. Aend the driving constraint after the geometric constraints. Do not substitute values. Question 1b [5] Derive the Jacobian for the system. Question 1c [10] Differentiate the equations twice and extract the b and vectors being the right-hand side of the velocity and acceleration equations resectively. Question 1d [10] Write the following functions in your answer book: function gam= gammech(q,l,al) function Phi=mech(q,L,theta) returns the vector returns the value of the constraint equations

3 Question 1e [5] Write a function that returns a wireframe image of the mechanism at coordinate q suitable for creating an animation of the mechanism. The wireframe must be ositioned within the figure so that all ositions can be accommodated with a small border. function frame=drawmech(q,l) Question 1f [10] Use the attached worksheet to write a scrit file which uses to above functions together with a function gradmech(q,l), which may be assumed to exist, to calculate the osition, velocity and acceleration of the system. Store the results in arrays called qq, vv, and aa resectively. The calculation must be erformed from 0 to 5 seconds in increments of 0.01 seconds. Use the lot function to lot the velocity,, and acceleration, of the slider as a function of crank angle, 3 on searate grids on a single figure window. Include the code necessary to accumulate the sequence of images returned by drawmech that will allow an animated version of the mechanism to be dislayed with the movie command. Figure 1 Sliding bars

4 Question 2 (55 Marks) Figure 2 shows a mechanism which consists of two rods linked by a sring loaded slider. Link 2, OB, is attached to the inertial frame through a revolute oint at O. The other end is attached to a slider, link 4, through a revolute oint at B. The other bar, link3, is attached to the inertial frame through a revolute oint at A. The slider, link 4, slides without friction on link 3. Both the rods are uniform and have their mass centres at their midoints. The horizontal distance between O and A is d=200 mm and the vertical distance is e=250 mm. Use the co-ordinates q=[x 2,y 2, 2, x 3,y 3, 3, x 4,y 4, 4 ] T The mass of link 2 is 0.4 kg and its length is 200mm. The mass of link 3 is 1.2 kg and its length is 600mm. The mass of link 4 is 0.05 kg and moment of inertia kgm 2 Initially link 2 is horizontal and link 3 vertical. The sring is comressed by 30mm and has a stiffness k=60 N/m. n T M J J n x i 0 cos sin x i q f i i i cos sin 0 1 yi i sin i i cosi y sin cos 0 I m 12 2 Do not substitute values for questions 2a to 2d Figure 2 Mechanism

5 Question 2a [12] Using the co-ordinate vector q=[ x 2,y 2, 2, x 3,y 3, 3, x 4,y 4, 4 ] T derive the kinematic constraint equations. Arrange the equations starting at oint O then A and B followed by slider 4-3 Question 2b [8] Derive the Jacobian matrix for the system. A grid is rovided in the worksheets for this urose. Fill in the non-zero terms only. Question 2c [10] Derive the vector that is the right hand side of the acceleration equations Question 2d [5] Give the vector f of external forces. The sring force must be in terms of the lengths and angles given. Either Question 2e [20] If the mechanism is initially at rest write a MATLAB scrit to calculate the acceleration vector q and the reaction forces in terms of the Lagrange multiliers at the instant of release. Exlain, in detail, each comonent of the vector of reaction forces. Use the table rovided in the worksheet. Use units rad, rad/s, rad/s 2, m, m/s, m/s 2, kg and N Use the worksheet rovided for the aroriate functions: gradmech forcemech returns the Jacobian returns the force vector Use the worksheet rovided to comlete the MATLAB scrit file. Or Question 2f [20] Assume that a function, gammech, to calculate the vector calculated in 2c above exists and may be used. Do not write this function yourself. Use the worksheets rovided to write the MATLAB ode45 (ydot) function named diffmech to simulate the dynamic resonse of the mechanism. The ODE function must be a comuter model of the mechanism shown in figure 2. Use the worksheets rovided to comlete the functions: gradmech forcemech returns the Jacobian returns the force vector Use the worksheet rovided to comlete the MATLAB scrit file. The scrit file must lot the vertical osition and velocity of link 4, as a function of time for the time interval [0;1]s on searate grids on a single figure window. Label the axes accordingly. Angles must be in radians.

6 UNIVERSITY OF KWAZULU-NATAL EXAMINATIONS: NOVEMBER 2012 COURSE, SUBJECT AND CODE: THEORY OF MACHINES ENME3TMH2 Worksheets Student Number : Seat Number: These worksheets must be laced inside your answer book

7 % WORKSHEET FOR QUESTION 1f % Define inut data % Set the educated initial guess q= % Initialize arrays % select figure for animation % Carry out the calculations for i=1:n ; ;......; q=.; qq(i,:)=...; J=...; v=...; vv(i,:)=...; gam=...; a=...; aa(i,:)=...;

8 ; ; end figure(1) clf

9 WORKSHEET FOR QUESTION 2b x 2 y 2 2 x 3 y 3 3 x 4 y J= WORKSHEET FOR QUESTION 2e Comonents of vector calculated: X(1)= X(2)= X(3)= X(4)= X(5)= X(6)= X(7)= X(8)= X(10)= X(11)= X(12)= X(13)= X(14)= X(15)= X(16)= X(17)= X(9)=

10 % WORKSHEET FOR QUESTION 2e % Simulation inut data:...; th2=...; th3=...; th4=...; x2=...; x3=...; x4=...; y2=...; y3=.....; y4=...; q=[x2;y2;th2;x3;y3;th3;x4;y4;th4]; m= diag([m2,m2,i2,m3,m3,i3,m4,m4,i4]); J=gradmech(q,...); A=[...]; gam=..; f=forcemech(q,...); b=[...]; X=A\b

11 % WORKSHEET FOR QUESTION 2f global... % Simulation inut data:...; th2=...; th3=...; th4=...; x2=...; x3=...; x4=...; y2=...; y3=.....; y4=...; y0=[x2;y2;th2;x3;y3;th3;x4;y4;th ]; [t,y]=ode45(...); figure(1)

12 % WORKSHEET FOR QUESTION 2f function ydot=diffmech(t,y) global m= diag([m2,m2,i2,m3,m3,i3,m4,m4,i4]); J=gradmech(y,...); A=[...]; gam=gammech(y, ); f=forcemech(y,...); b=[...]; X=A\b; ydot=[.]; % WORKSHEET FOR QUESTION 2e and f function J=gradmech(...) J=[ ];

13 % WORKSHEET FOR QUESTION 2e and f function f=forcemech(...);......; f = [...;...;......;......;......;......;......;......;......];

Dynamics Plane kinematics of rigid bodies Section 4: TJW Rotation: Example 1

Dynamics Plane kinematics of rigid bodies Section 4: TJW Rotation: Example 1 Section 4: TJW Rotation: Example 1 The pinion A of the hoist motor drives gear B, which is attached to the hoisting drum. The load L is lifted from its rest position and acquires an upward velocity of

More information

Hotelling s Two- Sample T 2

Hotelling s Two- Sample T 2 Chater 600 Hotelling s Two- Samle T Introduction This module calculates ower for the Hotelling s two-grou, T-squared (T) test statistic. Hotelling s T is an extension of the univariate two-samle t-test

More information

Final Exam April 30, 2013

Final Exam April 30, 2013 Final Exam Instructions: You have 120 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use a calculator during the exam. Usage of mobile phones and other electronic

More information

OXFORD UNIVERSITY. MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: hours

OXFORD UNIVERSITY. MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: hours OXFORD UNIVERSITY MATHEMATICS, JOINT SCHOOLS AND COMPUTER SCIENCE WEDNESDAY 4 NOVEMBER 2009 Time allowed: 2 1 2 hours For candidates alying for Mathematics, Mathematics & Statistics, Comuter Science, Mathematics

More information

UNIT II Fig (1) Fig (1)

UNIT II Fig (1) Fig (1) UNIVERSITY OF PUNE [4362]-116 S.E.(Mechanical / Automobile) Examination 2013 (2008 pattern) THEY OF MACHINES -1 [Total No. of Questions: 12] [Total No. of Printed pages: 7] [Time: 4 Hours] [Max. Marks:

More information

ME451 Kinematics and Dynamics of Machine Systems

ME451 Kinematics and Dynamics of Machine Systems ME451 Kinematics and Dynamics of Machine Systems Introduction to Dynamics 6.3.4, 6.6 November 25, 2014 Dan Negrut ME451, Fall 2014 University of Wisconsin-Madison Quote of the day: Marge, don't discourage

More information

Machine Learning: Homework 4

Machine Learning: Homework 4 10-601 Machine Learning: Homework 4 Due 5.m. Monday, February 16, 2015 Instructions Late homework olicy: Homework is worth full credit if submitted before the due date, half credit during the next 48 hours,

More information

The University of Melbourne Engineering Mechanics

The University of Melbourne Engineering Mechanics The University of Melbourne 436-291 Engineering Mechanics Tutorial Eleven Instantaneous Centre and General Motion Part A (Introductory) 1. (Problem 5/93 from Meriam and Kraige - Dynamics) For the instant

More information

FE FORMULATIONS FOR PLASTICITY

FE FORMULATIONS FOR PLASTICITY G These slides are designed based on the book: Finite Elements in Plasticity Theory and Practice, D.R.J. Owen and E. Hinton, 1970, Pineridge Press Ltd., Swansea, UK. 1 Course Content: A INTRODUCTION AND

More information

UNIT 2 KINEMATICS OF LINKAGE MECHANISMS

UNIT 2 KINEMATICS OF LINKAGE MECHANISMS UNIT 2 KINEMATICS OF LINKAGE MECHANISMS ABSOLUTE AND RELATIVE VELOCITY An absolute velocity is the velocity of a point measured from a fixed point (normally the ground or anything rigidly attached to the

More information

WEEK 1 Dynamics of Machinery

WEEK 1 Dynamics of Machinery WEEK 1 Dynamics of Machinery References Theory of Machines and Mechanisms, J.J. Uicker, G.R.Pennock ve J.E. Shigley, 2003 Makine Dinamiği, Prof. Dr. Eres SÖYLEMEZ, 2013 Uygulamalı Makine Dinamiği, Jeremy

More information

EQUATIONS OF MOTION: ROTATION ABOUT A FIXED AXIS (Section 17.4) Today s Objectives: Students will be able to analyze the planar kinetics of a rigid

EQUATIONS OF MOTION: ROTATION ABOUT A FIXED AXIS (Section 17.4) Today s Objectives: Students will be able to analyze the planar kinetics of a rigid EQUATIONS OF MOTION: ROTATION ABOUT A FIXED AXIS (Section 17.4) Today s Objectives: Students will be able to analyze the planar kinetics of a rigid body undergoing rotational motion. APPLICATIONS The crank

More information

Tests for Two Proportions in a Stratified Design (Cochran/Mantel-Haenszel Test)

Tests for Two Proportions in a Stratified Design (Cochran/Mantel-Haenszel Test) Chater 225 Tests for Two Proortions in a Stratified Design (Cochran/Mantel-Haenszel Test) Introduction In a stratified design, the subects are selected from two or more strata which are formed from imortant

More information

DEPARTMENT OF MECHANICAL ENGINEERING Dynamics of Machinery. Submitted

DEPARTMENT OF MECHANICAL ENGINEERING Dynamics of Machinery. Submitted DEPARTMENT OF MECHANICAL ENGINEERING Dynamics of Machinery Submitted 1 UNIT I - Force Analysis INDEX (1) Introduction (2) Newton s Law (3) Types of force Analysis (4) Principle of Super Position (5) Free

More information

Kinematics, Dynamics, and Vibrations FE Review Session. Dr. David Herrin March 27, 2012

Kinematics, Dynamics, and Vibrations FE Review Session. Dr. David Herrin March 27, 2012 Kinematics, Dynamics, and Vibrations FE Review Session Dr. David Herrin March 7, 0 Example A 0 g ball is released vertically from a height of 0 m. The ball strikes a horizontal surface and bounces back.

More information

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION (Sections ) Today s Objectives: Students will be able to: a) Apply the three equations of

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION (Sections ) Today s Objectives: Students will be able to: a) Apply the three equations of PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION (Sections 17.2-17.3) Today s Objectives: Students will be able to: a) Apply the three equations of motion for a rigid body in planar motion. b) Analyze problems

More information

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION Today s Objectives: Students will be able to: 1. Apply the three equations of motion for a rigid body in planar motion. 2. Analyze problems involving translational

More information

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION Today s Objectives: Students will be able to: 1. Apply the three equations of motion for a rigid body in planar motion. 2. Analyze problems involving translational

More information

7. FORCE ANALYSIS. Fundamentals F C

7. FORCE ANALYSIS. Fundamentals F C ME 352 ORE NLYSIS 7. ORE NLYSIS his chapter discusses some of the methodologies used to perform force analysis on mechanisms. he chapter begins with a review of some fundamentals of force analysis using

More information

ENGR220 Dynamics. Final Exam

ENGR220 Dynamics. Final Exam Spring Semester 2006 1 ENGR220 Dynamics Final Exam Instructions: 110 minutes to complete. Closed-book, 4 exam reference sheets allowed. Turn computations and exam in to instructor at the end of the exam

More information

ME 274 Spring 2017 Examination No. 2 PROBLEM No. 2 (20 pts.) Given:

ME 274 Spring 2017 Examination No. 2 PROBLEM No. 2 (20 pts.) Given: PROBLEM No. 2 (20 pts.) Given: Blocks A and B (having masses of 2m and m, respectively) are connected by an inextensible cable, with the cable being pulled over a small pulley of negligible mass. Block

More information

10/23/2015. Chapter 7. Velocity in Mechanisms. (Relative Velocity Method) Mohammad Suliman Abuhaiba, Ph.D., PE

10/23/2015. Chapter 7. Velocity in Mechanisms. (Relative Velocity Method) Mohammad Suliman Abuhaiba, Ph.D., PE Chapter 7 Velocity in Mechanisms (Relative Velocity Method) 1 2 7.2. Relative Velocity of Two Bodies Moving in Straight Lines 3 7.3. Motion of a Link Velocity of any point on a link wrt another point on

More information

UNIVERSITY OF SASKATCHEWAN GE MECHANICS III FINAL EXAM APRIL 18, 2011 Professor A. Dolovich A CLOSED BOOK EXAMINATION TIME: 3 HOURS

UNIVERSITY OF SASKATCHEWAN GE MECHANICS III FINAL EXAM APRIL 18, 2011 Professor A. Dolovich A CLOSED BOOK EXAMINATION TIME: 3 HOURS UNIVERSITY OF SASKATCHEWAN GE 226.3 MECHANICS III FINAL EXAM APRIL 18, 2011 Professor A. Dolovich A CLOSED BOOK EXAMINATION TIME: 3 HOURS LAST NAME (printed): FIRST NAME (printed): STUDENT NUMBER: EXAMINATION

More information

CEE 271: Applied Mechanics II, Dynamics Lecture 27: Ch.18, Sec.1 5

CEE 271: Applied Mechanics II, Dynamics Lecture 27: Ch.18, Sec.1 5 1 / 42 CEE 271: Applied Mechanics II, Dynamics Lecture 27: Ch.18, Sec.1 5 Prof. Albert S. Kim Civil and Environmental Engineering, University of Hawaii at Manoa Tuesday, November 27, 2012 2 / 42 KINETIC

More information

Performance evaluation of first stage support system of launcher

Performance evaluation of first stage support system of launcher Journal of Scientific & Industrial Research Vol. 64, December 005, pp. 949-956 Performance evaluation of first stage support system of launcher A C Pankaj 1, *, Jhankar Basu 1, S N Shome 1, P K Mehta and

More information

CEE 271: Applied Mechanics II, Dynamics Lecture 28: Ch.17, Sec.2 3

CEE 271: Applied Mechanics II, Dynamics Lecture 28: Ch.17, Sec.2 3 1 / 20 CEE 271: Applied Mechanics II, Dynamics Lecture 28: Ch.17, Sec.2 3 Prof. Albert S. Kim Civil and Environmental Engineering, University of Hawaii at Manoa Monday, November 1, 2011 2 / 20 PLANAR KINETIC

More information

Exam 2 October 17, 2013

Exam 2 October 17, 2013 Exam 2 Instructions: You have 60 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use an approved calculator during the exam. Usage of mobile phones and other

More information

Rotation. PHYS 101 Previous Exam Problems CHAPTER

Rotation. PHYS 101 Previous Exam Problems CHAPTER PHYS 101 Previous Exam Problems CHAPTER 10 Rotation Rotational kinematics Rotational inertia (moment of inertia) Kinetic energy Torque Newton s 2 nd law Work, power & energy conservation 1. Assume that

More information

Final Exam December 15, 2014

Final Exam December 15, 2014 Final Exam Instructions: You have 120 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use the ME approved calculator only during the exam. Usage of mobile phones

More information

Worksheet on Derivatives. Dave L. Renfro Drake University November 1, 1999

Worksheet on Derivatives. Dave L. Renfro Drake University November 1, 1999 Worksheet on Derivatives Dave L. Renfro Drake University November, 999 A. Fun With d d (n ) = n n : Find y In case you re interested, the rimary urose of these roblems (Section A) is to review roerties

More information

Find the equation of a plane perpendicular to the line x = 2t + 1, y = 3t + 4, z = t 1 and passing through the point (2, 1, 3).

Find the equation of a plane perpendicular to the line x = 2t + 1, y = 3t + 4, z = t 1 and passing through the point (2, 1, 3). CME 100 Midterm Solutions - Fall 004 1 CME 100 - Midterm Solutions - Fall 004 Problem 1 Find the equation of a lane erendicular to the line x = t + 1, y = 3t + 4, z = t 1 and assing through the oint (,

More information

CEE 271: Applied Mechanics II, Dynamics Lecture 25: Ch.17, Sec.4-5

CEE 271: Applied Mechanics II, Dynamics Lecture 25: Ch.17, Sec.4-5 1 / 36 CEE 271: Applied Mechanics II, Dynamics Lecture 25: Ch.17, Sec.4-5 Prof. Albert S. Kim Civil and Environmental Engineering, University of Hawaii at Manoa Date: 2 / 36 EQUATIONS OF MOTION: ROTATION

More information

ME Machine Design I

ME Machine Design I ME 5 - Machine Design I Summer Semester 008 Name Lab. Div. EXAM. OEN BOOK AND CLOSED NOTES. Wednesday, July 16th, 008 Write your solutions on the blank paper that is provided. Write on one side of the

More information

Plane Motion of Rigid Bodies: Forces and Accelerations

Plane Motion of Rigid Bodies: Forces and Accelerations Plane Motion of Rigid Bodies: Forces and Accelerations Reference: Beer, Ferdinand P. et al, Vector Mechanics for Engineers : Dynamics, 8 th Edition, Mc GrawHill Hibbeler R.C., Engineering Mechanics: Dynamics,

More information

ME Machine Design I

ME Machine Design I ME 35 - Machine Design I Summer Semester 008 Name Lab. Div. FINAL EXAM. OPEN BOOK AND CLOSED NOTES. Wednesday, July 30th, 008 Please show all your work for your solutions on the blank white paper. Write

More information

3. ANALYTICAL KINEMATICS

3. ANALYTICAL KINEMATICS In planar mechanisms, kinematic analysis can be performed either analytically or graphically In this course we first discuss analytical kinematic analysis nalytical kinematics is based on projecting the

More information

EQUATIONS OF MOTION: CYLINDRICAL COORDINATES

EQUATIONS OF MOTION: CYLINDRICAL COORDINATES Today s Objectives: Students will be able to: 1. Analyze the kinetics of a particle using cylindrical coordinates. EQUATIONS OF MOTION: CYLINDRICAL COORDINATES In-Class Activities: Check Homework Reading

More information

Worksheet for Exploration 10.1: Constant Angular Velocity Equation

Worksheet for Exploration 10.1: Constant Angular Velocity Equation Worksheet for Exploration 10.1: Constant Angular Velocity Equation By now you have seen the equation: θ = θ 0 + ω 0 *t. Perhaps you have even derived it for yourself. But what does it really mean for the

More information

PHYA2. General Certificate of Education Advanced Subsidiary Examination June Mechanics, Materials and Waves. (JUN11PHYA201) WMP/Jun11/PHYA2 PMT

PHYA2. General Certificate of Education Advanced Subsidiary Examination June Mechanics, Materials and Waves. (JUN11PHYA201) WMP/Jun11/PHYA2 PMT Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Physics A Unit 2 For this paper you must have: l a pencil and a ruler l a calculator l a Data

More information

A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE

A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE THE 19 TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS A SIMPLE PLASTICITY MODEL FOR PREDICTING TRANSVERSE COMPOSITE RESPONSE AND FAILURE K.W. Gan*, M.R. Wisnom, S.R. Hallett, G. Allegri Advanced Comosites

More information

Physics P201 D. Baxter/R. Heinz. EXAM #3 November 21, :00 9:00 PM INSTRUCTIONS

Physics P201 D. Baxter/R. Heinz. EXAM #3 November 21, :00 9:00 PM INSTRUCTIONS Seat # Your exam is form 1. Physics P201 D. Baxter/R. Heinz EXAM #3 November 21, 2002 7:00 9:00 PM INSTRUTIONS 1. Please indicate which form (1, 2, 3, or 4) exam you have by marking the appropriate bubble

More information

Name Student ID Score Last First. I = 2mR 2 /5 around the sphere s center of mass?

Name Student ID Score Last First. I = 2mR 2 /5 around the sphere s center of mass? NOTE: ignore air resistance in all Questions. In all Questions choose the answer that is the closest!! Question I. (15 pts) Rotation 1. (5 pts) A bowling ball that has an 11 cm radius and a 7.2 kg mass

More information

INTRODUCTION. The three general approaches to the solution of kinetics. a) Direct application of Newton s law (called the forcemass-acceleration

INTRODUCTION. The three general approaches to the solution of kinetics. a) Direct application of Newton s law (called the forcemass-acceleration INTRODUCTION According to Newton s law, a particle will accelerate when it is subjected to unbalanced force. Kinetics is the study of the relations between unbalanced forces and resulting changes in motion.

More information

a) Derive general expressions for the stream function Ψ and the velocity potential function φ for the combined flow. [12 Marks]

a) Derive general expressions for the stream function Ψ and the velocity potential function φ for the combined flow. [12 Marks] Question 1 A horizontal irrotational flow system results from the combination of a free vortex, rotating anticlockwise, of strength K=πv θ r, located with its centre at the origin, with a uniform flow

More information

PHYSICS 221 Fall 2013 EXAM 2: November 6, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #:

PHYSICS 221 Fall 2013 EXAM 2: November 6, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #: PHYSICS 221 Fall 2013 EXAM 2: November 6, 2013 8:15pm 10:15pm Name (printed): Recitation Instructor: Section #: INSTRUCTIONS: This exam contains 25 multiple choice questions, plus two extra credit questions,

More information

Chapter 8 Acceleration in Mechanisms

Chapter 8 Acceleration in Mechanisms Chapter 8 Acceleration in Mechanisms 1 2 8.2. Acceleration Diagram for a Link Example 8.1 3 The crank of a slider crank mechanism rotates cw at a constant speed of 300 rpm. The crank is 150 mm & the ConRod

More information

MEC3403. Dynamics II. Introductory book. Faculty of Engineering and Surveying

MEC3403. Dynamics II. Introductory book. Faculty of Engineering and Surveying MEC3403 Dynamics II Faculty of Engineering and Surveying Introductory book Semester 2 2010 Published by University of Southern Queensland Toowoomba Queensland 4350 Australia http://www.usq.edu.au University

More information

Kinematics of. Motion. 8 l Theory of Machines

Kinematics of. Motion. 8 l Theory of Machines 8 l Theory of Machines Features 1. 1ntroduction.. Plane Motion. 3. Rectilinear Motion. 4. Curvilinear Motion. 5. Linear Displacement. 6. Linear Velocity. 7. Linear Acceleration. 8. Equations of Linear

More information

Exam 1 September 11, 2013

Exam 1 September 11, 2013 Exam 1 Instructions: You have 60 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use an approved calculator during the exam. Usage of mobile phones and other

More information

ME scope Application Note 16

ME scope Application Note 16 ME scoe Alication Note 16 Integration & Differentiation of FFs and Mode Shaes NOTE: The stes used in this Alication Note can be dulicated using any Package that includes the VES-36 Advanced Signal Processing

More information

ME451 Kinematics and Dynamics of Machine Systems

ME451 Kinematics and Dynamics of Machine Systems ME451 Kinematics and Dynamics of Machine Systems Introduction to Dynamics Newmark Integration Formula [not in the textbook] December 9, 2014 Dan Negrut ME451, Fall 2014 University of Wisconsin-Madison

More information

Lab 4 Numerical simulation of a crane

Lab 4 Numerical simulation of a crane Lab 4 Numerical simulation of a crane Agenda Time 10 min Item Review agenda Introduce the crane problem 95 min Lab activity I ll try to give you a 5- minute warning before the end of the lab period to

More information

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA ADVANCED MECHANICAL PRINCIPLES AND APPLICATIONS UNIT 18 NQF LEVEL 3

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA ADVANCED MECHANICAL PRINCIPLES AND APPLICATIONS UNIT 18 NQF LEVEL 3 EDEXCEL NATIONAL CERTIFICATE/DIPLOMA ADVANCED MECHANICAL PRINCIPLES AND APPLICATIONS UNIT 18 NQF LEVEL 3 OUTCOME 3 BE ABLE TO DETERMINE RELATIVE AND RESULTANT VELOCITY IN ENGINEERING SYSTEMS Resultant

More information

EXAM 1. OPEN BOOK AND CLOSED NOTES Thursday, February 18th, 2010

EXAM 1. OPEN BOOK AND CLOSED NOTES Thursday, February 18th, 2010 ME 35 - Machine Design I Spring Semester 010 Name of Student Lab. Div. Number EXAM 1. OPEN BOOK AND CLOSED NOTES Thursday, February 18th, 010 Please use the blank paper provided for your solutions. Write

More information

UNIVERSITI TUN HUSSEIN ONN MALAYSIA FINAL EXAMINATION SEMESTER I SESSION 2009/2010

UNIVERSITI TUN HUSSEIN ONN MALAYSIA FINAL EXAMINATION SEMESTER I SESSION 2009/2010 Aftisse^ UNIVERSITI TUN HUSSEIN ONN MALAYSIA SEMESTER I SESSION 2009/2010 SUBJECT : DYNAMICS SUBJECT CODE : BDA2013 COURSE : 2 BDD DATE : NOVEMBER 2009 DURATION : 2 */ 2 HOURS INSTRUCTION : ANSWER FOUR

More information

a) Calculate the moment of inertia of the half disk about the z-axis. (The moment of inertia of a full disk

a) Calculate the moment of inertia of the half disk about the z-axis. (The moment of inertia of a full disk 4-[5 pts.] A thin uniform half disk having mass m, radius R is in the x-y plane and it can rotate about the z-axis as shown in the figure (z-axis is out of page). Initially, the half disk is positioned

More information

Chapter 1 Fundamentals

Chapter 1 Fundamentals Chater Fundamentals. Overview of Thermodynamics Industrial Revolution brought in large scale automation of many tedious tasks which were earlier being erformed through manual or animal labour. Inventors

More information

Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Introduction to vibration

Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Introduction to vibration Engineering Mechanics Prof. U. S. Dixit Department of Mechanical Engineering Indian Institute of Technology, Guwahati Introduction to vibration Module 15 Lecture 38 Vibration of Rigid Bodies Part-1 Today,

More information

General Physics I. Lecture 8: Rotation of a Rigid Object About a Fixed Axis. Prof. WAN, Xin ( 万歆 )

General Physics I. Lecture 8: Rotation of a Rigid Object About a Fixed Axis. Prof. WAN, Xin ( 万歆 ) General Physics I Lecture 8: Rotation of a Rigid Object About a Fixed Axis Prof. WAN, Xin ( 万歆 ) xinwan@zju.edu.cn http://zimp.zju.edu.cn/~xinwan/ New Territory Object In the past, point particle (no rotation,

More information

1. Replace the given system of forces acting on a body as shown in figure 1 by a single force and couple acting at the point A.

1. Replace the given system of forces acting on a body as shown in figure 1 by a single force and couple acting at the point A. Code No: Z0321 / R07 Set No. 1 I B.Tech - Regular Examinations, June 2009 CLASSICAL MECHANICS ( Common to Mechanical Engineering, Chemical Engineering, Mechatronics, Production Engineering and Automobile

More information

PLANAR KINETICS OF A RIGID BODY: WORK AND ENERGY Today s Objectives: Students will be able to: 1. Define the various ways a force and couple do work.

PLANAR KINETICS OF A RIGID BODY: WORK AND ENERGY Today s Objectives: Students will be able to: 1. Define the various ways a force and couple do work. PLANAR KINETICS OF A RIGID BODY: WORK AND ENERGY Today s Objectives: Students will be able to: 1. Define the various ways a force and couple do work. In-Class Activities: 2. Apply the principle of work

More information

PHYSICS 111 SPRING EXAM 2: March 8, 2016; 8:15-9:45 pm

PHYSICS 111 SPRING EXAM 2: March 8, 2016; 8:15-9:45 pm PHYSICS 111 SPRING 2016 EXAM 2: March 8, 2016; 8:15-9:45 pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 20 multiple-choice questions plus 1 extra credit question,

More information

Physics 211 Spring 2014 Final Practice Exam

Physics 211 Spring 2014 Final Practice Exam Physics 211 Spring 2014 Final Practice Exam This exam is closed book and notes. A formula sheet will be provided for you at the end of the final exam you can download a copy for the practice exam from

More information

AP Calculus Testbank (Chapter 10) (Mr. Surowski)

AP Calculus Testbank (Chapter 10) (Mr. Surowski) AP Calculus Testbank (Chater 1) (Mr. Surowski) Part I. Multile-Choice Questions 1. The grah in the xy-lane reresented by x = 3 sin t and y = cost is (A) a circle (B) an ellise (C) a hyerbola (D) a arabola

More information

20k rad/s and 2 10k rad/s,

20k rad/s and 2 10k rad/s, ME 35 - Machine Design I Summer Semester 0 Name of Student: Lab Section Number: FINAL EXAM. OPEN BOOK AND CLOSED NOTES. Thursday, August nd, 0 Please show all your work for your solutions on the blank

More information

Phys101 Lecture 5 Dynamics: Newton s Laws of Motion

Phys101 Lecture 5 Dynamics: Newton s Laws of Motion Phys101 Lecture 5 Dynamics: Newton s Laws of Motion Key points: Newton s second law is a vector equation Action and reaction are acting on different objects Free-Body Diagrams Ref: 4-1,2,3,4,5,6,7. Page

More information

Circular motion minutes. 62 marks. theonlinephysicstutor.com. facebook.com/theonlinephysicstutor Page 1 of 22. Name: Class: Date: Time: Marks:

Circular motion minutes. 62 marks. theonlinephysicstutor.com. facebook.com/theonlinephysicstutor Page 1 of 22. Name: Class: Date: Time: Marks: Circular motion 2 Name: Class: Date: Time: 67 minutes Marks: 62 marks Comments: Page 1 of 22 1 A lead ball of mass 0.25 kg is swung round on the end of a string so that the ball moves in a horizontal circle

More information

UNIT 4 FLYWHEEL 4.1 INTRODUCTION 4.2 DYNAMICALLY EQUIVALENT SYSTEM. Structure. Objectives. 4.1 Introduction

UNIT 4 FLYWHEEL 4.1 INTRODUCTION 4.2 DYNAMICALLY EQUIVALENT SYSTEM. Structure. Objectives. 4.1 Introduction UNIT 4 FLYWHEEL Structure 4.1 Introduction Objectives 4. Dynamically Equivalent System 4.3 Turning Moment Diagram 4.3.1 Turning Moment Diagram of a Single Cylinder 4-storke IC Engine 4.3. Turning Moment

More information

SPECIALIST MATHEMATICS

SPECIALIST MATHEMATICS Victorian Certificate of Education 00 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words SPECIALIST MATHEMATICS Written eamination Monday November 00 Reading time:.00 pm to.5

More information

Topic 30 Notes Jeremy Orloff

Topic 30 Notes Jeremy Orloff Toic 30 Notes Jeremy Orloff 30 Alications to oulation biology 30.1 Modeling examles 30.1.1 Volterra redator-rey model The Volterra redator-rey system models the oulations of two secies with a redatorrey

More information

Chapter 5 Newton s Laws of Motion

Chapter 5 Newton s Laws of Motion Chapter 5 Newton s Laws of Motion Newtonian Mechanics Mass Mass is an intrinsic characteristic of a body The mass of a body is the characteristic that relates a force on the body to the resulting acceleration.

More information

Physics. TOPIC : Rotational motion. 1. A shell (at rest) explodes in to smalll fragment. The C.M. of mass of fragment will move with:

Physics. TOPIC : Rotational motion. 1. A shell (at rest) explodes in to smalll fragment. The C.M. of mass of fragment will move with: TOPIC : Rotational motion Date : Marks : 120 mks Time : ½ hr 1. A shell (at rest) explodes in to smalll fragment. The C.M. of mass of fragment will move with: a) zero velocity b) constantt velocity c)

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission. Leaving Certificate Examination Mathematics

Coimisiún na Scrúduithe Stáit State Examinations Commission. Leaving Certificate Examination Mathematics 2018. M30 Coimisiún na Scrúduithe Stáit State Examinations Commission Leaving Certificate Examination 2018 Mathematics Paper 2 Higher Level Monday, 11 June Morning 9:30 to 12:00 300 marks Examination number

More information

M6e Gyroscope with three Axes

M6e Gyroscope with three Axes Fakultät für hysik und Geowissenschaften hysikalisches Grundraktikum 6e Gyroscoe with three Axes Tasks 1. Determine the moment of inertia of the gyro disk from a measurement of the angular acceleration

More information

Big Ideas 3 & 5: Circular Motion and Rotation 1 AP Physics 1

Big Ideas 3 & 5: Circular Motion and Rotation 1 AP Physics 1 Big Ideas 3 & 5: Circular Motion and Rotation 1 AP Physics 1 1. A 50-kg boy and a 40-kg girl sit on opposite ends of a 3-meter see-saw. How far from the girl should the fulcrum be placed in order for the

More information

AP Physics QUIZ Chapters 10

AP Physics QUIZ Chapters 10 Name: 1. Torque is the rotational analogue of (A) Kinetic Energy (B) Linear Momentum (C) Acceleration (D) Force (E) Mass A 5-kilogram sphere is connected to a 10-kilogram sphere by a rigid rod of negligible

More information

PHYA5/2C. (JUN15PHYA52C01) WMP/Jun15/PHYA5/2C/E5. General Certificate of Education Advanced Level Examination June Section B PMT TOTAL

PHYA5/2C. (JUN15PHYA52C01) WMP/Jun15/PHYA5/2C/E5. General Certificate of Education Advanced Level Examination June Section B PMT TOTAL Centre Number Candidate Number For Examiner s Use Surname Other Names Candidate Signature Examiner s Initials General Certificate of Education Advanced Level Examination June 2015 Question 1 2 Mark Physics

More information

Chapter 8. Rotational Equilibrium and Rotational Dynamics. 1. Torque. 2. Torque and Equilibrium. 3. Center of Mass and Center of Gravity

Chapter 8. Rotational Equilibrium and Rotational Dynamics. 1. Torque. 2. Torque and Equilibrium. 3. Center of Mass and Center of Gravity Chapter 8 Rotational Equilibrium and Rotational Dynamics 1. Torque 2. Torque and Equilibrium 3. Center of Mass and Center of Gravity 4. Torque and angular acceleration 5. Rotational Kinetic energy 6. Angular

More information

Exam 3 Practice Solutions

Exam 3 Practice Solutions Exam 3 Practice Solutions Multiple Choice 1. A thin hoop, a solid disk, and a solid sphere, each with the same mass and radius, are at rest at the top of an inclined plane. If all three are released at

More information

ME Machine Design I. EXAM 1. OPEN BOOK AND CLOSED NOTES. Wednesday, September 30th, 2009

ME Machine Design I. EXAM 1. OPEN BOOK AND CLOSED NOTES. Wednesday, September 30th, 2009 ME - Machine Design I Fall Semester 009 Name Lab. Div. EXAM. OPEN BOOK AND CLOSED NOTES. Wednesday, September 0th, 009 Please use the blank paper provided for your solutions. Write on one side of the paper

More information

Design of NARMA L-2 Control of Nonlinear Inverted Pendulum

Design of NARMA L-2 Control of Nonlinear Inverted Pendulum International Research Journal of Alied and Basic Sciences 016 Available online at www.irjabs.com ISSN 51-838X / Vol, 10 (6): 679-684 Science Exlorer Publications Design of NARMA L- Control of Nonlinear

More information

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue)

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue) Write your name here Surname Other names Pearson Edexcel International Advanced Level Centre Number Mechanics M1 Advanced/Advanced Subsidiary Candidate Number Monday 25 January 2016 Afternoon Time: 1 hour

More information

PLANAR RIGID BODY MOTION: TRANSLATION &

PLANAR RIGID BODY MOTION: TRANSLATION & PLANAR RIGID BODY MOTION: TRANSLATION & Today s Objectives : ROTATION Students will be able to: 1. Analyze the kinematics of a rigid body undergoing planar translation or rotation about a fixed axis. In-Class

More information

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue)

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue) Write your name here Surname Other names Pearson Edexcel International Advanced Level Centre Number Mechanics M1 Advanced/Advanced Subsidiary Candidate Number Monday 25 January 2016 Afternoon Time: 1 hour

More information

SOLUTION di x = y2 dm. rdv. m = a 2 bdx. = 2 3 rpab2. I x = 1 2 rp L0. b 4 a1 - x2 a 2 b. = 4 15 rpab4. Thus, I x = 2 5 mb2. Ans.

SOLUTION di x = y2 dm. rdv. m = a 2 bdx. = 2 3 rpab2. I x = 1 2 rp L0. b 4 a1 - x2 a 2 b. = 4 15 rpab4. Thus, I x = 2 5 mb2. Ans. 17 4. Determine the moment of inertia of the semiellipsoid with respect to the x axis and express the result in terms of the mass m of the semiellipsoid. The material has a constant density r. y x y a

More information

Rotational Kinematics and Dynamics. UCVTS AIT Physics

Rotational Kinematics and Dynamics. UCVTS AIT Physics Rotational Kinematics and Dynamics UCVTS AIT Physics Angular Position Axis of rotation is the center of the disc Choose a fixed reference line Point P is at a fixed distance r from the origin Angular Position,

More information

PRELIMINARY SELECTION OF BASIC PARAMETERS OF DIFFERENT TORSIONAL VIBRATION DAMPERS INTENDED FOR USE IN MEDIUM-SPEED DIESEL ENGINES

PRELIMINARY SELECTION OF BASIC PARAMETERS OF DIFFERENT TORSIONAL VIBRATION DAMPERS INTENDED FOR USE IN MEDIUM-SPEED DIESEL ENGINES Ivan Filiović Dževad Bibić Aleksandar Milašinović Almir Blažević Adnan Pecar ISSN 333-4 PRELIMINARY SELECTION OF BASIC PARAMETERS OF DIFFERENT TORSIONAL VIBRATION DAMPERS INTENDED FOR USE IN MEDIUM-SPEED

More information

PLANAR RIGID BODY MOTION: TRANSLATION & ROTATION

PLANAR RIGID BODY MOTION: TRANSLATION & ROTATION PLANAR RIGID BODY MOTION: TRANSLATION & ROTATION Today s Objectives : Students will be able to: 1. Analyze the kinematics of a rigid body undergoing planar translation or rotation about a fixed axis. In-Class

More information

C7047. PART A Answer all questions, each carries 5 marks.

C7047. PART A Answer all questions, each carries 5 marks. 7047 Reg No.: Total Pages: 3 Name: Max. Marks: 100 PJ DUL KLM TEHNOLOGIL UNIVERSITY FIRST SEMESTER.TEH DEGREE EXMINTION, DEEMER 2017 ourse ode: E100 ourse Name: ENGINEERING MEHNIS PRT nswer all questions,

More information

PROBLEM 16.4 SOLUTION

PROBLEM 16.4 SOLUTION PROBLEM 16.4 The motion of the.5-kg rod AB is guided b two small wheels which roll freel in horizontal slots. If a force P of magnitude 8 N is applied at B, determine (a) the acceleration of the rod, (b)

More information

Figure 1. A planar mechanism. 1

Figure 1. A planar mechanism. 1 ME 352 - Machine Design I Summer Semester 201 Name of Student Lab Section Number EXAM 1. OPEN BOOK AND CLOSED NOTES. Wednesday, July 2nd, 201 Use the blank paper provided for your solutions. Write on one

More information

Chapter 5 Newton s Laws of Motion. Copyright 2010 Pearson Education, Inc.

Chapter 5 Newton s Laws of Motion. Copyright 2010 Pearson Education, Inc. Chapter 5 Newton s Laws of Motion Copyright 2010 Pearson Education, Inc. Force and Mass Copyright 2010 Pearson Education, Inc. Units of Chapter 5 Newton s First Law of Motion Newton s Second Law of Motion

More information

ANALYSIS OF GATE 2018*(Memory Based) Mechanical Engineering

ANALYSIS OF GATE 2018*(Memory Based) Mechanical Engineering ANALYSIS OF GATE 2018*(Memory Based) Mechanical Engineering 6% 15% 13% 3% 8% Engineering Mathematics Engineering Mechanics Mechanics of Materials Theory Of Machines Machine Design Fluid Mechanics 19% 8%

More information

Sample Final Exam 02 Physics 106 (Answers on last page)

Sample Final Exam 02 Physics 106 (Answers on last page) Sample Final Exam 02 Physics 106 (Answers on last page) Name (Print): 4 Digit ID: Section: Instructions: 1. There are 30 multiple choice questions on the test. There is no penalty for guessing, so you

More information

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue)

Advanced/Advanced Subsidiary. You must have: Mathematical Formulae and Statistical Tables (Blue) Write your name here Surname Other names Pearson Edexcel International Advanced Level Centre Number Mechanics M2 Advanced/Advanced Subsidiary Candidate Number Tuesday 24 January 2017 Morning Time: 1 hour

More information

Advanced Robotic Manipulation

Advanced Robotic Manipulation Advanced Robotic Manipulation Handout CS37A (Spring 017) Solution Set #3 Problem 1 - Inertial properties In this problem, you will explore the inertial properties of a manipulator at its end-effector.

More information

Exam 2 March 12, 2014

Exam 2 March 12, 2014 Exam 2 Instructions: You have 60 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use a calculator during the exam. Usage of mobile phones and other electronic

More information

Chapter 8 Rotational Motion

Chapter 8 Rotational Motion Chapter 8 Rotational Motion Chapter 8 Rotational Motion In this chapter you will: Learn how to describe and measure rotational motion. Learn how torque changes rotational velocity. Explore factors that

More information

Physics for Scientist and Engineers third edition Rotational Motion About a Fixed Axis Problems

Physics for Scientist and Engineers third edition Rotational Motion About a Fixed Axis Problems A particular bird s eye can just distinguish objects that subtend an angle no smaller than about 3 E -4 rad, A) How many degrees is this B) How small an object can the bird just distinguish when flying

More information

Chapter 4 Statics and dynamics of rigid bodies

Chapter 4 Statics and dynamics of rigid bodies Chapter 4 Statics and dynamics of rigid bodies Bachelor Program in AUTOMATION ENGINEERING Prof. Rong-yong Zhao (zhaorongyong@tongji.edu.cn) First Semester,2014-2015 Content of chapter 4 4.1 Static equilibrium

More information