Linear System Theory

Size: px
Start display at page:

Download "Linear System Theory"

Transcription

1 Linear System Theory - MATLAB Exercise Prof. Robert X. Gao Electromechanical Systems Laboratory Department of Mechanical Engineering

2 Outline Review System Modeling Procedure Example Simple Problem Example Translational Problem Example 3 Rotational Problem Summary / 37

3 Review MATLAB Operations User Interface Define a Variable Matrix Operations Graphics Help System Modeling Function Command Define a Matrix A A=[ 3; 4 5 6; 7 8 9] Find Dimension of A size(a) Find Transpose of A A' Matrix Addition A+B (where B is a same dimension matrix) Matrix Multiplication A*B (where B is a compatible dimension matrix) Element Multiplication A.*B(where B is the same dimension matrix) Find Inverse of A inv(a) D Line Plot plot(x,y) / 37

4 Use Help Whenever encounters a problem use the built in Help Menu \ Help \ Product Help (F) Type in keyword and search for answer Demos: an easy way to learn 4 / 37

5 System Modeling Procedure Analyze the problem Free-body Diagrams Equilibrium Equations State Variables Rewrite State Variables in the form of Matrices Realization in MATLAB 5 / 37

6 Example. Given: M = 0 kg, friction can be ignored. When t = 0, x = 0, v = 0. Input: F a (t) = 0 N Output: Displacement of M when t = 0 seconds. 6 / 37

7 Analysis Free body Diagram Equilibrium Equation : F a (t) = Mx State Variables: x,v x v v F / M Displacement x is a state variable, so there is no need to write a separate output equation. Classic Method: Since acceleration is a constant, x = ½ * at where a = F/M = m/s x = ½ * *0 = 50 meters 7 / 37

8 Modeling in State Space Rewrite state-variable equations to include all variables x (0) x() v (0) F v (0) x(0) v(/ M) F Rewrite state-variable in the form of matrices x 0 x 0 F v 0 0 v / M Making the following substitutions x x y, and y v v State variable equation becomes 0 0 y y F 0 0 / M 8 / 37

9 Define the System Equation % System Equation Definition function dy = sys_0_a(t,y) % Constants m = 0; %---- Initialization and State Space Equation dy =zeros(,); f = 0; System Input dy = [0,;0,0]*y + [0; /m]*f; State Space Equations 9 / 37

10 Launch the ODE Solver % ODE Solver T=0; %----Initial Conditions IC0=[0 0]; % Solver Input timeperiod=[0:t/00:t]; options = odeset('reltol',e-,'abstol',e-); % ODE Solver Set Initial Conditions and Solving Range Set Solver [T,Y] = ode45(@sys_0_a,timeperiod,ic0,options); % Plot Output figure; plot(t,y(:,),'linewidth',3); grid on; xlabel('time (seconds)','fontsize',34); ylabel('displacement (meters)','fontsize',34); set(gca,'fontsize',4); axis tight; fprintf('\nfinal Displacement:%f\n',Y(length(Y),)); Invoke ODE Solver Present Result 0 / 37

11 Result Displacement (meters) When t = 0 seconds, Final Displacement: Time (seconds) / 37

12 Example. Given: M = 0 kg, friction can be ignored. When t = 0, x = 0, v = 0. Input: F a (t) = 30t a = 3t. same as Problem in the Preliminary Quiz Output: Displacement of M when t = 5 seconds. / 37

13 Solution Free body Diagram Equilibrium Equation : F a (t) = Mx State Variables: x,v x v v F / M Rewrite State Variable Equations to Include All Variables x (0) x() v (0) F x x y, and y v (0) x(0) v(/ M) F v v Re formed State Variable Equation 0 0 y y F 0 0 / M Everything here remains the same as the Ex.. 3 / 37

14 Modeling in State Space Rewrite state-variable equations to include all variables x (0) x() v (0) F v (0) x(0) v(/ M) F Rewrite state-variable in the form of matrices x 0 x 0 F v 0 0 v / M Making the following substitutions x x y, and y v v State variable equation becomes 0 0 y y F 0 0 / M 4 / 37

15 Define the System Equation % System Equation Definition function dy = sys a(t,y) % Constants m = 0; %---- Initialization and State Space Equation dy =zeros(,); f = 30*t; System Input dy = [0,;0,0]*y + [0; /m]*f; State Space Equations 5 / 37

16 Launch the ODE Solver % ODE Solver T=5; %----Initial Conditions IC0=[0 0]; % Solver Input timeperiod=[0:t/00:t]; options = odeset('reltol',e-,'abstol',e-); % ODE Solver Set Initial Conditions and Solving Range Set Solver [T,Y] = ode45(@sys a,timeperiod,ic0,options); % Plot Output figure; plot(t,y(:,),'linewidth',3); grid on; xlabel('time (seconds)','fontsize',34); ylabel('displacement (meters)','fontsize',34); set(gca,'fontsize',4); axis tight; fprintf('\nfinal Displacement:%f\n',Y(length(Y),)); Invoke ODE Solver Present Result 6 / 37

17 Result Displacement (meters) When t = 5, Final Displacement: Time (seconds) 7 / 37

18 Example Problem 3.0 PART I Find the state variable model Output: Energy stored in each spring PART II Given: M = 0 kg, M =0 kg K = 5 N/m, K = 00 N/m, K 3 = 50 N/m B= 45 N.s/m, g= 9.8 m/s Suppose x = 0, x = m, v = 0, v = 0, Find the energy stored in spring K when t = seconds 8 / 37

19 Free body Diagrams 9 / 37

20 Equilibrium Equations Equilibrium Equations Mx K( xx) KxMg0 Mx KxBx K( xx) Mg0 3 Re organize Mx ( K K) xkx Mg0 KxMx Bx ( K K) x Mg0 3 Identify State Variables x, v, x, v 0 / 37

21 Modeling in State Space - State Variable Equations x v v ( K K ) x K x M g x M v v K x ( K K ) x Bv M g 3 M Re write to Include All Variables Output Equations Ek K( xx) x [0] x [] v [0] x [0] v [0] g K K K v [ ] x [0] v [ ] x [0] v [] g M M x [0] x [0] v [0] x [] v [0] g K K K B v [ ] x [0] v [ ] x [ ] v [ ] g 3 M M M / 37

22 Modeling in State Space - Collect terms to express as product of matrices x x K K K v M v M g x x 0 v K K K3 B 0 v M M M Output Equation x v Ek K( xx) KN, where N 0 0 x v / 37

23 Modeling in State Space 3 Make the Following Substitutions x x v v q thus q x x v v The State Variable equations become K K K M M q q g K K K3 B 0 M M M Ek KN wheren q, / 37

24 Define the System Equation % System Equation Definition function [dy,e] = sys_(t,y) %------Constants m = 0; m = 0; k = 5; k = 00; k3 = 50; b = 45; g = 9.8; % kg % N/m % N/(m/s) % m/s^ % - Initialization - dy =zeros(4,); % - State Space Equation dy = [0,, 0, 0; -(k+k)/m, 0, k/m, 0; 0, 0, 0, ; k/m, 0, -(k+k3)/m, -b/m]*y + [0,,0,-]'*g; State Space Equations 4 / 37

25 Launch the ODE Solver % ODE Solver T=0; % ---Initial Conditions IC0=[0 0 0]; % Solver Input timeperiod=[0:t/000:t]; options = odeset('reltol',e-,'abstol',e-); % ODE Solver Set Initial Conditions and Solving Range Set Solver [T,Y,E] = ode45(@sys_,timeperiod,ic0',options); % Plot Output figure; k = 00; E = /*k*(y(:,)-y(:,3)).^; plot(t,e,'linewidth',3) grid on; xlabel('time (seconds)','fontsize',34); ylabel('energy (Joules)','FontSize',34); set(gca,'fontsize',4); axis tight; fprintf('\n Energy in Spring K when T = :%f\n',e(0)); Invoke ODE Solver Present Result 5 / 37

26 Plot the Results OUTPUT : Energy Stored in Spring K When T =, Energy Stored in K = J. Energy (Joules) Time (seconds) 6 / 37

27 Example 3 Problem 5.5 PART I Find the state variable model Output: Spring Force (Positive when spring is in tension ) PART II Given: M = 0 kg K = 5 N/m L = meter Suppose θ =, θ = 0, ω = 0, ω = 0, Find the spring force when t = 0 ~ 0 seconds 7 / 37

28 Free body Diagrams Assuming θ and θ to be sufficiently small so that the following approximation is allowed sinθ θ cosθ Therefore, K(sinθ L/-sinθ L/) = ½KL(θ -θ ) Centrifugal Force F = MωR 8 / 37

29 Equilibrium Equations Moment Moment Equilibrium Equations KL KL ML MgLsin ( )cos 0 KL KL ML MgLsin ( )cos 0 Re organize and Simplify KL KL ML ( MgL ) KL KL ML ( MgL ) Identify State Variables,,, sinθ θ cosθ 9 / 37

30 Modeling in State Space - State Variable Equations Output Equations g K K L 4M 4M K g K 4M L 4M Re write to Include All Variables [0] [] [0] [0] g K K [ ( )] [0] [ ] [0] L 4M 4M [0] [0] [0] [] K g K [ ] [0] [ ( )] [0] 4M L 4M KL Fk ( ) 30 / 37

31 Modeling in State Space - Collect terms to express as product of matrices g K K ( ) 0 0 L 4M 4M K g K 0 ( ) 0 4M L 4M Output Equation KL KL KL Fk ( ) / 37

32 Modeling in State Space 3 Make the Following Substitutions q thus q The State Variable equations become g K K ( ) 0 0 q L 4M 4M q K g K 0 ( ) 0 4M L 4M F k KL KL 0 0 q 3 / 37

33 Define the System Equation % System Equation Definition function dy = sys_3(t,y) %------Constants m = 0; % Mass 0 kg k = 5; % Spring 5 N/m L = ; % Length meter g = 9.8; % g 9.8 m/s^ % - Initialization - dy =zeros(4,); % - State Space Equation - dy = [0,, 0, 0;... -(g/l+k/4/m), 0, k/4/m, 0;... 0, 0, 0, ;... k/4/m, 0, -(g/l+k/4/m), 0]*y; State Space Equations 33 / 37

34 Launch the ODE Solver % ODE Solver T=0; % ---Initial Conditions IC0=[ 0 0 0]; % Solver Input timeperiod=[0:t/000:t]; options = odeset('reltol',e-,'abstol',e-); % ODE Solver [T,Y,E] = ode45(@sys_3,timeperiod,ic0',options); % Plot Output figure; F = /*5*(Y(:,3)-Y(:,)); plot(t,f,'linewidth',3) grid on; xlabel('time (seconds)','fontsize',34); ylabel('spring Tension Force (Newton)','FontSize',34); set(gca,'fontsize',4); axis tight; Set Initial Conditions and Solving Range Set Solver Invoke ODE Solver Present Result 34 / 37

35 Plot the Result OUTPUT : Tension Force in Spring K Spring Tension Force (Newton) Time (seconds) 35 / 37

36 Discussion Manipulation of the output vectors Compare the output of Problem and Problem 3, discuss the difference Importance of finding the right the state variable equations 36 / 37

37 Summary Reviewed basic MATLAB operations Demonstrated the sequence of modeling a dynamic system Demonstrated finding the numerical solution with MATLAB 37 / 37

Linear System Theory

Linear System Theory Linear System Theory - Introduction to Simulink Prof. Robert X. Gao Electromechanical Systems Laboratory Department of Mechanical Engineering Outline Block Diagram Introduction Launching Simulink Modeling

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

!T = 2# T = 2! " The velocity and acceleration of the object are found by taking the first and second derivative of the position:

!T = 2# T = 2!  The velocity and acceleration of the object are found by taking the first and second derivative of the position: A pendulum swinging back and forth or a mass oscillating on a spring are two examples of (SHM.) SHM occurs any time the position of an object as a function of time can be represented by a sine wave. We

More information

Relationship between POTENTIAL ENERGY and FORCE

Relationship between POTENTIAL ENERGY and FORCE PH-211 Relationship between POTENTIAL ENERGY and FORCE Knowing F at every place, we defined the corresponding potential energy function U. Here we explore: Given U, how to find F? A. La Rosa = Becomes

More information

MEM 255 Introduction to Control Systems: Modeling & analyzing systems

MEM 255 Introduction to Control Systems: Modeling & analyzing systems MEM 55 Introduction to Control Systems: Modeling & analyzing systems Harry G. Kwatny Department of Mechanical Engineering & Mechanics Drexel University Outline The Pendulum Micro-machined capacitive accelerometer

More information

Introduction to System Dynamics

Introduction to System Dynamics SE1 Prof. Davide Manca Politecnico di Milano Dynamics and Control of Chemical Processes Solution to Lab #1 Introduction to System Dynamics Davide Manca Dynamics and Control of Chemical Processes Master

More information

Mechanics of Structures (CE130N) Lab 3

Mechanics of Structures (CE130N) Lab 3 UNIVERSITY OF CALIFORNIA AT BERKELEY CE 130N, Spring 2009 Department of Civil and Environmental Engineering Prof. S. Govindjee and Dr. T. Koyama Structural Engineering, Mechanics and Materials Lab 3 1

More information

Chapter 5 Gravitation Chapter 6 Work and Energy

Chapter 5 Gravitation Chapter 6 Work and Energy Chapter 5 Gravitation Chapter 6 Work and Energy Chapter 5 (5.6) Newton s Law of Universal Gravitation (5.7) Gravity Near the Earth s Surface Chapter 6 (today) Work Done by a Constant Force Kinetic Energy,

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

POTENTIAL ENERGY AND ENERGY CONSERVATION

POTENTIAL ENERGY AND ENERGY CONSERVATION 7 POTENTIAL ENERGY AND ENERGY CONSERVATION 7.. IDENTIFY: U grav = mgy so ΔU grav = mg( y y ) SET UP: + y is upward. EXECUTE: (a) ΔU = (75 kg)(9.8 m/s )(4 m 5 m) = +6.6 5 J (b) ΔU = (75 kg)(9.8 m/s )(35

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

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

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

Two Cars on a Curving Road

Two Cars on a Curving Road skiladæmi 4 Due: 11:59pm on Wednesday, September 30, 2015 You will receive no credit for items you complete after the assignment is due. Grading Policy Two Cars on a Curving Road A small car of mass m

More information

3.4 Application-Spring Mass Systems (Unforced and frictionless systems)

3.4 Application-Spring Mass Systems (Unforced and frictionless systems) 3.4. APPLICATION-SPRING MASS SYSTEMS (UNFORCED AND FRICTIONLESS SYSTEMS)73 3.4 Application-Spring Mass Systems (Unforced and frictionless systems) Second order differential equations arise naturally when

More information

Chapter 6. Second order differential equations

Chapter 6. Second order differential equations Chapter 6. Second order differential equations A second order differential equation is of the form y = f(t, y, y ) where y = y(t). We shall often think of t as parametrizing time, y position. In this case

More information

Fundamental principles

Fundamental principles Dynamics and control of mechanical systems Date Day 1 (03/05) - 05/05 Day (07/05) Day 3 (09/05) Day 4 (11/05) Day 5 (14/05) Day 6 (16/05) Content Review of the basics of mechanics. Kinematics of rigid

More information

Chapter 15 Oscillations

Chapter 15 Oscillations Chapter 15 Oscillations Summary Simple harmonic motion Hook s Law Energy F = kx Pendulums: Simple. Physical, Meter stick Simple Picture of an Oscillation x Frictionless surface F = -kx x SHM in vertical

More information

Chapter 5 Oscillatory Motion

Chapter 5 Oscillatory Motion Chapter 5 Oscillatory Motion Simple Harmonic Motion An object moves with simple harmonic motion whenever its acceleration is proportional to its displacement from some equilibrium position and is oppositely

More information

Physics 111. Lecture 15 (Walker: 7.1-2) Work & Energy March 2, Wednesday - Midterm 1

Physics 111. Lecture 15 (Walker: 7.1-2) Work & Energy March 2, Wednesday - Midterm 1 Physics 111 Lecture 15 (Walker: 7.1-2) Work & Energy March 2, 2009 Wednesday - Midterm 1 Lecture 15 1/25 Work Done by a Constant Force The definition of work, when the force is parallel to the displacement:

More information

Lecture 9: Eigenvalues and Eigenvectors in Classical Mechanics (See Section 3.12 in Boas)

Lecture 9: Eigenvalues and Eigenvectors in Classical Mechanics (See Section 3.12 in Boas) Lecture 9: Eigenvalues and Eigenvectors in Classical Mechanics (See Section 3 in Boas) As suggested in Lecture 8 the formalism of eigenvalues/eigenvectors has many applications in physics, especially in

More information

Work and Energy continued

Work and Energy continued Chapter 6 Work and Energy continued 6.2 The Work-Energy Theorem and Kinetic Energy Chapters 1 5 Motion equations were been developed, that relate the concepts of velocity, speed, displacement, time, and

More information

Potential energy functions used in Chapter 7

Potential energy functions used in Chapter 7 Potential energy functions used in Chapter 7 CHAPTER 7 CONSERVATION OF ENERGY Conservation of mechanical energy Conservation of total energy of a system Examples Origin of friction Gravitational potential

More information

Dynamical Systems. Mechanical Systems

Dynamical Systems. Mechanical Systems EE/ME/AE324: Dynamical Systems Chapter 2: Modeling Translational Mechanical Systems Common Variables Used Assumes 1 DoF per mass, i.e., all motion scalar Displacement: x ()[ t [m] Velocity: dx() t vt ()

More information

Lecture 11. Scott Pauls 1 4/20/07. Dartmouth College. Math 23, Spring Scott Pauls. Last class. Today s material. Next class

Lecture 11. Scott Pauls 1 4/20/07. Dartmouth College. Math 23, Spring Scott Pauls. Last class. Today s material. Next class Lecture 11 1 1 Department of Mathematics Dartmouth College 4/20/07 Outline Material from last class Inhomogeneous equations Method of undetermined coefficients Variation of parameters Mass spring Consider

More information

Quiz #8. Vector. 2) Given A( 1, 4, 3), and B( 3, 4, 1), calculate A B

Quiz #8. Vector. 2) Given A( 1, 4, 3), and B( 3, 4, 1), calculate A B Quiz #8 Vector 1) Given A(1, 2), and B( 3, 4), calculate A B 2) Given A( 1, 4, 3), and B( 3, 4, 1), calculate A B 3) Given the following magnitude of forces in Figure 1: α = 20, θ = 60, β = 30, F 1 = 1N,

More information

Mechanics PhD Preliminary Spring 2017

Mechanics PhD Preliminary Spring 2017 Mechanics PhD Preliminary Spring 2017 1. (10 points) Consider a body Ω that is assembled by gluing together two separate bodies along a flat interface. The normal vector to the interface is given by n

More information

CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN

CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN CHAPTER 6 STATE SPACE: FREQUENCY RESPONSE, TIME DOMAIN 6. Introduction Frequency Response This chapter will begin with the state space form of the equations of motion. We will use Laplace transforms to

More information

Lecture 6. Analytical Physics 123 Prof. Noronha-Hostler Prof. Montalvo. Oct 12 th, 2018

Lecture 6. Analytical Physics 123 Prof. Noronha-Hostler Prof. Montalvo. Oct 12 th, 2018 Lecture 6 Analytical Physics 123 Prof. Noronha-Hostler Prof. Montalvo Oct 12 th, 2018 Tests The average was lower than expected, will discuss with Prof. Montolvo about a curve. Grades probably posted after

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

Chapter 4. Forces and Newton s Laws of Motion. continued

Chapter 4. Forces and Newton s Laws of Motion. continued Chapter 4 Forces and Newton s Laws of Motion continued 4.9 Static and Kinetic Frictional Forces When an object is in contact with a surface forces can act on the objects. The component of this force acting

More information

Physics 1C. Lecture 12B

Physics 1C. Lecture 12B Physics 1C Lecture 12B SHM: Mathematical Model! Equations of motion for SHM:! Remember, simple harmonic motion is not uniformly accelerated motion SHM: Mathematical Model! The maximum values of velocity

More information

Chapter 5: Energy. Energy is one of the most important concepts in the world of science. Common forms of Energy

Chapter 5: Energy. Energy is one of the most important concepts in the world of science. Common forms of Energy Chapter 5: Energy Energy is one of the most important concepts in the world of science. Common forms of Energy Mechanical Chemical Thermal Electromagnetic Nuclear One form of energy can be converted to

More information

Physics 5A Final Review Solutions

Physics 5A Final Review Solutions Physics A Final Review Solutions Eric Reichwein Department of Physics University of California, Santa Cruz November 6, 0. A stone is dropped into the water from a tower 44.m above the ground. Another stone

More information

BMEN 398: MATLAB Module: Higher Order Differential Equations; SIMULINK Fall 2005 Updated 8/21/2005 Hart

BMEN 398: MATLAB Module: Higher Order Differential Equations; SIMULINK Fall 2005 Updated 8/21/2005 Hart BMEN 398: MATLAB Module: Higher Order Differential Equations; SIMULINK Fall 2005 Updated 8/21/2005 Hart Higher Order ODEs: (Rao, 2002) Although we can now write MATLAB code to find numerical solutions

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

Kinematics and Dynamics

Kinematics and Dynamics AP PHYS 1 Test Review Kinematics and Dynamics Name: Other Useful Site: http://www.aplusphysics.com/ap1/ap1- supp.html 2015-16 AP Physics: Kinematics Study Guide The study guide will help you review all

More information

To study applications of Newton s Laws as they. To study conditions that establish equilibrium. To consider contact forces and the effects of

To study applications of Newton s Laws as they. To study conditions that establish equilibrium. To consider contact forces and the effects of Chap. 5: More Examples with Newton s Law Chap.5: Applying Newton s Laws To study conditions that establish equilibrium. To study applications of Newton s Laws as they apply when the net force is not zero.

More information

Units are important anyway

Units are important anyway Ch. 1 Units -- SI System (length m, Mass Kg and Time s). Dimensions -- First check of Mathematical relation. Trigonometry -- Cosine, Sine and Tangent functions. -- Pythagorean Theorem Scalar and Vector

More information

Physics 1401V October 28, 2016 Prof. James Kakalios Quiz No. 2

Physics 1401V October 28, 2016 Prof. James Kakalios Quiz No. 2 This is a closed book, closed notes, quiz. Only simple (non-programmable, nongraphing) calculators are permitted. Define all symbols and justify all mathematical expressions used. Make sure to state all

More information

Lab 1: Dynamic Simulation Using Simulink and Matlab

Lab 1: Dynamic Simulation Using Simulink and Matlab Lab 1: Dynamic Simulation Using Simulink and Matlab Objectives In this lab you will learn how to use a program called Simulink to simulate dynamic systems. Simulink runs under Matlab and uses block diagrams

More information

W = F x W = Fx cosθ W = Fx. Work

W = F x W = Fx cosθ W = Fx. Work Ch 7 Energy & Work Work Work is a quantity that is useful in describing how objects interact with other objects. Work done by an agent exerting a constant force on an object is the product of the component

More information

Phys 1401: General Physics I

Phys 1401: General Physics I 1. (0 Points) What course is this? a. PHYS 1401 b. PHYS 1402 c. PHYS 2425 d. PHYS 2426 2. (0 Points) Which exam is this? a. Exam 1 b. Exam 2 c. Final Exam 3. (0 Points) What version of the exam is this?

More information

Homework #5 Solutions

Homework #5 Solutions Homework #5 Solutions Math 123: Mathematical Modeling, Spring 2019 Instructor: Dr. Doreen De Leon 1. Exercise 7.2.5. Stefan-Boltzmann s Law of Radiation states that the temperature change dt/ of a body

More information

Physics 111. Tuesday, November 2, Rotational Dynamics Torque Angular Momentum Rotational Kinetic Energy

Physics 111. Tuesday, November 2, Rotational Dynamics Torque Angular Momentum Rotational Kinetic Energy ics Tuesday, ember 2, 2002 Ch 11: Rotational Dynamics Torque Angular Momentum Rotational Kinetic Energy Announcements Wednesday, 8-9 pm in NSC 118/119 Sunday, 6:30-8 pm in CCLIR 468 Announcements This

More information

CHAPTER 12 OSCILLATORY MOTION

CHAPTER 12 OSCILLATORY MOTION CHAPTER 1 OSCILLATORY MOTION Before starting the discussion of the chapter s concepts it is worth to define some terms we will use frequently in this chapter: 1. The period of the motion, T, is the time

More information

Physics 101 Discussion Week 12 Explanation (2011)

Physics 101 Discussion Week 12 Explanation (2011) Physics 101 Discussion Week 12 Eplanation (2011) D12-1 Horizontal oscillation Q0. This is obviously about a harmonic oscillator. Can you write down Newton s second law in the (horizontal) direction? Let

More information

CE 206: Engineering Computation Sessional. System of Linear Equations

CE 206: Engineering Computation Sessional. System of Linear Equations CE 6: Engineering Computation Sessional System of Linear Equations Gauss Elimination orward elimination Starting with the first row, add or subtract multiples of that row to eliminate the first coefficient

More information

PLANAR KINETIC EQUATIONS OF MOTION (Section 17.2)

PLANAR KINETIC EQUATIONS OF MOTION (Section 17.2) PLANAR KINETIC EQUATIONS OF MOTION (Section 17.2) We will limit our study of planar kinetics to rigid bodies that are symmetric with respect to a fixed reference plane. As discussed in Chapter 16, when

More information

Physics A - PHY 2048C

Physics A - PHY 2048C Physics A - PHY 2048C Mass & Weight, Force, and Friction 10/04/2017 My Office Hours: Thursday 2:00-3:00 PM 212 Keen Building Warm-up Questions 1 Did you read Chapters 6.1-6.6? 2 In your own words: What

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

Description of the motion using vectorial quantities

Description of the motion using vectorial quantities Description of the motion using vectorial quantities RECTILINEAR MOTION ARBITRARY MOTION (3D) INERTIAL SYSTEM OF REFERENCE Circular motion Free fall Description of the motion using scalar quantities Let's

More information

Static Equilibrium, Gravitation, Periodic Motion

Static Equilibrium, Gravitation, Periodic Motion This test covers static equilibrium, universal gravitation, and simple harmonic motion, with some problems requiring a knowledge of basic calculus. Part I. Multiple Choice 1. 60 A B 10 kg A mass of 10

More information

The Pendulum Plain and Puzzling

The Pendulum Plain and Puzzling The Pendulum Plain and Puzzling Chris Sangwin School of Mathematics University of Edinburgh April 2017 Chris Sangwin (University of Edinburgh) Pendulum April 2017 1 / 38 Outline 1 Introduction and motivation

More information

UNIVERSIDADE FEDERAL DO AMAZONAS (UFAM) MATERIAL DE AULA PRÁTICA 01 MODELAGEM E SIMULAÇÃO MATEMÁTICA DE SISTEMAS FÍSICOS

UNIVERSIDADE FEDERAL DO AMAZONAS (UFAM) MATERIAL DE AULA   PRÁTICA 01 MODELAGEM E SIMULAÇÃO MATEMÁTICA DE SISTEMAS FÍSICOS UNIVERSIDADE FEDERAL DO AMAZONAS (UFAM) IDENTIFICAÇÃO DA DISCIPLINA Professor Pierre Vilar Dantas Disciplina Laboratório de Sistemas de Controle Horário Sextas, 16h00min às 18h00min Data 17/08/2018 Turma(s)

More information

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems Agenda of the Day 1. Resume of lesson I 2. Basic system models. 3. Models of basic electrical system elements 4. Application of Matlab/Simulink

More information

Solving systems of first order equations with ode Systems of first order differential equations.

Solving systems of first order equations with ode Systems of first order differential equations. A M S 20 MA TLA B NO T E S U C S C Solving systems of first order equations with ode45 c 2015, Yonatan Katznelson The M A T L A B numerical solver, ode45 is designed to work with first order differential

More information

Chapter 8. Centripetal Force and The Law of Gravity

Chapter 8. Centripetal Force and The Law of Gravity Chapter 8 Centripetal Force and The Law of Gravity Centripetal Acceleration An object traveling in a circle, even though it moves with a constant speed, will have an acceleration The centripetal acceleration

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

MECH : a Primer for Matlab s ode suite of functions

MECH : a Primer for Matlab s ode suite of functions Objectives MECH 4-563: a Primer for Matlab s ode suite of functions. Review the fundamentals of initial value problems and why numerical integration methods are needed.. Introduce the ode suite of numerical

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

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS LSN -3: WORK, ENERGY AND POWER Questions From Reading Activity? Essential Idea: The fundamental concept of energy lays the basis upon which much of

More information

Problem 1 Problem 2 Problem 3 Problem 4 Total

Problem 1 Problem 2 Problem 3 Problem 4 Total Name Section THE PENNSYLVANIA STATE UNIVERSITY Department of Engineering Science and Mechanics Engineering Mechanics 12 Final Exam May 5, 2003 8:00 9:50 am (110 minutes) Problem 1 Problem 2 Problem 3 Problem

More information

Chapter 6 Work & Energy

Chapter 6 Work & Energy Chapter 6 Work & Energy In physics, work is done by forces on an object over a distance. 1a. W = F d 1b. W = F d Cosθ (Joule, J) 2. W net = E 5. ower, = W t (Watts, W) ext 3. Kinetic Energy, E k = 1/2m

More information

Today: Work, Kinetic Energy, Potential Energy. No Recitation Quiz this week

Today: Work, Kinetic Energy, Potential Energy. No Recitation Quiz this week Today: Work, Kinetic Energy, Potential Energy HW #4 due Thursday, 11:59 p.m. pm No Recitation Quiz this week 1 What is Energy? Mechanical Electromagnetic PHY 11 PHY 13 Chemical CHE 105 Nuclear PHY 555

More information

Lab Experiment 2: Performance of First order and second order systems

Lab Experiment 2: Performance of First order and second order systems Lab Experiment 2: Performance of First order and second order systems Objective: The objective of this exercise will be to study the performance characteristics of first and second order systems using

More information

Physics 131- Fundamentals of Physics for Biologists I

Physics 131- Fundamentals of Physics for Biologists I Physics 131- Fundamentals of Physics for Biologists I Professor: Wolfgang Losert 11/6/01 wlosert@umd.edu Metabolism A biological example of energy transfer http://www.youtube.com/watch?v=1kgdxdlznji&feature=related

More information

Chapter 5 Work and Energy

Chapter 5 Work and Energy Chapter 5 Work and Energy Work and Kinetic Energy Work W in 1D Motion: by a Constant orce by a Varying orce Kinetic Energy, KE: the Work-Energy Theorem Mechanical Energy E and Its Conservation Potential

More information

Professor: Arpita Upadhyaya Physics 131

Professor: Arpita Upadhyaya Physics 131 Physics 131- Fundamentals of Physics for Biologists I Professor: Arpita Upadhyaya Energy Chemical bonding Intermolecular Interactions 1 Physics 131 Quiz 11 60 50 Q 1.1 11 40 30 20 10 0 A B C D 2 18 Q 1.2

More information

AP Physics. Harmonic Motion. Multiple Choice. Test E

AP Physics. Harmonic Motion. Multiple Choice. Test E AP Physics Harmonic Motion Multiple Choice Test E A 0.10-Kg block is attached to a spring, initially unstretched, of force constant k = 40 N m as shown below. The block is released from rest at t = 0 sec.

More information

Deriving 1 DOF Equations of Motion Worked-Out Examples. MCE371: Vibrations. Prof. Richter. Department of Mechanical Engineering. Handout 3 Fall 2017

Deriving 1 DOF Equations of Motion Worked-Out Examples. MCE371: Vibrations. Prof. Richter. Department of Mechanical Engineering. Handout 3 Fall 2017 MCE371: Vibrations Prof. Richter Department of Mechanical Engineering Handout 3 Fall 2017 Masses with Rectilinear Motion Follow Palm, p.63, 67-72 and Sect.2.6. Refine your skill in drawing correct free

More information

Dynamics ( 동역학 ) Ch.3 Kinetic of Particles (3.1)

Dynamics ( 동역학 ) Ch.3 Kinetic of Particles (3.1) Dynamics ( 동역학 ) Ch.3 Kinetic of Particles (3.1) Introduction This chapter exclusively deals with the Newton s second Law Newton s second law: - A particle will have an acceleration proportional to the

More information

Modeling of a Mechanical System

Modeling of a Mechanical System Chapter 3 Modeling of a Mechanical System 3.1 Units Currently, there are two systems of units: One is the international system (SI) metric system, the other is the British engineering system (BES) the

More information

Phys 102 Lecture 4 Electric potential energy & work

Phys 102 Lecture 4 Electric potential energy & work Phys 102 Lecture 4 Electric potential energy & work 1 Today we will... Learn about the electric potential energy Relate it to work Ex: charge in uniform electric field, point charges Apply these concepts

More information

Friction and Motion. Prof. Paul Eugenio 13 Sep Friction (cont.) Motion: kinetics and dynamics Vertical jump Energy conservation

Friction and Motion. Prof. Paul Eugenio 13 Sep Friction (cont.) Motion: kinetics and dynamics Vertical jump Energy conservation Friction and Motion Friction (cont.) Motion: kinetics and dynamics Vertical jump Energy conservation Ukulele means jumping flea Prof. Paul Eugenio 13 Sep 2018 Lecture 5 Reactive, Normal, and Friction Forces

More information

11. Some applications of second order differential

11. Some applications of second order differential October 3, 2011 11-1 11. Some applications of second order differential equations The first application we consider is the motion of a mass on a spring. Consider an object of mass m on a spring suspended

More information

Physics 8 Friday, November 8, 2013

Physics 8 Friday, November 8, 2013 Physics 8 Friday, November 8, 2013 Turn in HW10 today. I ll put HW11 online tomorrow. Today & Monday: mainly trusses. Some beams next week. Monday reading: from Vossoughi ch5+8 (centroids + second moment

More information

After the spring losses contact with both masses, the speed of m is the speed of 3m.

After the spring losses contact with both masses, the speed of m is the speed of 3m. Two masses, of size m and 3m, are at rest on a frictionless surface. A compressed, massless spring between the masses is suddenly allowed to uncompress, pushing the masses apart. m 3m After the spring

More information

Find the value of λ. (Total 9 marks)

Find the value of λ. (Total 9 marks) 1. A particle of mass 0.5 kg is attached to one end of a light elastic spring of natural length 0.9 m and modulus of elasticity λ newtons. The other end of the spring is attached to a fixed point O 3 on

More information

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform

Course roadmap. ME451: Control Systems. Example of Laplace transform. Lecture 2 Laplace transform. Laplace transform ME45: Control Systems Lecture 2 Prof. Jongeun Choi Department of Mechanical Engineering Michigan State University Modeling Transfer function Models for systems electrical mechanical electromechanical Block

More information

Kinematics (special case) Dynamics gravity, tension, elastic, normal, friction. Energy: kinetic, potential gravity, spring + work (friction)

Kinematics (special case) Dynamics gravity, tension, elastic, normal, friction. Energy: kinetic, potential gravity, spring + work (friction) Kinematics (special case) a = constant 1D motion 2D projectile Uniform circular Dynamics gravity, tension, elastic, normal, friction Motion with a = constant Newton s Laws F = m a F 12 = F 21 Time & Position

More information

3.3. SYSTEMS OF ODES 1. y 0 " 2y" y 0 + 2y = x1. x2 x3. x = y(t) = c 1 e t + c 2 e t + c 3 e 2t. _x = A x + f; x(0) = x 0.

3.3. SYSTEMS OF ODES 1. y 0  2y y 0 + 2y = x1. x2 x3. x = y(t) = c 1 e t + c 2 e t + c 3 e 2t. _x = A x + f; x(0) = x 0. .. SYSTEMS OF ODES. Systems of ODEs MATH 94 FALL 98 PRELIM # 94FA8PQ.tex.. a) Convert the third order dierential equation into a rst oder system _x = A x, with y " y" y + y = x = @ x x x b) The equation

More information

Answers to exam-style questions

Answers to exam-style questions Answers to exam-style questions Option B 1 = 1 mark 1 a i he forces are as shown in the left diagram: F F 8.0 m 0 8.0 m 0 W W he perpendicular distance between the axis and the line of the tension force

More information

(t)dt I. p i. (impulse) F ext. Δ p = p f. Review: Linear Momentum and Momentum Conservation q Linear Momentum. Physics 201, Lecture 15

(t)dt I. p i. (impulse) F ext. Δ p = p f. Review: Linear Momentum and Momentum Conservation q Linear Momentum. Physics 201, Lecture 15 Physics 0, Lecture 5 Today s Topics q ore on Linear omentum nd Collisions Elastic and Perfect Inelastic Collision (D) Two Dimensional Elastic Collisions Exercise: illiards oard Explosion q ulti-particle

More information

Stability of Nonlinear Systems An Introduction

Stability of Nonlinear Systems An Introduction Stability of Nonlinear Systems An Introduction Michael Baldea Department of Chemical Engineering The University of Texas at Austin April 3, 2012 The Concept of Stability Consider the generic nonlinear

More information

Note: Referred equations are from your textbook.

Note: Referred equations are from your textbook. Note: Referred equations are from your textbook 70 DENTFY: Use energy methods There are changes in both elastic and gravitational potential energy SET UP: K + U + W K U other + Points and in the motion

More information

Physics 131- Fundamentals of Physics for Biologists I

Physics 131- Fundamentals of Physics for Biologists I Physics 131- Fundamentals of Physics for Biologists I Professor: Arpita Upadhyaya Quiz 4 review Newton s Laws Kinds of Forces Physics 131 1 Quiz 4 review Physics 131 2 35 QUESTION 1.2 30 25 20 15 10 5

More information

Physics 7A Lecture 2 Fall 2014 Final Solutions. December 22, 2014

Physics 7A Lecture 2 Fall 2014 Final Solutions. December 22, 2014 Physics 7A Lecture Fall 04 Final Solutions December, 04 PROBLEM The string is oscillating in a transverse manner. The wave velocity of the string is thus T s v = µ, where T s is tension and µ is the linear

More information

Forces of Rolling. 1) Ifobjectisrollingwith a com =0 (i.e.no netforces), then v com =ωr = constant (smooth roll)

Forces of Rolling. 1) Ifobjectisrollingwith a com =0 (i.e.no netforces), then v com =ωr = constant (smooth roll) Physics 2101 Section 3 March 12 rd : Ch. 10 Announcements: Mid-grades posted in PAW Quiz today I will be at the March APS meeting the week of 15-19 th. Prof. Rich Kurtz will help me. Class Website: http://www.phys.lsu.edu/classes/spring2010/phys2101-3/

More information

Chapter 7 Energy of a System

Chapter 7 Energy of a System Chapter 7 Energy of a System Course Outline : Work Done by a Constant Force Work Done by avarying Force Kinetic Energy and thework-kinetic EnergyTheorem Power Potential Energy of a System (Will be discussed

More information

Oscillations. Phys101 Lectures 28, 29. Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum

Oscillations. Phys101 Lectures 28, 29. Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum Phys101 Lectures 8, 9 Oscillations Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum Ref: 11-1,,3,4. Page 1 Oscillations of a Spring If an object oscillates

More information

Chapter 15 Periodic Motion

Chapter 15 Periodic Motion Chapter 15 Periodic Motion Slide 1-1 Chapter 15 Periodic Motion Concepts Slide 1-2 Section 15.1: Periodic motion and energy Section Goals You will learn to Define the concepts of periodic motion, vibration,

More information

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5

University of Alberta ENGM 541: Modeling and Simulation of Engineering Systems Laboratory #5 University of Alberta ENGM 54: Modeling and Simulation of Engineering Systems Laboratory #5 M.G. Lipsett, Updated 00 Integration Methods with Higher-Order Truncation Errors with MATLAB MATLAB is capable

More information

Physics 101 Lecture 7 Kinetic Energy and Work

Physics 101 Lecture 7 Kinetic Energy and Work Phsics 101 Lecture 7 Kinetic Energ and Work Dr. Ali ÖVGÜN EMU Phsics Department www.aovgun.com Wh Energ? q Wh do we need a concept of energ? q The energ approach to describing motion is particularl useful

More information

Topic 1: Newtonian Mechanics Energy & Momentum

Topic 1: Newtonian Mechanics Energy & Momentum Work (W) the amount of energy transferred by a force acting through a distance. Scalar but can be positive or negative ΔE = W = F! d = Fdcosθ Units N m or Joules (J) Work, Energy & Power Power (P) the

More information

Modeling and Experimentation: Mass-Spring-Damper System Dynamics

Modeling and Experimentation: Mass-Spring-Damper System Dynamics Modeling and Experimentation: Mass-Spring-Damper System Dynamics Prof. R.G. Longoria Department of Mechanical Engineering The University of Texas at Austin July 20, 2014 Overview 1 This lab is meant to

More information

Dynamics Final Report

Dynamics Final Report Dynamics Final Report Sophie Li and Hannah Wilk 1 Abstract We set out to develop a n-rigid body solver in MatLab. We wanted a user to define how many rigid bodies there are, and our system creates the

More information

Chapter 6: Work, Energy and Power Tuesday February 10 th

Chapter 6: Work, Energy and Power Tuesday February 10 th Chapter 6: Work, Energy and Power Tuesday February 10 th Finish Newton s laws and circular motion Energy Work (definition) Examples of work Work and Kinetic Energy Conservative and non-conservative forces

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

The Spring Pendulum. Nick Whitman. May 16, 2000

The Spring Pendulum. Nick Whitman. May 16, 2000 The Spring Pendulum Nick Whitman May 16, 2 Abstract The spring pendulum is analyzed in three dimensions using differential equations and the Ode45 solver in Matlab. Newton s second law is used to write

More information