Figure 12.1: A simple pendulum

Size: px
Start display at page:

Download "Figure 12.1: A simple pendulum"

Transcription

1 Chapter 12 A Simple Pendulum by Brian Patterson In this module you will use DIYModeling to build a simulation of a simple pendulum. The basic ideas can be extended to other types of pendulums, such as physical, spherical or torsional pendulums The Physics of a Pendulum Figure 12.1: A simple pendulum A simple pendulum consists of a point mass m swinging at the end of a massless string of length L, as shown in Figure The angle that the string makes with vertical at any instant is, and the motion is confined to a single vertical plane. It is straightforward to find the equations of motion using the rotational form of Newton s second law, 105

2 CHAPTER 12. A SIMPLE PENDULUM 106 X = I. The only torque ( ) acting on the pendulum is caused by gravity (we ignore any frictional losses) and can be written as = mgl sin, and the rotational inertia (I) for the point mass is I = ml 2. Putting these two equations together and writing the angular acceleration ( ) as the second time derivative of the angular position ( ) gives or mgl sin = ml 2 d2 dt 2 d 2 dt 2 = g sin. L In DIYModeling we express this second order di erential equation as a system of two first order di erential equations d dt d! dt =! = g L sin where! is the angular velocity of the pendulum in radians per second (and should not be confused with the angular frequency of oscillation). We will also use initial conditions (0) = 0!(0) =! 0

3 CHAPTER 12. A SIMPLE PENDULUM 107 Figure 12.2: The Project tab Note that because we are using DIYModeling, which solves these di erential equations numerically, students can study the motion of a simple pendulum without recourse to the small angle approximation, as is typically done in standard textbooks Building the Model and Simulation in DIYModeling Launch DIYModeling and open the QuickStart skeleton file pendulumtemplate.xml. See Section 1.2 on page 6. This skeleton file does not yet implement a working simulation you will need to modify it a bit to get it to work, as outlined below. (Note: if you want to examine a fully functional pendulum simulation, open the example file pendulum.xml and run it in the usual way.) In the Project tab (See Figure 12.2), you will see some basic information: a descriptive Model Name ( Simple Pendulum Template ), the World Time Units ( seconds ) and World Length Units ( meters ) used in the model, and Time Scale and Visual Scale factors (both set to 1 because no scaling is needed for this model). If you were creating this model completely from scratch, you would need to provide this information yourself.

4 CHAPTER 12. A SIMPLE PENDULUM Adding Components Figure 12.3: The finished simulation Looking ahead a bit, Figure 12.3 shows the final rendering of the pendulum model in DIYModeling. It includes a support structure to which the pendulum is attached, a length of string, and the pendulum mass (or bob ). Not explicitly shown, but also included as components are the camera and light source. To create these components in your model, click on the Components tab in the Model Editor window. In the large area on the right of the screen (see Figure 12.4) you will see that the camera and light source have already been provided in your model components, but you will need to add the other three components yourself. From the Component Libraries pane to the left of the screen, scroll down until you find the standard component Cube. Click and drag this component to the right side of the screen, where it will show up as a component named Cube1. You will use this component for the pendulum support. Note that, by double-clicking on Cube1, you can rename it as something a little more descriptive (e.g, Support ). Next, click on

5 CHAPTER 12. A SIMPLE PENDULUM 109 Figure 12.4: The Components tab the standard component Sphere in the Component Libraries pane and drag it to the right side of the screen, where it will show up as a component named Sphere1. You will use this component for the pendulum bob, so double-click on it and rename it as PendulumBob. Finally, click and drag the standard component Arrow from the Component Libraries to the right side of the screen. You will use this component as the pendulum string, so rename it as String. At this point your component set should resemble Figure Although you have now created all the required visual components for your model, they are neither correctly sized nor positioned (go ahead and run your model to see this for yourself). To fix this, click on the small button to the right of the Support component. A new region will open in the center of the screen labeled Component Attributes and Parameters, where you can specify both the size and position of the Support component. In the Size field (see Figure 12.6), enter [5, 1, 5] which changes the size of the Support component to 5 units in the x and z (horizontal) directions and 1 unit in the y (vertical) direction. Then change the Position field (see Figure 12.7) to [0, 0.5, 0]

6 CHAPTER 12. A SIMPLE PENDULUM 110 Figure 12.5: The Components tab with the new components which shifts the Support component vertically by 0.5 unit, so that its base is in the xz plane. In the same way, click on the small button to the right of the PendulumBob component, and change the Diameter field to [1, 1, 1] This sets the PendulumBob diameter to 1 unit. variable name In the Position field, enter the bobposition Finally, you will need to change the end points of the String so that it starts at the origin (i.e., at the pivot point) and ends at the center of the bob. Click on the small button to the right of the String component, and enter [0,0,0] in the ArrowTail field and enter the variable name

7 CHAPTER 12. A SIMPLE PENDULUM 111 Figure 12.6: The Support size parameter

8 CHAPTER 12. A SIMPLE PENDULUM 112 Figure 12.7: The Support position parameter

9 CHAPTER 12. A SIMPLE PENDULUM 113 Figure 12.8: Linking the PendulumBob position to the variable bobposition bobposition in the ArrowHead field. This variable name has not yet been defined, but we will use it later on to specify the three-dimensional position of the pendulum bob. You have now finished creating your model components. See Figure Specifying the Model Now that you ve selected your components, you will need to enter the mathematical model that controls their behavior. Click on the Model tab in the Model Editor. The first two lines of the model table have already been created for you (see Figure 12.9) and define the constants appearing in the problem: the acceleration due to gravity (g = 9.81 meters per second 2 ) and the pendulum length (which is set to length = 10 meters). Later we will add a slider control that will allow you to easily adjust the value of length, but for now we ll just keep length constant at 10 meters. In the next three lines of the model table, you will create the dynamical variables for

10 CHAPTER 12. A SIMPLE PENDULUM 114 Figure 12.9: The first two lines in the model the angle ( ), the angular velocity (!), and the position of the pendulum, as described below. To create a variable for the pendulum angle, click on the Add New button at the top of the table, and, in the new line that appears, enter theta in the Name column. Because is governed by a di erential equation, select di eq from the drop down menu in the How column. The pendulum angle is a simple scalar function, so you should leave the What column unchanged ( decimal ). Click in the Units column and select radians for the angular units, and enter a reasonable initial value for in the Initial Value column, say 0.5 radians (about 30 degrees). Finally, in the Expression column, enter the time derivative for, given by d dt =! That is, you should simply enter omega (the variable name you will use for angular velocity) in this cell. Check your inputs for theta against line 3 of of Figure To create a variable for the angular velocity, click the Add New button and, in the new line that appears, enter omega in the Name column. The values you enter in this row should parallel those for (or theta) di eq, decimal and radians/s, in the columns How, What, and Units, respectively. We ll release the pendulum from rest, so enter 0 as the Initial Value. Finally, in the Expression column, enter the time derivative for!, given by That is, you should enter d! dt = g L sin

11 CHAPTER 12. A SIMPLE PENDULUM 115 Figure 12.10: The model -(g/length) * sin(theta) Check your inputs for omega against line 4 of Figure To create a variable for the position of the pendulum bob, click the Add New button and, in the new line that appears, enter bobposition in the Name column. You will calculate the bob position as a simple function of the angle and length of the pendulum, so select function in the How column. The variable bobposition will be a three-dimensional vector, as it must specify the x, y and z components of the bob position, so select vector in the What column and enter 3 in the Dim column. Select meter for units. Finally, in the Expression column, enter the vector position of the bob, [sin(theta), -cos(theta), 0] * length Check your inputs for bobposition against line 5 of Figure Run your simulation in the usual way by selecting Simulate and Run from the Run pull-down menu in the Model Editor. If you ve made no mistakes, you should see your pendulum swinging back and forth beneath the support structure (see Figure 12.3). If your simulation doesn t run, check the Error tab in the Model Editor, fix any errors, and re-run the simulation. If you have problems troubleshooting your model, compare your work to fully implemented model pendulum.xml provided in the QuickStart Collection.

12 CHAPTER 12. A SIMPLE PENDULUM Adding Some Bells and Whistles To make the simulation more useful, try adding a couple of slider controls (see Chapter 9) for the pendulum length and initial angle, so that you can easily vary these parameters during the simulation. Briefly, To create a slider control for the pendulum length, go to the Components tab of the Model Editor. Select a slidercontrol standard component from the Component Libraries on the left side of the screen and drag it into your collection of pendulum components on the right side of the screen. Then double-click on the slider icon and rename it as length so that it will control the pendulum length during the simulation. You will also need to go to the Model tab in the Model Editor and remove the variable named length from the model table, since this table entry is no longer needed now that the slider control has been created. (To remove the variable length, simple select this entry in the table and click the Remove Selected button just above the table.) Sliders have four parameters that you will want to set. Label this descriptive label appears next to the slider control during the simulation. Value this parameter specifies the initial value, or setting, of the slider. Minimum this parameter specifies the minimum value of the slider. Maximum this parameter specifies the maximum value of the slider. To create a slider control for the initial pendulum angle, click and drag a second slidercontrol from the Component Libraries into your collection of pendulum components and rename it as initialangle. You will also need to go to the Model tab in the Model Editor and modify the Initial Value of the variable theta. Replace the value of 0.5 radians that you entered earlier with either or degreestoradians(initialangle) initialangle With the first version the slider will specify the initial angle in degrees and with the second version the slider will specify the initial angle in radians. The simulation will now reference the slider control initialangle to determine the starting position of the pendulum. Remember to set the values of the four slider parameters.

13 CHAPTER 12. A SIMPLE PENDULUM Suggestions for Further Exploration Once your pendulum simulation is working, here are a few avenues for exploration. Explore the e ect of changing the initial angle or the pendulum length on the period of oscillation. Unlike the usual textbook example where small angles are assumed, the period will depend on both of these parameters. To determine the period of oscillation, go to the Model tab and ensure that the box in the Rec column is checked for the variable theta. Run the simulation by selecting Simulate, Record, and Run from the Run pulldown menu. Upon quitting the simulation, you will find that the numerical values generated for (or theta) are available in the Recorded Data tab at the bottom of the Model Editor and can be used to determine the period. Add components to create a second pendulum, using the small angle approximation, that runs simultaneously with the first one. Compare its simple harmonic motion to the motion of the actual pendulum. Explore the e ect of changing the initial velocity of the pendulum. To do this, simply change the value specified in the Initial Value column for the variable! (or omega) in the Model tab. Modify the model to model a spherical pendulum. A spherical pendulum is similar to the simple pendulum, but without the constraint of a single plane of oscillation. The pendulum position is therefore determined by two angles: as defined above, and an azimuthal angle. The equations of motion for and are d 2 dt 2 = d 2 dt 2 = 0 g L sin

Figure 1: Revolving Coordinate System for the Earth. Seasons and Latitude Simulation Step-by-Step

Figure 1: Revolving Coordinate System for the Earth. Seasons and Latitude Simulation Step-by-Step 1 z y x Figure 1: Revolving Coordinate System for the Earth Seasons and Latitude Simulation Step-by-Step The purpose of this unit is to build a simulation that will help us understand the role of latitude

More information

Project 3: Pendulum. Physics 2300 Spring 2018 Lab partner

Project 3: Pendulum. Physics 2300 Spring 2018 Lab partner Physics 2300 Spring 2018 Name Lab partner Project 3: Pendulum In this project you will explore the behavior of a pendulum. There is no better example of a system that seems simple at first but turns out

More information

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

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

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

More information

A Physical Pendulum 2

A Physical Pendulum 2 A Physical Pendulum 2 Ian Jacobs, Physics Advisor, KVIS, Rayong, Thailand Introduction A physical pendulum rotates back and forth about a fixed axis and may be of any shape. All pendulums are driven by

More information

Newton's 2 nd Law. . Your end results should only be interms of m

Newton's 2 nd Law. . Your end results should only be interms of m Newton's nd Law Introduction: In today's lab you will demonstrate the validity of Newton's Laws in predicting the motion of a simple mechanical system. The system that you will investigate consists of

More information

Please read this introductory material carefully; it covers topics you might not yet have seen in class.

Please read this introductory material carefully; it covers topics you might not yet have seen in class. b Lab Physics 211 Lab 10 Torque What You Need To Know: Please read this introductory material carefully; it covers topics you might not yet have seen in class. F (a) (b) FIGURE 1 Forces acting on an object

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) A 4.8-kg block attached to a spring executes simple harmonic motion on a frictionless

More information

Oscillations. Oscillations and Simple Harmonic Motion

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

More information

Show all work in answering the following questions. Partial credit may be given for problems involving calculations.

Show all work in answering the following questions. Partial credit may be given for problems involving calculations. Physics 3210, Spring 2017 Exam #1 Name: Signature: UID: Please read the following before continuing: Show all work in answering the following questions. Partial credit may be given for problems involving

More information

18-Dec-12 PHYS Simple Pendulum. To investigate the fundamental physical properties of a simple pendulum.

18-Dec-12 PHYS Simple Pendulum. To investigate the fundamental physical properties of a simple pendulum. Objective Simple Pendulum To investigate the fundamental physical properties of a simple pendulum. Equipment Needed Simple Pendulum Apparatus with Meter Scale and Protractor Bobs 4 (Aluminum, Brass, Lead,

More information

The University of Hong Kong Department of Physics. Physics Laboratory PHYS3350 Classical Mechanics Experiment No The Physical Pendulum Name:

The University of Hong Kong Department of Physics. Physics Laboratory PHYS3350 Classical Mechanics Experiment No The Physical Pendulum Name: The University of Hong Kong Department of Physics Physics Laboratory PHYS3350 Classical Mechanics Experiment No. 3350-2 The Physical Pendulum Name: University No: Introduction One of the practical uses

More information

Lecture 19: Calculus of Variations II - Lagrangian

Lecture 19: Calculus of Variations II - Lagrangian Lecture 19: Calculus of Variations II - Lagrangian 1. Key points Lagrangian Euler-Lagrange equation Canonical momentum Variable transformation Maple VariationalCalculus package EulerLagrange 2. Newton's

More information

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

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

More information

HB Coupled Pendulums Lab Coupled Pendulums

HB Coupled Pendulums Lab Coupled Pendulums HB 04-19-00 Coupled Pendulums Lab 1 1 Coupled Pendulums Equipment Rotary Motion sensors mounted on a horizontal rod, vertical rods to hold horizontal rod, bench clamps to hold the vertical rods, rod clamps

More information

PHYSICS 211 LAB #8: Periodic Motion

PHYSICS 211 LAB #8: Periodic Motion PHYSICS 211 LAB #8: Periodic Motion A Lab Consisting of 6 Activities Name: Section: TA: Date: Lab Partners: Circle the name of the person to whose report your group printouts will be attached. Individual

More information

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring

Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Lab 11 Simple Harmonic Motion A study of the kind of motion that results from the force applied to an object by a spring Print Your Name Print Your Partners' Names Instructions April 20, 2016 Before lab,

More information

PHYS 1401 General Physics I EXPERIMENT 14 SIMPLE HARMONIC MOTION. II. APPARATUS Spring, weights, strings, meter stick, photogate and a computer.

PHYS 1401 General Physics I EXPERIMENT 14 SIMPLE HARMONIC MOTION. II. APPARATUS Spring, weights, strings, meter stick, photogate and a computer. PHYS 1401 General Physics I EXPERIMENT 14 SIMPLE HARMONIC MOTION I. INTRODUCTION The objective of this experiment is the study of oscillatory motion. In particular the springmass system will be studied.

More information

SHM Simple Harmonic Motion revised May 23, 2017

SHM Simple Harmonic Motion revised May 23, 2017 SHM Simple Harmonic Motion revised May 3, 017 Learning Objectives: During this lab, you will 1. communicate scientific results in writing.. estimate the uncertainty in a quantity that is calculated from

More information

Lab 10: Ballistic Pendulum

Lab 10: Ballistic Pendulum Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Lab 10: Ballistic Pendulum Name: Partners: Pre-Lab You are required to finish this section before coming to the lab it will be checked

More information

Chapter 15. Oscillations

Chapter 15. Oscillations Chapter 15 Oscillations 15.1 Simple Harmonic Motion Oscillatory Motion: Motion which is periodic in time; motion that repeats itself in time. Examples: SHM: Power line oscillates when the wind blows past.

More information

Simple and Physical Pendulums Challenge Problem Solutions

Simple and Physical Pendulums Challenge Problem Solutions Simple and Physical Pendulums Challenge Problem Solutions Problem 1 Solutions: For this problem, the answers to parts a) through d) will rely on an analysis of the pendulum motion. There are two conventional

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

Oscillations. PHYS 101 Previous Exam Problems CHAPTER. Simple harmonic motion Mass-spring system Energy in SHM Pendulums

Oscillations. PHYS 101 Previous Exam Problems CHAPTER. Simple harmonic motion Mass-spring system Energy in SHM Pendulums PHYS 101 Previous Exam Problems CHAPTER 15 Oscillations Simple harmonic motion Mass-spring system Energy in SHM Pendulums 1. The displacement of a particle oscillating along the x axis is given as a function

More information

TIphysics.com. Physics. Pendulum Explorations ID: By Irina Lyublinskaya

TIphysics.com. Physics. Pendulum Explorations ID: By Irina Lyublinskaya Pendulum Explorations ID: 17 By Irina Lyublinskaya Time required 90 minutes Topic: Circular and Simple Harmonic Motion Explore what factors affect the period of pendulum oscillations. Measure the period

More information

Physics for Scientists and Engineers 4th Edition, 2017

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

More information

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion Harmonic Oscillator Mass-Spring Oscillator Resonance The Pendulum Physics 109, Class Period 13 Experiment Number 11 in the Physics 121 Lab Manual (page 65) Outline Simple harmonic motion The vertical mass-spring

More information

Essential Physics I. Lecture 9:

Essential Physics I. Lecture 9: Essential Physics I E I Lecture 9: 15-06-15 Last lecture: review Conservation of momentum: p = m v p before = p after m 1 v 1,i + m 2 v 2,i = m 1 v 1,f + m 2 v 2,f m 1 m 1 m 2 m 2 Elastic collision: +

More information

The Coupled Pendulum Experiment

The Coupled Pendulum Experiment The Coupled Pendulum Experiment In this lab you will briefly study the motion of a simple pendulum, after which you will couple two pendulums and study the properties of this system. 1. Introduction to

More information

Chapter 14: Periodic motion

Chapter 14: Periodic motion Chapter 14: Periodic motion Describing oscillations Simple harmonic motion Energy of simple harmonic motion Applications of simple harmonic motion Simple pendulum & physical pendulum Damped oscillations

More information

Experiment P30: Centripetal Force on a Pendulum (Force Sensor, Photogate)

Experiment P30: Centripetal Force on a Pendulum (Force Sensor, Photogate) PASCO scientific Physics Lab Manual: P30-1 Experiment P30: (Force Sensor, Photogate) Concept Time SW Interface Macintosh File Windows File centripetal force 30 m 500 or 700 P30 Centripetal Force P30_CENT.SWS

More information

Periodic Motion. Periodic motion is motion of an object that. regularly repeats

Periodic Motion. Periodic motion is motion of an object that. regularly repeats Periodic Motion Periodic motion is motion of an object that regularly repeats The object returns to a given position after a fixed time interval A special kind of periodic motion occurs in mechanical systems

More information

Chapter 15 Periodic Motion

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

More information

AP Physics Review FRQ 2015

AP Physics Review FRQ 2015 AP Physics Review FRQ 2015 2015 Mech 1. A block of mass m is projected up from the bottom of an inclined ramp with an initial velocity of magnitude v 0. The ramp has negligible friction and makes an angle

More information

Experiment: Oscillations of a Mass on a Spring

Experiment: Oscillations of a Mass on a Spring Physics NYC F17 Objective: Theory: Experiment: Oscillations of a Mass on a Spring A: to verify Hooke s law for a spring and measure its elasticity constant. B: to check the relationship between the period

More information

Lecture 18. In other words, if you double the stress, you double the resulting strain.

Lecture 18. In other words, if you double the stress, you double the resulting strain. Lecture 18 Stress and Strain and Springs Simple Harmonic Motion Cutnell+Johnson: 10.1-10.4,10.7-10.8 Stress and Strain and Springs So far we ve dealt with rigid objects. A rigid object doesn t change shape

More information

Harmonic Oscillator. Mass-Spring Oscillator Resonance The Pendulum. Physics 109 Experiment Number 12

Harmonic Oscillator. Mass-Spring Oscillator Resonance The Pendulum. Physics 109 Experiment Number 12 Harmonic Oscillator Mass-Spring Oscillator Resonance The Pendulum Physics 109 Experiment Number 12 Outline Simple harmonic motion The vertical mass-spring system Driven oscillations and resonance The pendulum

More information

Introduction to Computer Tools and Uncertainties

Introduction to Computer Tools and Uncertainties Experiment 1 Introduction to Computer Tools and Uncertainties 1.1 Objectives To become familiar with the computer programs and utilities that will be used throughout the semester. To become familiar with

More information

Introduction to Simple Harmonic Motion

Introduction to Simple Harmonic Motion Introduction to Prelab Prelab 1: Write the objective of your experiment. Prelab 2: Write the relevant theory of this experiment. Prelab 3: List your apparatus and sketch your setup.! Have these ready to

More information

Figure 2.1 The Inclined Plane

Figure 2.1 The Inclined Plane PHYS-101 LAB-02 One and Two Dimensional Motion 1. Objectives The objectives of this experiment are: to measure the acceleration due to gravity using one-dimensional motion, i.e. the motion of an object

More information

Flipping Physics Lecture Notes: Demonstrating Rotational Inertia (or Moment of Inertia)

Flipping Physics Lecture Notes: Demonstrating Rotational Inertia (or Moment of Inertia) Flipping Physics Lecture Notes: Demonstrating Rotational Inertia (or Moment of Inertia) Have you ever struggled to describe Rotational Inertia to your students? Even worse, have you ever struggled to understand

More information

AP Physics Free Response Practice Oscillations

AP Physics Free Response Practice Oscillations AP Physics Free Response Practice Oscillations 1975B7. A pendulum consists of a small object of mass m fastened to the end of an inextensible cord of length L. Initially, the pendulum is drawn aside through

More information

Simulation of Simple Pendulum

Simulation of Simple Pendulum International Journal of Engineering Science Invention ISSN (Online): 2319 6734, ISSN (Print): 2319 6726 Volume 6 Issue 4 April 2017 PP. 33-38 Abdalftah Elbori 1, Ltfei Abdalsmd 2 1 (MODES Department Atilim

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc. Chapter 14 Oscillations Oscillations of a Spring Simple Harmonic Motion Energy in the Simple Harmonic Oscillator Simple Harmonic Motion Related to Uniform Circular Motion The Simple Pendulum The Physical

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 12. Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx

Chapter 12. Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx Chapter 1 Lecture Notes Chapter 1 Oscillatory Motion Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx When the mass is released, the spring will pull

More information

The object of this experiment is to study systems undergoing simple harmonic motion.

The object of this experiment is to study systems undergoing simple harmonic motion. Chapter 9 Simple Harmonic Motion 9.1 Purpose The object of this experiment is to study systems undergoing simple harmonic motion. 9.2 Introduction This experiment will develop your ability to perform calculations

More information

Student Exploration: Energy of a Pendulum

Student Exploration: Energy of a Pendulum Name: Date: Student Exploration: Energy of a Pendulum Vocabulary: conservation of energy, gravitational potential energy, kinetic energy, pendulum, potential energy, velocity Prior Knowledge Questions

More information

PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS

PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS 1. PHYSICAL & MATHEMATICAL FORMULATION O θ L r T m W 1 1.1 Derivation of the equation of motion O Consider idealized pendulum: Mass of

More information

CHAPTER 12 OSCILLATORY MOTION

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

More information

Chapter 14 Periodic Motion

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

More information

Physical Pendulum, Torsion Pendulum

Physical Pendulum, Torsion Pendulum [International Campus Lab] Physical Pendulum, Torsion Pendulum Objective Investigate the motions of physical pendulums and torsion pendulums. Theory ----------------------------- Reference --------------------------

More information

PreLab 2 - Simple Harmonic Motion: Pendulum (adapted from PASCO- PS-2826 Manual)

PreLab 2 - Simple Harmonic Motion: Pendulum (adapted from PASCO- PS-2826 Manual) Musical Acoustics Lab, C. Bertulani, 2012 PreLab 2 - Simple Harmonic Motion: Pendulum (adapted from PASCO- PS-2826 Manual) A body is said to be in a position of stable equilibrium if, after displacement

More information

Rotational Motion. 1 Purpose. 2 Theory 2.1 Equation of Motion for a Rotating Rigid Body

Rotational Motion. 1 Purpose. 2 Theory 2.1 Equation of Motion for a Rotating Rigid Body Rotational Motion Equipment: Capstone, rotary motion sensor mounted on 80 cm rod and heavy duty bench clamp (PASCO ME-9472), string with loop at one end and small white bead at the other end (125 cm bead

More information

ω avg [between t 1 and t 2 ] = ω(t 1) + ω(t 2 ) 2

ω avg [between t 1 and t 2 ] = ω(t 1) + ω(t 2 ) 2 PHY 302 K. Solutions for problem set #9. Textbook problem 7.10: For linear motion at constant acceleration a, average velocity during some time interval from t 1 to t 2 is the average of the velocities

More information

THE CONSERVATION OF ENERGY - PENDULUM -

THE CONSERVATION OF ENERGY - PENDULUM - THE CONSERVATION OF ENERGY - PENDULUM - Introduction The purpose of this experiment is to measure the potential energy and the kinetic energy of a mechanical system and to quantitatively compare the two

More information

Lab 12: Periodic Motion

Lab 12: Periodic Motion Lab 12: Periodic Motion Objectives: To devise an experiment to test variables that might affect the period of a pendulum To carry out an experiment testing variables that might affect the period of a pendulum,

More information

Simple Harmonic Motion

Simple Harmonic Motion Chapter 9 Simple Harmonic Motion In This Chapter: Restoring Force Elastic Potential Energy Simple Harmonic Motion Period and Frequency Displacement, Velocity, and Acceleration Pendulums Restoring Force

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

The Damped Pendulum. Physics 211 Lab 3 3/18/2016

The Damped Pendulum. Physics 211 Lab 3 3/18/2016 PHYS11 Lab 3 Physics 11 Lab 3 3/18/16 Objective The objective of this lab is to record the angular position of the pendulum vs. time with and without damping. The data is then analyzed and compared to

More information

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15

Lab I. 2D Motion. 1 Introduction. 2 Theory. 2.1 scalars and vectors LAB I. 2D MOTION 15 LAB I. 2D MOTION 15 Lab I 2D Motion 1 Introduction In this lab we will examine simple two-dimensional motion without acceleration. Motion in two dimensions can often be broken up into two separate one-dimensional

More information

Students will explore Stellarium, an open-source planetarium and astronomical visualization software.

Students will explore Stellarium, an open-source planetarium and astronomical visualization software. page 22 STELLARIUM* OBJECTIVE: Students will explore, an open-source planetarium and astronomical visualization software. BACKGROUND & ACKNOWLEDGEMENTS This lab was generously provided by the Red Rocks

More information

Torque and Simple Harmonic Motion

Torque and Simple Harmonic Motion Torque and Simple Harmonic Motion Recall: Fixed Axis Rotation Angle variable Angular velocity Angular acceleration Mass element Radius of orbit Kinematics!! " d# / dt! " d 2 # / dt 2!m i Moment of inertia

More information

8. What is the period of a pendulum consisting of a 6-kg object oscillating on a 4-m string?

8. What is the period of a pendulum consisting of a 6-kg object oscillating on a 4-m string? 1. In the produce section of a supermarket, five pears are placed on a spring scale. The placement of the pears stretches the spring and causes the dial to move from zero to a reading of 2.0 kg. If the

More information

Human Arm. 1 Purpose. 2 Theory. 2.1 Equation of Motion for a Rotating Rigid Body

Human Arm. 1 Purpose. 2 Theory. 2.1 Equation of Motion for a Rotating Rigid Body Human Arm Equipment: Capstone, Human Arm Model, 45 cm rod, sensor mounting clamp, sensor mounting studs, 2 cord locks, non elastic cord, elastic cord, two blue pasport force sensors, large table clamps,

More information

PHYSICS 107 FINAL EXAMINATION

PHYSICS 107 FINAL EXAMINATION PRINTED NAME: Problem Score 1 /20 2 /20 3 /20 4 /20 5 /20 6 /20 Total /120 PHYSICS 107 FINAL EXAMINATION January 24, 2001 8:30 11:30 am When you are told to begin, check that this examination booklet contains

More information

Chapter 4. Oscillatory Motion. 4.1 The Important Stuff Simple Harmonic Motion

Chapter 4. Oscillatory Motion. 4.1 The Important Stuff Simple Harmonic Motion Chapter 4 Oscillatory Motion 4.1 The Important Stuff 4.1.1 Simple Harmonic Motion In this chapter we consider systems which have a motion which repeats itself in time, that is, it is periodic. In particular

More information

LAB 4: FORCE AND MOTION

LAB 4: FORCE AND MOTION Lab 4 - Force & Motion 37 Name Date Partners LAB 4: FORCE AND MOTION A vulgar Mechanik can practice what he has been taught or seen done, but if he is in an error he knows not how to find it out and correct

More information

Good Vibes: Introduction to Oscillations

Good Vibes: Introduction to Oscillations Chapter 14 Solutions Good Vibes: Introduction to Oscillations Description: Several conceptual and qualitative questions related to main characteristics of simple harmonic motion: amplitude, displacement,

More information

Exploring Potential Energy, Kinetic energy and Conservation of Energy: Part 1:

Exploring Potential Energy, Kinetic energy and Conservation of Energy: Part 1: WARM UP 3-4 mins: exploring energy with Phet Skate Park. Directions: 1) QUIETLY get a computer, and, with your partner,-search (Google) for: Phet Skate Park: Phet Skate Park 2) Click on the first link

More information

AP Physics. Harmonic Motion. Multiple Choice. Test E

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

More information

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online EOSC 110 Reading Week Activity, February 2015. Visible Geology: Building structural geology skills by exploring 3D models online Geological maps show where rocks of different ages occur on the Earth s

More information

Physics 11 Fall 2012 Practice Problems 6

Physics 11 Fall 2012 Practice Problems 6 Physics 11 Fall 2012 Practice Problems 6 1. Two points are on a disk that is turning about a fixed axis perpendicular to the disk and through its center at increasing angular velocity. One point is on

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 1 Simple Harmonic Motion

PHYSICS 1 Simple Harmonic Motion Advanced Placement PHYSICS 1 Simple Harmonic Motion Student 014-015 What I Absolutely Have to Know to Survive the AP* Exam Whenever the acceleration of an object is proportional to its displacement and

More information

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0.

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0. A harmonic wave propagates horizontally along a taut string of length! = 8.0 m and mass! = 0.23 kg. The vertical displacement of the string along its length is given by!!,! = 0.1!m cos 1.5!!! +!0.8!!,

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

Chapter 13 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Oscillatory Motion Pearson Education, Inc.

Chapter 13 Lecture. Essential University Physics Richard Wolfson 2 nd Edition. Oscillatory Motion Pearson Education, Inc. Chapter 13 Lecture Essential University Physics Richard Wolfson nd Edition Oscillatory Motion Slide 13-1 In this lecture you ll learn To describe the conditions under which oscillatory motion occurs To

More information

A SHORT INTRODUCTION TO ADAMS

A SHORT INTRODUCTION TO ADAMS A. AHADI, P. LIDSTRÖM, K. NILSSON A SHORT INTRODUCTION TO ADAMS FOR MECHANICAL ENGINEERS DIVISION OF MECHANICS DEPARTMENT OF MECHANICAL ENGINEERING LUND INSTITUTE OF TECHNOLOGY 2017 1 FOREWORD THESE EXERCISES

More information

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum

PHY 123 Lab 1 - Error and Uncertainty and the Simple Pendulum To print higher-resolution math symbols, click the Hi-Res Fonts for Printing button on the jsmath control panel. PHY 13 Lab 1 - Error and Uncertainty and the Simple Pendulum Important: You need to print

More information

LAB #8: SIMPLE HARMONIC MOTION

LAB #8: SIMPLE HARMONIC MOTION OBJECTIVES: LAB #8: SIPLE HARONIC OTION To study the motion of two systems that closely resembles simple harmonic motion. EQUIPENT: Equipment Needed Qty Equipment Needed Qty Balance 1 Table Clamp w/rod

More information

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

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

More information

Chapter 12 Vibrations and Waves Simple Harmonic Motion page

Chapter 12 Vibrations and Waves Simple Harmonic Motion page Chapter 2 Vibrations and Waves 2- Simple Harmonic Motion page 438-45 Hooke s Law Periodic motion the object has a repeated motion that follows the same path, the object swings to and fro. Examples: a pendulum

More information

Teacher s notes 19b An investigation into the energy changes occurring in a pendulum swing

Teacher s notes 19b An investigation into the energy changes occurring in a pendulum swing Sensors: Loggers: Rotary Motion Any EASYSENSE Physics Logging time: 5 seconds Teacher s notes 19b An investigation into the energy changes occurring in a pendulum swing Read The relationship between the

More information

Chapter 15. Oscillatory Motion

Chapter 15. Oscillatory Motion Chapter 15 Oscillatory Motion Part 2 Oscillations and Mechanical Waves Periodic motion is the repeating motion of an object in which it continues to return to a given position after a fixed time interval.

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 10 - Harmonic Motion and the Pendulum

Lab 10 - Harmonic Motion and the Pendulum Lab 10 Harmonic Motion and the Pendulum L10-1 Name Date Partners Lab 10 - Harmonic Motion and the Pendulum L (measured from the suspension point to the center of mass) Groove marking the center of mass

More information

M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA

M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA M61 1 M61.1 PC COMPUTER ASSISTED DETERMINATION OF ANGULAR ACCELERATION USING TORQUE AND MOMENT OF INERTIA PRELAB: Before coming to the lab, you must write the Object and Theory sections of your lab report

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

Chapter 14 Oscillations

Chapter 14 Oscillations Chapter 14 Oscillations Chapter Goal: To understand systems that oscillate with simple harmonic motion. Slide 14-2 Chapter 14 Preview Slide 14-3 Chapter 14 Preview Slide 14-4 Chapter 14 Preview Slide 14-5

More information

Chapter 14. Oscillations. Oscillations Introductory Terminology Simple Harmonic Motion:

Chapter 14. Oscillations. Oscillations Introductory Terminology Simple Harmonic Motion: Chapter 14 Oscillations Oscillations Introductory Terminology Simple Harmonic Motion: Kinematics Energy Examples of Simple Harmonic Oscillators Damped and Forced Oscillations. Resonance. Periodic Motion

More information

University Physics 226N/231N Old Dominion University. Chapter 14: Oscillatory Motion

University Physics 226N/231N Old Dominion University. Chapter 14: Oscillatory Motion University Physics 226N/231N Old Dominion University Chapter 14: Oscillatory Motion Dr. Todd Satogata (ODU/Jefferson Lab) satogata@jlab.org http://www.toddsatogata.net/2016-odu Monday, November 5, 2016

More information

Final Review, Day 1. Announcements: Web page:

Final Review, Day 1. Announcements: Web page: Announcements: Final Review, Day 1 Final exam next Wednesday (5/9) at 7:30am in the Coors Event Center. Recitation tomorrow is a review. Please feel free to ask the TA any questions on the course material.

More information

On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam.

On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam. Physics 201, Exam 3 Name (printed) On my honor as a Texas A&M University student, I will neither give nor receive unauthorized help on this exam. Name (signed) The multiple-choice problems carry no partial

More information

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

Introduction. Pre-Lab Questions: Physics 1CL PERIODIC MOTION - PART II Spring 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

LAB 10: HARMONIC MOTION AND THE PENDULUM

LAB 10: HARMONIC MOTION AND THE PENDULUM 163 Name Date Partners LAB 10: HARMONIC MOION AND HE PENDULUM Galileo reportedly began his study of the pendulum in 1581 while watching this chandelier swing in Pisa, Italy OVERVIEW A body is said to be

More information

PHYS 2211L Final Examination Laboratory Simple Pendulum.

PHYS 2211L Final Examination Laboratory Simple Pendulum. PHYS 11L Final Examination Laboratory Simple Pendulum Study Assignment: Lesson notes: This laboratory is the final examination for PHYS 11L. You should insure that you thoroughly understand the requirements

More information

Simple Harmonic Motion

Simple Harmonic Motion 1. Object Simple Harmonic Motion To determine the period of motion of objects that are executing simple harmonic motion and to check the theoretical prediction of such periods. 2. Apparatus Assorted weights

More information

1 M62 M62.1 CONSERVATION OF ANGULAR MOMENTUM FOR AN INELASTIC COLLISION

1 M62 M62.1 CONSERVATION OF ANGULAR MOMENTUM FOR AN INELASTIC COLLISION 1 M62 M62.1 CONSERVATION OF ANGULAR MOMENTUM FOR AN INELASTIC COLLISION PRELAB: Before coming to the lab, you must write the Object and Theory sections of your lab report and include the Data Tables. You

More information

Final Test for PHYS 2130 section 091 Date: 2 nd May 2007

Final Test for PHYS 2130 section 091 Date: 2 nd May 2007 Final Test for PHYS 2130 section 091 Date: 2 nd May 2007 Student First Name: Student Rocket ID: Student Last Name: You may use the backside of all pages. No calculators are allowed. Express all answers

More information