Evaluation copy. PID Ping-Pong Ball Levitation (SensorDAQ only) Project

Size: px
Start display at page:

Download "Evaluation copy. PID Ping-Pong Ball Levitation (SensorDAQ only) Project"

Transcription

1 PID Ping-Pong Ball Levitation (SensorDAQ only) Project 12 Evaluation copy Levitation is a process in which an object is suspended against gravity by a physical force. Many methods can be used as the levitating medium, including magnetic repulsion, viscous liquids, sound waves, and air currents. In this Project, we will use an air stream provided by a fan to provide the levitating force on a ping-pong ball. Controlling the ping-pong ball is not easy, so it requires a good control system, which you can build using LabVIEW. The photo above shows the setup for the Challenge. Engineering Projects with NI LabVIEW and Vernier Vernier Software & Technology P12-1

2 Project 12 PROJECT DESIGN REQUIREMENTS (SENSORDAQ ONLY) In this Project, you will build a device to levitate a ping-pong ball in a long vertical tube using the force of air. You will use a small DC fan powered by a Vernier Power Amplifier to provide the lift force for the ping-pong ball. The fan should be secured to the bottom of the tube in such a way that there is an air-tight seal between the sides of the fan and the tube, but that the top and bottom of the fan are open to provide air intake and exhaust. Your LabVIEW program should allow the user to control the speed of the fan (the lift force on the ball) from the front panel via a voltage control to the fan motor. When program execution ends, the fan should automatically turn off. Note: This Project can only be done with SensorDAQ. The LabQuest and LabQuest Mini cannot be used. The LabQuest has the ability to send a DC signal to the Power Amplifier, but you will not be able to satisfactorily control the ball height due to the slow response when updating the output voltage. The LabQuest Mini does not have the ability to output a voltage signal. MATERIALS SensorDAQ LabVIEW computer USB cable Vernier Power Amplifier Vernier Analog Proto Board Connector small DC fan ring stand 3-finger clamp jumper wires Styrofoam block long hollow plastic tube ping-pong ball PROJECT SETUP Build a levitation chamber 1. Cut a hole through the Styrofoam block the same diameter as the long plastic tube. Insert the tube into one end of the block (it should fit snugly with no air leaks). 2. Insert or mount the DC fan to the other end of the Styrofoam block. The lead wires of the fan should extend away from the tube and block. 3. Use a ring stand and 3-finger clamp to support the tube and block so that the tube is oriented vertically, and the Styrofoam block is positioned about 2 5 cm (1 3 in) above the ground to allow air flow to the fan. Connect the fan to the Power Amplifier and interface 1. Connect the positive (red) lead of the fan to the ±10V (red) terminal on the Power Amplifier. Connect the negative (black) lead of the fan to the GND (black) terminal. 2. Connect one end of a BTA cable to the port marked Audio Input on the Power Amplifier and the other end into an Analog Proto Board Connector. Use jumper wires to connect the SensorDAQ screw terminal to the Analog Proto Board Connector as shown to the right. Figure 1 3. Connect the Power Amplifier to its external power source and flip the power switch to the On position. P12-2 Engineering Projects with NI LabVIEW and Vernier

3 PROJECT BACKGROUND INFORMATION PID Ping-Pong Ball Levitation In this Project, the user will be controlling the rate at which the air moves past the ping-pong ball with a variable voltage control on the fan. The Vernier Power Amplifier should be used for this Project because it has the ability to output a constantly varying signal unlike a digital device (such as Vernier Digital Control Unit) which provides strictly on/off control. The Power Amplifier also allows you to drive loads that typically draw more power than the signal source can deliver. The Power Amp Express VI (found on the Vernier functions palette) should be used when writing your LabVIEW program. PROJECT TIPS 1. One method of cutting the hole in the Styrofoam block is to push and twist the plastic tube through it. 2. The long tube should be vertically aligned when viewed from all directions to minimize friction between the ball and the tube. 3. Provide 2 5 cm (1 3 in) of air space underneath the fan for air intake. 4. Avoid using the Abort Execution button to stop your VI or the fan may continue spinning. 5. Refer to Appendix E for additional information on the Vernier Power Amplifier and Analog Proto Board Connector. PROJECT TROUBLESHOOTING 1. You can test-run your fan motor from the configuration window of the Power Amp Express VI to ensure that all of your electrical connections are working properly. 2. Check the direction of air flow from the fan. It should be blowing air up into the tube, not exhausting air out the bottom of the tube. 3. Check for air leaks between the fan and the Styrofoam block. Engineering Projects with NI LabVIEW and Vernier P12-3

4 Project 12 CHALLENGE DESIGN REQUIREMENTS Note: Do not attempt the Challenge until you have completed the Project Design Requirements. Add a Vernier Motion Detector to the top of the tube. Then modify your VI created in the Project to levitate the ping-pong ball at an exact distance of 30 cm away from the Motion Detector using Proportional-Integral-Derivative (PID) control. Your device should raise the ball to this position as quickly as possible with a minimum of oscillation. You should create Waveform Charts on the front panel for the motor voltage, desired position of the ball, and actual position of the ball. Display both the desired and the actual position of the ball on the same Waveform Chart. ADDITIONAL MATERIALS Vernier Motion Detector rod clamp CHALLENGE SETUP Connect a Motion Detector to the levitation device 1. Position the Motion Detector about 5 cm above the top of the tube using a rod clamp. The gold circular sensor should be centered exactly above the tube opening and pointing downward. Tip: The Motion Detector has a pivoting head to aid in positioning the sensor. Simply rotate the detector head away from the detector body. 2. Set the sensitivity switch on the Motion Detector (if it has one) to the short-range (cart) setting. The sensitivity switch is located under the pivoting detector head. 3. Connect the Motion Detector to the DIG port on the interface. CHALLENGE BACKGROUND INFORMATION In the Challenge, you are asked to levitate the ping-pong ball at an exact distance away from the Motion Detector. When using a front panel control, as in the Project, the user can raise the ball to the desired position fairly quickly by increasing the voltage to the fan for more lift and then decreasing the voltage to maintain that lift. However, in this Challenge, the program needs a method of control in the absence of a human operator. A Proportional-Integral-Derivative (PID) controller uses the weighted sum of three error terms to quickly and smoothly adjust the ball to the desired position. The proportional term takes into consideration how far away the ping-pong ball is from the desired position. As the difference grows or shrinks, the influence of the proportional term grows or shrinks. The main problem with proportional control alone is that the ball will tend to oscillate up and down. You could increase the voltage to the fan at a very slow rate to avoid oscillating the ball, but your goal is to get the ball to its desired position as quickly as possible. Addition of the integral term will accelerate the ball towards the desired position; but since the integral term is accelerating the process, it can cause the ball to overshoot and even fly out of the tube. A derivative term is added to reduce the amount of overshoot. This equation can be shown as: de V t G K pe t Ki e t dt Kd Vbias dt where V(t) is the voltage, G is the gain, K p is the proportional constant, e(t) is the error, K i is the P12-4 Engineering Projects with NI LabVIEW and Vernier

5 integral constant, PID Ping-Pong Ball Levitation e t dt is the summation of the current error and the previous error, K d is the de derivative constant, is the time rate of change of the error, and Vbias is an initial voltage. dt This equation may appear intimidating, but you do not need an extensive background in differential equations to use it in your LabVIEW program. All of the terms can be simplified to basic arithmetic. Let s start with the error since it is used three times in the equation. The error in this exercise is simply the difference (positive or negative) in centimeters between the actual position of the ball in relation to the Motion Detector and the desired position. Remember, the detector is above the ball, so you should not think of the ball s position in terms of its height above the floor. error = measured position desired position If the ball is too low, the measured distance from the Motion Detector will be too large and the error will be positive. Using a Shift Register in your LabVIEW program to store the current error, will allow you to use it in the next calculation as the previous error. You will then be able to easily compute ( e t dt ) (error + previous error) and de (error previous error). To get the rate of change in the error we should really use the change in the error value divided by the time between readings (dt). By default the Digital Express VI reads the Motion Detector 20 times a second, and therefore, dt = 0.05 seconds/sample. The simplified result for the PID portion of the equation can now be written as: Kp error Ki error previous error Kd error previous error/ Figure 2 Calculating the Error, Change in Error, and Sum of Errors using LabVIEW You can find values for additional terms by doing some preliminary analysis of your ping-pong ball in the tube. First, by running the program from the Project of this chapter with the manual voltage control, you can find an approximation for the bias voltage. The bias or offset voltage is the voltage required to keep the ping-pong ball near the desired position. Next, you can specify the gain of the system. This is an estimate of the ratio of the change in voltage applied to the motor divided by the corresponding change in height of the ball. A quick way to Engineering Projects with NI LabVIEW and Vernier P12-5

6 Project 12 estimate this is by running the program from the Project of this chapter with the manual voltage control. Take data on the change in voltage and the change in ball position and estimate the gain. Tuning the PID equation Tuning the PID equation is a matter of finding the optimal K coefficients that will yield a responsive system with minimal overshoot or oscillation. The best approach is trial and error. Make sure your equipment is in an isolated location so that if the ping-pong ball happens to fly out of the tube, it will not hit other people or equipment near it. When you write your LabVIEW program, place a Waveform Chart on the front panel to monitor the ball s position in relation to the desired position. You can use a Bundle function (found in the Programming Cluster, Class, & Variant palette) to plot both the desired and the actual ball positions on the same chart. Figure 3 Plotting two values on a Waveform Chart with a Bundle function 1. Set all three K coefficients to zero. 2. As you run the program, increase the proportional coefficient (K p ) until the ball s oscillation about the desired position has a constant amplitude. Note that you are not trying to match the position of the ball to the desired position at this stage. You want a uniform oscillation in both the voltage and position graphs. Tip: From the Properties window, set the Data Entry Increment for the K constants to 0.1 to help you in tuning your PID system. 3. Next, cut K p in half and increase K d gradually until the system stabilizes to the desired position. 4. Next, increase K i to see if you can improve performance. K i will tend to make the make the error approach zero, but too much K i will quickly make the system unstable. 5. At this point, you should stop and restart your program taking note of the amount of overshoot at the beginning of your system. 6. Make minor adjustments in the coefficients and continue stopping and restarting your system until the overshoot is as small as possible (an adjustment in K d ) and the system reaches the desired position very quickly (an adjustment in K i ). CHALLENGE TIPS 1. You may want to look up articles on PID control on the internet or in engineering books. 2. Make sure that you define the error as the difference between the measured position and the desired position, so that the error comes out positive when the ball is too low. 3. Make sure that you have programmed the mathematics correctly or your system will be unstable and impossible to tune properly. P12-6 Engineering Projects with NI LabVIEW and Vernier

7 PID Ping-Pong Ball Levitation 4. Make sure that the Motion Detector is sensing the entire length of the tube. If the detector is positioned too far above the tube, it will detect the lip of the tube and not the ping-pong ball. 5. Refer to Appendix E for additional information about the Vernier Motion Detector. CHALLENGE TROUBLESHOOTING A common mistake when tuning the PID system is to try to match the position of the ball to the desired position when adjusting the K p coefficient. You may think you have tuned the system, but in actuality you will notice a significant amount of overshoot or delay in reaching the desired position. When adjusting the K p coefficient, the ball should exhibit a uniform oscillation about the desired position. The addition of the K i and K d coefficients should be used to level out the ball. Engineering Projects with NI LabVIEW and Vernier P12-7

8 Vernier Lab Safety Instructions Disclaimer THIS IS AN EVALUATION COPY OF THE VERNIER STUDENT LAB. This copy does not include: Safety information Essential instructor background information Directions for preparing solutions Important tips for successfully doing these labs The complete Engineering Projects with NI LabVIEW and Vernier manual includes 12 projects as well as essential teacher information. The full lab book is available for purchase at: Vernier Software & Technology S.W. Millikan Way Beaverton, OR Toll Free (888) (503) FAX (503)

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

Evaluation copy. Blood Pressure. Project PROJECT DESIGN REQUIREMENTS

Evaluation copy. Blood Pressure. Project PROJECT DESIGN REQUIREMENTS Blood Pressure Project 9 Blood pressure is a measure of the fluid pressure within the circulatory system. This pressure is required to ensure the delivery of oxygen and nutrients to, and the removal of

More information

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS

Evaluation copy. Build a Temperature Sensor. Project PROJECT DESIGN REQUIREMENTS Build a emperature Sensor Project A sensor is a device that measures a physical quantity and converts it into an electrical signal. Some sensors measure physical properties directly, while other sensors

More information

Maximum value. resistance. 1. Connect the Current Probe to Channel 1 and the Differential Voltage Probe to Channel 2 of the interface.

Maximum value. resistance. 1. Connect the Current Probe to Channel 1 and the Differential Voltage Probe to Channel 2 of the interface. Series and Parallel Circuits Computer 23 Components in an electrical circuit are in series when they are connected one after the other, so that the same current flows through both of them. Components are

More information

Water Hardness. Evaluation copy

Water Hardness. Evaluation copy Water Hardness Experiment 11 When water passes through or over mineral deposits such as limestone, the levels of certain ions present in the water increase greatly and cause the water to be classified

More information

Evaluation copy. Energy Content of Foods. computer OBJECTIVES MATERIALS

Evaluation copy. Energy Content of Foods. computer OBJECTIVES MATERIALS Energy Content of Foods Computer 10 Energy content is an important property of food. The energy your body needs for running, talking, and thinking comes from the food you eat. Energy content is the amount

More information

HITACHI INVERTER SJ/L100/300 SERIES PID CONTROL USERS GUIDE

HITACHI INVERTER SJ/L100/300 SERIES PID CONTROL USERS GUIDE HITACHI INVERTER SJ/L1/3 SERIES PID CONTROL USERS GUIDE After reading this manual, keep it for future reference Hitachi America, Ltd. HAL1PID CONTENTS 1. OVERVIEW 3 2. PID CONTROL ON SJ1/L1 INVERTERS 3

More information

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law OBJECTIVES: To verify Ohm s law, the mathematical relationship among current, voltage or potential difference, and resistance, in a simple circuit.

More information

Evaluation copy. Titration of a Diprotic Acid: Identifying an Unknown. Computer

Evaluation copy. Titration of a Diprotic Acid: Identifying an Unknown. Computer Titration of a Diprotic Acid: Identifying an Unknown Computer 25 A diprotic acid is an acid that yields two H + ions per acid molecule. Examples of diprotic acids are sulfuric acid, H 2 SO 4, and carbonic

More information

Cell Phone Vibration Experiment

Cell Phone Vibration Experiment Objective Cell Phone Vibration Experiment Most cell phones are designed to vibrate. But at what frequency do they vibrate? With an accelerometer, data acquisition and signal analysis the vibration frequency

More information

Pressure -Temperature Relationship in Gases. Evaluation copy. Figure 1. 125 ml Erlenmeyer flask. Vernier computer interface

Pressure -Temperature Relationship in Gases. Evaluation copy. Figure 1. 125 ml Erlenmeyer flask. Vernier computer interface Pressure -Temperature Relationship in Gases Computer 7 Gases are made up of molecules that are in constant motion and exert pressure when they collide with the walls of their container. The velocity and

More information

Lab 7: Rotational Motion

Lab 7: Rotational Motion Lab 7: Rotational Motion Equipment: DataStudio, 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

More information

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5 Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities

More information

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law.

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law. 260 17-1 I. THEORY EXPERIMENT 17 QUALITATIVE STUDY OF INDUCED EMF Along the extended central axis of a bar magnet, the magnetic field vector B r, on the side nearer the North pole, points away from this

More information

Osmosis. Evaluation copy

Osmosis. Evaluation copy Osmosis Computer 5 In order to survive, all organisms need to move molecules in and out of their cells. Molecules such as gases (e.g., O 2, CO 2 ), water, food, and wastes pass across the cell membrane.

More information

Magnetic Fields and Their Effects

Magnetic Fields and Their Effects Name Date Time to Complete h m Partner Course/ Section / Grade Magnetic Fields and Their Effects This experiment is intended to give you some hands-on experience with the effects of, and in some cases

More information

Prelab Exercises: Hooke's Law and the Behavior of Springs

Prelab Exercises: Hooke's Law and the Behavior of Springs 59 Prelab Exercises: Hooke's Law and the Behavior of Springs Study the description of the experiment that follows and answer the following questions.. (3 marks) Explain why a mass suspended vertically

More information

Ampere's Law. Introduction. times the current enclosed in that loop: Ampere's Law states that the line integral of B and dl over a closed path is 0

Ampere's Law. Introduction. times the current enclosed in that loop: Ampere's Law states that the line integral of B and dl over a closed path is 0 1 Ampere's Law Purpose: To investigate Ampere's Law by measuring how magnetic field varies over a closed path; to examine how magnetic field depends upon current. Apparatus: Solenoid and path integral

More information

Experiment 7: Forces and Torques on Magnetic Dipoles

Experiment 7: Forces and Torques on Magnetic Dipoles MASSACHUSETTS INSTITUTE OF TECHNOLOY Department of Physics 8. Spring 5 OBJECTIVES Experiment 7: Forces and Torques on Magnetic Dipoles 1. To measure the magnetic fields due to a pair of current-carrying

More information

QNET Experiment #06: HVAC Proportional- Integral (PI) Temperature Control Heating, Ventilation, and Air Conditioning Trainer (HVACT)

QNET Experiment #06: HVAC Proportional- Integral (PI) Temperature Control Heating, Ventilation, and Air Conditioning Trainer (HVACT) Quanser NI-ELVIS Trainer (QNET) Series: QNET Experiment #06: HVAC Proportional- Integral (PI) Temperature Control Heating, Ventilation, and Air Conditioning Trainer (HVACT) Student Manual Table of Contents

More information

How to Install a Motherboard

How to Install a Motherboard How to Install a Motherboard This guide is by no means comprehensive, but serves as a general guide to installing a JNCS motherboard bundle into a standard ATX case. JNCS has already set any relevant jumpers

More information

Exploring Magnetism. DataQuest

Exploring Magnetism. DataQuest Exploring Magnetism Magnetism is the force of attraction or repulsion between a magnet and something else. Magnets attract materials made of iron, nickel, or cobalt. Can you think of five things to which

More information

Determining the Free Chlorine Content of Swimming Pool Water. HOCl H + + OCl. Evaluation copy

Determining the Free Chlorine Content of Swimming Pool Water. HOCl H + + OCl. Evaluation copy Determining the Free Chlorine Content of Swimming Pool Water Computer 33 Physicians in the nineteenth century used chlorine water as a disinfectant. Upon the discovery that certain diseases were transmitted

More information

LAB 6: GRAVITATIONAL AND PASSIVE FORCES

LAB 6: GRAVITATIONAL AND PASSIVE FORCES 55 Name Date Partners LAB 6: GRAVITATIONAL AND PASSIVE FORCES And thus Nature will be very conformable to herself and very simple, performing all the great Motions of the heavenly Bodies by the attraction

More information

LAB 6 - GRAVITATIONAL AND PASSIVE FORCES

LAB 6 - GRAVITATIONAL AND PASSIVE FORCES L06-1 Name Date Partners LAB 6 - GRAVITATIONAL AND PASSIVE FORCES OBJECTIVES And thus Nature will be very conformable to herself and very simple, performing all the great Motions of the heavenly Bodies

More information

1 One Dimensional Horizontal Motion Position vs. time Velocity vs. time

1 One Dimensional Horizontal Motion Position vs. time Velocity vs. time PHY132 Experiment 1 One Dimensional Horizontal Motion Position vs. time Velocity vs. time One of the most effective methods of describing motion is to plot graphs of distance, velocity, and acceleration

More information

Lab 4 - Data Acquisition

Lab 4 - Data Acquisition Spring 11 Lab 4 - Data Acquisition Lab 4-1 Lab 4 - Data Acquisition Format This lab will be conducted during your regularly scheduled lab time in a group format. Each student is responsible for learning

More information

Physics 221 Experiment 5: Magnetic Fields

Physics 221 Experiment 5: Magnetic Fields Physics 221 Experiment 5: Magnetic Fields August 25, 2007 ntroduction This experiment will examine the properties of magnetic fields. Magnetic fields can be created in a variety of ways, and are also found

More information

Current Loop Tuning Procedure. Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) General Procedure AN-015

Current Loop Tuning Procedure. Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) General Procedure AN-015 Servo Drive Current Loop Tuning Procedure (intended for Analog input PWM output servo drives) The standard tuning values used in ADVANCED Motion Controls drives are conservative and work well in over 90%

More information

GRAPH MATCHING EQUIPMENT/MATERIALS

GRAPH MATCHING EQUIPMENT/MATERIALS GRAPH MATCHING LAB MECH 6.COMP. From Physics with Computers, Vernier Software & Technology, 2000. Mathematics Teacher, September, 1994. INTRODUCTION One of the most effective methods of describing motion

More information

Household Acids and Bases

Household Acids and Bases Household Acids and Bases Computer 28 Many common household solutions contain acids and bases. Acid-base indicators, such as litmus and red cabbage juice, turn different colors in acidic and basic solutions.

More information

Waves: Recording Sound Waves and Sound Wave Interference (Teacher s Guide)

Waves: Recording Sound Waves and Sound Wave Interference (Teacher s Guide) Waves: Recording Sound Waves and Sound Wave Interference (Teacher s Guide) OVERVIEW Students will measure a sound wave by placing the Ward s DataHub microphone near one tuning fork A440 (f=440hz). Then

More information

Z-Truck (Vertical Moving) Z-truck Flag. Y-Truck (Horizontal Moving) FIGURE 1: VIEW OF THE Z-TRUCK. Flexshaft Assembly

Z-Truck (Vertical Moving) Z-truck Flag. Y-Truck (Horizontal Moving) FIGURE 1: VIEW OF THE Z-TRUCK. Flexshaft Assembly Replacing the Cover Micro-Switch To remove and replace the Cover Micro-Switch you will need the following tools: #2 Phillips screwdriver (magnetic tip preferred) #1 Phillips screwdriver (magnetic tip preferred)

More information

Lab 8: Ballistic Pendulum

Lab 8: Ballistic Pendulum Lab 8: Ballistic Pendulum Equipment: Ballistic pendulum apparatus, 2 meter ruler, 30 cm ruler, blank paper, carbon paper, masking tape, scale. Caution In this experiment a steel ball is projected horizontally

More information

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2006 Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil OBJECTIVES 1. To learn how to visualize magnetic field lines

More information

Endothermic and Exothermic Reactions. Evaluation copy. Mg(s) + 2 HCl(aq) H 2 (g) + MgCl 2 (aq)

Endothermic and Exothermic Reactions. Evaluation copy. Mg(s) + 2 HCl(aq) H 2 (g) + MgCl 2 (aq) Endothermic and Exothermic Reactions Computer 1 Many chemical reactions give off energy. Chemical reactions that release energy are called exothermic reactions. Some chemical reactions absorb energy and

More information

Lift the Load! Make a lever. Measure the amount of force needed to lift up a book when applying a force at different positions on the lever.

Lift the Load! Make a lever. Measure the amount of force needed to lift up a book when applying a force at different positions on the lever. Lift the Load! Computer 28 The Greek philosopher Archimedes said, "Give me a lever long enough, and a place to stand and I can move the world." What did he mean by this? In this activity, you will get

More information

Lab 9: The Acousto-Optic Effect

Lab 9: The Acousto-Optic Effect Lab 9: The Acousto-Optic Effect Incoming Laser Beam Travelling Acoustic Wave (longitudinal wave) O A 1st order diffracted laser beam A 1 Introduction qb d O 2qb rarefractions compressions Refer to Appendix

More information

The Determination of an Equilibrium Constant

The Determination of an Equilibrium Constant The Determination of an Equilibrium Constant Computer 10 Chemical reactions occur to reach a state of equilibrium. The equilibrium state can be characterized by quantitatively defining its equilibrium

More information

Data Acquisition Using NI-DAQmx

Data Acquisition Using NI-DAQmx Instructor s Portion Data Acquisition Using NI-DAQmx Wei Lin Department of Biomedical Engineering Stony Brook University Summary This experiment requires the student to use NI-DAQmx to acquire voltage

More information

Acceleration of Gravity Lab Basic Version

Acceleration of Gravity Lab Basic Version Acceleration of Gravity Lab Basic Version In this lab you will explore the motion of falling objects. As an object begins to fall, it moves faster and faster (its velocity increases) due to the acceleration

More information

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS

EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS 1 EXPERIMENT NUMBER 5 BASIC OSCILLOSCOPE OPERATIONS The oscilloscope is the most versatile and most important tool in this lab and is probably the best tool an electrical engineer uses. This outline guides

More information

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2009 Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil OBJECTIVES 1. To learn how to visualize magnetic field lines

More information

Home Theater PC Chassis

Home Theater PC Chassis Home Theater PC Chassis Model: HTPC 180 BA & SA Color: Black & Silver Quick Installation Guide (U.S. & Canada Only) Version 1.0 DISCLAIMER No warranty or representation, either expressed or implied, is

More information

System Modeling and Control for Mechanical Engineers

System Modeling and Control for Mechanical Engineers Session 1655 System Modeling and Control for Mechanical Engineers Hugh Jack, Associate Professor Padnos School of Engineering Grand Valley State University Grand Rapids, MI email: jackh@gvsu.edu Abstract

More information

Neutralization Reactions. Evaluation copy

Neutralization Reactions. Evaluation copy Neutralization Reactions Computer 6 If an acid is added to a base, a chemical reaction called neutralization occurs. An example is the reaction between nitric acid, HNO 3, and the base potassium hydroxide,

More information

Heart Rate and Exercise

Heart Rate and Exercise Name Date Heart Rate and Exercise Computer 26 Heart rates increase during exercise. The heart rates of physically fit people increase less during exercise than those of less fit people. The heart rates

More information

Conservation of Momentum Using PASCO TM Carts and Track to Study Collisions in One Dimension

Conservation of Momentum Using PASCO TM Carts and Track to Study Collisions in One Dimension 14 Conservation of Conservation of Using PASCO TM Carts and Track to Study s in One Dimension OBJECTIVE Students will collide two PASCO TM carts on a track to determine the momentum before and after a

More information

The Sonometer The Resonant String and Timbre Change after plucking

The Sonometer The Resonant String and Timbre Change after plucking The Sonometer The Resonant String and Timbre Change after plucking EQUIPMENT Pasco sonometers (pick up 5 from teaching lab) and 5 kits to go with them BK Precision function generators and Tenma oscilloscopes

More information

Free Fall: Observing and Analyzing the Free Fall Motion of a Bouncing Ping-Pong Ball and Calculating the Free Fall Acceleration (Teacher s Guide)

Free Fall: Observing and Analyzing the Free Fall Motion of a Bouncing Ping-Pong Ball and Calculating the Free Fall Acceleration (Teacher s Guide) Free Fall: Observing and Analyzing the Free Fall Motion of a Bouncing Ping-Pong Ball and Calculating the Free Fall Acceleration (Teacher s Guide) 2012 WARD S Science v.11/12 OVERVIEW Students will measure

More information

LAB 06: Impulse, Momentum and Conservation

LAB 06: Impulse, Momentum and Conservation LAB 06: Impulse, Momentum and Conservation PURPOSE Investigate the relation between applied force and the change in momentum Investigate how the momentum of objects change during collisions BACKGROUND

More information

Chapter 22: Electric motors and electromagnetic induction

Chapter 22: Electric motors and electromagnetic induction Chapter 22: Electric motors and electromagnetic induction The motor effect movement from electricity When a current is passed through a wire placed in a magnetic field a force is produced which acts on

More information

Operation Manual For NDJ-8S Digital Rotary Viscometer

Operation Manual For NDJ-8S Digital Rotary Viscometer Operation Manual For NDJ-8S Digital Rotary Viscometer 1 Contents 1. General... 2 2. Main technical data... 2 3. Working principle... 2 4. Installation... 3 5. Operation procedures... 4 6. Precautions...

More information

Monitoring EKG. Evaluation copy

Monitoring EKG. Evaluation copy Monitoring EKG Computer 28 An electrocardiogram, or EKG, is a graphical recording of the electrical events occurring within the heart. A typical EKG tracing consists of five identifiable deflections. Each

More information

User Manual. One / One S / One S3

User Manual. One / One S / One S3 One / One S / One S3 User Manual 1 One / One S / One S3 User Manual Congratulations on your purchase of your Antec One / One S / One S3! When building a PC, it s important to use hardware you re comfortable

More information

22.302 Experiment 5. Strain Gage Measurements

22.302 Experiment 5. Strain Gage Measurements 22.302 Experiment 5 Strain Gage Measurements Introduction The design of components for many engineering systems is based on the application of theoretical models. The accuracy of these models can be verified

More information

CENTRIFUGAL PUMP OVERVIEW Presented by Matt Prosoli Of Pumps Plus Inc.

CENTRIFUGAL PUMP OVERVIEW Presented by Matt Prosoli Of Pumps Plus Inc. CENTRIFUGAL PUMP OVERVIEW Presented by Matt Prosoli Of Pumps Plus Inc. 1 Centrifugal Pump- Definition Centrifugal Pump can be defined as a mechanical device used to transfer liquid of various types. As

More information

Newton s Second Law. ΣF = m a. (1) In this equation, ΣF is the sum of the forces acting on an object, m is the mass of

Newton s Second Law. ΣF = m a. (1) In this equation, ΣF is the sum of the forces acting on an object, m is the mass of Newton s Second Law Objective The Newton s Second Law experiment provides the student a hands on demonstration of forces in motion. A formulated analysis of forces acting on a dynamics cart will be developed

More information

AP Physics C. Oscillations/SHM Review Packet

AP Physics C. Oscillations/SHM Review Packet AP Physics C Oscillations/SHM Review Packet 1. A 0.5 kg mass on a spring has a displacement as a function of time given by the equation x(t) = 0.8Cos(πt). Find the following: a. The time for one complete

More information

Experiment: Static and Kinetic Friction

Experiment: Static and Kinetic Friction PHY 201: General Physics I Lab page 1 of 6 OBJECTIVES Experiment: Static and Kinetic Friction Use a Force Sensor to measure the force of static friction. Determine the relationship between force of static

More information

Determining the Acceleration Due to Gravity

Determining the Acceleration Due to Gravity Chabot College Physics Lab Scott Hildreth Determining the Acceleration Due to Gravity Introduction In this experiment, you ll determine the acceleration due to earth s gravitational force with three different

More information

Building A Computer: A Beginners Guide

Building A Computer: A Beginners Guide Building A Computer: A Beginners Guide Mr. Marty Brandl The following was written to help an individual setup a Pentium 133 system using an ASUS P/I- P55T2P4 motherboard. The tutorial includes the installation

More information

Experiment #8: Magnetic Forces

Experiment #8: Magnetic Forces Experiment #8: Magnetic Forces Purpose: To study the nature of magnetic forces exerted on currents. Equipment: Magnet Assembly and Stand Set of Current Loop PC oards Triple-Arm Pan alance 0 15 V dc Variable

More information

Lab 4: Magnetic Force on Electrons

Lab 4: Magnetic Force on Electrons Lab 4: Magnetic Force on Electrons Introduction: Forces on particles are not limited to gravity and electricity. Magnetic forces also exist. This magnetic force is known as the Lorentz force and it is

More information

Conservation of Energy Physics Lab VI

Conservation of Energy Physics Lab VI Conservation of Energy Physics Lab VI Objective This lab experiment explores the principle of energy conservation. You will analyze the final speed of an air track glider pulled along an air track by a

More information

Work and Energy. W =!KE = KE f

Work and Energy. W =!KE = KE f Activity 19 PS-2826 Work and Energy Mechanics: work-energy theorem, conservation of energy GLX setup file: work energy Qty Equipment and Materials Part Number 1 PASPORT Xplorer GLX PS-2002 1 PASPORT Motion

More information

A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion

A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion Objective In the experiment you will determine the cart acceleration, a, and the friction force, f, experimentally for

More information

Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam

Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam INSTRUCTIONS: Use a pencil #2 to fill your scantron. Write your code number and bubble it in under "EXAM NUMBER;" an entry

More information

Physics Labs with Computers, Vol. 2 P38: Conservation of Linear Momentum 012-07001A

Physics Labs with Computers, Vol. 2 P38: Conservation of Linear Momentum 012-07001A Name Class Date Activity P38: Conservation of Linear Momentum (Motion Sensors) Concept DataStudio ScienceWorkshop (Mac) ScienceWorkshop (Win) Newton s Laws P38 Linear Momentum.DS P16 Cons. of Momentum

More information

Welcome to Vernier LabQuest Viewer Software v1.0 Note: LabQuest Viewer Features Set up LabQuest 2 to work with LabQuest Viewer software via Wi-Fi

Welcome to Vernier LabQuest Viewer Software v1.0 Note: LabQuest Viewer Features Set up LabQuest 2 to work with LabQuest Viewer software via Wi-Fi Welcome to Vernier LabQuest Viewer Software v1.0 The LabQuest Viewer is computer software that is used to display and control the screen of a LabQuest using a computer. This can be done to demonstrate

More information

STATIC AND KINETIC FRICTION

STATIC AND KINETIC FRICTION STATIC AND KINETIC FRICTION LAB MECH 3.COMP From Physics with Computers, Vernier Software & Technology, 2000. INTRODUCTION If you try to slide a heavy box resting on the floor, you may find it difficult

More information

Static Electricity Page 1. Static Electricity. Introduction: Structure of Atoms 2 Sample Curriculum, Materials Needed

Static Electricity Page 1. Static Electricity. Introduction: Structure of Atoms 2 Sample Curriculum, Materials Needed Static Electricity Page 1 Static Electricity Introduction: Structure of Atoms 2 Sample Curriculum, Materials Needed Experiment #1: Creating Static Charges 3 Experiment #2: Like Charges Repel and Unlike

More information

To Purchase This Item, Visit BMI Gaming www.bmigaming.com 1-800-746-2255 + 1-561-391-7200

To Purchase This Item, Visit BMI Gaming www.bmigaming.com 1-800-746-2255 + 1-561-391-7200 Table of Contents General Description and Play 2 Game Set Up 2 Loading Balloons 2 Technical Operation-General 3 Adjusting Balloon Sensor Wire 4 Programming Instructions 4 Default Settings Troubleshooting

More information

Evaluation copy. Analyzing the Heart with EKG. Computer

Evaluation copy. Analyzing the Heart with EKG. Computer Analyzing the Heart with EKG Computer An electrocardiogram (ECG or EKG) is a graphical recording of the electrical events occurring within the heart. In a healthy heart there is a natural pacemaker in

More information

A Design of a PID Self-Tuning Controller Using LabVIEW

A Design of a PID Self-Tuning Controller Using LabVIEW Journal of Software Engineering and Applications, 2011, 4, 161-171 doi:10.4236/jsea.2011.43018 Published Online March 2011 (http://www.scirp.org/journal/jsea) 161 A Design of a PID Self-Tuning Controller

More information

Worksheet for Exploration 2.1: Compare Position vs. Time and Velocity vs. Time Graphs

Worksheet for Exploration 2.1: Compare Position vs. Time and Velocity vs. Time Graphs Worksheet for Exploration 2.1: Compare Position vs. Time and Velocity vs. Time Graphs Shown are three different animations, each with three toy monster trucks moving to the right. Two ways to describe

More information

2.6. In-Laboratory Session. 2.6.1. QICii Modelling Module. Modelling. 2.6.1.1. Module Description

2.6. In-Laboratory Session. 2.6.1. QICii Modelling Module. Modelling. 2.6.1.1. Module Description 2.6. In-Laboratory Session 2.6.1. QICii Modelling Module 2.6.1.1. Module Description The main tool for this lab is the front panel of the module entitled Modelling in the QICii software, which should be

More information

I Click on a link tab to jump to that page

I Click on a link tab to jump to that page & nstall Publication, Duplication, or Retransmission Of This Document Not Expressly Authorized n Writing By The nstall Doctor s Prohibited. Protected By U.S. Copyright Laws. 1997,1998,1999,2000. Factory

More information

Bottle Rockets. Vanderbilt Student Volunteers for Science. Fall 2008

Bottle Rockets. Vanderbilt Student Volunteers for Science. Fall 2008 Bottle Rockets Vanderbilt Student Volunteers for Science Fall 2008 I. Introduction: History of Rockets Explain to the students that rockets are more than two thousand years old. Give the students a BRIEF

More information

Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT)

Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT) Introduction to LabVIEW for Control Design & Simulation Ricardo Dunia (NI), Eric Dean (NI), and Dr. Thomas Edgar (UT) Reference Text : Process Dynamics and Control 2 nd edition, by Seborg, Edgar, Mellichamp,

More information

JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator

JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator The Janus Pantheon mini operator does not typically require the provision of any additional site requirements other than

More information

6/2016 E&M forces-1/8 ELECTRIC AND MAGNETIC FORCES. PURPOSE: To study the deflection of a beam of electrons by electric and magnetic fields.

6/2016 E&M forces-1/8 ELECTRIC AND MAGNETIC FORCES. PURPOSE: To study the deflection of a beam of electrons by electric and magnetic fields. 6/016 E&M forces-1/8 ELECTRIC AND MAGNETIC FORCES PURPOSE: To study the deflection of a beam of electrons by electric and magnetic fields. APPARATUS: Electron beam tube, stand with coils, power supply,

More information

Force on Moving Charges in a Magnetic Field

Force on Moving Charges in a Magnetic Field [ Assignment View ] [ Eðlisfræði 2, vor 2007 27. Magnetic Field and Magnetic Forces Assignment is due at 2:00am on Wednesday, February 28, 2007 Credit for problems submitted late will decrease to 0% after

More information

ACCELERATION DUE TO GRAVITY

ACCELERATION DUE TO GRAVITY ACCELERATION DUE TO GRAVITY Objective: To measure the acceleration of a freely falling body due to gravitational attraction. Apparatus: Computer with Logger Pro, green Vernier interface box, picket fence

More information

Installation Guide. WSD-100 Wind Speed and Direction Sensor For XR5 Data Loggers. February, 2011

Installation Guide. WSD-100 Wind Speed and Direction Sensor For XR5 Data Loggers. February, 2011 WSD-100 Wind Speed and Direction Sensor For XR5 Data Loggers Installation Guide February, 2011 Pace Scientific Inc www.pace-sci.com Tel: 704-799-0688 sales@pace-sci.com 1 Disclaimer The following warranty

More information

Application Information

Application Information Moog Components Group manufactures a comprehensive line of brush-type and brushless motors, as well as brushless controllers. The purpose of this document is to provide a guide for the selection and application

More information

The Simple DC Motor: A Teacher s Guide

The Simple DC Motor: A Teacher s Guide The Simple DC Motor: A Teacher s Guide Kristy Beauvais Research Experience for Teachers Center for Materails Science and Engineering Massachusetts Institute of Technology August 2003 Motor Design: Steven

More information

Contents. Document information

Contents. Document information User Manual Contents Document information... 2 Introduction... 3 Warnings... 3 Manufacturer... 3 Description... Installation... Configuration... Troubleshooting...11 Technical data...12 Device Scope: PCB

More information

MAS.836 HOW TO BIAS AN OP-AMP

MAS.836 HOW TO BIAS AN OP-AMP MAS.836 HOW TO BIAS AN OP-AMP Op-Amp Circuits: Bias, in an electronic circuit, describes the steady state operating characteristics with no signal being applied. In an op-amp circuit, the operating characteristic

More information

EARTH PEOPLE TECHNOLOGY SERIAL GRAPH TOOL FOR THE ARDUINO UNO USER MANUAL

EARTH PEOPLE TECHNOLOGY SERIAL GRAPH TOOL FOR THE ARDUINO UNO USER MANUAL EARTH PEOPLE TECHNOLOGY SERIAL GRAPH TOOL FOR THE ARDUINO UNO USER MANUAL The Serial Graph Tool for the Arduino Uno provides a simple interface for graphing data to the PC from the Uno. It can graph up

More information

Implementing PID Temperature Control Using LabVIEW. Abstract. Introduction

Implementing PID Temperature Control Using LabVIEW. Abstract. Introduction Implementing PID Temperature Control Using LabVIEW Carlton Prewit, Rafic Bachnak Department of Computing and Mathematical Sciences Texas A&M University Corpus Christi Session XXXX Abstract Feedback control

More information

Transfer of Energy Forms of Energy: Multiple Transformations

Transfer of Energy Forms of Energy: Multiple Transformations Transfer of Energy Forms of Energy: Multiple Transformations Discovery Question What energy transformations are used in everyday devices? Introduction Thinking About the Question Materials Safety Trial

More information

User manual DinaSys DTC/DTS and DTC/DTZ

User manual DinaSys DTC/DTS and DTC/DTZ PiCommIT has developed the DinaSys DTC/DTS and DinaSys DTC/DTZ turntable controller for the Fleischmann / Marklin Turntables in scale H0, H0m, TT, N and Z. One of the most important starting point was

More information

Cover Page. Factory Radio Other Documents Available For This Vehicle:

Cover Page. Factory Radio Other Documents Available For This Vehicle: & nstall Publication, Duplication, or Retransmission Of This Document Not Expressly Authorized n Writing By The nstall Doctor s Prohibited. Protected By U.S. Copyright Laws. 1997,1998,,2000. Factory Radio

More information

Using the Motor Controller

Using the Motor Controller The Motor Controller is designed to be a convenient tool for teachers and students who want to use math and science to make thing happen. Mathematical equations are the heart of math, science and technology,

More information

OPERATION MANUAL VALVE CHECKER G040-123

OPERATION MANUAL VALVE CHECKER G040-123 OPERATION MANUAL VALVE CHECKER AUSTRALIA PTY. LTD. L:\DWG_NO\DOCUMENT\MANUALS\Word File\A OPERATION MANUAL CN 20.4.99 VALVE CHECKER 1 of 20 CONTENTS Chapter Title Page 1. Description 3 2. Specification

More information

Essential Electrical Concepts

Essential Electrical Concepts Essential Electrical Concepts Introduction Modern vehicles incorporate many electrical and electronic components and systems: Audio Lights Navigation Engine control Transmission control Braking and traction

More information

SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016

SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016 SPY-BATT Battery Tutor Device Installation Manual Rev. 1.1-07/04/2016 1. GENERAL DESCRIPTION The SPY-BATT is a device that allows to monitor the state of your battery. The SPY-BATT stores over time the

More information

ENERGYand WORK (PART I and II) 9-MAC

ENERGYand WORK (PART I and II) 9-MAC ENERGYand WORK (PART I and II) 9-MAC Purpose: To understand work, potential energy, & kinetic energy. To understand conservation of energy and how energy is converted from one form to the other. Apparatus:

More information

SYSTEM 45. C R H Electronics Design

SYSTEM 45. C R H Electronics Design SYSTEM 45 C R H Electronics Design SYSTEM 45 All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, & A outputs. Independent 25

More information