Linearize a non-linear system at an appropriately chosen point to derive an LTI system with A, B,C, D matrices

Size: px
Start display at page:

Download "Linearize a non-linear system at an appropriately chosen point to derive an LTI system with A, B,C, D matrices"

Transcription

1 Dr. J. Tani, Prof. Dr. E. Frazzoli Control Systems I (HS 2018) Exercise Set 2 Topic: Modeling, Linearization Discussion: Learning objectives: The student can mousavis@ethz.ch, 4th October 2018 Use the concept of state to model a system Model simple dynamical systems Linearize a non-linear system at an appropriately chosen point to derive an LTI system with A, B,C, D matrices Understand the notion of equilibrium points and can calculate them. The student is aware of the consequence of being in an equilibrium point Modeling Background: Dynamics Introduction Control systems I relies on some background knowledge in Dynamics to model mechanical systems. To enable you to solve the following exercise a short summary is provided. Dynamics are generally described in terms of accelerations following Newton s 2nd law. Here we distinguish between translational and rotational movements. The change in translational speed times the mass of the object being accelerated, is equal to the sum of the forces acting on the object as written in Eq. 1. Similarly, the change in rotational speed times the rotational inertia of the object being accelerated, is equal to the sum of the torques acting on the object as illustrated by Eq. 3. Translational dynamical equation: m ẍ(t) = i F i, (1) where x(t) denotes the position vector of the center of mass and is given by x(t) = x(t)e x + y(t)e y, (2) where e x, e y represent the base frame vectors with unit length of a two dimensional space. Rotational dynamical equation: J (A) θ(t) = i τ (A) i, (3) where J (A) is the so called moment of inertia with respect to an arbitrary point A. The above two equations should enable you to work with the following exercise problems.

2 Exercise 1 (Inverted Pendulum: Modeling, Linearization) Consider the mechanical system depicted in Figure 1. The objective of this control system is to keep the pendulum in the upright position. The system consists of a rigid bar of length L and mass m which is mounted with a fixed bearing at its lower end. A motor provides a torque τ(t). The moment of inertia of the bar with respect to point P is given by J (P ) = 1 3 ml2. Figure 1: Sketch of the inverted pendulum system with coordinate frame a) Derive the differential equations/equations of motion of the system using Newton s laws of motion. b) Classify the system into the following categories: linear/nonlinear, time-invariant/timevarying, static/dynamic, order/dimension of the system c) Define the states of the system and rewrite the differential equations in state-space form, i.e. ẋ = f(x, u). What is the control input u? d) Determine the equilibrium points of the system. e) We want to design a linear controller in order to achieve the control objective. Therefore we need a linearized model. Around which equilibrium point do we have to linearize the system? Linearize the system around this equilibrium point and provide the matrices A, B, C, D. Assume that you measure the angular velocity θ. Exercise 2 (Thermodynamic System: Temperature Control) Consider the tank (volume V) depicted in figure 2 which has an inlet (volumetric flow V in ) and an outlet (volumetric flow V out ). In order to synthesize a controller to regulate the temperature T R, we need to derive the governing differential equation. Consider the following assumptions: the fluid has a constant density ρ the fluid has a constant specific heat capacities c p, c v the flow throughout the system is stationary

3 T in, V in T R, V, c p, ρ T out, V out Figure 2: Temperature Control of a tank there is no heat loss the system is perfectly mixed the fluid is an ideal gas kinetic and potential energies can be neglected a) Formalize the above assumptions into mathematical expressions. b) Derive the differential equation governing T R using the energetic balance. Exercise 3 (Homework: Programming Exercise: Simulation) Consider the nonlinear system ẋ 1 (t) = x 2 (t) (4) ẋ 2 (t) = x 3 1(t) x 2 (t) + u(t) (5) a) Implement a time integration of the nonlinear system using Python. Simulate the system with zero input u(t) = 0 and nonzero initial condition x(0) = [ 1 1] T. Save the results as x_initial_resp. Simulate the system with zero initial condition and control input u(t) = 0.1 cos(2t). Save the results as x_forced_resp. [ T Simulate the system with x(0) = 1 1] and u(t) = 0.1 cos(2t). Save the results as x_mix. Does x_mix = x_initial_resp + x_forced_resp hold? Explain the result. b) Linearize the system around the equilibrium point using symbolic variables. State the matrices A and B. Conduct the same investigations as for the nonlinear system and compare the results.

4 Figure 3: Balancing cube. Figure 4: wheel. Inverted pendulum with a reaction Exercise 4 (Homework: Cubli: Modeling, Linearization) In this exercise, we will take a look at a simplified model of a Cubli (see com/watch?v=n_6p-1j551y). To keep things simple, we will assume that, unlike the real cubli in Figure 3, our cube rotates only in one dimension. To keep the cube in the desired upright position, we use a reaction wheel (those are normally used for satellite attitude control, check out if you are interested) which is also visible in Figure 3. The simplified Cubli can be modeled as an inverted pendulum with a reaction wheel mounted at the tip of the pendulum. A sketch of such a model is shown in Figure 4. Angle θ is the angle of the tip of the pendulum and angle ϕ is the position of the reaction wheel w.r.t. to the tip of the pendulum. We define the counterclockwise direction to be the positive direction of rotation. Input to the system is the torque that you can apply to the reaction wheel T w. Parameters of the system are m (total mass of the system), l (distance from the supporting point on the ground to the center of gravity when angle θ = 0), J w (moment of inertia of the reaction wheel), J (moment of inertia of the whole system w.r.t to the supporting point on the ground). a) Derive the differential equations which describe the dynamics of the system. (Hint: Only the torque T w acts on the reaction wheel.) b) Find all equilibrium points. c) Rewrite your differential equations as first-order differential equations by introducing states x i. Linearize the system around the equilibrium point (θ = 0, ϕ = 0), i.e. find system matrices A, B, C and D. Assume that you can observe the output θ. d) Is the equilibrium point from the previous task stable? Can you justify your claims? Exercise 5 (Homework: Finance: Inventory Control) We are keeping an item stocked in a warehouse. If there is too little, we will run out of it soon (not preferred). If there is too much, there will be more cost of storage and misuse of capital (not preferred). Every morning there is the possibility to order new stock which is assumed to be immediately delivered. Depending on the demand of the product there are w items leaving the warehouse every evening, where w is a random variable with a given probability density function. The cost to order a new item is given by c; the revenue from a sold item is given by p > c. The cost of having too much stock or negative stock is given by some function r(x). The objective

5 is to find a control law such that the profit is maximized, however, we will only focus on the modelling part in the following. a) Define the state and the control input of your system. Are there any disturbances acting on the system? Are the any state/input constraints? What is the interpretation of x < 0? b) Derive the differential/difference equation governing the system. Classify your system into: linear/nonlinear, time invariant/time varying, static/dynamic, discrete time/continuous time, deterministic/stochastic. The above problem is a typical problem in the field of Optimal Control and can be solved using Dynamic Programming. Problem adapted from: Bertsekas, Dimitri P., et al. Dynamic programming and optimal control. Vol. 1. No. 3. Belmont, MA: Athena scientific, 2005, p. 3. and D Andrea, Raffaello, Dynamic Programming and Optimal Control, Lecture Notes: Lecture 1. Exercise 6 (Python: Simulation of a simple system) In this exercise, you will model some systems in Python in order to understand how to run and visualize a simulation. The system is represented by the following differential equation: ÿ(t) + y(t) 2 ẏ(t) + sin(y(t)) = u(t) How does your system respond when you put a step function as a system s input? Visualize the output y(t). How would you set the initial conditions to y(0) = 2, ẏ(0) = 0 and a delayed step input of 5 s? Run the simulation for 30 seconds and plot the results. Exercise 7 (Python: Simulation of a Spring-Mass 3D pendulum) In this exercise, you will model a relatively complex system in order to get more acquainted with the way solving differential equations in Python works and learn how to visualize a animated simulation. We will model the elastic pendulum shown in Figure 5. Its equations of motion (in 3 dimension) are given by: ẍ = ω2 (r l 0 ) x r ÿ = ω2 (r l 0 ) y r z = ω2 (r l 0 ) z g r where ω = k m and r = x 2 + y 2 + z 2. For system s parameters you can use: m = 0.1 kg, k = 10 N/m, l 0 = 1 m and g = 9.81m/s 2.

6 Figure 5: Schematic representation of the elastic pendulum system. Set the initial condition to x(0) = y(0) = 0 m, z(0) = 1 m and ẋ(0) = 0.1 m/s, ẏ(0) = ż(0) = 0 m/s and simulate the system. Aminate the simulation using the packages mpl_toolkits.mplot3d for 3D plotting and matplotlib.animation which provides animation utilities. You can find a 3d simulation tutorial at Try to plot also a persistent trajectory of the pendulum tip. Use different values of k. What do you expect as k grows very large? We show what the simulation looks like for a small k in figure 6a and a large k in figure 6b. We want to compare the exact solution to the solution obtained linearizing the system in one of the two equilibrium positions. Simulate the system after linearizing the dynamics at the bottom equilibrium position (x = 0, y = 0, z = l 0 mg/k, ẋ = 0, ẏ = 0, ż = 0). Is the approximation sufficiently good? Try different values for the spring stiffness and initial conditions. What do you observe?

7 (a) 3D pendulum with k = 10N/m. (b) 3D pendulum with k = 500N/m. Figure 6: Simulation examples: the orange line represents the trajectory followed by the pendulum tip prior to the capture of the image. Exercise 8 (Extra: Ball on a beam: Modeling, Linearization: (difficult)) In this exercise, we consider a simplified model of a Ball on a Plate/Beam system (see: as depicted in figure 7. The objective of this control system is to stabilize a ball at a certain location on the beam. The system consists of a rigid

8 beam which is mounted on a fixed bearing in its center of mass. The ball is modelled as a point mass m which slides without friction on the beam. A motor provides a torque τ(t). The beam has the moment of inertia J (C) with respect to its center of mass. Note that the coordinate frame is attached to the beam and is therefore time dependent. This has to be considered when taking the derivative with respect to time of the position x(t) = x(t)e r (t) + y(t)e θ (t). Figure 7: Ball on a plate Figure 8: Sketch of the system with coordinate frames a) Derive the differential equations/equations of motion of the system using Newton s laws of motion. Hint: The time derivatives of the coordinate frame base vectors are given by ė r = θe θ and ė θ = θe r. b) Classify the system into the following categories: linear/nonlinear, time-invariant/timevarying, static/dynamic, order/dimension of the system c) Define the states of the system and rewrite the differential equations in state-space form, i.e. ẋ = f(x, u). What is the control input u? Consider the following values of the system parameters: m = 1kg, g = 10m/s 2. Assume that the moment of inertia of the beam can be neglected, i.e. J (C) = 0 kg m 2. d) Linearize the system around a steady state setpoint such that x = x ss, θ ss = 0. Compute the steady state control input u ss and provide the matrices A, B, C, D of the linearized state space model. Assume that you measure the position x. Is J (C) 0 a good assumption?

EE Homework 3 Due Date: 03 / 30 / Spring 2015

EE Homework 3 Due Date: 03 / 30 / Spring 2015 EE 476 - Homework 3 Due Date: 03 / 30 / 2015 Spring 2015 Exercise 1 (10 points). Consider the problem of two pulleys and a mass discussed in class. We solved a version of the problem where the mass was

More information

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity 2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity Energy 7 4 Kinematics Free fall Collisions 3 5 Dynamics

More information

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67 1/67 ECEN 420 LINEAR CONTROL SYSTEMS Lecture 6 Mathematical Representation of Physical Systems II State Variable Models for Dynamic Systems u 1 u 2 u ṙ. Internal Variables x 1, x 2 x n y 1 y 2. y m Figure

More information

MCE 366 System Dynamics, Spring Problem Set 2. Solutions to Set 2

MCE 366 System Dynamics, Spring Problem Set 2. Solutions to Set 2 MCE 366 System Dynamics, Spring 2012 Problem Set 2 Reading: Chapter 2, Sections 2.3 and 2.4, Chapter 3, Sections 3.1 and 3.2 Problems: 2.22, 2.24, 2.26, 2.31, 3.4(a, b, d), 3.5 Solutions to Set 2 2.22

More information

Control Systems I. Lecture 2: Modeling and Linearization. Suggested Readings: Åström & Murray Ch Jacopo Tani

Control Systems I. Lecture 2: Modeling and Linearization. Suggested Readings: Åström & Murray Ch Jacopo Tani Control Systems I Lecture 2: Modeling and Linearization Suggested Readings: Åström & Murray Ch. 2-3 Jacopo Tani Institute for Dynamic Systems and Control D-MAVT ETH Zürich September 28, 2018 J. Tani, E.

More information

Control Systems I. Lecture 2: Modeling. Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch Emilio Frazzoli

Control Systems I. Lecture 2: Modeling. Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch Emilio Frazzoli Control Systems I Lecture 2: Modeling Suggested Readings: Åström & Murray Ch. 2-3, Guzzella Ch. 2-3 Emilio Frazzoli Institute for Dynamic Systems and Control D-MAVT ETH Zürich September 29, 2017 E. Frazzoli

More information

Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class

Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class Homeworks VIII and IX both center on Lagrangian mechanics and involve many of the same skills. Therefore,

More information

Rotation review packet. Name:

Rotation review packet. Name: Rotation review packet. Name:. A pulley of mass m 1 =M and radius R is mounted on frictionless bearings about a fixed axis through O. A block of equal mass m =M, suspended by a cord wrapped around the

More information

3 Space curvilinear motion, motion in non-inertial frames

3 Space curvilinear motion, motion in non-inertial frames 3 Space curvilinear motion, motion in non-inertial frames 3.1 In-class problem A rocket of initial mass m i is fired vertically up from earth and accelerates until its fuel is exhausted. The residual mass

More information

Rigid bodies - general theory

Rigid bodies - general theory Rigid bodies - general theory Kinetic Energy: based on FW-26 Consider a system on N particles with all their relative separations fixed: it has 3 translational and 3 rotational degrees of freedom. Motion

More information

General Physics (PHY 2130)

General Physics (PHY 2130) General Physics (PHY 130) Lecture 0 Rotational dynamics equilibrium nd Newton s Law for rotational motion rolling Exam II review http://www.physics.wayne.edu/~apetrov/phy130/ Lightning Review Last lecture:

More information

Robotics. Dynamics. Marc Toussaint U Stuttgart

Robotics. Dynamics. Marc Toussaint U Stuttgart Robotics Dynamics 1D point mass, damping & oscillation, PID, dynamics of mechanical systems, Euler-Lagrange equation, Newton-Euler recursion, general robot dynamics, joint space control, reference trajectory

More information

Robotics. Dynamics. University of Stuttgart Winter 2018/19

Robotics. Dynamics. University of Stuttgart Winter 2018/19 Robotics Dynamics 1D point mass, damping & oscillation, PID, dynamics of mechanical systems, Euler-Lagrange equation, Newton-Euler, joint space control, reference trajectory following, optimal operational

More information

Physics 351, Spring 2017, Homework #12. Due at start of class, Friday, April 14, 2017

Physics 351, Spring 2017, Homework #12. Due at start of class, Friday, April 14, 2017 Physics 351, Spring 2017, Homework #12. Due at start of class, Friday, April 14, 2017 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page at

More information

Rotational Kinetic Energy

Rotational Kinetic Energy Lecture 17, Chapter 10: Rotational Energy and Angular Momentum 1 Rotational Kinetic Energy Consider a rigid body rotating with an angular velocity ω about an axis. Clearly every point in the rigid body

More information

Lecture 13 REVIEW. Physics 106 Spring What should we know? What should we know? Newton s Laws

Lecture 13 REVIEW. Physics 106 Spring What should we know? What should we know? Newton s Laws Lecture 13 REVIEW Physics 106 Spring 2006 http://web.njit.edu/~sirenko/ What should we know? Vectors addition, subtraction, scalar and vector multiplication Trigonometric functions sinθ, cos θ, tan θ,

More information

Quantitative Skills in AP Physics 1

Quantitative Skills in AP Physics 1 This chapter focuses on some of the quantitative skills that are important in your AP Physics 1 course. These are not all of the skills that you will learn, practice, and apply during the year, but these

More information

Linearization problem. The simplest example

Linearization problem. The simplest example Linear Systems Lecture 3 1 problem Consider a non-linear time-invariant system of the form ( ẋ(t f x(t u(t y(t g ( x(t u(t (1 such that x R n u R m y R p and Slide 1 A: f(xu f(xu g(xu and g(xu exist and

More information

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization Plan of the Lecture Review: control, feedback, etc Today s topic: state-space models of systems; linearization Goal: a general framework that encompasses all examples of interest Once we have mastered

More information

AP PHYSICS 1 Learning Objectives Arranged Topically

AP PHYSICS 1 Learning Objectives Arranged Topically AP PHYSICS 1 Learning Objectives Arranged Topically with o Big Ideas o Enduring Understandings o Essential Knowledges o Learning Objectives o Science Practices o Correlation to Knight Textbook Chapters

More information

MSMS Basilio Bona DAUIN PoliTo

MSMS Basilio Bona DAUIN PoliTo MSMS 214-215 Basilio Bona DAUIN PoliTo Problem 2 The planar system illustrated in Figure 1 consists of a bar B and a wheel W moving (no friction, no sliding) along the bar; the bar can rotate around an

More information

Lab #4 - Gyroscopic Motion of a Rigid Body

Lab #4 - Gyroscopic Motion of a Rigid Body Lab #4 - Gyroscopic Motion of a Rigid Body Last Updated: April 6, 2007 INTRODUCTION Gyroscope is a word used to describe a rigid body, usually with symmetry about an axis, that has a comparatively large

More information

9 Kinetics of 3D rigid bodies - rotating frames

9 Kinetics of 3D rigid bodies - rotating frames 9 Kinetics of 3D rigid bodies - rotating frames 9. Consider the two gears depicted in the figure. The gear B of radius R B is fixed to the ground, while the gear A of mass m A and radius R A turns freely

More information

The basic principle to be used in mechanical systems to derive a mathematical model is Newton s law,

The basic principle to be used in mechanical systems to derive a mathematical model is Newton s law, Chapter. DYNAMIC MODELING Understanding the nature of the process to be controlled is a central issue for a control engineer. Thus the engineer must construct a model of the process with whatever information

More information

Imaginary. Axis. Real. Axis

Imaginary. Axis. Real. Axis Name ME6 Final. I certify that I upheld the Stanford Honor code during this exam Monday December 2, 2005 3:30-6:30 p.m. ffl Print your name and sign the honor code statement ffl You may use your course

More information

Physics 351, Spring 2015, Homework #6. Due at start of class, Friday, February 27, 2015

Physics 351, Spring 2015, Homework #6. Due at start of class, Friday, February 27, 2015 Physics 351, Spring 2015, Homework #6. Due at start of class, Friday, February 27, 2015 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page

More information

FIRST YEAR MATHS FOR PHYSICS STUDENTS NORMAL MODES AND WAVES. Hilary Term Prof. G.G.Ross. Question Sheet 1: Normal Modes

FIRST YEAR MATHS FOR PHYSICS STUDENTS NORMAL MODES AND WAVES. Hilary Term Prof. G.G.Ross. Question Sheet 1: Normal Modes FIRST YEAR MATHS FOR PHYSICS STUDENTS NORMAL MODES AND WAVES Hilary Term 008. Prof. G.G.Ross Question Sheet : Normal Modes [Questions marked with an asterisk (*) cover topics also covered by the unstarred

More information

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as 2 MODELING Once the control target is identified, which includes the state variable to be controlled (ex. speed, position, temperature, flow rate, etc), and once the system drives are identified (ex. force,

More information

ME 230: Kinematics and Dynamics Spring 2014 Section AD. Final Exam Review: Rigid Body Dynamics Practice Problem

ME 230: Kinematics and Dynamics Spring 2014 Section AD. Final Exam Review: Rigid Body Dynamics Practice Problem ME 230: Kinematics and Dynamics Spring 2014 Section AD Final Exam Review: Rigid Body Dynamics Practice Problem 1. A rigid uniform flat disk of mass m, and radius R is moving in the plane towards a wall

More information

Name: Fall 2014 CLOSED BOOK

Name: Fall 2014 CLOSED BOOK Name: Fall 2014 1. Rod AB with weight W = 40 lb is pinned at A to a vertical axle which rotates with constant angular velocity ω =15 rad/s. The rod position is maintained by a horizontal wire BC. Determine

More information

Final Examination Thursday May Please initial the statement below to show that you have read it

Final Examination Thursday May Please initial the statement below to show that you have read it EN40: Dynamics and Vibrations Final Examination Thursday May 0 010 Division of Engineering rown University NME: General Instructions No collaboration of any kind is permitted on this examination. You may

More information

Lecture Module 5: Introduction to Attitude Stabilization and Control

Lecture Module 5: Introduction to Attitude Stabilization and Control 1 Lecture Module 5: Introduction to Attitude Stabilization and Control Lectures 1-3 Stability is referred to as a system s behaviour to external/internal disturbances (small) in/from equilibrium states.

More information

Figure 5.28 (a) Spring-restrained cylinder, (b) Kinematic variables, (c) Free-body diagram

Figure 5.28 (a) Spring-restrained cylinder, (b) Kinematic variables, (c) Free-body diagram Lecture 30. MORE GENERAL-MOTION/ROLLING- WITHOUT-SLIPPING EXAMPLES A Cylinder, Restrained by a Spring and Rolling on a Plane Figure 5.28 (a) Spring-restrained cylinder, (b) Kinematic variables, (c) Free-body

More information

PHY321 Homework Set 2

PHY321 Homework Set 2 PHY321 Homework Set 2 1. [5 pts] Consider the forces from the previous homework set, F A ( r )and F B ( r ), acting on a particle. The force components depend on position r of the particle according to

More information

FINAL EXAM CLOSED BOOK

FINAL EXAM CLOSED BOOK Physics 7A- Section 2, Fall 2008. Instructor Lanzara FINAL EXAM CLOSED BOOK GOOD LUCK! Print Name Discussion Section# or Time Signature Discussion Section GSI Student ID# Problem Points Score 1 20 2 20

More information

Introduction to Control (034040) lecture no. 2

Introduction to Control (034040) lecture no. 2 Introduction to Control (034040) lecture no. 2 Leonid Mirkin Faculty of Mechanical Engineering Technion IIT Setup: Abstract control problem to begin with y P(s) u where P is a plant u is a control signal

More information

Lecture 14. Rotational dynamics Torque. Give me a lever long enough and a fulcrum on which to place it, and I shall move the world.

Lecture 14. Rotational dynamics Torque. Give me a lever long enough and a fulcrum on which to place it, and I shall move the world. Lecture 14 Rotational dynamics Torque Give me a lever long enough and a fulcrum on which to place it, and I shall move the world. Archimedes, 87 1 BC EXAM Tuesday March 6, 018 8:15 PM 9:45 PM Today s Topics:

More information

Contents. Dynamics and control of mechanical systems. Focus on

Contents. Dynamics and control of mechanical systems. Focus on Dynamics and control of mechanical systems Date Day 1 (01/08) Day 2 (03/08) Day 3 (05/08) Day 4 (07/08) Day 5 (09/08) Day 6 (11/08) Content Review of the basics of mechanics. Kinematics of rigid bodies

More information

In this section of notes, we look at the calculation of forces and torques for a manipulator in two settings:

In this section of notes, we look at the calculation of forces and torques for a manipulator in two settings: Introduction Up to this point we have considered only the kinematics of a manipulator. That is, only the specification of motion without regard to the forces and torques required to cause motion In this

More information

Physics for Scientists and Engineers 4th Edition, 2017

Physics for Scientists and Engineers 4th Edition, 2017 A Correlation of Physics for Scientists and Engineers 4th Edition, 2017 To the AP Physics C: Mechanics Course Descriptions AP is a trademark registered and/or owned by the College Board, which was not

More information

Classical Mechanics Comprehensive Exam Solution

Classical Mechanics Comprehensive Exam Solution Classical Mechanics Comprehensive Exam Solution January 31, 011, 1:00 pm 5:pm Solve the following six problems. In the following problems, e x, e y, and e z are unit vectors in the x, y, and z directions,

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

Examination paper for TMA4195 Mathematical Modeling

Examination paper for TMA4195 Mathematical Modeling Department of Mathematical Sciences Examination paper for TMA4195 Mathematical Modeling Academic contact during examination: Elena Celledoni Phone: 48238584, 73593541 Examination date: 11th of December

More information

DO NOT TURN PAGE TO START UNTIL TOLD TO DO SO.

DO NOT TURN PAGE TO START UNTIL TOLD TO DO SO. University of California at Berkeley Physics 7A Lecture 1 Professor Lin Spring 2006 Final Examination May 15, 2006, 12:30 PM 3:30 PM Print Name Signature Discussion Section # Discussion Section GSI Student

More information

THE INDIAN COMMUNITY SCHOOL,KUWAIT PHYSICS SECTION-A

THE INDIAN COMMUNITY SCHOOL,KUWAIT PHYSICS SECTION-A THE INDIAN COMMUNITY SCHOOL,KUWAIT CLASS:XI MAX MARKS:70 PHYSICS TIME ALLOWED : 3HOURS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ General Instructions:

More information

STUDY GUIDE 4: Equilibrium, Angular Kinematics, and Dynamics

STUDY GUIDE 4: Equilibrium, Angular Kinematics, and Dynamics PH 1110 Term C11 STUDY GUIDE 4: Equilibrium, Angular Kinematics, and Dynamics Objectives 25. Define torque. Solve problems involving objects in static equilibrium. 26. Define angular displacement, angular

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

Oscillations. Oscillations and Simple Harmonic Motion

Oscillations. Oscillations and Simple Harmonic Motion Oscillations AP Physics C Oscillations and Simple Harmonic Motion 1 Equilibrium and Oscillations A marble that is free to roll inside a spherical bowl has an equilibrium position at the bottom of the bowl

More information

Homework 1. Due Tuesday, January 29.

Homework 1. Due Tuesday, January 29. Homework 1. Due Tuesday, January 29. Problem 1. An ideal rope (no friction) lying on a table slides from its edge down to a scales lying on the floor. The table s height is h. Find a stationary velocity

More information

Phys 270 Final Exam. Figure 1: Question 1

Phys 270 Final Exam. Figure 1: Question 1 Phys 270 Final Exam Time limit: 120 minutes Each question worths 10 points. Constants: g = 9.8m/s 2, G = 6.67 10 11 Nm 2 kg 2. 1. (a) Figure 1 shows an object with moment of inertia I and mass m oscillating

More information

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N Practice Exam #3 1. A barbell is mounted on a nearly frictionless axle through its center. The low-mass rod has a length d = 0.9 m, and each ball has a mass m = 0.5 kg. At this instant, there are two forces

More information

1. [30] Y&F a) Assuming a small angle displacement θ max < 0.1 rad, the period is very nearly

1. [30] Y&F a) Assuming a small angle displacement θ max < 0.1 rad, the period is very nearly PH1140 D09 Homework 3 Solution 1. [30] Y&F 13.48. a) Assuming a small angle displacement θ max < 0.1 rad, the period is very nearly T = π L =.84 s. g b) For the displacement θ max = 30 = 0.54 rad we use

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

Controllability Analysis of A Two Degree of Freedom Nonlinear Attitude Control System

Controllability Analysis of A Two Degree of Freedom Nonlinear Attitude Control System Controllability Analysis of A Two Degree of Freedom Nonlinear Attitude Control System Jinglai Shen, Amit K Sanyal, and N Harris McClamroch Department of Aerospace Engineering The University of Michigan

More information

Rotational motion problems

Rotational motion problems Rotational motion problems. (Massive pulley) Masses m and m 2 are connected by a string that runs over a pulley of radius R and moment of inertia I. Find the acceleration of the two masses, as well as

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

AP Physics C: Rotation II. (Torque and Rotational Dynamics, Rolling Motion) Problems

AP Physics C: Rotation II. (Torque and Rotational Dynamics, Rolling Motion) Problems AP Physics C: Rotation II (Torque and Rotational Dynamics, Rolling Motion) Problems 1980M3. A billiard ball has mass M, radius R, and moment of inertia about the center of mass I c = 2 MR²/5 The ball is

More information

Dynamics of Ocean Structures Prof. Dr. Srinivasan Chandrasekaran Department of Ocean Engineering Indian Institute of Technology, Madras

Dynamics of Ocean Structures Prof. Dr. Srinivasan Chandrasekaran Department of Ocean Engineering Indian Institute of Technology, Madras Dynamics of Ocean Structures Prof. Dr. Srinivasan Chandrasekaran Department of Ocean Engineering Indian Institute of Technology, Madras Module - 01 Lecture - 09 Characteristics of Single Degree - of -

More information

Imaginary. Axis. Real. Axis

Imaginary. Axis. Real. Axis Name ME6 Final. I certify that I upheld the Stanford Honor code during this exam Monday December 2, 25 3:3-6:3 p.m. ffl Print your name and sign the honor code statement ffl You may use your course notes,

More information

Chapter 8. Rotational Equilibrium and Rotational Dynamics

Chapter 8. Rotational Equilibrium and Rotational Dynamics Chapter 8 Rotational Equilibrium and Rotational Dynamics 1 Force vs. Torque Forces cause accelerations Torques cause angular accelerations Force and torque are related 2 Torque The door is free to rotate

More information

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3)

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3) 121 Textbook Reference: Knight, Chapter 13.1-3, 6. SYNOPSIS In

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

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

Exercise 5 - Hydraulic Turbines and Electromagnetic Systems

Exercise 5 - Hydraulic Turbines and Electromagnetic Systems Exercise 5 - Hydraulic Turbines and Electromagnetic Systems 5.1 Hydraulic Turbines Whole courses are dedicated to the analysis of gas turbines. For the aim of modeling hydraulic systems, we analyze here

More information

cos(θ)sin(θ) Alternative Exercise Correct Correct θ = 0 skiladæmi 10 Part A Part B Part C Due: 11:59pm on Wednesday, November 11, 2015

cos(θ)sin(θ) Alternative Exercise Correct Correct θ = 0 skiladæmi 10 Part A Part B Part C Due: 11:59pm on Wednesday, November 11, 2015 skiladæmi 10 Due: 11:59pm on Wednesday, November 11, 015 You will receive no credit for items you complete after the assignment is due Grading Policy Alternative Exercise 1115 A bar with cross sectional

More information

EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION

EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION 1 EQUIVALENT SINGLE-DEGREE-OF-FREEDOM SYSTEM AND FREE VIBRATION The course on Mechanical Vibration is an important part of the Mechanical Engineering undergraduate curriculum. It is necessary for the development

More information

Mechatronics. MANE 4490 Fall 2002 Assignment # 1

Mechatronics. MANE 4490 Fall 2002 Assignment # 1 Mechatronics MANE 4490 Fall 2002 Assignment # 1 1. For each of the physical models shown in Figure 1, derive the mathematical model (equation of motion). All displacements are measured from the static

More information

Physics 351, Spring 2015, Homework #5. Due at start of class, Friday, February 20, 2015 Course info is at positron.hep.upenn.

Physics 351, Spring 2015, Homework #5. Due at start of class, Friday, February 20, 2015 Course info is at positron.hep.upenn. Physics 351, Spring 2015, Homework #5. Due at start of class, Friday, February 20, 2015 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page

More information

DYNAMICS ME HOMEWORK PROBLEM SETS

DYNAMICS ME HOMEWORK PROBLEM SETS DYNAMICS ME 34010 HOMEWORK PROBLEM SETS Mahmoud M. Safadi 1, M.B. Rubin 2 1 safadi@technion.ac.il, 2 mbrubin@technion.ac.il Faculty of Mechanical Engineering Technion Israel Institute of Technology Spring

More information

Homework 1. Due Thursday, January 21

Homework 1. Due Thursday, January 21 Homework 1. Due Thursday, January 21 Problem 1. Rising Snake A snake of length L and linear mass density ρ rises from the table. It s head is moving straight up with the constant velocity v. What force

More information

Physics 351, Spring 2017, Homework #3. Due at start of class, Friday, February 3, 2017

Physics 351, Spring 2017, Homework #3. Due at start of class, Friday, February 3, 2017 Physics 351, Spring 2017, Homework #3. Due at start of class, Friday, February 3, 2017 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page at

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

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

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam!

Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Prüfung Regelungstechnik I (Control Systems I) Prof. Dr. Lino Guzzella 9. 8. 2 Übersetzungshilfe / Translation aid (English) To be returned at the end of the exam! Do not mark up this translation aid -

More information

PHYSICS 220. Lecture 15. Textbook Sections Lecture 15 Purdue University, Physics 220 1

PHYSICS 220. Lecture 15. Textbook Sections Lecture 15 Purdue University, Physics 220 1 PHYSICS 220 Lecture 15 Angular Momentum Textbook Sections 9.3 9.6 Lecture 15 Purdue University, Physics 220 1 Last Lecture Overview Torque = Force that causes rotation τ = F r sin θ Work done by torque

More information

Chapter 8 Rotational Equilibrium and Rotational Dynamics Force vs. Torque Forces cause accelerations Torques cause angular accelerations Force and

Chapter 8 Rotational Equilibrium and Rotational Dynamics Force vs. Torque Forces cause accelerations Torques cause angular accelerations Force and Chapter 8 Rotational Equilibrium and Rotational Dynamics Force vs. Torque Forces cause accelerations Torques cause angular accelerations Force and torque are related Torque The door is free to rotate about

More information

CEE 271: Applied Mechanics II, Dynamics Lecture 9: Ch.13, Sec.4-5

CEE 271: Applied Mechanics II, Dynamics Lecture 9: Ch.13, Sec.4-5 1 / 40 CEE 271: Applied Mechanics II, Dynamics Lecture 9: Ch.13, Sec.4-5 Prof. Albert S. Kim Civil and Environmental Engineering, University of Hawaii at Manoa 2 / 40 EQUATIONS OF MOTION:RECTANGULAR COORDINATES

More information

Torque. Introduction. Torque. PHY torque - J. Hedberg

Torque. Introduction. Torque. PHY torque - J. Hedberg Torque PHY 207 - torque - J. Hedberg - 2017 1. Introduction 2. Torque 1. Lever arm changes 3. Net Torques 4. Moment of Rotational Inertia 1. Moment of Inertia for Arbitrary Shapes 2. Parallel Axis Theorem

More information

COMPLETE ALL ROUGH WORKINGS IN THE ANSWER BOOK AND CROSS THROUGH ANY WORK WHICH IS NOT TO BE ASSESSED.

COMPLETE ALL ROUGH WORKINGS IN THE ANSWER BOOK AND CROSS THROUGH ANY WORK WHICH IS NOT TO BE ASSESSED. BSc/MSci EXAMINATION PHY-304 Time Allowed: Physical Dynamics 2 hours 30 minutes Date: 28 th May 2009 Time: 10:00 Instructions: Answer ALL questions in section A. Answer ONLY TWO questions from section

More information

Chapter 8: Momentum, Impulse, & Collisions. Newton s second law in terms of momentum:

Chapter 8: Momentum, Impulse, & Collisions. Newton s second law in terms of momentum: linear momentum: Chapter 8: Momentum, Impulse, & Collisions Newton s second law in terms of momentum: impulse: Under what SPECIFIC condition is linear momentum conserved? (The answer does not involve collisions.)

More information

Chapter 6: Momentum Analysis

Chapter 6: Momentum Analysis 6-1 Introduction 6-2Newton s Law and Conservation of Momentum 6-3 Choosing a Control Volume 6-4 Forces Acting on a Control Volume 6-5Linear Momentum Equation 6-6 Angular Momentum 6-7 The Second Law of

More information

ET3-7: Modelling I(V) Introduction and Objectives. Electrical, Mechanical and Thermal Systems

ET3-7: Modelling I(V) Introduction and Objectives. Electrical, Mechanical and Thermal Systems ET3-7: Modelling I(V) Introduction and Objectives Electrical, Mechanical and Thermal Systems Objectives analyse and model basic linear dynamic systems -Electrical -Mechanical -Thermal Recognise the analogies

More information

Theory & Practice of Rotor Dynamics Prof. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati

Theory & Practice of Rotor Dynamics Prof. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati Theory & Practice of Rotor Dynamics Prof. Rajiv Tiwari Department of Mechanical Engineering Indian Institute of Technology Guwahati Module - 5 Torsional Vibrations Lecture - 4 Transfer Matrix Approach

More information

Keble College - Hilary 2014 CP3&4: Mathematical methods I&II Tutorial 5 - Waves and normal modes II

Keble College - Hilary 2014 CP3&4: Mathematical methods I&II Tutorial 5 - Waves and normal modes II Tomi Johnson 1 Keble College - Hilary 2014 CP3&4: Mathematical methods I&II Tutorial 5 - Waves and normal modes II Prepare full solutions to the problems with a self assessment of your progress on a cover

More information

Chapter 14 Periodic Motion

Chapter 14 Periodic Motion Chapter 14 Periodic Motion 1 Describing Oscillation First, we want to describe the kinematical and dynamical quantities associated with Simple Harmonic Motion (SHM), for example, x, v x, a x, and F x.

More information

Stabilization of Motion of the Segway 1

Stabilization of Motion of the Segway 1 Stabilization of Motion of the Segway 1 Houtman P. Siregar, 2 Yuri G. Martynenko 1 Department of Mechatronics Engineering, Indonesia Institute of Technology, Jl. Raya Puspiptek-Serpong, Indonesia 15320,

More information

Lecture PowerPoints. Chapter 11. Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli

Lecture PowerPoints. Chapter 11. Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli Lecture PowerPoints Chapter 11 Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli 2009 Pearson Education, Inc. This work is protected by United States copyright laws and is

More information

Real-Time Implementation of a LQR-Based Controller for the Stabilization of a Double Inverted Pendulum

Real-Time Implementation of a LQR-Based Controller for the Stabilization of a Double Inverted Pendulum Proceedings of the International MultiConference of Engineers and Computer Scientists 017 Vol I,, March 15-17, 017, Hong Kong Real-Time Implementation of a LQR-Based Controller for the Stabilization of

More information

Problem Set Number 2, j/2.036j MIT (Fall 2014)

Problem Set Number 2, j/2.036j MIT (Fall 2014) Problem Set Number 2, 18.385j/2.036j MIT (Fall 2014) Rodolfo R. Rosales (MIT, Math. Dept.,Cambridge, MA 02139) Due Mon., September 29, 2014. 1 Inverse function problem #01. Statement: Inverse function

More information

Analytical Mechanics - Extra Problems

Analytical Mechanics - Extra Problems Analytical Mechanics - Extra Problems Physics 105, F17 (R) are review problems. Review problems are those that have already been covered in prior courses, mostly Intro to Physics I and II. Some are math

More information

Introduction to Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod)

28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod) 28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod) θ + ω 2 sin θ = 0. Indicate the stable equilibrium points as well as the unstable equilibrium points.

More information

Northwestern Connecticut Community College Course Syllabus

Northwestern Connecticut Community College Course Syllabus Northwestern Connecticut Community College Course Syllabus Course Title: Introductory Physics Course #: PHY 110 Course Description: 4 credits (3 class hours and 3 laboratory hours per week) Physics 110

More information

Textbook Reference: Wilson, Buffa, Lou: Chapter 8 Glencoe Physics: Chapter 8

Textbook Reference: Wilson, Buffa, Lou: Chapter 8 Glencoe Physics: Chapter 8 AP Physics Rotational Motion Introduction: Which moves with greater speed on a merry-go-round - a horse near the center or one near the outside? Your answer probably depends on whether you are considering

More information

Physics 1301, Exam 3 Review

Physics 1301, Exam 3 Review c V Andersen, 2006 1 Physics 1301, Exam 3 Review The following is a list of things you should definitely know for the exam, however, the list is not exhaustive. You are responsible for all the material

More information

Swing-Up Problem of an Inverted Pendulum Energy Space Approach

Swing-Up Problem of an Inverted Pendulum Energy Space Approach Mechanics and Mechanical Engineering Vol. 22, No. 1 (2018) 33 40 c Lodz University of Technology Swing-Up Problem of an Inverted Pendulum Energy Space Approach Marek Balcerzak Division of Dynamics Lodz

More information

CHAPTER 1: PHYSICAL QUANTITIES AMD MEASUREMENT

CHAPTER 1: PHYSICAL QUANTITIES AMD MEASUREMENT CHAPTER 1: PHYSICAL UANTITIES AMD MEASUREMENT 11 Physical uantities and Units a) State basic quantities and their respective SI units: length (m), time (s), mass (kg), electrical current (A), temperature

More information

Modeling and Experimentation: Compound Pendulum

Modeling and Experimentation: Compound Pendulum Modeling and Experimentation: Compound Pendulum Prof. R.G. Longoria Department of Mechanical Engineering The University of Texas at Austin Fall 2014 Overview This lab focuses on developing a mathematical

More information

8.012 Physics I: Classical Mechanics Fall 2008

8.012 Physics I: Classical Mechanics Fall 2008 MIT OpenCourseWare http://ocw.mit.edu 8.012 Physics I: Classical Mechanics Fall 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. MASSACHUSETTS INSTITUTE

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