HIGHLY ACCURATE PENDULUM INSTRUMENT ECE-492/3 Senior Design Project Spring 2013

Size: px
Start display at page:

Download "HIGHLY ACCURATE PENDULUM INSTRUMENT ECE-492/3 Senior Design Project Spring 2013"

Transcription

1 HIGHLY ACCURATE PENDULUM INSTRUMENT ECE-492/3 Senior Design Project Spring 213 Electrical and Computer Engineering Department Volgenau School of Engineering George Mason University Fairfax, VA Team members: Faculty Supervisor: Alice V. Hatfield, Andrew Ottaviano, Danielle Sova and Joshua Weitz Dr. Peter W. Pachowicz Abstract: The purpose of this project was to create a highly accurate pendulum device, where deficiencies of mechanical design and negative environmental influences are corrected via electronically controlled electromagnetic energy transfer. The goal for this control is to stabilize a pendulum s frequency and amplitude using low-cost and low-power means. A designed close-loop control utilizes: a Hall-Effect sensor for pendulum-state sensing; a microcontroller for error calculation, formulation of a control strategy and timing of energy transfer; and a custom solenoid for energy transfer. System behavior has been mathematically modeled and simulated to determine parameter ranges for control, electronics, solenoid, and an energy transfer module. A separate highly accurate optical measurement unit was built to evaluate the success of the project. 1. Introduction Real world clocks governed by pendulums require constant adjustment and maintenance to keep accurate time. As the clock ages, the spring weakens or deforms. Moving components encounter higher friction issues as the oil s viscosity increases. An increase in temperature causes the metal of the rod to lengthen, effectively moving the center of mass farther away from the pivot point and forcing the pendulum to swing at a slower rate. Just the opposite occurs for a decrease in temperature. A rise in humidity creates higher friction in the air as the pendulum swings from one side to the next. Altitude and even phases of the moon are just a few of the other factors influencing pendulum frequency [1,2]. Even when environmental effects are minimized, energy is removed from the pendulum through constant collisions with a specific part of the time piece called the escapement. These small but significant changes cause even the most carefully designed mechanical pendulum to lose energy over time and eventually stop. With the above in mind, using a pendulum run time piece would mean keeping constant time at the expense of constant maintenance. One solution to lowering maintenance would be to use electronic clocks. Unfortunately, these clocks do not have the aesthetic appeal that mechanical clocks provide for observers in the current 1

2 mechanical design renaissance. Therefore, a second solution of merging both mechanical and electronic designs is proposed, in particular where deficiencies of one type of clock can be substituted by advantages of the second one and the entire system greatly simplified. The developed device will attempt to replenish constant loss of energy, as well as account for the frequency changes due to variable influencing factors. This project is a part of a series of projects where mechanical clock design is greatly simplified and much higher accuracy is supported by electronically controlled electromagnetic energy transfer. 2. Requirements The device shall operate on a pendulum with a period of two seconds, it shall be low powered, and use a microcontroller both for comparing the pendulum against its own enclosed timer as well as performing the necessary correction calculations. The electronic regulator shall account for a combination of conditions and external influences such that at least 1 seconds can be gained or lost per day if instructed. The electronic device shall be powered by no more than 6 volts. The microcontroller shall sleep in between measuring and adjusting to conserve power. Mathematical modeling and MATLAB-based simulations shall be developed to determine design parameters. 3. System architecture The pendulum system has several crucial top-level functions (Figure 1). The system must sense the frequency and energy of the pendulum, calculate the amount of adjustment needed, and apply energy to the pendulum at specific moments to adjust the frequency and energy. Figure 1: System top-level function The frequency of the pendulum is measured in two ways. One method is through the use of a low-power Hall- Effect switch and a magnet mounted on the pendulum. This Hall-Effect switch provides the feedback for adjustment calculations. The second method involves an optical interrupt sensor with a light-blocking bar mounted on the pendulum. This device requires significantly more power than the Hall-Effect switch, but is more accurate. The optical sensor is used by an external measurement unit for testing and experimentation. The system architecture is shown in Figure 2. The sensor input is fed into a microcontroller unit (MCU). This unit performs the unit conversions, adjustment calculations, and outputs control signals for adjusting the pendulum. The output pulses it provides to the energy transfer system are minimized based on how much correction is necessary. It also filters the incoming Hall-Effect switch data to prevent erroneous correction factors. The microcontroller operates in low-power mode as often as possible. The energy transfer module provides energy to the pendulum. This is accomplished with a solenoid that pushes a magnet attached to the pendulum when told by the microcontroller unit. The energy transfer system provides high-current pulses to the solenoid and protects the microcontroller from these pulses with back-emf. The solenoid was designed based on mathematical modeling and simulations of the energy balance in the system. The system (with the exception of the external measurement unit) is powered by a rechargeable 6-Volt battery that is regulated to produce the appropriate amounts of voltage and current for each sub-system. 2

3 Figure 2: System architecture and functional decomposition 3. System implementation The heart of the energy transfer system is the 5-cm long, 25-turn solenoid. This solenoid is made with 38 gauge insulated wire with a plastic housing, and has an inner diameter of 1.4-cm to allow the magnetic rod on the bottom of the pendulum to pass through it uninhibited. Current to the solenoid is provided directly from the power supply while being switched on and off by the microcontroller unit (MCU). This is accomplished with a highcurrent-safe bipolar junction transistor. The transistor is used as an amplifier in a common-emitter configuration. Back-EMF protection for the MCU is implemented with a high-current Schottkey diode in series with the solenoid on the emitter of the transistor. The diode will only allow current to flow in the desired direction. An additional.1 microfarad capacitor is added in parallel with the solenoid to smooth the discharge curve. A 1 Ohm resistor is also in parallel with the solenoid which allows it to discharge when the transistor is in its cutoff region. For the control unit (MCU) portion of this project, the MSP43FG4616 microcontroller was selected. The microcontroller's function is to determine at what amplitude the pendulum is swinging, and correct that 3

4 amplitude by varying the pulse length being outputted to the energy transfer circuit. It also maintains the frequency of the pendulum by sending the control pulses every period at the desired frequency. By transferring energy to the pulses and ensuring each pulse is spaced correctly, the controller forces the pendulum to swing at the desired frequency. In order for the microcontroller to be able to make very small adjustments and to calculate timings precisely, a 2MHz external crystal is used as the main clock. The code for the microcontroller is interrupt based, and the device goes into low-power mode between interrupts. Timer A is used to read the input pulse length from the Hall-Effect switch. In the initial, non-triggered state, the input line is held high. As the pendulum swings left, the magnet triggers a pulse in the Hall-Effect switch. The falling edge of this pulse is the first trigger, and the rising edge is the second trigger for the Timer A to capture peripheral. The time between these edges is the pulse time. This pulse time is inversely proportional to the velocity of the pendulum, which is directly proportional to the angle of the pendulum. There are two pulses in each swing. These swings are both captured and the average is saved in a circular array. The controller is then brought out of the low-power state. The pulse time array is median filtered and averaged before being used as an input to a proportional integral (PI) controller. The PI controller compares this input to a set point and computes the output pulse time. Once this is accomplished, the device returns to sleep. As the pendulum increases in angle, the velocity of the pendulum through the center point of the swing increases, causing the Hall-Effect switch pulse period to decrease. This inherent condition is corrected by manipulating the input of the PI controller. As stated earlier, the input to the PI controller is the median filtered and averaged array of the Hall-Effect switch pulse widths. This array is subtracted from the maximum length a single pulse period could be in order to make the input to the PI controller directly proportional to the output pulse period. This value in turn is subtracted from the set point to get an error signal. The error signal is used in two ways. It is added to all the previous errors, the sum being the integral term, which is then multiplied by the integral coefficient in the PI controller. As the input moves above and below the set point this term goes to zero. There is also a proportional term in which the error is multiplied by a proportional constant. These two terms are added together, the result being the output of our PI controller, the pulse period. Timer B is used to time the energy transfer pulses. A counter counts up to half of the pendulum period (the inverse of the pendulum frequency). Then the output pulse is turned on. Another timer is used to count to the value previously computed by the PI controller. Once the timer reaches this value, the output pulse is turned off. A counter finishes counting out the rest of the period and the cycle is started again. 4. Mathematical modeling At the most basic level, the motion of the pendulum can be simulated with a sinusoid with the following relationship: where: T is the period, l is the length from the fulcrum to the center of mass, and g is the gravitational constant 9.8 m/s^2. Given a period requirement of two seconds, the length of the pendulum must be approximately 1m. Forces are constantly acting upon the pendulum and removing energy. Fortunately, because the system swings conservatively, the angles of motion are small, and the period is assumed to be independent of the angle. Thus the equation of motion (the linear model) is modified to: where: θ is the angular position of the pendulum relative to the equilibrium point (where the potential energy of the system is ), and γ is the damping factor. Because γ is less than 1, the system is underdamped. The damping factor is also dependent on the Q factor, or quality factor of the physical components of the system; the higher 4

5 the Q value, the less damping the system experiences. Note in Figure 3 that the maximum amplitude of the angle/position is decreasing, which corresponds to energy loss, but the period remains constant. Figure 3: Energy of pendulum over time Although the period remains constant, energy must be provided into the system to maintain a proper range of motion. In order to control/manipulate the frequency, as well as add energy, the following method is implemented. Energy is transferred into the system with a period equal to that of the desired period, and the duration of the pulsing dictates how much energy is transferred into the system (the longer the duration, the more energy). This method relies on pulsing the system at its resonant frequency. That being said, if the system must change frequency, resonance will not occur, and the system will lose energy faster. In transferring energy to the system, a solenoid is pulsed with I=1mA of current. Given that the magnetic field generated by the pulsing of the solenoid (N = turns divided by length) is and the force acting on the pendulum is dependent on the cross-sectional area of the magnet (A m ), as well as the magnetic field: It is concluded that energy transferred into the pendulum, our current I, is dependent on the number of turns in the solenoid. Through mathematical modeling and simulation the desired solenoid parameters were found as illustrated in Figure 4. Figure 4: Energy transfer to the pendulum under different solenoid paramters 5

6 5. Experimental Evaluation and Validation Six experiments were designed to test the system s ability to keep the pendulum swinging at the desired frequency of Hz, while also testing the pendulum s response to an abrupt change in driving frequency. In these tests, the pendulum started with a driving frequency of Hz from standstill, and was left to stabilize for 12 hours. At this point, the driving frequency was switched to a value that corresponded to added (or subtracted) +1, +2, and +3 seconds per day, and -1, -2, and -3 seconds per day. During these tests the resulting frequency of the pendulum and the control unit s output pulse duration were recorded. These experiments were considered successful if the system could keep the average resultant frequency to within 1 mhz of the driving value, and if the resulting amplitude never dropped to the point where the system would not function. Average data collection for each test lasted about 11 hours. In the first test, the driving frequency was adjusted to +1, +2 and +3 seconds per day (.49994,.49988, and Hz). The average resulting frequency after the switch was.49977, and Hz, with some fluctuation. The control output was stable and remained below 5 ms after the initial startup. Large spikes in frequency, however, were observed and attributed to external disturbances such as door opening/closing and other mechanical vibrations. 6 Test 1: +1 seconds/day 3 Test 3: +3 seconds/day Figure 5: System performance for driving frequency change from Hz to.49994hz and.49982hz In the second test, the driving frequency was adjusted to -1, -2 and -3 seconds per day (6, 12, and 18 Hz). The average resulting frequency after the switch was.49997, 4 and 9 Hz, with some fluctuation. The control output was not stable. Larger changes in frequency and pulse duration compared to the first test were observed and caused by unknown reasons. Figure 7 shows a summary of results. Overall, the electronic control of the system was able to bring the pendulum to the desired frequency. For lower frequencies the pulse width was slightly shorter while for the higher frequencies it was a bit longer. It seems that slowing the pendulum down takes more energy than speeding it up. It was also observed that occasional large spikes in frequency were unpersuasive, and were promptly corrected by the controller. There were periods of time when the pulse duration was significantly different from the mean. 6

7 Test 4: -1 seconds/day Test 6: -3 seconds/day Figure 6: System performance for driving frequency change from Hz to 6Hz and 18Hz 1 Resulting frequency and pulse width vs. frequency pulsed pulse width (sec) Figure 7: Results summary 7. Conclusions Results from this experiment provide important conclusions for future developments. First, the mechanical design of the pendulum (mainly the increase in bob weight and supporting structure) must be improved to mitigate external negative influences. Second, the PI controller was selected properly due to the large temporary spikes in frequency the derivative D part of the PID controller would cause large instabilities. Third, the optical sensor in the external measuring unit was adequate to measure pendulum frequency during tests. And forth, increasing the sensing and energy transfer s accuracy and precision would require a higher frequency crystal to be used by the system s microcontroller. References [1] Baker, Gergory L. Blackburn, James A. The Pendulum: a case study in physics. Oxford nnnuniversity Press, 25. [2] Fedchenko, F.M. Astronomical Clock AChF-1 with Isochronous Pendulum. Soviet Astronomy Vol. 1. (1957) p

OSCILLATIONS ABOUT EQUILIBRIUM

OSCILLATIONS ABOUT EQUILIBRIUM OSCILLATIONS ABOUT EQUILIBRIUM Chapter 13 Units of Chapter 13 Periodic Motion Simple Harmonic Motion Connections between Uniform Circular Motion and Simple Harmonic Motion The Period of a Mass on a Spring

More information

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Induced emf - Faraday s Experiment When a magnet moves toward a loop of wire, the ammeter shows the presence of a current When

More information

Slide 1 / 26. Inductance by Bryan Pflueger

Slide 1 / 26. Inductance by Bryan Pflueger Slide 1 / 26 Inductance 2011 by Bryan Pflueger Slide 2 / 26 Mutual Inductance If two coils of wire are placed near each other and have a current passing through them, they will each induce an emf on one

More information

Units (Different systems of units, SI units, fundamental and derived units)

Units (Different systems of units, SI units, fundamental and derived units) Physics: Units & Measurement: Units (Different systems of units, SI units, fundamental and derived units) Dimensional Analysis Precision and significant figures Fundamental measurements in Physics (Vernier

More information

10 Measurement of Acceleration, Vibration and Shock Transducers

10 Measurement of Acceleration, Vibration and Shock Transducers Chapter 10: Acceleration, Vibration and Shock Measurement Dr. Lufti Al-Sharif (Revision 1.0, 25/5/2008) 1. Introduction This chapter examines the measurement of acceleration, vibration and shock. It starts

More information

9.1 Harmonic Motion. Motion in cycles. linear motion - motion that goes from one place to another without repeating.

9.1 Harmonic Motion. Motion in cycles. linear motion - motion that goes from one place to another without repeating. 9.1 Harmonic Motion A bicyclist pedaling past you on the street moves in linear motion. Linear motion gets us from one place to another (Figure 9.1A). This chapter is about another kind of motion called

More information

Mechanical Oscillations

Mechanical Oscillations Mechanical Oscillations Richard Spencer, Med Webster, Roy Albridge and Jim Waters September, 1988 Revised September 6, 010 1 Reading: Shamos, Great Experiments in Physics, pp. 4-58 Harmonic Motion.1 Free

More information

2.4 Models of Oscillation

2.4 Models of Oscillation 2.4 Models of Oscillation In this section we give three examples of oscillating physical systems that can be modeled by the harmonic oscillator equation. Such models are ubiquitous in physics, but are

More information

Superconductors A class of materials and compounds whose resistances fall to virtually zero below a certain temperature, T C T C is called the critical temperature The graph is the same as a normal metal

More information

Inductance. Slide 2 / 26. Slide 1 / 26. Slide 4 / 26. Slide 3 / 26. Slide 6 / 26. Slide 5 / 26. Mutual Inductance. Mutual Inductance.

Inductance. Slide 2 / 26. Slide 1 / 26. Slide 4 / 26. Slide 3 / 26. Slide 6 / 26. Slide 5 / 26. Mutual Inductance. Mutual Inductance. Slide 1 / 26 Inductance 2011 by Bryan Pflueger Slide 2 / 26 Mutual Inductance If two coils of wire are placed near each other and have a current passing through them, they will each induce an emf on one

More information

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

Lecture Outline Chapter 21. Physics, 4 th Edition James S. Walker. Copyright 2010 Pearson Education, Inc. Lecture Outline Chapter 21 Physics, 4 th Edition James S. Walker Chapter 21 Electric Current and Direct- Current Circuits Units of Chapter 21 Electric Current Resistance and Ohm s Law Energy and Power

More information

Agenda for Today. Elements of Physics II. Lenz Law. Emf opposes change in flux Faraday s Law Induced EMF in a conducting loop

Agenda for Today. Elements of Physics II. Lenz Law. Emf opposes change in flux Faraday s Law Induced EMF in a conducting loop Lenz Law Physics 132: Lecture e 22 Elements of Physics II Agenda for Today Emf opposes change in flux Faraday s Law Induced EMF in a conducting loop Physics 201: Lecture 1, Pg 1 Lenz s Law Physics 201:

More information

Section 1 Electric Charge and Force

Section 1 Electric Charge and Force CHAPTER OUTLINE Section 1 Electric Charge and Force Key Idea questions > What are the different kinds of electric charge? > How do materials become charged when rubbed together? > What force is responsible

More information

Summer AP Assignment 2016

Summer AP Assignment 2016 Summer AP Assignment 2016 Mr. Michael Wichart (Rm. 109) wichart.m@woodstown.org Summer Assignment Goals The main goal of this assignment is to review some of the material that was taught during Honors

More information

Simple Harmonic Motion Test Tuesday 11/7

Simple Harmonic Motion Test Tuesday 11/7 Simple Harmonic Motion Test Tuesday 11/7 Chapter 11 Vibrations and Waves 1 If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is

More information

Chapter 7. Electrodynamics

Chapter 7. Electrodynamics Chapter 7. Electrodynamics Summary: Electrostatics and Magnetostatics E / B E B J P E M 1 mb e D E P H B/ M D H f J f E V B A b P Pn b Jb M K M n b D E B H (1 ) (1 ) e m 7.1 Electromotive Force 7.1.1 Ohm

More information

THE REACTION WHEEL PENDULUM

THE REACTION WHEEL PENDULUM THE REACTION WHEEL PENDULUM By Ana Navarro Yu-Han Sun Final Report for ECE 486, Control Systems, Fall 2013 TA: Dan Soberal 16 December 2013 Thursday 3-6pm Contents 1. Introduction... 1 1.1 Sensors (Encoders)...

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

Physics Mechanics. Lecture 32 Oscillations II

Physics Mechanics. Lecture 32 Oscillations II Physics 170 - Mechanics Lecture 32 Oscillations II Gravitational Potential Energy A plot of the gravitational potential energy U g looks like this: Energy Conservation Total mechanical energy of an object

More information

SECTION 3 BASIC AUTOMATIC CONTROLS UNIT 12 BASIC ELECTRICITY AND MAGNETISM

SECTION 3 BASIC AUTOMATIC CONTROLS UNIT 12 BASIC ELECTRICITY AND MAGNETISM SECTION 3 BASIC AUTOMATIC CONTROLS UNIT 12 BASIC ELECTRICITY AND MAGNETISM Unit Objectives Describe the structure of an atom. Identify atoms with a positive charge and atoms with a negative charge. Explain

More information

ENGG4420 LECTURE 7. CHAPTER 1 BY RADU MURESAN Page 1. September :29 PM

ENGG4420 LECTURE 7. CHAPTER 1 BY RADU MURESAN Page 1. September :29 PM CHAPTER 1 BY RADU MURESAN Page 1 ENGG4420 LECTURE 7 September 21 10 2:29 PM MODELS OF ELECTRIC CIRCUITS Electric circuits contain sources of electric voltage and current and other electronic elements such

More information

Padé Laplace analysis of signal averaged voltage decays obtained from a simple circuit

Padé Laplace analysis of signal averaged voltage decays obtained from a simple circuit Padé Laplace analysis of signal averaged voltage decays obtained from a simple circuit Edward H. Hellen Department of Physics and Astronomy, University of North Carolina at Greensboro, Greensboro, North

More information

PHYSICS. Chapter 30 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT

PHYSICS. Chapter 30 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 30 Lecture RANDALL D. KNIGHT Chapter 30 Electromagnetic Induction IN THIS CHAPTER, you will learn what electromagnetic induction is

More information

Impedance. Reactance. Capacitors

Impedance. Reactance. Capacitors Impedance Ohm's law describes the relationship between current and voltage in circuits that are in equilibrium- that is, when the current and voltage are not changing. When we have a situation where the

More information

Lab 1: Simple Pendulum 1. The Pendulum. Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301

Lab 1: Simple Pendulum 1. The Pendulum. Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301 Lab 1: Simple Pendulum 1 The Pendulum Laboratory 1, Physics 15c Due Friday, February 16, in front of Sci Cen 301 Physics 15c; REV 0 1 January 31, 2007 1 Introduction Most oscillating systems behave like

More information

PHY 1214 General Physics II

PHY 1214 General Physics II PHY 1214 General Physics II Lecture 20 Magnetic Flux and Faraday s Law July 6-7, 2005 Weldon J. Wilson Professor of Physics & Engineering Howell Hall 221H wwilson@ucok.edu Lecture Schedule (Weeks 4-6)

More information

Linear Second-Order Differential Equations LINEAR SECOND-ORDER DIFFERENTIAL EQUATIONS

Linear Second-Order Differential Equations LINEAR SECOND-ORDER DIFFERENTIAL EQUATIONS 11.11 LINEAR SECOND-ORDER DIFFERENTIAL EQUATIONS A Spring with Friction: Damped Oscillations The differential equation, which we used to describe the motion of a spring, disregards friction. But there

More information

Electricity and Electromagnetism SOL review Scan for a brief video. A. Law of electric charges.

Electricity and Electromagnetism SOL review Scan for a brief video. A. Law of electric charges. A. Law of electric charges. Electricity and Electromagnetism SOL review Scan for a brief video The law of electric charges states that like charges repel and opposite charges attract. Because protons and

More information

Final Exam Physics 7b Section 2 Fall 2004 R Packard. Section Number:

Final Exam Physics 7b Section 2 Fall 2004 R Packard. Section Number: Final Exam Physics 7b Section 2 Fall 2004 R Packard Name: SID: Section Number: The relative weight of each problem is stated next to the problem. Work the easier ones first. Define physical quantities

More information

RLC Circuits. 1 Introduction. 1.1 Undriven Systems. 1.2 Driven Systems

RLC Circuits. 1 Introduction. 1.1 Undriven Systems. 1.2 Driven Systems RLC Circuits Equipment: Capstone, 850 interface, RLC circuit board, 4 leads (91 cm), 3 voltage sensors, Fluke mulitmeter, and BNC connector on one end and banana plugs on the other Reading: Review AC circuits

More information

PHYS 1444 Section 02 Review #2

PHYS 1444 Section 02 Review #2 PHYS 1444 Section 02 Review #2 November 9, 2011 Ian Howley 1 1444 Test 2 Eq. Sheet Terminal voltage Resistors in series Resistors in parallel Magnetic field from long straight wire Ampére s Law Force on

More information

Electricity MR. BANKS 8 TH GRADE SCIENCE

Electricity MR. BANKS 8 TH GRADE SCIENCE Electricity MR. BANKS 8 TH GRADE SCIENCE Electric charges Atoms and molecules can have electrical charges. These are caused by electrons and protons. Electrons are negatively charged. Protons are positively

More information

Quantitative Skills in AP Physics 1

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

More information

AP Physics C Mechanics Objectives

AP Physics C Mechanics Objectives AP Physics C Mechanics Objectives I. KINEMATICS A. Motion in One Dimension 1. The relationships among position, velocity and acceleration a. Given a graph of position vs. time, identify or sketch a graph

More information

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3.

Electromagnetic Oscillations and Alternating Current. 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. Electromagnetic Oscillations and Alternating Current 1. Electromagnetic oscillations and LC circuit 2. Alternating Current 3. RLC circuit in AC 1 RL and RC circuits RL RC Charging Discharging I = emf R

More information

Lectures Chapter 10 (Cutnell & Johnson, Physics 7 th edition)

Lectures Chapter 10 (Cutnell & Johnson, Physics 7 th edition) PH 201-4A spring 2007 Simple Harmonic Motion Lectures 24-25 Chapter 10 (Cutnell & Johnson, Physics 7 th edition) 1 The Ideal Spring Springs are objects that exhibit elastic behavior. It will return back

More information

2.4 Harmonic Oscillator Models

2.4 Harmonic Oscillator Models 2.4 Harmonic Oscillator Models In this section we give three important examples from physics of harmonic oscillator models. Such models are ubiquitous in physics, but are also used in chemistry, biology,

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

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) IN BIOMEDICAL ENGINEERING SEMESTER 1 EXAMINATION 2017/2018 ADVANCED BIOMECHATRONIC SYSTEMS

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) IN BIOMEDICAL ENGINEERING SEMESTER 1 EXAMINATION 2017/2018 ADVANCED BIOMECHATRONIC SYSTEMS ENG0016 UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) IN BIOMEDICAL ENGINEERING SEMESTER 1 EXAMINATION 2017/2018 ADVANCED BIOMECHATRONIC SYSTEMS MODULE NO: BME6003 Date: Friday 19 January 2018

More information

Sample Question Paper (PHYSICS) CLASS-XII ( ) Time Allowed: 3Hours Maximum Marks: 70

Sample Question Paper (PHYSICS) CLASS-XII ( ) Time Allowed: 3Hours Maximum Marks: 70 Sample Question Paper (PHYSICS) CLASS-XII (2017-18) Time Allowed: 3Hours Maximum Marks: 70 General Instructions 1. All questions are compulsory. There are 26 questions in all. 2. This question paper has

More information

Physics 1308 Exam 2 Summer 2015

Physics 1308 Exam 2 Summer 2015 Physics 1308 Exam 2 Summer 2015 E2-01 2. The direction of the magnetic field in a certain region of space is determined by firing a test charge into the region with its velocity in various directions in

More information

Stepping Motors. Chapter 11 L E L F L D

Stepping Motors. Chapter 11 L E L F L D Chapter 11 Stepping Motors In the synchronous motor, the combination of sinusoidally distributed windings and sinusoidally time varying current produces a smoothly rotating magnetic field. We can eliminate

More information

Anisochronism of John Harrison s First Sea Clocks, H.1 and H.2

Anisochronism of John Harrison s First Sea Clocks, H.1 and H.2 Anisochronism of John Harrison s First Sea Clocks, H.1 and H. Douglas S. Drumheller 1 Introduction John Harrison built his sea clocks, H.1 and H., in the early part of the 18th Century. They were his first

More information

SIMPLE D.C. CIRCUITS AND MEASUREMENTS Background

SIMPLE D.C. CIRCUITS AND MEASUREMENTS Background SIMPLE D.C. CICUITS AND MEASUEMENTSBackground This unit will discuss simple D.C. (direct current current in only one direction) circuits: The elements in them, the simple arrangements of these elements,

More information

Induction_P1. 1. [1 mark]

Induction_P1. 1. [1 mark] Induction_P1 1. [1 mark] Two identical circular coils are placed one below the other so that their planes are both horizontal. The top coil is connected to a cell and a switch. The switch is closed and

More information

Active Figure 32.3 (SLIDESHOW MODE ONLY)

Active Figure 32.3 (SLIDESHOW MODE ONLY) RL Circuit, Analysis An RL circuit contains an inductor and a resistor When the switch is closed (at time t = 0), the current begins to increase At the same time, a back emf is induced in the inductor

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

You should be able to demonstrate and show your understanding of:

You should be able to demonstrate and show your understanding of: OCR B Physics H557 Module 3: Physics in Action You should be able to demonstrate and show your understanding of: 3.1: Communication 3.1.1: Imaging and Signalling The formation of a real image by a thin

More information

An Ultra Low Resistance Continuity Checker

An Ultra Low Resistance Continuity Checker An Ultra Low Resistance Continuity Checker By R. G. Sparber Copyleft protects this document. 1 Some understanding of electronics is assumed. Although the title claims this is a continuity checker, its

More information

Chapter19-Magnetism and Electricity

Chapter19-Magnetism and Electricity Chapter19-Magnetism and Electricity Magnetism: attraction of a magnet for another object. Magnetic poles: north & south ends of a magnet, they exert the strongest forces Like poles repel each other, unlike

More information

Chapter 16. Current and Drift Speed. Electric Current, cont. Current and Drift Speed, cont. Current and Drift Speed, final

Chapter 16. Current and Drift Speed. Electric Current, cont. Current and Drift Speed, cont. Current and Drift Speed, final Chapter 6 Current, esistance, and Direct Current Circuits Electric Current Whenever electric charges of like signs move, an electric current is said to exist The current is the rate at which the charge

More information

fusion production of elements in stars, 345

fusion production of elements in stars, 345 I N D E X AC circuits capacitive reactance, 278 circuit frequency, 267 from wall socket, 269 fundamentals of, 267 impedance in general, 283 peak to peak voltage, 268 phase shift in RC circuit, 280-281

More information

Final Exam Concept Map

Final Exam Concept Map Final Exam Concept Map Rule of thumb to study for any comprehensive final exam - start with what you know - look at the quiz problems. If you did not do well on the quizzes, you should certainly learn

More information

Magnetism. (Unit Review)

Magnetism. (Unit Review) Physics Name: Date: Period: Magnetism (Unit Review) Coronal mass ejection Diamagnetic Differential rotation Electric motor Electromagnet Electromagnetic induction Faraday s Law of Induction Galvanometer

More information

You MUST TAKE THE FINAL, even if you are a senior!!! If you are sick that day, you will have to make it up before you are allowed to graduate!

You MUST TAKE THE FINAL, even if you are a senior!!! If you are sick that day, you will have to make it up before you are allowed to graduate! LAHS Physics 2006-2007 End-of-Year Final Review Problems Your End-of-Year Physics Final covers the material in Physics during semester two. Juniors and Seniors will take Finals on the SAME Senior Final

More information

Chapter 12. Magnetism and Electromagnetism

Chapter 12. Magnetism and Electromagnetism Chapter 12 Magnetism and Electromagnetism 167 168 AP Physics Multiple Choice Practice Magnetism and Electromagnetism SECTION A Magnetostatics 1. Four infinitely long wires are arranged as shown in the

More information

The Pendulum. The purpose of this tab is to predict the motion of various pendulums and compare these predictions with experimental observations.

The Pendulum. The purpose of this tab is to predict the motion of various pendulums and compare these predictions with experimental observations. The Pendulum Introduction: The purpose of this tab is to predict the motion of various pendulums and compare these predictions with experimental observations. Equipment: Simple pendulum made from string

More information

PRELIMINARY EXAMINATION 2018 H2 PHYSICS 9749/01. Paper 1 SEP 2018

PRELIMINARY EXAMINATION 2018 H2 PHYSICS 9749/01. Paper 1 SEP 2018 PRELIMINARY EXAMINATION 2018 H2 PHYSICS 9749/01 Paper 1 SEP 2018 Additional Materials: Multiple Choice Answer Sheet Duration: 1 hour DO NOT OPEN THIS BOOKLET UNTIL YOU ARE TOLD TO DO SO READ THESE INSTRUCTIONS

More information

Electric Currents and Circuits

Electric Currents and Circuits Nicholas J. Giordano www.cengage.com/physics/giordano Chapter 19 Electric Currents and Circuits Marilyn Akins, PhD Broome Community College Electric Circuits The motion of charges leads to the idea of

More information

Lab 10: Harmonic Motion and the Pendulum

Lab 10: Harmonic Motion and the Pendulum Lab 10 Harmonic Motion and the Pendulum 119 Name Date Partners Lab 10: Harmonic Motion and the Pendulum OVERVIEW A body is said to be in a position of stable equilibrium if, after displacement in any direction,

More information

ConcepTest 14.6a Period of a Spring I

ConcepTest 14.6a Period of a Spring I ConcepTest 14.6a Period of a Spring I A glider with a spring attached to each end oscillates with a certain period. If the mass of the glider is doubled, what will happen to the period? 1) period will

More information

Last time. Ampere's Law Faraday s law

Last time. Ampere's Law Faraday s law Last time Ampere's Law Faraday s law 1 Faraday s Law of Induction (More Quantitative) The magnitude of the induced EMF in conducting loop is equal to the rate at which the magnetic flux through the surface

More information

Students' Alternate Conceptions in Introductory Physics

Students' Alternate Conceptions in Introductory Physics Students' Alternate Conceptions in Introductory Physics The following is a list of preconceptions and misconceptions that high school physics teachers and college professors have recognized in their students.

More information

MASTER CLOCKS 2407MLN1

MASTER CLOCKS 2407MLN1 [The following undated document was probably used by IBM instructors in training International Time Recording Company customer engineers, sales representatives and other employees in the principles, operation

More information

Physics 132: Lecture 15 Elements of Physics II Agenda for Today

Physics 132: Lecture 15 Elements of Physics II Agenda for Today Physics 132: Lecture 15 Elements of Physics II Agenda for Today Lenz Law Emf opposes change in flux Faraday s Law Induced EMF in a conducting loop Physics 132: Lecture 15, Pg 1 Lenz s Law Physics 132:

More information

Name: Date: Final Exam

Name: Date: Final Exam Name: Date: Final Exam Physics 2306 Fall 2012 FORM A BEFORE YOU BEGIN: 1. Fill in CORRECTLY your ID number in the Scantron, as well as which FORM of the test you have. 2. Write in the course number (2306)

More information

PhysicsAndMathsTutor.com

PhysicsAndMathsTutor.com Electricity May 02 1. The graphs show the variation with potential difference V of the current I for three circuit elements. PhysicsAndMathsTutor.com When the four lamps are connected as shown in diagram

More information

g E. An object whose weight on 6 Earth is 5.0 N is dropped from rest above the Moon s surface. What is its momentum after falling for 3.0s?

g E. An object whose weight on 6 Earth is 5.0 N is dropped from rest above the Moon s surface. What is its momentum after falling for 3.0s? PhysicsndMathsTutor.com 1 1. Take the acceleration due to gravity, g E, as 10 m s on the surface of the Earth. The acceleration due to gravity on the surface of the Moon is g E. n object whose weight on

More information

End-of-Chapter Exercises

End-of-Chapter Exercises End-of-Chapter Exercises Exercises 1 12 are conceptual questions that are designed to see if you have understood the main concepts of the chapter. 1. When a spring is compressed 10 cm, compared to its

More information

CHEM*3440. Current Convention. Charge. Potential Energy. Chemical Instrumentation. Rudimentary Electronics. Topic 3

CHEM*3440. Current Convention. Charge. Potential Energy. Chemical Instrumentation. Rudimentary Electronics. Topic 3 urrent onvention HEM*3440 hemical nstrumentation Topic 3 udimentary Electronics ONENTON: Electrical current flows from a region of positive potential energy to a region of more negative (or less positive)

More information

time/s force/n Polesworth High School 1

time/s force/n Polesworth High School 1 1. A toy locomotive of mass 0.50kg is initially at rest on a horizontal track. The locomotive is powered by a twisted rubber band which, as it unwinds, exerts a force which varies with time as shown in

More information

Magnetic pendulum periodically driven by a coil can be in

Magnetic pendulum periodically driven by a coil can be in 2015 Problem 13 : Magnetic Pendulum Experimental Study on The Phase Locking of Magnetic Pendulum Abstract Magnetic pendulum periodically driven by a coil can be in certain conditions phase-locked with

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

What happens when things change. Transient current and voltage relationships in a simple resistive circuit.

What happens when things change. Transient current and voltage relationships in a simple resistive circuit. Module 4 AC Theory What happens when things change. What you'll learn in Module 4. 4.1 Resistors in DC Circuits Transient events in DC circuits. The difference between Ideal and Practical circuits Transient

More information

Electromotive Force. The electromotive force (emf), ε, of a battery is the maximum possible voltage that the battery can provide between its terminals

Electromotive Force. The electromotive force (emf), ε, of a battery is the maximum possible voltage that the battery can provide between its terminals Direct Current When the current in a circuit has a constant magnitude and direction, the current is called direct current Because the potential difference between the terminals of a battery is constant,

More information

FEEDBACK CONTROL SYSTEMS

FEEDBACK CONTROL SYSTEMS FEEDBAC CONTROL SYSTEMS. Control System Design. Open and Closed-Loop Control Systems 3. Why Closed-Loop Control? 4. Case Study --- Speed Control of a DC Motor 5. Steady-State Errors in Unity Feedback Control

More information

LAB 10 - HARMONIC MOTION AND THE PENDULUM

LAB 10 - HARMONIC MOTION AND THE PENDULUM L10-1 Name Date Partners LAB 10 - HARMONIC MOION AND HE PENDULUM θ L Groove marking the center of mass Photogate s = 0 s F tan mg θ OVERVIEW Figure 1 A body is said to be in a position of stable equilibrium

More information

Physics 1308 Exam 2 Summer Instructions

Physics 1308 Exam 2 Summer Instructions Name: Date: Instructions All Students at SMU are under the jurisdiction of the Honor Code, which you have already signed a pledge to uphold upon entering the University. For this particular exam, you may

More information

Mechatronic System Case Study: Rotary Inverted Pendulum Dynamic System Investigation

Mechatronic System Case Study: Rotary Inverted Pendulum Dynamic System Investigation Mechatronic System Case Study: Rotary Inverted Pendulum Dynamic System Investigation Dr. Kevin Craig Greenheck Chair in Engineering Design & Professor of Mechanical Engineering Marquette University K.

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

PHY 131 Review Session Fall 2015 PART 1:

PHY 131 Review Session Fall 2015 PART 1: PHY 131 Review Session Fall 2015 PART 1: 1. Consider the electric field from a point charge. As you move farther away from the point charge, the electric field decreases at a rate of 1/r 2 with r being

More information

Switch or amplifies f. Capacitor i. Capacitance is measured in micro/pico farads ii. Filters frequencies iii. Stores electrical energy

Switch or amplifies f. Capacitor i. Capacitance is measured in micro/pico farads ii. Filters frequencies iii. Stores electrical energy Applied Science Study Guide By Patton and Zahen 1. Relationships between Science and Technology a. Circuits are a relationship between Science and technology because the power within a current comes from

More information

Read Chapter 7; pages:

Read Chapter 7; pages: Forces Read Chapter 7; pages: 191-221 Objectives: - Describe how electrical charges exert forces on each other; Compare the strengths of electric and gravitational forces; Distinguish between conductors

More information

Chapter 30. Inductance

Chapter 30. Inductance Chapter 30 Inductance Self Inductance When a time dependent current passes through a coil, a changing magnetic flux is produced inside the coil and this in turn induces an emf in that same coil. This induced

More information

Electromagnetic Induction

Electromagnetic Induction Electromagnetic Induction PHY232 Remco Zegers zegers@nscl.msu.edu Room W109 cyclotron building http://www.nscl.msu.edu/~zegers/phy232.html previously: electric currents generate magnetic field. If a current

More information

9. Which of the following is the correct relationship among power, current, and voltage?. a. P = I/V c. P = I x V b. V = P x I d.

9. Which of the following is the correct relationship among power, current, and voltage?. a. P = I/V c. P = I x V b. V = P x I d. Name: Electricity and Magnetism Test Multiple Choice Identify the choice that best completes the statement. 1. Resistance is measured in a unit called the. a. ohm c. ampere b. coulomb d. volt 2. The statement

More information

5. ELECTRIC CURRENTS

5. ELECTRIC CURRENTS 5. ELECTRIC CURRENTS TOPIC OUTLINE Section Recommended Time Giancoli Section 5.1 Potential Difference, Current, Resistance 5.2 Electric Circuits 3h 19.1, 19.2 6.2 Electric Field and Force 6.3 Magnetic

More information

Good Vibes: Introduction to Oscillations

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

More information

FALL 2004 Midterm Exam #2, Part A

FALL 2004 Midterm Exam #2, Part A Physics 152 FALL 2004 Midterm Exam #2, Part A Roster No.: Score: 17 points possible Exam time limit: 50 minutes. You may use a calculator and both sides of ONE sheet of notes, handwritten only. Closed

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

ConcepTest PowerPoints

ConcepTest PowerPoints ConcepTest PowerPoints Chapter 11 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

More information

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT

ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT Chapter 31: ELECTROMAGNETIC OSCILLATIONS AND ALTERNATING CURRENT 1 A charged capacitor and an inductor are connected in series At time t = 0 the current is zero, but the capacitor is charged If T is the

More information

Closed loop of moving charges (electrons move - flow of negative charges; positive ions move - flow of positive charges. Nucleus not moving)

Closed loop of moving charges (electrons move - flow of negative charges; positive ions move - flow of positive charges. Nucleus not moving) Unit 2: Electricity and Magnetism Lesson 3: Simple Circuits Electric circuits transfer energy. Electrical energy is converted into light, heat, sound, mechanical work, etc. The byproduct of any circuit

More information

the machine makes analytic calculation of rotor position impossible for a given flux linkage and current value.

the machine makes analytic calculation of rotor position impossible for a given flux linkage and current value. COMPARISON OF FLUX LINKAGE ESTIMATORS IN POSITION SENSORLESS SWITCHED RELUCTANCE MOTOR DRIVES Erkan Mese Kocaeli University / Technical Education Faculty zmit/kocaeli-turkey email: emese@kou.edu.tr ABSTRACT

More information

Displacement at very low frequencies produces very low accelerations since:

Displacement at very low frequencies produces very low accelerations since: SEISMOLOGY The ability to do earthquake location and calculate magnitude immediately brings us into two basic requirement of instrumentation: Keeping accurate time and determining the frequency dependent

More information

Biasing BJTs CHAPTER OBJECTIVES 4.1 INTRODUCTION

Biasing BJTs CHAPTER OBJECTIVES 4.1 INTRODUCTION 4 DC Biasing BJTs CHAPTER OBJECTIVES Be able to determine the dc levels for the variety of important BJT configurations. Understand how to measure the important voltage levels of a BJT transistor configuration

More information

Physics 142 Steady Currents Page 1. Steady Currents

Physics 142 Steady Currents Page 1. Steady Currents Physics 142 Steady Currents Page 1 Steady Currents If at first you don t succeed, try, try again. Then quit. No sense being a damn fool about it. W.C. Fields Electric current: the slow average drift of

More information

Physics 42 Exam 3 Spring 2016 Name: M T W

Physics 42 Exam 3 Spring 2016 Name: M T W Physics 42 Exam 3 Spring 2016 Name: M T W Conceptual Questions & Shorty (2 points each) 1. Which magnetic field causes the observed force? 2. If released from rest, the current loop will move a. upward

More information

Driven RLC Circuits Challenge Problem Solutions

Driven RLC Circuits Challenge Problem Solutions Driven LC Circuits Challenge Problem Solutions Problem : Using the same circuit as in problem 6, only this time leaving the function generator on and driving below resonance, which in the following pairs

More information