Lab #8: The Unbalanced Wheel

Size: px
Start display at page:

Download "Lab #8: The Unbalanced Wheel"

Transcription

1 Lab #8: The Unbalanced Wheel OBJECTIVE Use observations to calculate the radius of gyration of a wheel. Apply energy models to the dynamics of an unbalanced rotating wheel. Learn new computing skills. PLEASE READ THE LAB BEFORE YOU START YOUR WORK. OVERVIEW Ideally, this lab would have a "point" mass attached to a wheel whose moment of inertia was known. Using your knowledge of energy methods, you could predict the motion of the assembly and compare it to measurements. Real life is not so simple. First, we don t have a wheel whose moment of inertia is known. Second, without some extra non-rotating hardware, we can t measure the rotation of the wheel. Therefore, before we can predict the motion of the unbalanced wheel, we must first do some work to calculate the moment of inertia (radius of gyration) of the balanced wheel. Walt Lund and Brad Dunkin from the ITLL staff have built an apparatus consisting of a bicycle wheel, supports (training wheels), and a "yellow" encoder that measures rotation and angular velocity. To this wheel, an extra mass may be attached. (See Figure 1.) Although the moment of inertia is not known, the following physical quantities are known: mass of bicycle wheel, M: 2460 g mass of training wheels, M 0 : 2120 g mass of point mass attachment, m: 545 g radius of the bicycle wheel, R: 32.2 cm radius to center of attachment, r: 24.1 cm radius of gyration of wheel: k (unknown) slope of ramp, β: 4.30 º g = 9.81 m/sec/sec Figure 1: The Unbalanced Wheel 1

2 EQUATIONS The Balanced Wheel The kinetic energy is the sum of the translational and rotational energies: KE = 1 2 (M + M o )V G I G 2 V G is the velocity of the center of mass of the wheel and I G is the moment of inertia, defined as Mk 2. If we assume that the bicycle wheel is rolling without slipping, we can make the usual assumptions about the relationship between V G and the angular velocity ω. The work done (equivalent to the change in potential energy) after the wheel has rotated though an angle θ is: work = (M+Mo)gR sin One can then show that k is defined as: k 2 work 1 = 2 (M + M o )R M 2 The Unbalanced Wheel Calculating the motions of the bicycle wheel with an extra mass, m, is more difficult. For this derivation we will use conservation of energy rather than work-energy. The kinetic energy equation now includes another term. KE = 1 2 (M + M o )V G I G mv b 2 We have assumed that the attached mass is a particle, and thus has no moment of inertia or rotational energy. The velocity of the attached mass, v b, is bω, where b is the distance between the contact point and the mass. By using the law of cosines, you can derive b in terms of r, R, and θ. We then define the kinetic energy: KE = 1 2 (M + M o )R Mk m(r2 + r 2 + 2rRcos ) 2 We can define potential energy by putting our x-y axis at the center of wheel at θ = 0. The potential energy at arbitrary θ is: 2

3 PE= (M + M o )gr sin +[ mgr sin + mgr cos( + )] You can then easily solve for ω as a function of θ using these expressions for kinetic and potential energy. DATA COLLECTION As a group, we will collect several trials of data for the wheel both with and without the extra mass. These files will be saved in the ASEN2003/Users directory in the ITLL. These data files have columns containing time (s), angle θ (revolutions), and angular velocity ω (rpm). As in previous labs, you ll be importing these data into MATLAB using the load command. The files contain data for 6 seconds and may include data after the wheel left the ramp. Use Matlab to restrict your analysis to the first three revolutions of data. ANALYSIS The Balanced Wheel One difficulty with the encoder is that since there are only 30 holes in it, it only outputs a value for θ every 12º. Depending on where the encoder is when we start recording data, the wheel could turn as much as 20º before the first θ value of 0º is recorded. This will produce a large error in our analysis. In homework and lecture we showed that the angular acceleration α of a wheel rolling down a ramp is constant. This means that ω should increase linearly with time and θ should increase as a quadratic function of time. We can use this fact to help us find the θ offset. By plotting θ (y-axis) against time (x-axis) you should see this quadratic dependence. Note that the parabolic shape does not reach its minimum. If we could extend the parabola back in time, the minimum of the parabola would occur just when we released the wheel. The value of θ at the minimum tells us how many degrees the wheel turned before the encoder read zero. For example, if the value of the parabola at its minimum is 15.3º, then we know that the θ=0 data point is really at 15.3º. Likewise, every data point should be corrected by this offset. How do we extend this parabola? Use the MATLAB command polyfit to fit a second order polynomial to the (θ,t) data. Then use the MATLAB command polyval to define an array of smooth (θ,t) values for each trial. The minimum θ value is the measurement offset described in the previous paragraph. The usage of polyfit and polyval is explained in the MATLAB help section. Once we have corrected the θ data for the measurement offset, we can calculate the radius of gyration, k. As discussed in the background section, k depends on both θ and ω. Which θ and ω should you use? For this lab you should find a k value for each (θ, ω) and then compute an average for each trial. 3

4 TURN IN: Plot θ (y-axis) vs time (x-axis) for all trials. Plot ω (y-axis) vs time (x-axis) for all trials. Include derived θ offsets on the figure. For trial 1, plot θ (y-axis) vs time (x-axis) data (symbol) and the polynomial fit (line). Plot ω (y-axis) vs θ (x-axis) for all trials. Include k values as added text (use num2str). Report the average k over all the trials. Use this average k value in the next section. The Unbalanced Wheel Unfortunately, there is not a simple polynomial that we can fit to the unbalanced data to find the θ offset. We could use more complicated methods to determine it, but instead, just assume that the offset is 15º. i.e. add 15º to all your unbalanced wheel measurements. TURN IN: Plot ω (y-axis) vs. θ (x-axis) for all four unbalanced wheel trials. Plot ω (y-axis) vs. θ (x-axis) for the theoretical model (line) and the average of the 4 trials (symbol). How well does the theoretical model agree with your measurements, qualitatively and quantitatively? Describe at least one way the theoretical model could be improved. Your commented MATLAB code for both the balanced and unbalanced wheel. GRADING COMMENTS FROM THE INSTRUCTOR All plots of θ should be in degrees. All plots of ω should be in radians/second. Your main program must call at least two functions - one to compute k and the other to read in and plot the unbalanced wheel trials. The constants of the experiment, listed on page 1, must be defined in your main code. If these values are needed in the functions, they need to be sent to the function as input. You are not limited to just two functions - you can use more if you like. While you could hardwire the value of g in your functions, I would like you to define it in the main code and send it to the function with your other code. Why? What if someone, i.e. Walt, gave you experimental data in English units? You would have to try and remember where you 4

5 hardwired g. This way you can just change the constants in the main code, and everything should work immediately. I've noticed that a lot of people let MATLAB choose which colors to use in their plots. This is fine if you plan to use a color printer. If you are going to use a black and white printer, then you need to use black dashed, dotted, dash-dotted, and regular lines. (Some) colors do not print well in black and white and make it more difficult to read your work. Also, some of you have been using color pencils to add the color back in after using a black and white printer. This detracts from the professional quality of your report. A small number of points will be deducted in these situations. No cover sheet, abstract, table of contents, description of the experiment, derivation of equations or conclusions are expected or required. The name of the lab, your lab section, and the lab group member names should be at the top of what you turn in. MATLAB The most significant new functions required for this lab are polyfit and polyval. Polyfit makes a polynomial least-squares fit to some data. It returns some statistics on how good the fit is and the coefficients of the polynomial that best-fits the data. Imagine you have two arrays of data, y and t. Where t is an array of times from 0 to 27 seconds. Let s imagine that y is supposed to equal t 3 +3t 2 +5, but the data are somewhat noisy. %do a third order polynomial fit on y based on t. [p,s]=polyfit(t,y,3); s will contain some stuff that we don t really care about right now. p will be a 1 x 4 array with the coefficients of the polynomial y=f(t). In our case, p will be [ ] if there is no observation error. Once you have these coefficients, it might be nice to use them to do something like plot a best-fit polynomial through the original data. To do that, you d use polyval. polyval takes the coefficients produced by polyfit and an array of independent variables and produces the polynomial curve. besty_array = polyval(p,t); 5

Unit 7: Oscillations

Unit 7: Oscillations Text: Chapter 15 Unit 7: Oscillations NAME: Problems (p. 405-412) #1: 1, 7, 13, 17, 24, 26, 28, 32, 35 (simple harmonic motion, springs) #2: 45, 46, 49, 51, 75 (pendulums) Vocabulary: simple harmonic motion,

More information

DEVIL PHYSICS BADDEST CLASS ON CAMPUS IB PHYSICS

DEVIL PHYSICS BADDEST CLASS ON CAMPUS IB PHYSICS DEVIL PHYSICS BADDEST CLASS ON CAMPUS IB PHYSICS OPTION B-1A: ROTATIONAL DYNAMICS Essential Idea: The basic laws of mechanics have an extension when equivalent principles are applied to rotation. Actual

More information

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS LSN 8-7: ROTATIONAL KINETIC ENERGY Questions From Reading Activity? Big Idea(s): The interactions of an object with other objects can be described by

More information

Physics 121, March 25, Rotational Motion and Angular Momentum. Department of Physics and Astronomy, University of Rochester

Physics 121, March 25, Rotational Motion and Angular Momentum. Department of Physics and Astronomy, University of Rochester Physics 121, March 25, 2008. Rotational Motion and Angular Momentum. Physics 121. March 25, 2008. Course Information Topics to be discussed today: Review of Rotational Motion Rolling Motion Angular Momentum

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

Physics of Rotation. Physics 109, Introduction To Physics Fall 2017

Physics of Rotation. Physics 109, Introduction To Physics Fall 2017 Physics of Rotation Physics 109, Introduction To Physics Fall 017 Outline Next two lab periods Rolling without slipping Angular Momentum Comparison with Translation New Rotational Terms Rotational and

More information

Moment of Inertia: Rotational Energy

Moment of Inertia: Rotational Energy Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Moment of Inertia: Rotational Energy Name Partners Pre-Lab You are required to finish this section before coming to the lab; it will

More information

Physics Fall 2006 Laboratory 5: Rotational Dynamics

Physics Fall 2006 Laboratory 5: Rotational Dynamics 1 of 7 Physics 2010 -- Fall 2006 Laboratory 5: Rotational Dynamics NAME Section Day (circle): M Tu W Th F Section Time: 8a 10a 12p 2p 4p TA Name: This lab will cover the concepts of moment of inertia and

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

Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1

Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1 Physics 141. Lecture 18. Frank L. H. Wolfs Department of Physics and Astronomy, University of Rochester, Lecture 18, Page 1 Physics 141. Lecture 18. Course Information. Topics to be discussed today: A

More information

Temperature measurement

Temperature measurement Luleå University of Technology Johan Carlson Last revision: July 22, 2009 Measurement Technology and Uncertainty Analysis - E7021E Lab 3 Temperature measurement Introduction In this lab you are given a

More information

Slide 1 / 37. Rotational Motion

Slide 1 / 37. Rotational Motion Slide 1 / 37 Rotational Motion Slide 2 / 37 Angular Quantities An angle θ can be given by: where r is the radius and l is the arc length. This gives θ in radians. There are 360 in a circle or 2π radians.

More information

EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE (V_3)

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

More information

Chapter 10 Rotational Kinematics and Energy. Copyright 2010 Pearson Education, Inc.

Chapter 10 Rotational Kinematics and Energy. Copyright 2010 Pearson Education, Inc. Chapter 10 Rotational Kinematics and Energy Copyright 010 Pearson Education, Inc. 10-1 Angular Position, Velocity, and Acceleration Copyright 010 Pearson Education, Inc. 10-1 Angular Position, Velocity,

More information

LAB 3 - VELOCITY AND ACCELERATION

LAB 3 - VELOCITY AND ACCELERATION Name Date Partners L03-1 LAB 3 - VELOCITY AND ACCELERATION OBJECTIVES A cheetah can accelerate from 0 to 50 miles per hour in 6.4 seconds. Encyclopedia of the Animal World A Jaguar can accelerate from

More information

LAB 3: VELOCITY AND ACCELERATION

LAB 3: VELOCITY AND ACCELERATION Lab 3 - Velocity & Acceleration 25 Name Date Partners LAB 3: VELOCITY AND ACCELERATION A cheetah can accelerate from to 5 miles per hour in 6.4 seconds. A Jaguar can accelerate from to 5 miles per hour

More information

Physics 201. Professor P. Q. Hung. 311B, Physics Building. Physics 201 p. 1/1

Physics 201. Professor P. Q. Hung. 311B, Physics Building. Physics 201 p. 1/1 Physics 201 p. 1/1 Physics 201 Professor P. Q. Hung 311B, Physics Building Physics 201 p. 2/1 Rotational Kinematics and Energy Rotational Kinetic Energy, Moment of Inertia All elements inside the rigid

More information

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

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

More information

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

Lecture Outline Chapter 10. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc.

Lecture Outline Chapter 10. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc. Lecture Outline Chapter 10 Physics, 4 th Edition James S. Walker Chapter 10 Rotational Kinematics and Energy Units of Chapter 10 Angular Position, Velocity, and Acceleration Rotational Kinematics Connections

More information

Physics 111. Lecture 23 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, Kinetic Energy of Rolling Object

Physics 111. Lecture 23 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, Kinetic Energy of Rolling Object Physics 111 Lecture 3 (Walker: 10.6, 11.1) Conservation of Energy in Rotation Torque March 30, 009 Lecture 3 1/4 Kinetic Energy of Rolling Object Total kinetic energy of a rolling object is the sum of

More information

Phys101 Lectures 19, 20 Rotational Motion

Phys101 Lectures 19, 20 Rotational Motion Phys101 Lectures 19, 20 Rotational Motion Key points: Angular and Linear Quantities Rotational Dynamics; Torque and Moment of Inertia Rotational Kinetic Energy Ref: 10-1,2,3,4,5,6,8,9. Page 1 Angular Quantities

More information

LABORATORY 4: ROTATIONAL MOTION PLAYGROUND DYNAMICS: THE MERRY-GO-ROUND Written May-June 1993 by Melissa Wafer '95

LABORATORY 4: ROTATIONAL MOTION PLAYGROUND DYNAMICS: THE MERRY-GO-ROUND Written May-June 1993 by Melissa Wafer '95 LABORATORY 4: ROTATIONAL MOTION PLAYGROUND DYNAMICS: THE MERRY-GO-ROUND Written May-June 1993 by Melissa Wafer '95 In this laboratory period, you will use something that should be familiar to you to explain

More information

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

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

More information

Lab Partner(s) TA Initials (on completion) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE

Lab Partner(s) TA Initials (on completion) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 7: ANGULAR KINEMATICS AND TORQUE 117 Textbook Reference: Walker, Chapter 10-1,2, Chapter 11-1,3 SYNOPSIS

More information

Lecture 9 - Rotational Dynamics

Lecture 9 - Rotational Dynamics Lecture 9 - Rotational Dynamics A Puzzle... Angular momentum is a 3D vector, and changing its direction produces a torque τ = dl. An important application in our daily lives is that bicycles don t fall

More information

Physics 106 Common Exam 2: March 5, 2004

Physics 106 Common Exam 2: March 5, 2004 Physics 106 Common Exam 2: March 5, 2004 Signature Name (Print): 4 Digit ID: Section: Instructions: nswer all questions. Questions 1 through 10 are multiple choice questions worth 5 points each. You may

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Experiment 03: Work and Energy MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department Physics 8.01 Fall Term 2010 Experiment 03: Work and Energy Purpose of the Experiment: In this experiment you allow a cart to roll down an inclined

More information

Motion Part 4: Projectile Motion

Motion Part 4: Projectile Motion Motion Part 4: Projectile Motion Last modified: 28/03/2017 CONTENTS Projectile Motion Uniform Motion Equations Projectile Motion Equations Trajectory How to Approach Problems Example 1 Example 2 Example

More information

Physics 8 Friday, November 4, 2011

Physics 8 Friday, November 4, 2011 Physics 8 Friday, November 4, 2011 Please turn in Homework 7. I will hand out solutions once everyone is here. The handout also includes HW8 and a page or two of updates to the equation sheet needed to

More information

16.07 Dynamics. Problem Set 10

16.07 Dynamics. Problem Set 10 NAME :..................... Massachusetts Institute of Technology 16.07 Dynamics Problem Set 10 Out date: Nov. 7, 2007 Due date: Nov. 14, 2007 Problem 1 Problem 2 Problem 3 Problem 4 Study Time Time Spent

More information

LAB 5: ROTATIONAL DYNAMICS

LAB 5: ROTATIONAL DYNAMICS 1 Name Date Day/Time of Lab Partner(s) Lab TA OBJECTIVES LAB 5: ROTATIONAL DYNAMICS To investigate and understand moment of inertia as it relates to rotational motion. To relate angular and linear position,

More information

Moment of Inertia & Newton s Laws for Translation & Rotation

Moment of Inertia & Newton s Laws for Translation & Rotation Moment of Inertia & Newton s Laws for Translation & Rotation In this training set, you will apply Newton s 2 nd Law for rotational motion: Στ = Σr i F i = Iα I is the moment of inertia of an object: I

More information

Rotational Motion and Torque

Rotational Motion and Torque Rotational Motion and Torque Introduction to Angular Quantities Sections 8- to 8-2 Introduction Rotational motion deals with spinning objects, or objects rotating around some point. Rotational motion is

More information

July 19 - Work and Energy 1. Name Date Partners

July 19 - Work and Energy 1. Name Date Partners July 19 - Work and Energy 1 Name Date Partners WORK AND ENERGY Energy is the only life and is from the Body; and Reason is the bound or outward circumference of energy. Energy is eternal delight. William

More information

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION

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

More information

Rotational Motion. Figure 1: Torsional harmonic oscillator. The locations of the rotor and fiber are indicated.

Rotational Motion. Figure 1: Torsional harmonic oscillator. The locations of the rotor and fiber are indicated. Rotational Motion 1 Purpose The main purpose of this laboratory is to familiarize you with the use of the Torsional Harmonic Oscillator (THO) that will be the subject of the final lab of the course on

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

Most people said that they understand force and acceleration. GOOD!

Most people said that they understand force and acceleration. GOOD! Questions and Answers on Dynamics 3/17/98 Thanks to the students who submitted questions and comments! I have grouped them by topic and shortened some of the long questions/comments. Please feel free to

More information

Rigid Body Kinetics :: Force/Mass/Acc

Rigid Body Kinetics :: Force/Mass/Acc Rigid Body Kinetics :: Force/Mass/Acc General Equations of Motion G is the mass center of the body Action Dynamic Response 1 Rigid Body Kinetics :: Force/Mass/Acc Fixed Axis Rotation All points in body

More information

Course Project. Physics I with Lab

Course Project. Physics I with Lab COURSE OBJECTIVES 1. Explain the fundamental laws of physics in both written and equation form 2. Describe the principles of motion, force, and energy 3. Predict the motion and behavior of objects based

More information

Torque/Rotational Energy Mock Exam. Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK.

Torque/Rotational Energy Mock Exam. Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK. AP Physics C Spring, 2017 Torque/Rotational Energy Mock Exam Name: Answer Key Mr. Leonard Instructions: (105 points) Answer the following questions. SHOW ALL OF YOUR WORK. (22 pts ) 1. Two masses are attached

More information

Simple Harmonic Motion - MBL

Simple Harmonic Motion - MBL Simple Harmonic Motion - MBL In this experiment you will use a pendulum to investigate different aspects of simple harmonic motion. You will first examine qualitatively the period of a pendulum, as well

More information

Some Guidelines for Perusall

Some Guidelines for Perusall Some Guidelines for Perusall You can make as many comments as you like. Comments can be statements, questions, or an answer to someone else s question. Comments should refer to what s in the book, i.e.

More information

CHAPTER 8: ROTATIONAL OF RIGID BODY PHYSICS. 1. Define Torque

CHAPTER 8: ROTATIONAL OF RIGID BODY PHYSICS. 1. Define Torque 7 1. Define Torque 2. State the conditions for equilibrium of rigid body (Hint: 2 conditions) 3. Define angular displacement 4. Define average angular velocity 5. Define instantaneous angular velocity

More information

Physics 131: Lecture 21. Today s Agenda

Physics 131: Lecture 21. Today s Agenda Physics 131: Lecture 21 Today s Agenda Rotational dynamics Torque = I Angular Momentum Physics 201: Lecture 10, Pg 1 Newton s second law in rotation land Sum of the torques will equal the moment of inertia

More information

Physics 218 Lecture 23

Physics 218 Lecture 23 Physics 218 Lecture 23 Dr. David Toback Physics 218, Lecture XXIII 1 Checklist for Today Things due Monday Chapter 14 in WebCT Things that were due yesterday Chapter 15 problems as Recitation Prep Things

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

Prof. Rupak Mahapatra. Dynamics of Rotational Motion

Prof. Rupak Mahapatra. Dynamics of Rotational Motion Physics 218 Chapter 12-1616 Prof. Rupak Mahapatra Dynamics of Rotational Motion 1 Overview Chapters 12-16 are about Rotational Motion While we ll do Exam 3 on Chapters 10-13, we ll do the lectures on 12-16

More information

Chapter 10 Rotational Kinematics and Energy. Copyright 2010 Pearson Education, Inc.

Chapter 10 Rotational Kinematics and Energy. Copyright 2010 Pearson Education, Inc. Chapter 10 Rotational Kinematics and Energy 10-1 Angular Position, Velocity, and Acceleration 10-1 Angular Position, Velocity, and Acceleration Degrees and revolutions: 10-1 Angular Position, Velocity,

More information

Q: What does angular momentum mean? What is its equation for calculation?

Q: What does angular momentum mean? What is its equation for calculation? Ch 10: Conservation of Angular Momentum Reeeeecap. Q: What does angular velocity mean? What is its symbol? A: The rate of change of angular displacement.. Q: What does angular acceleration mean? What is

More information

= 2 5 MR2. I sphere = MR 2. I hoop = 1 2 MR2. I disk

= 2 5 MR2. I sphere = MR 2. I hoop = 1 2 MR2. I disk A sphere (green), a disk (blue), and a hoop (red0, each with mass M and radius R, all start from rest at the top of an inclined plane and roll to the bottom. Which object reaches the bottom first? (Use

More information

Physics 218 Lecture 21

Physics 218 Lecture 21 Physics 218 Lecture 21 Dr. David Toback Physics 218, Lecture XXI 1 Checklist for Today Things due Yesterday Chapters 12 & 13 in WebCT Things that are due for today Read Chapters 14-16 Things that are due

More information

Outline. Rolling Without Slipping. Additional Vector Analysis. Vector Products. Energy Conservation or Torque and Acceleration

Outline. Rolling Without Slipping. Additional Vector Analysis. Vector Products. Energy Conservation or Torque and Acceleration Rolling Without Slipping Energy Conservation or Torque and Acceleration hysics 109, Class eriod 10 Experiment Number 8 in the hysics 11 Lab Manual (page 39) 3 October, 007 Outline Additional Vector analysis

More information

Contents. Objectives Torque on an Object Rotational Kinetic Energy Yo yo Rolling on an Incline Physical Pendulum Angular Momentum and Torque Recap

Contents. Objectives Torque on an Object Rotational Kinetic Energy Yo yo Rolling on an Incline Physical Pendulum Angular Momentum and Torque Recap Physics 121 for Majors Class 21 Rotating Objects Last Class We learned to find angular momentum and torques of point masses and objects. We learned how to use torques and forces to solve problems with

More information

Lecture PowerPoints. Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli

Lecture PowerPoints. Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli Lecture PowerPoints Chapter 8 Physics: Principles with Applications, 6 th edition Giancoli 2005 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for the

More information

Part 8: Rigid Body Dynamics

Part 8: Rigid Body Dynamics Document that contains homework problems. Comment out the solutions when printing off for students. Part 8: Rigid Body Dynamics Problem 1. Inertia review Find the moment of inertia for a thin uniform rod

More information

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum

Updated 2013 (Mathematica Version) M1.1. Lab M1: The Simple Pendulum Updated 2013 (Mathematica Version) M1.1 Introduction. Lab M1: The Simple Pendulum The simple pendulum is a favorite introductory exercise because Galileo's experiments on pendulums in the early 1600s are

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

Linear Motion with Constant Acceleration

Linear Motion with Constant Acceleration Linear Motion 1 Linear Motion with Constant Acceleration Overview: First you will attempt to walk backward with a constant acceleration, monitoring your motion with the ultrasonic motion detector. Then

More information

Lecture 10 - Moment of Inertia

Lecture 10 - Moment of Inertia Lecture 10 - oment of Inertia A Puzzle... Question For any object, there are typically many ways to calculate the moment of inertia I = r 2 dm, usually by doing the integration by considering different

More information

Physics 18 Spring 2010 Midterm 2 Solutions

Physics 18 Spring 2010 Midterm 2 Solutions Physics 18 Spring 010 Midterm s For midterm, you may use one sheet of notes with whatever you want to put on it, front and back. Please sit every or seat, and please don t cheat! If something isn t clear,

More information

ME 201 Engineering Mechanics: Statics. Final Exam Review

ME 201 Engineering Mechanics: Statics. Final Exam Review ME 201 Engineering Mechanics: Statics inal Exam Review inal Exam Testing Center (Proctored, 1 attempt) Opens: Monday, April 9 th Closes : riday, April 13 th Test ormat 15 Problems 10 Multiple Choice (75%)

More information

Chapter 9: Circular Motion

Chapter 9: Circular Motion Text: Chapter 9 Think and Explain: 1-5, 7-9, 11 Think and Solve: --- Chapter 9: Circular Motion NAME: Vocabulary: rotation, revolution, axis, centripetal, centrifugal, tangential speed, Hertz, rpm, rotational

More information

Physics 131: Lecture 21. Today s Agenda

Physics 131: Lecture 21. Today s Agenda Physics 131: Lecture 1 Today s Agenda Rotational dynamics Torque = I Angular Momentum Physics 01: Lecture 10, Pg 1 Newton s second law in rotation land Sum of the torques will equal the moment of inertia

More information

Name(s): Date: Course/Section: Mass of the Earth

Name(s): Date: Course/Section: Mass of the Earth Name(s): Date: Course/Section: Grade: Part 1: The Angular Size of the Earth Mass of the Earth Examine the image on the lab website. The image of the Earth was taken from the Moon on Aug 23, 1966 by Lunar

More information

First Name: Last Name: Section: 1. March 26, 2008 Physics 207 EXAM 2

First Name: Last Name: Section: 1. March 26, 2008 Physics 207 EXAM 2 First Name: Last Name: Section: 1 March 26, 2008 Physics 207 EXAM 2 Please print your name and section number (or TA s name) clearly on all pages. Show all your work in the space immediately below each

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

Lab 2: Static Response, Cantilevered Beam

Lab 2: Static Response, Cantilevered Beam Contents 1 Lab 2: Static Response, Cantilevered Beam 3 1.1 Objectives.......................................... 3 1.2 Scalars, Vectors and Matrices (Allen Downey)...................... 3 1.2.1 Attribution.....................................

More information

τ = (Force)(lever arm) #

τ = (Force)(lever arm) # EXPERIMENT: MOMENT OF INERTIA OBJECTIVES : 1) To familiarize yourself with the concept of the moment of inertia, I, which plays the same role in the description of the rotation of the rigid body as the

More information

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Fall 2009 Introduction This is the second of two labs on simple harmonic motion (SHM). In the first lab you studied elastic forces and elastic energy, and you measured the net force on a pendulum bob held at an

More information

Physics 8 Wednesday, October 30, 2013

Physics 8 Wednesday, October 30, 2013 Physics 8 Wednesday, October 30, 2013 HW9 (due Friday) is 7 conceptual + 8 calculation problems. Of the 8 calculation problems, 4 or 5 are from Chapter 11, and 3 or 4 are from Chapter 12. 7pm HW sessions:

More information

Lab 9. Rotational Dynamics

Lab 9. Rotational Dynamics Lab 9. Rotational Dynamics Goals To calculate the moment of inertia of two metal cylindrical masses from their measured dimensions and their distance from the axis of rotation. To use the principle of

More information

Center of Gravity. The location of the center of gravity is defined by: n mgx. APSC 111 Review Page 7

Center of Gravity. The location of the center of gravity is defined by: n mgx. APSC 111 Review Page 7 Center of Gravity We have said that for rigid bodies, all of the forces act at the centre of mass. This is a normally a very good approximation, but strictly speaking, the forces act at the centre of gravity,

More information

Rotational Motion. Variable Translational Motion Rotational Motion Position x θ Velocity v dx/dt ω dθ/dt Acceleration a dv/dt α dω/dt

Rotational Motion. Variable Translational Motion Rotational Motion Position x θ Velocity v dx/dt ω dθ/dt Acceleration a dv/dt α dω/dt Team: Rotational Motion Rotational motion is everywhere. When you push a door, it rotates. When you pedal a bike, the wheel rotates. When you start an engine, many parts rotate. Electrons rotate in an

More information

Lab 6a: Pole Placement for the Inverted Pendulum

Lab 6a: Pole Placement for the Inverted Pendulum Lab 6a: Pole Placement for the Inverted Pendulum Idiot. Above her head was the only stable place in the cosmos, the only refuge from the damnation of the Panta Rei, and she guessed it was the Pendulum

More information

Physics 8 Wednesday, October 14, 2015

Physics 8 Wednesday, October 14, 2015 Physics 8 Wednesday, October 14, 2015 HW5 due Friday (problems from Ch9 and Ch10.) Bill/Camilla switch HW sessions this week only (same rooms, same times what changes is which one of us is there): Weds

More information

Worksheet Week 1 Review of Chapter 5, from Definition of integral to Substitution method

Worksheet Week 1 Review of Chapter 5, from Definition of integral to Substitution method Worksheet Week Review of Chapter 5, from Definition of integral to Substitution method This worksheet is for improvement of your mathematical writing skill. Writing using correct mathematical expressions

More information

Do not fill out the information below until instructed to do so! Name: Signature: Student ID: Section Number:

Do not fill out the information below until instructed to do so! Name: Signature: Student ID:   Section Number: Do not fill out the information below until instructed to do so! Name: Signature: Student ID: E-mail: Section Number: Formulae are provided on the last page. You may NOT use any other formula sheet. You

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

AP Physics 1 Summer Assignment-2016

AP Physics 1 Summer Assignment-2016 AP Physics 1 Summer Assignment-2016 Welcome to the AP Physics 1 Team! AP Physics 1 is an introductory college level physics course. Concept development and problem solving are algebra and trigonometry

More information

17-Nov-2015 PHYS MAXWELL WHEEL. To test the conservation of energy in a system with gravitational, translational and rotational energies.

17-Nov-2015 PHYS MAXWELL WHEEL. To test the conservation of energy in a system with gravitational, translational and rotational energies. Objective MAXWELL WHEEL To test the conservation of energy in a system with gravitational, translational and rotational energies. Introduction A wheel is suspended by two cords wrapped on its axis. After

More information

Last 6 lectures are easier

Last 6 lectures are easier Your Comments I love you. Seriously. I do. And you never post it. I felt really bad whilst completing the checkpoint for this. This stuff is way above my head and I struggled with the concept of precession.

More information

Physics 201, Lecture 18

Physics 201, Lecture 18 q q Physics 01, Lecture 18 Rotational Dynamics Torque Exercises and Applications Rolling Motion Today s Topics Review Angular Velocity And Angular Acceleration q Angular Velocity (ω) describes how fast

More information

Oscillatory Motion. Solutions of Selected Problems

Oscillatory Motion. Solutions of Selected Problems Chapter 15 Oscillatory Motion. Solutions of Selected Problems 15.1 Problem 15.18 (In the text book) A block-spring system oscillates with an amplitude of 3.50 cm. If the spring constant is 250 N/m and

More information

ΣF = ma Στ = Iα ½mv 2 ½Iω 2. mv Iω

ΣF = ma Στ = Iα ½mv 2 ½Iω 2. mv Iω Thur Oct 22 Assign 9 Friday Today: Torques Angular Momentum x θ v ω a α F τ m I Roll without slipping: x = r Δθ v LINEAR = r ω a LINEAR = r α ΣF = ma Στ = Iα ½mv 2 ½Iω 2 I POINT = MR 2 I HOOP = MR 2 I

More information

LAB 6: WORK AND ENERGY

LAB 6: WORK AND ENERGY 93 Name Date Partners LAB 6: WORK AND ENERGY OBJECTIVES OVERVIEW Energy is the only life and is from the Body; and Reason is the bound or outward circumference of energy. Energy is eternal delight. William

More information

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

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

More information

Chapter 6, Problem 18. Agenda. Rotational Inertia. Rotational Inertia. Calculating Moment of Inertia. Example: Hoop vs.

Chapter 6, Problem 18. Agenda. Rotational Inertia. Rotational Inertia. Calculating Moment of Inertia. Example: Hoop vs. Agenda Today: Homework quiz, moment of inertia and torque Thursday: Statics problems revisited, rolling motion Reading: Start Chapter 8 in the reading Have to cancel office hours today: will have extra

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

Big Bang, Black Holes, No Math

Big Bang, Black Holes, No Math ASTR/PHYS 109 Dr. David Toback Lecture 5 1 Prep For Today (is now due) L5 Reading: No new reading Unit 2 reading assigned at the end of class Pre-Lecture Reading Questions: Unit 1: Grades have been posted

More information

Lesson 8. Luis Anchordoqui. Physics 168. Thursday, October 11, 18

Lesson 8. Luis Anchordoqui. Physics 168. Thursday, October 11, 18 Lesson 8 Physics 168 1 Rolling 2 Intuitive Question Why is it that when a body is rolling on a plane without slipping the point of contact with the plane does not move? A simple answer to this question

More information

PLANAR KINETIC EQUATIONS OF MOTION: TRANSLATION

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

More information

16. Rotational Dynamics

16. Rotational Dynamics 6. Rotational Dynamics A Overview In this unit we will address examples that combine both translational and rotational motion. We will find that we will need both Newton s second law and the rotational

More information

Lecture 31. EXAMPLES: EQUATIONS OF MOTION USING NEWTON AND ENERGY APPROACHES

Lecture 31. EXAMPLES: EQUATIONS OF MOTION USING NEWTON AND ENERGY APPROACHES Lecture 31. EXAMPLES: EQUATIONS OF MOTION USING NEWTON AND ENERGY APPROACHES Figure 5.29 (a) Uniform beam moving in frictionless slots and attached to ground via springs at A and B. The vertical force

More information

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS AP PHYSICS LSN 8-5: ROTATIONAL DYNAMICS; TORQUE AND ROTATIONAL INERTIA LSN 8-6: SOLVING PROBLEMS IN ROTATIONAL DYNAMICS Questions From Reading Activity? Big Idea(s):

More information

Chapter 10: Dynamics of Rotational Motion

Chapter 10: Dynamics of Rotational Motion Chapter 10: Dynamics of Rotational Motion What causes an angular acceleration? The effectiveness of a force at causing a rotation is called torque. QuickCheck 12.5 The four forces shown have the same strength.

More information

LAB 3: WORK AND ENERGY

LAB 3: WORK AND ENERGY 1 Name Date Lab Day/Time Partner(s) Lab TA (CORRECTED /4/05) OBJECTIVES LAB 3: WORK AND ENERGY To understand the concept of work in physics as an extension of the intuitive understanding of effort. To

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

Your Comments. That s the plan

Your Comments. That s the plan Your Comments I love physics as much as the next gal, but I was wondering. Why don't we get class off the day after an evening exam? What if the ladder has friction with the wall? Things were complicated

More information