Evaluation copy. Propeller-Powered Pendulum. Project PROJECT DESIGN REQUIREMENTS

Size: px
Start display at page:

Download "Evaluation copy. Propeller-Powered Pendulum. Project PROJECT DESIGN REQUIREMENTS"

Transcription

1 Propeller-Powered Pendulum Project 11 A pendulum is a weighted object suspended from a pivot point. As a pendulum moves, it swings out in a circular arc moving back and forth in a periodic motion. A pendulum usually operates under the influence of gravity; but in this Project, you will use a motorized propeller to power the pendulum s motion. The spinning blades of a propeller cause a pressure differential on the front and back surfaces resulting in a force that moves the object through the air called thrust. Propeller blades are attached to their hubs at an angle or pitch, much like the threads on a screw. Propeller blades are also twisted. When the propeller is spinning, each section of the blade travels at a different velocity, but the twist in the blade is meant to provide uniform lift along the length of the blade making for a more efficient propeller. PROJECT DESIGN REQUIREMENTS Build a physical pendulum driven by a DC motor, a propeller, and a digital controller. You should attach the motor and propeller to the end of a long bar. The Vernier Rotary Motion Sensor will be used for mounting the bar at its pivot point and for measuring the angle of the bar s swing. You will use the Vernier Digital Control Unit (DCU) to power the motorized propeller and initiate the swing of the bar. The program should pulse the power on and off as needed to keep the bar swinging. For safety reasons, you should limit the range of your bar s swing to approximately ±20. The bar angle should be displayed on the front panel, but the bar s motion should be controlled totally by the program. Evaluation copy Engineering Projects with NI LabVIEW and Vernier Vernier Software & Technology P11-1

2 Project 11 MATERIALS SensorDAQ, LabQuest, or LabQuest Mini LabVIEW computer USB cable Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Vernier Rotary Motion Sensor DC motor propeller jumper wires long metal bar (approx 50 cm) ring stand rod clamp rod ADDITIONAL MATERIALS (SENSORDAQ ONLY) Vernier Digital Proto Board Connector breadboard PROJECT SETUP Construct the propeller device 1. Connect a propeller to the shaft of a DC motor. 2. Connect the motor to the end of a long bar so that the motor shaft is perpendicular to the bar (see photo above). 3. Insert a rod through the mounting hole of the Rotary Motion Sensor and tighten the thumb screw. 4. Mount the rod to a ring stand with a rod clamp so that the shaft of the Rotary Motion Sensor is parallel with the ground. 5. Mount the long bar to the Rotary Motion Sensor about one-third of the way up from the motorized propeller. Note: If necessary, pre-drill a 1/8 hole in the bar to accept the thumb screw. 6. Connect the Rotary Motion Sensor to the first DIG channel on the interface. 7. Connect the interface to the computer. Connect the motor to the DCU 1. Plug the 9-pin cable into the socket on the side of the DCU. 2. Wire the motor to the DCU cable as shown in the figure below. You can find the color-coded pin-out for the DCU cable on the label attached to the cord. Figure 1 Wiring diagram for DCU-controlled circuit 3. Connect a power supply to the DCU. P11-2 Engineering Projects with NI LabVIEW and Vernier

3 Propeller-Powered Pendulum Connect the DCU to the interface SensorDAQ (See below if you are using LabQuest or LabQuest Mini) 1. Insert a Vernier Digital Proto Board Connector into a breadboard. 2. Wire the Digital Proto Board Connector to the SensorDAQ screw terminal using jumper wires as shown in the figure below. Figure 2 Digital Proto Board Connector pin-out to SensorDAQ screw terminal 3. Plug the DCU into the Digital Proto Board Connector. Note: The digital output lines of the screw terminal are on by default. You may have to disconnect the DCU, or power from the DCU, until you run the program for the first time. 4. The Rotary Motion Sensor should remain connected to the DIG channel on the side of the SensorDAQ. LabQuest or LabQuest Mini 1. Connect the DCU to channel DIG2 on the side of the LabQuest or LabQuest Mini. 2. The Rotary Motion Sensor should remain connected to channel DIG1. PROJECT BACKGROUND INFORMATION In this Project, you will write a LabVIEW program to make a driven physical pendulum. You can use the Digital Express VI (found in the Vernier functions palette) to monitor angle readings from the Rotary Motion Sensor to provide feedback and to maintain an acceptable swing range. You can power your motorized propeller with the Vernier Digital Control Unit (DCU). The DCU is an electronic device that allows you to control up to six digital output lines for on/off control of motors and other DC electrical components. The DCU plugs into one of the digital connections on the interface and is powered by a separate DC power supply. A 9-pin D-sub socket cable with bare wires on one end is supplied with the DCU for use in building projects. There are connections for all six digital lines, plus a power connection and two ground connections. The color code of the wires is identified on a label attached to the cable. Always keep the power limitations of the DCU and your DCU power supply in mind. You should not exceed 1000 ma total. Engineering Projects with NI LabVIEW and Vernier P11-3

4 Project 11 Controlling the DCU (SensorDAQ) If you are using a SensorDAQ, you must control the DCU from the screw terminal (screw terminal 1) using the DAQ Assistant Express VI. When the DAQ Assistant (located in the Measurement I/O DAQmx Data Acquisition palette) is placed on the block diagram a configuration window appears asking you to select the type of task. For this Project, you will be Generating a Signal. You should select the Line Output option from the Digital Output dropdown list. Next you must select the Physical Channel name. If your SensorDAQ is connected to the computer and powered on, you should select port0/line0. Unlike the Digital Express VI which sends an output pattern of 1 to turn on the DCU, you control the DCU from the DAQ Assistant with a 1-D Boolean array ( True tells the DAQ Assistant to turn on DCU line D1; False turns D1 off). Only the top row (the first element) of the array is used. The other rows of the array must remain empty (grayed-out). Figure 3 DAQ Assistant for DCU control To make sure that the two Express VIs operate in a sequential manner, wire them together using the Error lines. Controlling the DCU (LabQuest or LabQuest Mini) The Digital Express VI can be used to control the DCU if you are using a LabQuest or LabQuest Mini since these interfaces have two digital ports capable of accepting BTD connectors. You must send an output pattern indicating which digital lines should be on or off at any one time. An output pattern of 1 will turn on DCU line D1 and a pattern of 0 will turn all lines off. You can sample all 16 different output patterns in the configuration window of the Digital Express VI. You will need to place separate Digital Express VIs on the block diagram for the Rotary Motion Sensor and the DCU. In the configuration window under Channel Selection, choose DIG Channel 1 for configuring the Rotary Motion Sensor and DIG Channel 2 when configuring the DCU. Connect the two Digital Express VIs together using the stop (F) and stopped terminals. PROJECT TIPS 1. Avoid using the Abort Execution button to stop your VI because some of the DCU lines may remain on. 2. If using the SensorDAQ, end your program by turning DCU line D1 off. 3. Make sure that all wires are away from the rotating propeller blades and that the bar is able to swing freely. 4. Incorporate some sort of physical stop into your apparatus so that if you supply too much voltage to the motor, the bar does not spin around in circles. For example, the rod supporting the Rotary Motion Sensor could extend out far enough to stop the bar from rotating too far. P11-4 Engineering Projects with NI LabVIEW and Vernier

5 Propeller-Powered Pendulum 5. The Rotary Motion Sensor assumes the initial position of the bar is at 0 ; therefore, make sure the bar has stopped swinging before restarting the program. 6. Refer to Appendix E for additional information on the Vernier DCU, Rotary Motion Sensor, and Digital Proto Board Connector. PROJECT TROUBLESHOOTING 1. Make sure the DCU is receiving power. The green LED in the top of the DCU box will be lit when the DCU is powered on. 2. Double-check the DCU cable connections against the color-coded label attached to the cable. 3. Make sure you are using the same SensorDAQ that was connected to the computer when you configured the DAQ Assistant. Switching SensorDAQs will cause an error (# or ) when you run your program. See Appendix F for information about how to resolve this problem. Engineering Projects with NI LabVIEW and Vernier P11-5

6 Project 11 CHALLENGE DESIGN REQUIREMENTS (SENSORDAQ ONLY) Note: Do not attempt the Challenge until you have completed the Project Design Requirements. Write a LabVIEW program to allow a user to control the speed of the propeller motor and thereby gently raise the pendulum from the resting state to a specific angle. Use an analog output controller and the Vernier Power Amplifier. The propeller and motor should be mounted as they were in the Project, that is, at the end of a long bar, and the bar should be connected to the Rotary Motion Sensor. Your program should control the voltage delivered from a Vernier Power Amplifier to the motor and use a Vernier Rotary Motion Sensor to measure the angle of the bar. The user should be able to control the motor voltage, and indirectly the speed of the propeller, from the front panel. The bar angle should be displayed on the front panel. Note: The LabQuest or LabQuest Mini should not be used for the Challenge. The LabQuest has the ability to send a DC signal to the Power Amplifier, but you will not be able to satisfactorily control the bar due to the slow response when updating the output voltage. The LabQuest Mini cannot be used for this activity because it does not have the ability to output a voltage signal. ADDITIONAL MATERIALS Vernier Power Amplifier Vernier Analog Proto Board Connector CHALLENGE SETUP Connect the Rotary Motion Sensor to the interface 1. Connect the Rotary Motion Sensor to the DIG channel on the interface. 2. Remove the DCU from your apparatus. It will not be used in the Challenge. Connect the motor to the Power Amplifier 1. Connect the two terminals on the DC motor to the ±10V (red) and GND (black) ports on the Vernier Power Amplifier. 2. Connect the Power Amplifier to its external power source and flip the power switch to the On position. Connect the Power Amplifier to the SensorDAQ 1. Insert an Analog Proto Board Connector into a breadboard. 2. Plug one end of a BTA cable into the port marked Audio Input on the Power Amplifier and the other end into the Analog Proto Board Connector. P11-6 Engineering Projects with NI LabVIEW and Vernier

7 Propeller-Powered Pendulum 3. Use jumper wires to connect the SensorDAQ screw terminal to the Analog Proto Board Connector as shown in the figure below. Figure 4 Analog Proto Board Connector pin-out to the SensorDAQ screw terminal CHALLENGE BACKGROUND INFORMATION In the Project, we controlled the physical pendulum with a digital (on or off) output line and the DCU. In this Challenge, the user will control the rate at which the propeller turns with a variable voltage (analog output) control. The Vernier Power Amplifier is used. It can deliver the voltage to drive the motor at a range of speeds. The Power Amp Express VI (found on the Vernier functions palette) should be used to control the Power Amplifier when writing your LabVIEW program. This Express VI sends a DC voltage signal by default. You can use the Digital Express VI to monitor the angle readings from the Rotary Motion Sensor. CHALLENGE TIPS 1. Propel the bar in a direction away from the wires connecting the DC motor to ensure that these wires do not get tangled in the propeller. 2. Incorporate some sort of physical stop into your apparatus so that if you supply too much voltage to the motor, the bar does not rotate too far. For example, the rod supporting the Rotary Motion Sensor could extend out far enough to stop the bar. 3. Refer to Appendix E for additional information on the Vernier Power Amplifier and Analog Proto Board Connector. Engineering Projects with NI LabVIEW and Vernier P11-7

8 Project 11 EXTREME CHALLENGE DESIGN REQUIREMENTS (SENSORDAQ ONLY) Modify your VI created in the Challenge so that the propeller is automatically raised to an exact angle of 30 using the Power Amplifier as a power source. You should use Proportional-Integral- Derivative (PID) control so that your propeller reaches the desired angle quickly with a minimum of overshoot and/or oscillation. You should create Waveform Charts on the front panel for the motor voltage, desired angle of the propeller, and actual angle of the propeller. Both the desired and actual angle of the propeller should be displayed on the same Waveform Chart. Note: You cannot use the LabQuest or LabQuest Mini to perform PID control. The LabQuest has the ability to send a DC signal to the Power Amplifier, but you will not be able to satisfactorily control the bar due to the slow response when updating the output value. The LabQuest Mini cannot be used for this activity, because it does not have the ability to output a voltage signal. EXTREME CHALLENGE BACKGROUND INFORMATION When using manual control to raise the propeller to a desired angle, the operator knows instinctively to increase the speed of (voltage to) the propeller for more lift or decrease the propeller speed for less lift. However, the Extreme Challenge requires a method of automatic control for situations in which a human operator is absent. A feedback control system takes information on the current (and sometimes past) measurements to influence a system. In this case, the Rotary Motion Sensor monitors the bar angle and feeds the data back to the program which continuously adjusts the voltage to the propeller to keep the bar as close to the desired angle as possible (see the figure below). An ideal system would cancel out all errors and keep the propeller at exactly the desired angle, but this can be difficult due to measurement precision, delays in the controller response, and external air currents. Figure 5 Feedback control loop A PID (proportional, integral, derivative) controller is often used in control systems. It uses the weighted sum of three corrections to quickly and smoothly adjust the voltage to the desired condition. The proportional factor makes an adjustment to the process based on the current error; the integral factor makes an adjustment based on the sum of recent errors; and the derivative factor makes an adjustment based on the rate at which the error has been changing. All three terms are then summed and multiplied by the gain. Gain is the ratio of the signal output to the signal input in this instance, volts per degree. 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 P11-8 Engineering Projects with NI LabVIEW and Vernier

9 t Propeller-Powered Pendulum integral constant, e dt is the summation of the error and the previous error, K d is the de derivative constant, is the time rate of change of the error, and Vbias is a starting voltage for dt 30. At first glance, this equation can appear daunting; but you do not need an extensive background in differential equations to implement this formula into your LabVIEW program. All of the terms can be simplified to basic arithmetic. The error in this exercise is simply the number of degrees difference (positive or negative) between the desired angle and the measured angle. e(t) = error = desired angle measured angle Using a Shift Register to store the current error value 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 Rotary Motion Sensor 10 times a second, and therefore, dt = 0.1 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 / 0. 1 Figure 6 Calculating the Error, Change in Error, and Sum of Errors using LabVIEW You can determine the bias and gain by doing some preliminary analysis of your bar position. First, by running your basic program with the manual voltage control (the Challenge for this chapter), you can find an approximation for the bias voltage. The bias or offset voltage is the voltage at which the bar angle is approximately 30. Engineering Projects with NI LabVIEW and Vernier P11-9

10 Project 11 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 degrees of the pendulum. A quick way to estimate this is by running the program from the Challenge of this chapter with the manual voltage control. Take data on the change in voltage and the change in degrees of the pendulum and estimate the gain Note that in the PID equation all three terms (proportional, derivative, and integral) are multiplied by the gain. This is important in order for the PID equation to be tuned by any of the standard tuning methods. 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 proportional term takes into consideration how far away the bar angle is from 30. As the difference grows or shrinks, the influence of the proportional correction grows or shrinks. The main problem with proportional control alone is that the bar will tend to oscillate. The derivative term can help minimize the overshoot problem. The integral term will tend to make the error go to zero, but it also will tend to make the overshoot worse. The best approach for determining the correct proportional, integral, and derivative values is trial and error. Make sure your equipment is in an isolated location so that if the long bar starts oscillating wildly, 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 actual angle of the bar in relation to the desired angle. You can use a Bundle function (found in the Programming Cluster, Class, & Variant palette) to plot both the desired and the actual bar positions on the same chart. 1. Set all three K coefficients to zero. Figure 7 Plotting two values on a Waveform Chart with a Bundle function 2. As you run the program, increase the proportional coefficient (K p ) until the bar s oscillation about the desired angle has a constant amplitude. Note that you are not trying to match the angle of the bar to the desired angle at this stage. You want a uniform oscillation in both the voltage and position graphs. Tip: Right-click on your PID front panel controls. From the Properties window, set the Data Entry Increment for the K constants to 0.01 to help you in tuning your PID system. 3. Next, cut K p in half and increase K i to accelerate the process. Note that the system will probably continue to oscillate, but too much K i will quickly make the system unstable. 4. Next increase K d until the system stabilizes to the desired angle. P11-10 Engineering Projects with NI LabVIEW and Vernier

11 Propeller-Powered Pendulum 5. At this point, you should stop and restart your program taking note of the amount of overshoot at the beginning of your system. Increasing the derivative parameter (K d ) and/or decreasing the integral parameter (K i ) a small amount should reduce the overshoot. 6. 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 angle very quickly (an adjustment in K i ). EXTREME CHALLENGE TIPS 1. You may want to look up articles on PID control on the internet or in engineering books. 2. Incorporating the mathematics for a PID controller in the Extreme Challenge is not difficult, but finding the proper constants for the proportional, derivative, and integral input parameters can be tricky. You should program these values as controls, rather than constants, so that you can adjust them to suit your equipment. 3. Make the K coefficients adjustable by hundredths of a unit. EXTREME CHALLENGE TROUBLESHOOTING 1. If the bar appears to have reached a steady 30 angle, but the plot of the Rotary Motion Sensor angle is not overlaying the plot of the desired angle, check to see if you are starting the program while the propeller is still swinging. The Digital Express VI assumes the initial angle of the bar is 0. If the bar is not in a resting position on startup, the plot will be off. 2. A common mistake when tuning the PID system is to try to match the angle of the bar to the desired angle when adjusting just the proportional coefficient (K p ). Students will think they have tuned the system, but in actuality you will notice a significant amount of overshoot or delay in reaching the desired angle when you stop and restart the program. When adjusting the proportional coefficient, the bar should exhibit a uniform oscillation about the desired angle. The addition of the integral (K i ) and derivative (K d ) coefficients should be used to stabilize the bar. Engineering Projects with NI LabVIEW and Vernier P11-11

12 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

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

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

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

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 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

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

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

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

Transmitter Interface Program

Transmitter Interface Program Transmitter Interface Program Operational Manual Version 3.0.4 1 Overview The transmitter interface software allows you to adjust configuration settings of your Max solid state transmitters. The following

More information

Mini Effect Gizmo. User s Manual. RJM Music Technology, Inc.

Mini Effect Gizmo. User s Manual. RJM Music Technology, Inc. Mini Effect Gizmo User s Manual RJM Music Technology, Inc. Mini Effect Gizmo User s Manual Version 1.3 September 26, 2013 RJM Music Technology, Inc. 2525 Pioneer Ave #1 Vista, CA 92081 E-mail: support@rjmmusic.com

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

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

SYSTEM 4C. C R H Electronics Design

SYSTEM 4C. C R H Electronics Design SYSTEM 4C C R H Electronics Design SYSTEM 4C 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

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

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

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

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two!

Your Multimeter. The Arduino Uno 10/1/2012. Using Your Arduino, Breadboard and Multimeter. EAS 199A Fall 2012. Work in teams of two! Using Your Arduino, Breadboard and Multimeter Work in teams of two! EAS 199A Fall 2012 pincer clips good for working with breadboard wiring (push these onto probes) Your Multimeter probes leads Turn knob

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

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

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

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

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

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

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 E1: Introduction to Circuits

Lab E1: Introduction to Circuits E1.1 Lab E1: Introduction to Circuits The purpose of the this lab is to introduce you to some basic instrumentation used in electrical circuits. You will learn to use a DC power supply, a digital multimeter

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

Lynx Broadband Installation Manual for Residential Packages with a 20 db Amp Quick Start Guide (first two pages)

Lynx Broadband Installation Manual for Residential Packages with a 20 db Amp Quick Start Guide (first two pages) Lynx Broadband Installation Manual for Residential Packages with a 20 db Amp Quick Start Guide (first two pages) 1. Be sure that your kit includes all the parts shown in the Check the Equipment section

More information

Y-Not. User s Manual. RJM Music Technology, Inc.

Y-Not. User s Manual. RJM Music Technology, Inc. Y-Not User s Manual RJM Music Technology, Inc. Y-Not User s Manual Version 2.0 July 14, 2014 RJM Music Technology, Inc. 2525 Pioneer Ave #1 Vista, CA 92081 E-mail: support@rjmmusic.com Web: www.rjmmusic.com

More information

Lab 3 - DC Circuits and Ohm s Law

Lab 3 - DC Circuits and Ohm s Law Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in

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

TwinCAT NC Configuration

TwinCAT NC Configuration TwinCAT NC Configuration NC Tasks The NC-System (Numeric Control) has 2 tasks 1 is the SVB task and the SAF task. The SVB task is the setpoint generator and generates the velocity and position control

More information

RLC Series Resonance

RLC Series Resonance RLC Series Resonance 11EM Object: The purpose of this laboratory activity is to study resonance in a resistor-inductor-capacitor (RLC) circuit by examining the current through the circuit as a function

More information

Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment...

Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment... User Manual Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment... 12 G-Code Example... 13 2 Getting Started

More information

1970-72 Chevelle. 1970-72 Chevelle. (500645) Gauge Cluster Kit Installation Instructions. (500645) Gauge Cluster Kit Installation Instructions

1970-72 Chevelle. 1970-72 Chevelle. (500645) Gauge Cluster Kit Installation Instructions. (500645) Gauge Cluster Kit Installation Instructions 1970-72 Chevelle (500645) Gauge Cluster Kit Installation Instructions 1970-72 Chevelle (500645) Gauge Cluster Kit Installation Instructions STEP 1: There are 4 small gauges. This is a photo of the bare

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

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

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment.

Op-Amp Simulation EE/CS 5720/6720. Read Chapter 5 in Johns & Martin before you begin this assignment. Op-Amp Simulation EE/CS 5720/6720 Read Chapter 5 in Johns & Martin before you begin this assignment. This assignment will take you through the simulation and basic characterization of a simple operational

More information

Servo Info and Centering

Servo Info and Centering Info and Centering A servo is a mechanical motorized device that can be instructed to move the output shaft attached to a servo wheel or arm to a specified position. Inside the servo box is a DC motor

More information

Lab 1: The Digital Oscilloscope

Lab 1: The Digital Oscilloscope PHYSICS 220 Physical Electronics Lab 1: The Digital Oscilloscope Object: To become familiar with the oscilloscope, a ubiquitous instrument for observing and measuring electronic signals. Apparatus: Tektronix

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

How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers.

How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers. How to use the OMEGALOG software with the OM-SQ2010/SQ2020/SQ2040 Data Loggers. OMEGALOG Help Page 2 Connecting Your Data Logger Page 2 Logger Set-up Page 3 Download Data Page 8 Export Data Page 11 Downloading

More information

FORCE ON A CURRENT IN A MAGNETIC FIELD

FORCE ON A CURRENT IN A MAGNETIC FIELD 7/16 Force current 1/8 FORCE ON A CURRENT IN A MAGNETIC FIELD PURPOSE: To study the force exerted on an electric current by a magnetic field. BACKGROUND: When an electric charge moves with a velocity v

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

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

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

Controlling a Dot Matrix LED Display with a Microcontroller

Controlling a Dot Matrix LED Display with a Microcontroller Controlling a Dot Matrix LED Display with a Microcontroller By Matt Stabile and programming will be explained in general terms as well to allow for adaptation to any comparable microcontroller or LED matrix.

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

Dash 18X / Dash 18 Data Acquisition Recorder

Dash 18X / Dash 18 Data Acquisition Recorder 75 Dash 18X / Dash 18 Data Acquisition Recorder QUICK START GUIDE Supports Recorder System Software Version 3.1 1. INTRODUCTION 2. GETTING STARTED 3. HARDWARE OVERVIEW 4. MENUS & BUTTONS 5. USING THE DASH

More information

RGB for ZX Spectrum 128, +2, +2A, +3

RGB for ZX Spectrum 128, +2, +2A, +3 RGB for ZX Spectrum 128, +2, +2A, +3 Introduction... 2 Video Circuitry... 3 Audio Circuitry... 8 Lead Wiring... 9 Testing The Lead... 11 Spectrum +2A/+3 RGB Differences... 12 Circuitry Calculations...

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

EET 310 Programming Tools

EET 310 Programming Tools Introduction EET 310 Programming Tools LabVIEW Part 1 (LabVIEW Environment) LabVIEW (short for Laboratory Virtual Instrumentation Engineering Workbench) is a graphical programming environment from National

More information

ABB Drives. User s Manual. Pulse Encoder Interface Module RTAC-01

ABB Drives. User s Manual. Pulse Encoder Interface Module RTAC-01 ABB Drives User s Manual Pulse Encoder Interface Module RTAC-0 Pulse Encoder Interface Module RTAC-0 User s Manual 3AFE 64486853 REV A EN EFFECTIVE:.5.00 00 ABB Oy. All Rights Reserved. Safety instructions

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

Renewable Energy Monitor User Manual And Software Reference Guide. sales@fuelcellstore.com (979) 703-1925

Renewable Energy Monitor User Manual And Software Reference Guide. sales@fuelcellstore.com (979) 703-1925 Renewable Energy Monitor User Manual And Software Reference Guide sales@fuelcellstore.com (979) 703-1925 1 Introducing the Horizon Renewable Energy Monitor The Renewable Energy Monitor is an educational

More information

Active Vibration Isolation of an Unbalanced Machine Spindle

Active Vibration Isolation of an Unbalanced Machine Spindle UCRL-CONF-206108 Active Vibration Isolation of an Unbalanced Machine Spindle D. J. Hopkins, P. Geraghty August 18, 2004 American Society of Precision Engineering Annual Conference Orlando, FL, United States

More information

1978-83 Malibu 1978-87 Monte Carlo 1978-87 El Camino

1978-83 Malibu 1978-87 Monte Carlo 1978-87 El Camino Important facts about this kit. 1. The dash panel used in this picture is used by permission of Covan's Classic. 2. This kit requires some modification to your original under dash wiring harness. It is

More information

tidesmarine Smart Seal Temperature Alarm System Generation II Installation Instructions Starboard side cable

tidesmarine Smart Seal Temperature Alarm System Generation II Installation Instructions Starboard side cable tidesmarine Smart Seal Temperature Alarm System Generation II Installation Instructions Starboard side cable Port side cable (with black cable tie attached) Power cable Preparing for Installation 1 Overall

More information

THRUST CURVE LOGGER V-4.200

THRUST CURVE LOGGER V-4.200 THRUST CURVE LOGGER V-4.200 There are several items that must be addressed prior to actual firing of the motor for data acquisition. These will be required in the Propellant Characterization process: Weigh

More information

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm Six-servo Robot Arm 1 1, Introduction 1.1, Function Briefing Servo robot, as the name suggests, is the six servo motor-driven robot arm. Since the arm has a few joints, we can imagine, our human arm, in

More information

Mini Amp Gizmo. User s Manual. RJM Music Technology, Inc.

Mini Amp Gizmo. User s Manual. RJM Music Technology, Inc. Mini Amp Gizmo User s Manual RJM Music Technology, Inc. Mini Amp Gizmo User s Manual Version 1.1 March 15, 2012 RJM Music Technology, Inc. 2525 Pioneer Ave #1 Vista, CA 92081 E-mail: support@rjmmusic.com

More information

LabVIEW Lesson 5 Clusters

LabVIEW Lesson 5 Clusters LabVIEW Lesson 5 Clusters Lesson Overview What are clusters? How to create a cluster. How to create a constant cluster. How to use the various cluster functions. I. What is a cluster? a. A cluster is similar

More information

Torque and Rotary Motion

Torque and Rotary Motion Torque and Rotary Motion Name Partner Introduction Motion in a circle is a straight-forward extension of linear motion. According to the textbook, all you have to do is replace displacement, velocity,

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

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

MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES

MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES MECHANICAL PRINCIPLES OUTCOME 4 MECHANICAL POWER TRANSMISSION TUTORIAL 1 SIMPLE MACHINES Simple machines: lifting devices e.g. lever systems, inclined plane, screw jack, pulley blocks, Weston differential

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

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

I Click on a link tab to jump to that page. Cover Page

I Click on a link tab to jump to that page. Cover 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

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

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

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

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

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

Lab Exercise 1: Acoustic Waves

Lab Exercise 1: Acoustic Waves Lab Exercise 1: Acoustic Waves Contents 1-1 PRE-LAB ASSIGNMENT................. 2 1-3.1 Spreading Factor: Spherical Waves........ 2 1-3.2 Interference In 3-D................. 3 1-4 EQUIPMENT........................

More information

How To Control Gimbal

How To Control Gimbal Tarot 2-Axis Brushless Gimbal for Gopro User Manual V1.0 1. Introduction Tarot T-2D gimbal is designed for the Gopro Hero3, which is widely used in film, television productions, advertising aerial photography,

More information

* DISCLAIMER: Contents. How to Use This Guide: COMMERCIAL INSTALL GUIDE 2

* DISCLAIMER: Contents. How to Use This Guide: COMMERCIAL INSTALL GUIDE 2 COMMERCIAL INSTALL GUIDE 2 Contents How to Use This Guide: The first section of this guide is designed to assist you with the installation of your DECK Monitoring hardware. The revenue grade meter and

More information

Lab 3: Introduction to Data Acquisition Cards

Lab 3: Introduction to Data Acquisition Cards Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied

More information

Operating instructions Diffuse reflection sensor. OJ50xx 701396 / 01 07 / 2004

Operating instructions Diffuse reflection sensor. OJ50xx 701396 / 01 07 / 2004 Operating instructions Diffuse reflection sensor OJ50xx 7096 / 0 07 / 004 Contents Preliminary note. Symbols used Function and features Installation. Installation of the supplied mounting fixture 4 4 Electrical

More information

Features, Benefits, and Operation

Features, Benefits, and Operation Features, Benefits, and Operation 2014 Decibel Eleven Contents Introduction... 2 Features... 2 Rear Panel... 3 Connections... 3 Power... 3 MIDI... 3 Pedal Loops... 4 Example Connection Diagrams... 5,6

More information

Reading assignment: All students should read the Appendix about using oscilloscopes.

Reading assignment: All students should read the Appendix about using oscilloscopes. 10. A ircuits* Objective: To learn how to analyze current and voltage relationships in alternating current (a.c.) circuits. You will use the method of phasors, or the vector addition of rotating vectors

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

2M IR Mini Dome Quick Installation Guide

2M IR Mini Dome Quick Installation Guide 2M IR Mini Dome 2M IR Mini Dome Quick Installation Guide Please follow the installation steps below to set up 2M IR Mini Dome IP Camera. Check the package contents against the list below. See P.1 Physical

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

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

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2005 Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth OBJECTIVES 1. To examine the magnetic field associated with a

More information

PUSH BUTTON START INSTALLATION MANUAL

PUSH BUTTON START INSTALLATION MANUAL PUSH BUTTON START INSTALLATION MANUAL ALTHOUGH THIS PRODUCT HAS BEEN THOROUGHLY TESTED KPIERSON TECHNOLOGIES ASSUMES NO RESPONSIBILITY FOR ANY DAMAGE THAT MAY RESULT BY THE INSTALLATION OF THIS PRODUCT.

More information

Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4.

Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4. Micrio WS1 Replacement Wind Speed Sensor and WC1 Replacement Wind Compass Sensor for Raymarine ST50 and ST60 Wind Instruments. Rev 4.1 The Micrio WS1 Wind Speed Sensor and WC1 Compass Sensor are direct

More information

The RIDZ 8x2 Audio Switcher

The RIDZ 8x2 Audio Switcher The RIDZ 8x2 Audio Switcher Engineering Manual Support Number 800-765-2930 International 712-852-2813 Table of Contents General Information for the RIDZ (8 x 2) Switcher..... 3 Input 9 on the RIDZ Switcher....6

More information

PTU Series Ultrahigh-Purity Pressure Transducers

PTU Series Ultrahigh-Purity Pressure Transducers PTU Series UltrahighPurity Pressure Transducers User s Manual The Swagelok PTU series pressure transducer provides electronic monitoring of system pressure for ultrahighpurity applications. The PTU series

More information

GLOLAB Two Wire Stepper Motor Positioner

GLOLAB Two Wire Stepper Motor Positioner Introduction A simple and inexpensive way to remotely rotate a display or object is with a positioner that uses a stepper motor to rotate it. The motor is driven by a circuit mounted near the motor and

More information

Lab Session 4 Introduction to the DC Motor

Lab Session 4 Introduction to the DC Motor Lab Session 4 Introduction to the DC Motor By: Professor Dan Block Control Systems Lab Mgr. University of Illinois Equipment Agilent 54600B 100 MHz Ditizing Oscilloscope (Replacement model: Agilent DSO5012A

More information

Series 6000 Torque measured metal bellow coupling

Series 6000 Torque measured metal bellow coupling Properties Free of float metal bellow coupling with integrated torque measurement Non-contact measurement system, high robustness High torsional stiffness Limited torque of inertia Performance Measurement

More information

NOTE: It is the responsibility of the installation organization to have only technically qualified personnel performing the installation.

NOTE: It is the responsibility of the installation organization to have only technically qualified personnel performing the installation. This quick start guide provides, basic installation information, drawings, first time power-on instructions, and short descriptions of key terms and concepts for installing the EntraGuard Platinum Telephone

More information

PID Control. Proportional Integral Derivative (PID) Control. Matrix Multimedia 2011 MX009 - PID Control. by Ben Rowland, April 2011

PID Control. Proportional Integral Derivative (PID) Control. Matrix Multimedia 2011 MX009 - PID Control. by Ben Rowland, April 2011 PID Control by Ben Rowland, April 2011 Abstract PID control is used extensively in industry to control machinery and maintain working environments etc. The fundamentals of PID control are fairly straightforward

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

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