Simple Car Dynamics. Outline. Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, May 18, 2005

Size: px
Start display at page:

Download "Simple Car Dynamics. Outline. Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, May 18, 2005"

Transcription

1 Simple Car Dynamics Claude Lacoursière HPC2N/VRlab, Umeå Universitet, Sweden, and CMLabs Simulations, Montréal, Canada May 18, 2005 Typeset by FoilTEX May 16th 2005 Outline basics of vehicle dynamics different models for different applications analysis of the different components building a simple car simulation Typeset by FoilTEX May 16th

2 Basic definition Ground vehicles consist of: a frame: either one rigid part or some articulated components ground support: wheels, tracks, or pods, and suspension steering mechanism (sometimes coupled to suspension) power plant (engine) drive train (transmission, gear box, differential, brakes) Ground vehicle dynamics addresses all these issues by providing models for each of the components. Track vehicles will not be considered in this (short) lecture. From now on, ground vehicle = car. Typeset by FoilTEX May 16th Driving conditions Race Track perfectly flat road, absolutely no obstacle Well Maintained Street very flat surface, hills, no obstacles Bumpy Road mostly flat surface, some holes and bumps, hills, small obstacles Rough Road not very flat, many holes, small and big obstacles Off Road arbitrary terrain conditions, arbitrary obstacles These are increasingly difficult when it comes to finding the contact points on the wheels or track, and computing the forces between the ground and the ground support. Off road will require full rigid body model as well as detailed geometric inteference computation (collision detection). Race track driving requires very little geometric information. We will concentrate race track conditions but build a model that is suitable for bumpy road conditions. Typeset by FoilTEX May 16th

3 Some basic numbers Car driving at 100 Km per hour is : 28 metres per second Typical wheel: 35cm radius 12 revolutions per second At 60 frames per second, that s 1/5 revolution per frame or 1.2 rad per frame. Small angle formula i.e., sin(θ) θ works only for θ 0.2. We re way off. Racing car: 200km per second, 25 revolutions per second, 2.5 rads per frame! Using real wheels to simulate race cars is difficult! This is why we concentrate on a point approximation for the wheels i.e., the car is now a frame and at most one contact point per wheel. Typeset by FoilTEX May 16th Basic physics of a simple car The forces acting on a car N r F w N f F r W F f N r N f F r F f Normal force on the rear wheel Normal force on the front wheel Traction (friction) force on the rear wheel Traction (friction) force on the front wheel W Gravitational force on Center of Mass (CM) F w Drag resistance on CM The diagram is that of a rear traction car which is accelerating. Typeset by FoilTEX May 16th

4 Basic physics of a simple car Note carefully: gravity acts on the CM but normal, traction, and braking forces act at the contact area of the wheels. Traction, braking and normal forces apply torques on the CM. Because of this, we need a rigid body model for the frame, at least. Wind drag also applies torques but that will be neglected. Typeset by FoilTEX May 16th Basic physics of circles v 2 r 2 v 1 F 2 F 1 r 1 ω 2 ω 1 Essential relationships: Linear velocity v = ω/r Centripetal force F = mv 2 /r, without this force, you don t turn! Velocity ratios for common angular velocity: v 2 = v 1 r 2 /r 1 Typeset by FoilTEX May 16th

5 What does that mean for cars? Inside and outside wheels are on different radii during cornering. To turn without skidding, need different linear velocities for inside or outside. Wheels are subject to tangential force of mv 2 /r which can be high. π β π α α β Typeset by FoilTEX May 16th Basic Wheel Physics A perfectly cylindrical wheel cannot turn without slipping! ω 2 ω 1 v 2 I.e., ω 1 = ω 2 and v 1 = v 2 so we can only have straight line motion. This is why we use tires which are deformable. A tire under stress will deform and slip i.e., direction of travel will differ from that of a perfectly rigid cylinder. Despite the abundand folklore, tire slip has nothting to do with the contact patch slipping on the ground. Tire slip is the net kinematic result of bulk tire deformations. v 1 Typeset by FoilTEX May 16th

6 Details of wheel-ground contact Longitudinal slip Tangential slip Actual direction of travel R e R 0 Slip angle α Direction of the wheel When the tire is under a load, it compresses and the effective radius is R e < R 0, i.e., the velocity of the center of the wheel is not v = R 0 ω but instead, v = R e ω. This generates a friction force because work is done to compress the tire, not because the contact patch slips on the ground!!!! When there is a tangential force on a tire, it compresses tangentially and doesn t go along a line of travel that is in the vertical plane. Typeset by FoilTEX May 16th Longitudinal slip Wheel center of mass moves at linear velocity v x, angular velocity ω Point on contact patch is actually moving at v r = ωr e = v x The slip is defined as: κ = ωr 0 v x vx, and σ = κ 1+κ. longitudinal force (relative units) Longitudinal force as a function of slip ratio longitudinal slip ratio in percent The relative units are actually ratios to the normal force. We can approximate the slip with F s = σc l C l 1/ and clip this at F s = 1, and To use these relations, we need to integrate the angular velocities of the wheels. Typeset by FoilTEX May 16th

7 Tangential slip Here, the line of travel of the tire differs from the plane by angle α. If the forward velocity of the wheel is v x and the tangential velocity of the contact patch is v y, the slip is defined as: σ t = v y v x = tan(α). Again, this shows up in the force ratio i.e., the ratio of the tangential force, F y, to the normal load, F z, and we essentially have: F y = σ t C t F z Of course, we need to clip σ to the friction coefficient but for good tires, this can be high i.e., µ 1.5. The relationship between slip angle and tangential force is very similar to that of the longitudinal slip. Typeset by FoilTEX May 16th The Power Plant Engines have rating curves which describes how much torque they can deliver for a given RPM. Typically, two pairs of numbers are given: max power rating: given max power achieved at given rpm max torque rating: given max torque achieved at given rpm a typical figure is given here: Non-descript Actual Diesel engine Typeset by FoilTEX May 16th

8 The Power Plant For most cases, it s enough to assume that power delivered is proportional to engine RPM up to the max. This means that P = C p Ω 0 is the power, and that: τ max = P/Ω 0 C p is the constant max torque. Of course, using curve lookup is a better idea. Typeset by FoilTEX May 16th The throttle, and the RPM The gas pedal controls the acceleration of the engine, we know that! Simple model: torque delivered = throttle max torque The RPM is estimated by the current velocity of the drive wheels i.e., Ω 0 = ω d r f where ω d is the average angular velocity of the drive wheels, Ω 0 is the engine angular velocity, and r f is the final gear ratio, i.e., the ratio from the gear box times the ratio from the differential. Note: this is working in open loop fashion i.e., there is no self inertia and no feedback mechanism. A good drive train model would have all these inertias and feedback loops simulated but that s too complicated for our purposes. Typeset by FoilTEX May 16th

9 Differentials When traction is delivered to the wheels, it goes through a differential which is a device that enforces the following constraint: ω s = r d (ω l + ω r ) where ω s is the drive shaft angular velocity, ω l is the angular velocity of the left wheel, ω r is the angular velocity of the right wheel, and r d is the differential gear ratio. In practice, this constraint means that the torque applied on each wheel is equal: that s why you can get stuck in the snow if one wheel is free. Therefore, this can be ignored i.e., after computing the torque on each wheel based on wheel slip, one can simply average the two and use that value instead to model a differential. Typeset by FoilTEX May 16th Steering A typical steering mechanism does a lot of fancy things i.e.,: set different steering angles on each wheels set an inclination angle which depends on the steering angle adjust differential parameters (for front wheel driving) But the difference in steering angle is very small and the other adjustments are also high order corrections. Therefore, use the simplest possible model: steering angle = angle of the wheel with respect to the chassis direction. To really model steering, we need to also account the self-aligning torque on the wheel i.e., tangential forces on the wheel tend to set them back to a straight line. We ignore that. Typeset by FoilTEX May 16th

10 Brakes A brake delivers a force roughly proportional to the brake pedal input times some maximum torque. The result is applied directly to the wheels but in the direction opposite to the motion. Give max braking torque τ b, and a brake pedal signal d b [0, 1], a simple model is this: ω τ = d b τ b ω + ɛ, ɛ > 0. Of course, this will have problems when ω 0 and there are other forces on the car: the wheels will jitter. This can be clamped near zero with smart control but it s not trivial. Typeset by FoilTEX May 16th The simplest model: soap box car The frame is a box: use a rigid body. Use symmetric inertia tensor. Wheels are also rigid bodies but: only integrate angular velocities ω (i) about axle inertia tensor: I (i) = m (i) R 2 0 /2, and m(i) m/50 Suspension is modelled using springs: aim at 5% of R 0 under normal weight so that k = (gm/4)/(r 0 /20) Ground forces are applied at the contact points. The drive train is modeled by feeding back the wheels angular velocities. Typeset by FoilTEX May 16th

11 The simplest model: soap box car Dynamics model: location of contact points compute traction forces compute cornering forces compute drive torques compute brake torques distribute forces on frame and torques on wheels gravity on CM wind drag on CM Typeset by FoilTEX May 16th Locating the contact points Fixed locations of wheel attachments in chassis frame: a (i), i = 1, 2, 3, 4. World coordinates: A (i) = X + Ra (i), X is the CM position, R rotation matrix. At each of these points, find the point of the ground that is closest. For flat ground, it s going to be the intersection of the ray: A (i) λrz with ground plane: z T [A (i) λ (i) Ra (i) ] = 0 λ (i) = zt A (i) z T [Rz] where z = (0, 0, 1) T is the unit vector pointing upwards. If the ground is not flat, one must compute the quantities: λ (i,j) = n(j)t A (i) n (j)t [Rz] for each triangle j which is in the neighborhood of point a (i), and where n (j) is the normal of the polygon. One must then find out which triangle contains the intersection and from this, recover λ (j). This will not be covered here but it s not difficult. Look for ray and polygon intersection on the web. Typeset by FoilTEX May 16th

12 Computing normal loads Once we know the distance from the ground λ (i), we get the normal force magnitudes: ( 0 if λ N (i) (i) > l 0 = k(l 0 λ) otherwise Normal forces get applied at the location of the contact points: A (i) λ (i) Rz, and in the direction of n (i), the normal to the ground contact at point i. It s a good idea to compute a damping force for the suspension spring as well. To do this, you need to project the velocity of the attachment point on the axis of the suspension. Typeset by FoilTEX May 16th Computing traction and cornering torques Geometry. First, for each contact point, compute local contact plane basis vectors. Compute velocity in the contact plane i.e., v (i) = v + ω [Ra (i) λ (i) Rz] and v (i) z = n (i) v (i), v (i) x = s(i) v (i), v (i) y = t (i) v (i), and s (i), t (i), n (i) form a right handed coordinate system at the point of contact. Also, ω is the angular velocity of the frame, R is the current rotation matrix, a (i) is the body fixed position of the i th attachment point, z is the upward unit vector, and λ (i) was computed previously. For the driving wheels, s (i) should be in the plane of the drive wheel i.e., given zero slip, s (i) would be the direction of travel. Compute the longitudinal velocity of the car i.e., v x = (Rx) v where v is the velocity of the car, and x is a normal vector pointing forward. Typeset by FoilTEX May 16th

13 Computing traction and cornering torques Each wheel will get a net torque which is the sum of the drive torque, the longitudinal rolling resistance torque, and a brake torque. The corresponding net force is applied to the frame at the contact point. Tangential slip Compute tan(α (i) ) = v (i) y /v x v x v (i) y /( v x +ɛ) 2 = σ (i) t (avoid dividing by zero). Set F (i) t = σ (i) t C t N (i) and clamp this with µn (i) where µ is the friction coefficient. Apply this force on the cassis at the contact point, ignore self-aligning torque. Longitudinal Slip Compute the longitudinal slip: κ (i) = ω(i) R 0 vx vx +ɛ, and σ (i) l = κ (i) /(1 + κ (i) ) (avoid dividing by zero!), and from this, compute the traction force: F (i) l = C l σ (i) l N (i). Apply this as a torque on wheel i: τ (i) l = F (i) l R 0. Brake Compute the brake torque τ (i) b = d b τ b ω (i) and corresponding brake ω (i) +ɛ force F (i) b = τ (i) b s(i) /R 0, where d b is the break pedal value (could have a different one for each wheel). Typeset by FoilTEX May 16th Computing drive torque Estimate engine angular velocity Ω 0 ω d /(r g r d ) where ω d is the average driving wheel angular velocity (last time step), and r g, r d are the gear and differential gear ratios, respectively. Get the gas pedal input: d g Get max torque from table and RPM value (Ω 0 ) Compute: τ e = d g τ max (Ω 0 ) Compute: τ d = r g r d τ e f l where f l is a loss factor (if you like) Apply τ (i) ω d = τ (i) d 2ω to each drive wheel, where ω d is the average drive-wheel d velocity: this will balance the power delivered on each wheel. Typeset by FoilTEX May 16th

14 Wind drag Simple wind drag of F w = C w v x v x, add to CM Could add up a number of drag forces, including downward pressure and lifts, depending on the shape of the car... not today! Typeset by FoilTEX May 16th Summing up and integrating Sum all the torques on the drive wheels. Sum up all the forces on the contact points and compute torques on CM. Integrate using symplectic Euler: v n+1 = v n + hm 1 F n (x n, v n ) (1) ω n+1 = ω n + hi 1 τ n (x n, v n ) (2) q n+1 = q n + h 2 ET (q n )ω n+1, q n+1 = q n+1 / q n+1 (3) x n+1 = x n + hv n+1 (4) ω (i) n+1 = ω(i) n + hi(i) 1 τ (i) (5) and 2 q 1 q 0 q 3 3 q 2 E(q) = 4q 2 q 3 q 0 q 1 5 q 3 q 2 q 1 q 0 Typeset by FoilTEX May 16th

15 Open issues Multiple contacts on a wheel e.g., obstacles Problems at low velocity: κ misbehaves near v x 0 brakes can go unstable Typeset by FoilTEX May 16th Conclusions Cars are very sophisticated things! A good model needs many coupled differential equations and algebraic conditions. Much work to do on tire models to get nice stable contacts and good handling. Typeset by FoilTEX May 16th

16 References Pedestrian s references: Basic game physics car tutorial: monstrous/tutcar.html Another interesting set of tutorials: Advanced references: Jo Yung Wong, Theory of Ground Vehicles, 3rd ed., Wiley and Sons, Tyre models: Hans B. Pacejka, Tyre and Vehicle Dynamics, Butterworth- Heinemann, Oxford, Milliken and Milliken, Race Car Vehicle Dynamics, SAE, 1995 Milliken and Milliken, Chassis Design Principle and Analysis, SAE, 1995 Typeset by FoilTEX May 16th

4) Vector = and vector = What is vector = +? A) B) C) D) E)

4) Vector = and vector = What is vector = +? A) B) C) D) E) 1) Suppose that an object is moving with constant nonzero acceleration. Which of the following is an accurate statement concerning its motion? A) In equal times its speed changes by equal amounts. B) In

More information

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc.

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc. PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 8 Lecture RANDALL D. KNIGHT Chapter 8. Dynamics II: Motion in a Plane IN THIS CHAPTER, you will learn to solve problems about motion

More information

Physics 12. Unit 5 Circular Motion and Gravitation Part 1

Physics 12. Unit 5 Circular Motion and Gravitation Part 1 Physics 12 Unit 5 Circular Motion and Gravitation Part 1 1. Nonlinear motions According to the Newton s first law, an object remains its tendency of motion as long as there is no external force acting

More information

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER Objectives Explain the relationship between power and work. Explain the relationship between power, force, and speed for an object in translational motion. Calculate a device s efficiency in terms of the

More information

Chapter 8. Dynamics II: Motion in a Plane

Chapter 8. Dynamics II: Motion in a Plane Chapter 8. Dynamics II: Motion in a Plane Chapter Goal: To learn how to solve problems about motion in a plane. Slide 8-2 Chapter 8 Preview Slide 8-3 Chapter 8 Preview Slide 8-4 Chapter 8 Preview Slide

More information

Q2. A machine carries a 4.0 kg package from an initial position of d ˆ. = (2.0 m)j at t = 0 to a final position of d ˆ ˆ

Q2. A machine carries a 4.0 kg package from an initial position of d ˆ. = (2.0 m)j at t = 0 to a final position of d ˆ ˆ Coordinator: Dr. S. Kunwar Monday, March 25, 2019 Page: 1 Q1. An object moves in a horizontal circle at constant speed. The work done by the centripetal force is zero because: A) the centripetal force

More information

Exercise Torque Magnitude Ranking Task. Part A

Exercise Torque Magnitude Ranking Task. Part A Exercise 10.2 Calculate the net torque about point O for the two forces applied as in the figure. The rod and both forces are in the plane of the page. Take positive torques to be counterclockwise. τ 28.0

More information

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

Lecture PowerPoints. Chapter 10 Physics for Scientists and Engineers, with Modern Physics, 4 th edition Giancoli Lecture PowerPoints Chapter 10 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

6. Find the net torque on the wheel in Figure about the axle through O if a = 10.0 cm and b = 25.0 cm.

6. Find the net torque on the wheel in Figure about the axle through O if a = 10.0 cm and b = 25.0 cm. 1. During a certain period of time, the angular position of a swinging door is described by θ = 5.00 + 10.0t + 2.00t 2, where θ is in radians and t is in seconds. Determine the angular position, angular

More information

Chapter 6 Dynamics I: Motion Along a Line

Chapter 6 Dynamics I: Motion Along a Line Chapter 6 Dynamics I: Motion Along a Line Chapter Goal: To learn how to solve linear force-and-motion problems. Slide 6-2 Chapter 6 Preview Slide 6-3 Chapter 6 Preview Slide 6-4 Chapter 6 Preview Slide

More information

Assignment 9. to roll without slipping, how large must F be? Ans: F = R d mgsinθ.

Assignment 9. to roll without slipping, how large must F be? Ans: F = R d mgsinθ. Assignment 9 1. A heavy cylindrical container is being rolled up an incline as shown, by applying a force parallel to the incline. The static friction coefficient is µ s. The cylinder has radius R, mass

More information

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc.

PHYSICS. Chapter 8 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc. PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 8 Lecture RANDALL D. KNIGHT Chapter 8. Dynamics II: Motion in a Plane IN THIS CHAPTER, you will learn to solve problems about motion

More information

Circular Motion Test Review

Circular Motion Test Review Circular Motion Test Review Name: Date: 1) Is it possible for an object moving with a constant speed to accelerate? Explain. A) No, if the speed is constant then the acceleration is equal to zero. B) No,

More information

Chapter 5 Review : Circular Motion; Gravitation

Chapter 5 Review : Circular Motion; Gravitation Chapter 5 Review : Circular Motion; Gravitation Conceptual Questions 1) Is it possible for an object moving with a constant speed to accelerate? Explain. A) No, if the speed is constant then the acceleration

More information

Webreview Torque and Rotation Practice Test

Webreview Torque and Rotation Practice Test Please do not write on test. ID A Webreview - 8.2 Torque and Rotation Practice Test Multiple Choice Identify the choice that best completes the statement or answers the question. 1. A 0.30-m-radius automobile

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) You are standing in a moving bus, facing forward, and you suddenly fall forward as the

More information

24/06/13 Forces ( F.Robilliard) 1

24/06/13 Forces ( F.Robilliard) 1 R Fr F W 24/06/13 Forces ( F.Robilliard) 1 Mass: So far, in our studies of mechanics, we have considered the motion of idealised particles moving geometrically through space. Why a particular particle

More information

Road Vehicle Dynamics

Road Vehicle Dynamics Road Vehicle Dynamics Table of Contents: Foreword Preface Chapter 1 Introduction 1.1 General 1.2 Vehicle System Classification 1.3 Dynamic System 1.4 Classification of Dynamic System Models 1.5 Constraints,

More information

PHYSICS 221, FALL 2011 EXAM #2 SOLUTIONS WEDNESDAY, NOVEMBER 2, 2011

PHYSICS 221, FALL 2011 EXAM #2 SOLUTIONS WEDNESDAY, NOVEMBER 2, 2011 PHYSICS 1, FALL 011 EXAM SOLUTIONS WEDNESDAY, NOVEMBER, 011 Note: The unit vectors in the +x, +y, and +z directions of a right-handed Cartesian coordinate system are î, ĵ, and ˆk, respectively. In this

More information

Wiley Plus. Final Assignment (5) Is Due Today: Before 11 pm!

Wiley Plus. Final Assignment (5) Is Due Today: Before 11 pm! Wiley Plus Final Assignment (5) Is Due Today: Before 11 pm! Final Exam Review December 9, 009 3 What about vector subtraction? Suppose you are given the vector relation A B C RULE: The resultant vector

More information

CIRCULAR MOTION AND GRAVITATION

CIRCULAR MOTION AND GRAVITATION CIRCULAR MOTION AND GRAVITATION An object moves in a straight line if the net force on it acts in the direction of motion, or is zero. If the net force acts at an angle to the direction of motion at any

More information

Team-Exercises for DGC 100 Modelica Course

Team-Exercises for DGC 100 Modelica Course Team-Exercises for DGC 100 Modelica Course Hubertus Tummescheit United Technologies Research Center, East Hartford, CT 06108. November 4, 2003 Abstract This document is a preliminary version and is going

More information

r r Sample Final questions for PS 150

r r Sample Final questions for PS 150 Sample Final questions for PS 150 1) Which of the following is an accurate statement? A) Rotating a vector about an axis passing through the tip of the vector does not change the vector. B) The magnitude

More information

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics Physics 111.6 MIDTERM TEST #2 November 15, 2001 Time: 90 minutes NAME: STUDENT NO.: (Last) Please Print (Given) LECTURE SECTION

More information

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon

Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon ME 2016 A Spring Semester 2010 Computing Techniques 3-0-3 Homework Assignment 4 Root Finding Algorithms The Maximum Velocity of a Car Due: Friday, February 19, 2010 at 12noon Description and Outcomes In

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

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D)

Use a BLOCK letter to answer each question: A, B, C, or D (not lower case such a b or script such as D) Physics 23 Spring 212 Answer Sheet Print LAST Name: Rec Sec Letter EM Mini-Test First Name: Recitation Instructor & Final Exam Student ID: Gently remove this page from your exam when you begin. Write clearly

More information

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics Physics 115.3 Physics and the Universe FINAL EXAMINATION December 14, 013 NAME: (Last) Please Print (Given) Time: 3 hours STUDENT

More information

PSI AP Physics I Rotational Motion

PSI AP Physics I Rotational Motion PSI AP Physics I Rotational Motion Multiple-Choice questions 1. Which of the following is the unit for angular displacement? A. meters B. seconds C. radians D. radians per second 2. An object moves from

More information

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

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

More information

Physics. Chapter 8 Rotational Motion

Physics. Chapter 8 Rotational Motion Physics Chapter 8 Rotational Motion Circular Motion Tangential Speed The linear speed of something moving along a circular path. Symbol is the usual v and units are m/s Rotational Speed Number of revolutions

More information

Welcome back to Physics 211

Welcome back to Physics 211 Welcome back to Physics 211 Today s agenda: Circular Motion 04-2 1 Exam 1: Next Tuesday (9/23/14) In Stolkin (here!) at the usual lecture time Material covered: Textbook chapters 1 4.3 s up through 9/16

More information

Circular Motion, Pt 2: Angular Dynamics. Mr. Velazquez AP/Honors Physics

Circular Motion, Pt 2: Angular Dynamics. Mr. Velazquez AP/Honors Physics Circular Motion, Pt 2: Angular Dynamics Mr. Velazquez AP/Honors Physics Formulas: Angular Kinematics (θ must be in radians): s = rθ Arc Length 360 = 2π rads = 1 rev ω = θ t = v t r Angular Velocity α av

More information

PHYSICS - CLUTCH CH 10: ROTATIONAL KINEMATICS.

PHYSICS - CLUTCH CH 10: ROTATIONAL KINEMATICS. !! www.clutchprep.com ROTATIONAL POSITION & DISPLACEMENT Rotational Motion is motion around a point, that is, in a path. - The rotational equivalent of linear POSITION ( ) is Rotational/Angular position

More information

Mechanics II. Which of the following relations among the forces W, k, N, and F must be true?

Mechanics II. Which of the following relations among the forces W, k, N, and F must be true? Mechanics II 1. By applying a force F on a block, a person pulls a block along a rough surface at constant velocity v (see Figure below; directions, but not necessarily magnitudes, are indicated). Which

More information

Chapter 8- Rotational Motion

Chapter 8- Rotational Motion Chapter 8- Rotational Motion Assignment 8 Textbook (Giancoli, 6 th edition), Chapter 7-8: Due on Thursday, November 13, 2008 - Problem 28 - page 189 of the textbook - Problem 40 - page 190 of the textbook

More information

Lecture 6. Circular Motion. Pre-reading: KJF 6.1 and 6.2. Please take a clicker CIRCULAR MOTION KJF

Lecture 6. Circular Motion. Pre-reading: KJF 6.1 and 6.2. Please take a clicker CIRCULAR MOTION KJF Lecture 6 Circular Motion Pre-reading: KJF 6.1 and 6.2 Please take a clicker CIRCULAR MOTION KJF 6.1 6.4 Angular position If an object moves in a circle of radius r, then after travelling a distance s

More information

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING TW32 UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) AUTOMOTIVE PERFORMANCE ENGINEERING and BSC (HONS) MOTORSPORT TECHNOLOGY EXAMINATION SEMESTER 2-2015/2016 VEHICLE DYNAMICS AND ADVANCED ELECTRONICS

More information

AP Physics 1 Lesson 9 Homework Outcomes. Name

AP Physics 1 Lesson 9 Homework Outcomes. Name AP Physics 1 Lesson 9 Homework Outcomes Name Date 1. Define uniform circular motion. 2. Determine the tangential velocity of an object moving with uniform circular motion. 3. Determine the centripetal

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

Unless otherwise specified, use g = 9.80 m/s2

Unless otherwise specified, use g = 9.80 m/s2 Phy 111 Exam 2 March 10, 2015 Name Section University ID Please fill in your computer answer sheet as follows: 1) In the NAME grid, fill in your last name, leave one blank space, then your first name.

More information

Rotational Motion Examples:

Rotational Motion Examples: Rotational Motion Examples: 1. A 60. cm diameter wheel rotates through 50. rad. a. What distance will it move? b. How many times will the wheel rotate in this time? 2. A saw blade is spinning at 2000.

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

Chapter 8 Lecture. Pearson Physics. Rotational Motion and Equilibrium. Prepared by Chris Chiaverina Pearson Education, Inc.

Chapter 8 Lecture. Pearson Physics. Rotational Motion and Equilibrium. Prepared by Chris Chiaverina Pearson Education, Inc. Chapter 8 Lecture Pearson Physics Rotational Motion and Equilibrium Prepared by Chris Chiaverina Chapter Contents Describing Angular Motion Rolling Motion and the Moment of Inertia Torque Static Equilibrium

More information

Translational vs Rotational. m x. Connection Δ = = = = = = Δ = = = = = = Δ =Δ = = = = = 2 / 1/2. Work

Translational vs Rotational. m x. Connection Δ = = = = = = Δ = = = = = = Δ =Δ = = = = = 2 / 1/2. Work Translational vs Rotational / / 1/ Δ m x v dx dt a dv dt F ma p mv KE mv Work Fd / / 1/ θ ω θ α ω τ α ω ω τθ Δ I d dt d dt I L I KE I Work / θ ω α τ Δ Δ c t s r v r a v r a r Fr L pr Connection Translational

More information

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost Game and Media Technology Master Program - Utrecht University Dr. Nicolas Pronost Essential physics for game developers Introduction The primary issues Let s move virtual objects Kinematics: description

More information

Engineering Mechanics. Friction in Action

Engineering Mechanics. Friction in Action Engineering Mechanics Friction in Action What is friction? Friction is a retarding force that opposes motion. Friction types: Static friction Kinetic friction Fluid friction Sources of dry friction Dry

More information

The University of Melbourne Engineering Mechanics

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

More information

Study Questions/Problems Week 4

Study Questions/Problems Week 4 Study Questions/Problems Week 4 Chapter 6 treats many topics. I have selected on average less than three problems from each topic. I suggest you do them all. Likewise for the Conceptual Questions and exercises,

More information

Uniform Circular Motion. Uniform Circular Motion

Uniform Circular Motion. Uniform Circular Motion Uniform Circular Motion Uniform Circular Motion Uniform Circular Motion An object that moves at uniform speed in a circle of constant radius is said to be in uniform circular motion. Question: Why is uniform

More information

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2 PHY 30 K. Solutions for mid-term test #. Problem 1: The forces acting on the car comprise its weight mg, the normal force N from the road that cancels it, and the static friction force f that provides

More information

PSI AP Physics I Rotational Motion

PSI AP Physics I Rotational Motion PSI AP Physics I Rotational Motion Multiple-Choice questions 1. Which of the following is the unit for angular displacement? A. meters B. seconds C. radians D. radians per second 2. An object moves from

More information

Tutorial 4. Figure 1: Rod and spindle. Dog. Figure 2: I have no idea what I m doing. Dog

Tutorial 4. Figure 1: Rod and spindle. Dog. Figure 2: I have no idea what I m doing. Dog Tutorial 4 Question 1 Figure 1: Rod and spindle A uniform disk rotates at 3.60 rev/s around a frictionless spindle. A non-rotating rod, of the same mass as the disk and equal in length to the disk s diameter,

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

Physics 211 Week 5. Work and Kinetic Energy: Block on Ramp

Physics 211 Week 5. Work and Kinetic Energy: Block on Ramp Physics 211 Week 5 Work and Kinetic Energy: Block on Ramp A block starts with a speed of 15 m/s at the bottom of a ramp that is inclined at an angle of 30 o with the horizontal. The coefficient of kinetic

More information

= o + t = ot + ½ t 2 = o + 2

= o + t = ot + ½ t 2 = o + 2 Chapters 8-9 Rotational Kinematics and Dynamics Rotational motion Rotational motion refers to the motion of an object or system that spins about an axis. The axis of rotation is the line about which the

More information

Chapter 8 Lecture Notes

Chapter 8 Lecture Notes Chapter 8 Lecture Notes Physics 2414 - Strauss Formulas: v = l / t = r θ / t = rω a T = v / t = r ω / t =rα a C = v 2 /r = ω 2 r ω = ω 0 + αt θ = ω 0 t +(1/2)αt 2 θ = (1/2)(ω 0 +ω)t ω 2 = ω 0 2 +2αθ τ

More information

INTI INTERNATIONAL UNIVERSITY FOUNDATION IN SCIENCE (CFSI) PHY1203: GENERAL PHYSICS 1 FINAL EXAMINATION: SEPTEMBER 2012 SESSION

INTI INTERNATIONAL UNIVERSITY FOUNDATION IN SCIENCE (CFSI) PHY1203: GENERAL PHYSICS 1 FINAL EXAMINATION: SEPTEMBER 2012 SESSION INTI INTERNATIONAL UNIVERSITY FOUNDATION IN SCIENCE (CFSI) PHY1203: GENERAL PHYSICS 1 FINAL EXAMINATION: SEPTEMBER 2012 SESSION PHY1203(F)/Page 1 of 5 Instructions: This paper consists of FIVE (5) questions.

More information

On my honor, I have neither given nor received unauthorized aid on this examination.

On my honor, I have neither given nor received unauthorized aid on this examination. Instructor(s): Profs. D. Reitze, H. Chan PHYSICS DEPARTMENT PHY 2053 Exam 2 April 2, 2009 Name (print, last first): Signature: On my honor, I have neither given nor received unauthorized aid on this examination.

More information

LECTURE 18: Uniform Circular Motion (UCM)

LECTURE 18: Uniform Circular Motion (UCM) Lectures Page 1 LECTURE 18: Uniform Circular Motion (UCM) Select LEARNING OBJECTIVES: i. ii. iii. iv. v. vi. vii. viii. ix. x. xi. xii. xiii. xiv. xv. Understand the definition of UCM, specifically that

More information

Chapter 8: Newton s Laws Applied to Circular Motion

Chapter 8: Newton s Laws Applied to Circular Motion Chapter 8: Newton s Laws Applied to Circular Motion Circular Motion Milky Way Galaxy Orbital Speed of Solar System: 220 km/s Orbital Period: 225 Million Years Mercury: 48 km/s Venus: 35 km/s Earth: 30

More information

Algebra Based Physics Uniform Circular Motion

Algebra Based Physics Uniform Circular Motion 1 Algebra Based Physics Uniform Circular Motion 2016 07 20 www.njctl.org 2 Uniform Circular Motion (UCM) Click on the topic to go to that section Period, Frequency and Rotational Velocity Kinematics of

More information

Multiple Choice (A) (B) (C) (D)

Multiple Choice (A) (B) (C) (D) Multiple Choice 1. A ball is fastened to a string and is swung in a vertical circle. When the ball is at the highest point of the circle its velocity and acceleration directions are: (A) (B) (C) (D) 2.

More information

Review of Lectures 1, 2 and 3

Review of Lectures 1, 2 and 3 Physics 22000 General Physics Lecture 5 Applying Newton s Laws Fall 2016 Semester Prof. Matthew Jones 1 Review of Lectures 1, 2 and 3 Algebraic description of linear motion with constant acceleration:

More information

PSI AP Physics B Circular Motion

PSI AP Physics B Circular Motion PSI AP Physics B Circular Motion Multiple Choice 1. A ball is fastened to a string and is swung in a vertical circle. When the ball is at the highest point of the circle its velocity and acceleration directions

More information

Angular Speed and Angular Acceleration Relations between Angular and Linear Quantities

Angular Speed and Angular Acceleration Relations between Angular and Linear Quantities Angular Speed and Angular Acceleration Relations between Angular and Linear Quantities 1. The tires on a new compact car have a diameter of 2.0 ft and are warranted for 60 000 miles. (a) Determine the

More information

Newton s Laws.

Newton s Laws. Newton s Laws http://mathsforeurope.digibel.be/images Forces and Equilibrium If the net force on a body is zero, it is in equilibrium. dynamic equilibrium: moving relative to us static equilibrium: appears

More information

General Definition of Torque, final. Lever Arm. General Definition of Torque 7/29/2010. Units of Chapter 10

General Definition of Torque, final. Lever Arm. General Definition of Torque 7/29/2010. Units of Chapter 10 Units of Chapter 10 Determining Moments of Inertia Rotational Kinetic Energy Rotational Plus Translational Motion; Rolling Why Does a Rolling Sphere Slow Down? General Definition of Torque, final Taking

More information

We define angular displacement, θ, and angular velocity, ω. What's a radian?

We define angular displacement, θ, and angular velocity, ω. What's a radian? We define angular displacement, θ, and angular velocity, ω Units: θ = rad ω = rad/s What's a radian? Radian is the ratio between the length of an arc and its radius note: counterclockwise is + clockwise

More information

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

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

More information

Your Name: PHYSICS 101 MIDTERM. Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon

Your Name: PHYSICS 101 MIDTERM. Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon 1 Your Name: PHYSICS 101 MIDTERM October 26, 2006 2 hours Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon Problem Score 1 /13 2 /20 3 /20 4

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Common Quiz Mistakes / Practice for Final Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) A ball is thrown directly upward and experiences

More information

Midterm 3 Thursday April 13th

Midterm 3 Thursday April 13th Welcome back to Physics 215 Today s agenda: Angular momentum Rolling without slipping Midterm Review Physics 215 Spring 2017 Lecture 12-2 1 Midterm 3 Thursday April 13th Material covered: Ch 9 Ch 12 Lectures

More information

is acting on a body of mass m = 3.0 kg and changes its velocity from an initial

is acting on a body of mass m = 3.0 kg and changes its velocity from an initial PHYS 101 second major Exam Term 102 (Zero Version) Q1. A 15.0-kg block is pulled over a rough, horizontal surface by a constant force of 70.0 N acting at an angle of 20.0 above the horizontal. The block

More information

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

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

More information

TOPIC D: ROTATION EXAMPLES SPRING 2018

TOPIC D: ROTATION EXAMPLES SPRING 2018 TOPIC D: ROTATION EXAMPLES SPRING 018 Q1. A car accelerates uniformly from rest to 80 km hr 1 in 6 s. The wheels have a radius of 30 cm. What is the angular acceleration of the wheels? Q. The University

More information

Review for 3 rd Midterm

Review for 3 rd Midterm Review for 3 rd Midterm Midterm is on 4/19 at 7:30pm in the same rooms as before You are allowed one double sided sheet of paper with any handwritten notes you like. The moment-of-inertia about the center-of-mass

More information

Lecture 3. Rotational motion and Oscillation 06 September 2018

Lecture 3. Rotational motion and Oscillation 06 September 2018 Lecture 3. Rotational motion and Oscillation 06 September 2018 Wannapong Triampo, Ph.D. Angular Position, Velocity and Acceleration: Life Science applications Recall last t ime. Rigid Body - An object

More information

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

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

More information

Rotational Motion About a Fixed Axis

Rotational Motion About a Fixed Axis Rotational Motion About a Fixed Axis Vocabulary rigid body axis of rotation radian average angular velocity instantaneous angular average angular Instantaneous angular frequency velocity acceleration acceleration

More information

PH 2213 : Chapter 05 Homework Solutions

PH 2213 : Chapter 05 Homework Solutions PH 2213 : Chapter 05 Homework Solutions Problem 5.4 : The coefficient of static friction between hard rubber and normal street pavement is about 0.90. On how steep a hill (maximum angle) can you leave

More information

Advanced Higher Physics. Rotational motion

Advanced Higher Physics. Rotational motion Wallace Hall Academy Physics Department Advanced Higher Physics Rotational motion Problems AH Physics: Rotational Motion 1 2013 Data Common Physical Quantities QUANTITY SYMBOL VALUE Gravitational acceleration

More information

Plane Motion of Rigid Bodies: Forces and Accelerations

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

More information

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005

Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 ME 2016 Sections A-B-C-D Fall Semester 2005 Computing Techniques 3-0-3 Homework Assignment 2 Modeling a Drivetrain Model Accuracy Due: Friday, September 16, 2005 Description and Outcomes In this assignment,

More information

PHYSICS 221, FALL 2010 EXAM #1 Solutions WEDNESDAY, SEPTEMBER 29, 2010

PHYSICS 221, FALL 2010 EXAM #1 Solutions WEDNESDAY, SEPTEMBER 29, 2010 PHYSICS 1, FALL 010 EXAM 1 Solutions WEDNESDAY, SEPTEMBER 9, 010 Note: The unit vectors in the +x, +y, and +z directions of a right-handed Cartesian coordinate system are î, ĵ, and ˆk, respectively. In

More information

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m PSI AP Physics C Work and Energy (Algebra Based) Multiple Choice Questions (use g = 10 m/s 2 ) 1. A student throws a ball upwards from the ground level where gravitational potential energy is zero. At

More information

PHY131 Summer 2011 Class 5 Notes

PHY131 Summer 2011 Class 5 Notes PHY131 Summer 2011 Class 5 Notes 5/31/11 PHY131H1F Summer Class 5 Today: Equilibrium Mass, Weight, Gravity Friction, Drag Rolling without slipping Examples of Newton s Second Law Pre-class Reading Quiz.

More information

SEE the list given for chapter 04 where Newton s laws were introduced.

SEE the list given for chapter 04 where Newton s laws were introduced. PH2213 : Examples from Chapter 5 : Applying Newton s Laws Key Concepts Newton s Laws (basically Σ F = m a ) allow us to relate the forces acting on an object (left-hand side) to the motion of the object,

More information

Uniform Circular Motion

Uniform Circular Motion Uniform Circular Motion Motion in a circle at constant angular speed. ω: angular velocity (rad/s) Rotation Angle The rotation angle is the ratio of arc length to radius of curvature. For a given angle,

More information

Torque and Rotation Lecture 7

Torque and Rotation Lecture 7 Torque and Rotation Lecture 7 ˆ In this lecture we finally move beyond a simple particle in our mechanical analysis of motion. ˆ Now we consider the so-called rigid body. Essentially, a particle with extension

More information

Name (please print): UW ID# score last first

Name (please print): UW ID# score last first Name (please print): UW ID# score last first Question I. (20 pts) Projectile motion A ball of mass 0.3 kg is thrown at an angle of 30 o above the horizontal. Ignore air resistance. It hits the ground 100

More information

Problem Solving Circular Motion Dynamics Challenge Problems

Problem Solving Circular Motion Dynamics Challenge Problems Problem 1: Double Star System Problem Solving Circular Motion Dynamics Challenge Problems Consider a double star system under the influence of gravitational force between the stars. Star 1 has mass m 1

More information

Quiz Number 4 PHYSICS April 17, 2009

Quiz Number 4 PHYSICS April 17, 2009 Instructions Write your name, student ID and name of your TA instructor clearly on all sheets and fill your name and student ID on the bubble sheet. Solve all multiple choice questions. No penalty is given

More information

PHYS 1303 Final Exam Example Questions

PHYS 1303 Final Exam Example Questions PHYS 1303 Final Exam Example Questions 1.Which quantity can be converted from the English system to the metric system by the conversion factor 5280 mi f 12 f in 2.54 cm 1 in 1 m 100 cm 1 3600 h? s a. feet

More information

Dynamics: Forces. Lecture 7. Chapter 5. Course website:

Dynamics: Forces. Lecture 7. Chapter 5. Course website: Lecture 7 Chapter 5 Dynamics: Forces Course website: http://faculty.uml.edu/andriy_danylov/teaching/physicsi Today we are going to discuss: Chapter 5: Some leftovers from rotational motion Ch.4 Force,

More information

Circular Motion.

Circular Motion. 1 Circular Motion www.njctl.org 2 Topics of Uniform Circular Motion (UCM) Kinematics of UCM Click on the topic to go to that section Period, Frequency, and Rotational Velocity Dynamics of UCM Vertical

More information

Vehicle Dynamics CEE 320. Winter 2006 CEE 320 Steve Muench

Vehicle Dynamics CEE 320. Winter 2006 CEE 320 Steve Muench Vehicle Dynamics Steve Muench Outline 1. Resistance a. Aerodynamic b. Rolling c. Grade. Tractive Effort 3. Acceleration 4. Braking Force 5. Stopping Sight Distance (SSD) Main Concepts Resistance Tractive

More information

Name Date Period PROBLEM SET: ROTATIONAL DYNAMICS

Name Date Period PROBLEM SET: ROTATIONAL DYNAMICS Accelerated Physics Rotational Dynamics Problem Set Page 1 of 5 Name Date Period PROBLEM SET: ROTATIONAL DYNAMICS Directions: Show all work on a separate piece of paper. Box your final answer. Don t forget

More information

31 ROTATIONAL KINEMATICS

31 ROTATIONAL KINEMATICS 31 ROTATIONAL KINEMATICS 1. Compare and contrast circular motion and rotation? Address the following Which involves an object and which involves a system? Does an object/system in circular motion have

More information

Physics 207 Lecture 10. Lecture 10. Employ Newton s Laws in 2D problems with circular motion

Physics 207 Lecture 10. Lecture 10. Employ Newton s Laws in 2D problems with circular motion Lecture 10 Goals: Employ Newton s Laws in 2D problems with circular motion Assignment: HW5, (Chapters 8 & 9, due 3/4, Wednesday) For Tuesday: Finish reading Chapter 8, start Chapter 9. Physics 207: Lecture

More information