Temperature Control for Hatching Chicks

Size: px
Start display at page:

Download "Temperature Control for Hatching Chicks"

Transcription

1 Temperature Control for Hatching Chicks Emant Pte Ltd LabVIEW is a registered trademark of National Instruments

2 Table of Contents Table of Contents...2 Objective...3 Prerequisite... 3 Part List...3 Problem...4 Solution...4 PID Control...5 Thermistor...5 Heater...6 Build the circuit...6 Front Panel...9 Block Diagram End of Exercise...11 Jul Emant Pte Ltd 2

3 Objective Learn Interfacing Electronics to the USB Data Acquisition Module. Control Lamp output using PWM (Pulse Width Modulation) Using PID VI Prerequisite Must be familiar with Data Acquisition and LabVIEW (preferably have completed the exercises in the Build the Light Intensity Logger instructional guide) Basic electronics (simple resistor and transistor circuits preferably have breadboarded simple circuits before) You should have the following folder PID Temperature Control. It can be copied from the CD or downloaded from Part List EMANT300 Low Cost USB DAQ module Protoboard or Solderless BreadBoard R1 1.5K ¼ W resistor RT1 Thermistor 10K NTC Q1 MPSA13 Darlington R2 22ohm 3W resistor R3 220 ¼ W resistor D1 LED LabVIEW Development System ver 7.0 or later Warning: The information described is for instructional use only and is not intended for industrial purposes. Jul Emant Pte Ltd 3

4 Problem Peter was asked by his science teacher to incubate a few chicks for a science project. After searching through some websites, he found the following information: Maintain the temperature in the C temperature range ( C, if possible). Overheating the embryo is much more damaging than is under heating it; overheating speeds up embryo development, lowers the percentage of hatchability, and causes abnormal embryos. Long periods of low temperatures will reduce the rate of embryo development. Excessively low temperatures will kill the embryos. Avoid temperatures outside the C. range. If the temperature remains beyond either extreme for several days, hatchability may be severely reduced. Can you help Peter? Solution One way to heat up the incubator would be to use a heating element. However, it is difficult to keep the temperature fairly constant using a lamp without some form of control. In our exercise, we will make use of a 22ohm 3W resistor to simulate the heating element. A basic control solution comprises the following We measure the temperature using a thermistor and heat up the incubator using a lamp. We will use the proportional (P), the integral (I), and the derivative (D) controls (PID Control). Jul Emant Pte Ltd 4

5 PID Control First, let's take a look at how the PID controller works in a closed-loop system using the schematic shown above. The variable (e) represents the tracking error, the difference between the desired input value (R) and the actual output (T). This error signal (e) is sent to the PID controller. The signal (u) output from the controller is equal to the proportional gain (K p ) times the magnitude of the error plus the integral gain (K i ) times the integral of the error plus the derivative gain (K d ) times the derivative of the error. K p = Proportional gain K i = Integral gain K d = Derivative gain This signal (u) will be sent to the lamp, and the new output (T) will be obtained. This new output (T) will be sent back to the sensor again to find the new error signal (e). The controller takes this new error signal and computes its derivative and its integral again. This process goes on and on. A proportional controller (K p ) will have the effect of reducing the rise time and will reduce, but never eliminate, the steady-state error. An integral control (K i ) will have the effect of eliminating the steady-state error, but it may make the transient response worse. A derivative control (K d ) will have the effect of increasing the stability of the system, reducing the overshoot, and improving the transient response. The PID.vi has already been created for you. Go to the PID Temperature Control folder and open PID.vi Study the VI if you wish. It is basically our LabVIEW implementation of the above formula. Thermistor Thermistors are widely used because of their sensitivity, small size, ruggedness and low cost. Thermistors have an electrical resistance that varies non-linearly with temperature. The Resistance -Temperature characteristics of most thermistors can be described by the Steinhart-Hart equation: 1/T = A + B*(Ln R T ) + C*(Ln R T ) 3 R T is the resistance of the Thermistor, T is the absolute temperature (in Kelvin) and A, B, and C are constants which can be determined by measuring three sets of resistance and temperature values during calibration. Most thermistors have a negative temperature coefficient (NTC), their resistance decreases with increasing temperature. Thermistors are specified according to its nominal Jul Emant Pte Ltd 5

6 resistance at 25 o C and commonly available thermistors range from 250 ohms to 100 kohms The thermistor that we are using has the following characteristics Nominal 25 o C: 10 kohms negative temperature coefficient (NTC) As the DAQ module Analog Input measures only voltage, we will need to provide a current source to convert the resistance to voltage. We will use the 8 bit current DAC (digital to analog converter) and set the current to 100uA. As the thermistor VI has been already developed and explained in the application note Measuring Temperature using Thermistor, we will use the sub VI Temp Control Thermistor.VI Heater We will be using a 22ohm 3W resistor to act as the heating element. To reduce the heat from the electronics, we will drive the resistor by PWM (Pulse Width Modulation) using a darlington NPN transistor. A PWM circuit works by making a square wave with a variable on-to-off ratio; the average on time may be varied from 0 to 100 percent. In this manner, a variable amount of power is transferred to the load. The main advantage of a PWM circuit over a power amplifier is the efficiency. At a 50% level, the PWM will use about 50% of full power, almost all of which is transferred to the load. The darlington transistor is used over a regular NPN transistor to reduce the current output requirement of the digital output. Build the circuit Construct the following circuit either using a solderless breadboard or a protoboard. Parts List R1 1.5K ¼ W resistor RT1 Thermistor 10K NTC Q1 MPSA13 Darlington R2 Heating Resistor 22 ohm 3W Optional Components R3 220 ¼ W resistor D1 LED Jul Emant Pte Ltd 6

7 Connection diagram Circuit constructed using ProtoBoard Jul Emant Pte Ltd 7

8 1. DO NOT CONNECT THE EMANT300 TO THE USB PORT YET. 2. Connect the components. Take note of the connections for the transistor. Connect the 22 ohm load resistor and thermistor in a way that they make good thermal contact. 3. Connect to the EMANT300. If you are using the Light Application Adaptor. PWM, IDAC, AIN3, VDD, GND are available as screw terminals. Note: If you are using the Light Application Adaptor, REFIN- is already connected to AGND. If you are connecting directly to the EMANT300, it is important that this connection is made, otherwise your analog input measurements will be wrong. This connection allows the internal reference to be connected correctly. Also in the Light Application Adaptor, AINCOM is already connected to AGND. 4. Connect the EMANT300 to the USB port. 5. Open Temperature Control for Hatching Chicks.vi from the PID Temperature Control folder. You will use this VI to verify that your circuit is built correctly. Jul Emant Pte Ltd 8

9 Front Panel Jul Emant Pte Ltd 9

10 Block Diagram 1. The VI first configures the EMANT300 to use the PWM output rather than the counter. 2. The sub VI Temp Control Thermistor.VI returns the temperature in Celsius as measured by the thermistor. 3. In normal operation, this measured temperature value is then compared with the set value to generate the PID output. 4. The PID output is between 0 to 100% and is used to drive the PWM output. 5. The VI also allows you to control the heater output manually by setting the manual override. Note that setting the PWM output to 0 turns off the heater and 100 turns on the heater completely. 6. One way to check the your circuit is to observe the temperature when you change the PWM output. The temperature should change. If you have connected the optional LED, the LED intensity should also change as you adjust the heater output. 7. As the load resistor is not designed to be a heating element, you may not be able to heat up the area around the thermistor to above 38 C (this will depend on the environment of the room you are working in). 8. Click the Run button to run the VI. 9. Switch the Manual Override down. This will set the heater output to manual override. When you change the manual heater setting dial, the gauge output and the LED Jul Emant Pte Ltd 10

11 intensity will change. If you observe the LED intensity changing,your circuit is connected OK. 10.Set the PWM to 0. Call the temperature measured T amb. Set the PWM to 100. Call the temperature measured T max. 11.Observe the temperature reading, is it giving the correct values? If yes, then you are ready to set the temperature and put the heater under PID Control. Set the control temperature between T amb and T max that you measured earlier. Use the P, I and D values as shown in the front panel. 12.You can experiment with different set points as well as different PID values. To understand how to set the PID values is outside the scope of this exercise but information on PID tuning is readily available from the web or textbooks on control. 13.Press to stop the VI. End of Exercise Jul Emant Pte Ltd 11

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

# 2. Selecting and Using Thermistors for Temperature Control

# 2. Selecting and Using Thermistors for Temperature Control # 2 Selecting and Using Thermistors for Temperature Control Selecting and Using Thermistors for Temperature Control Thermally sensitive resistors (thermistors) are used widely in laser diode and detector

More information

Environmental Monitoring with Sensors: Hands-on Exercise

Environmental Monitoring with Sensors: Hands-on Exercise Environmental Monitoring with Sensors: Hands-on Exercise Now that you ve seen a few types of sensors, along with some circuits that can be developed to condition their responses, let s spend a bit of time

More information

Using LabVIEW to Measure Temperature with a Thermistor

Using LabVIEW to Measure Temperature with a Thermistor Using LabVIEW to Measure Temperature with a Thermistor C. Briscoe and W. Dufee, University of Minnesota November, 2009 For resources, see the LabVIEW Resources page on the UMN ME2011 course site. Before

More information

Measuring Temperature withthermistors a Tutorial David Potter

Measuring Temperature withthermistors a Tutorial David Potter NATIONAL INSTRUMENTS The Software is the Instrument Application Note 065 Measuring Temperature withthermistors a Tutorial David Potter Introduction Thermistors are thermally sensitive resistors used in

More information

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

Microcontroller to Sensor Interfacing Techniques

Microcontroller to Sensor Interfacing Techniques to Sensor Interfacing Techniques Document Revision: 1.01 Date: 3rd February, 2006 16301 Blue Ridge Road, Missouri City, Texas 77489 Telephone: 1-713-283-9970 Fax: 1-281-416-2806 E-mail: info@bipom.com

More information

Using NTC Temperature Sensors Integrated into Power Modules

Using NTC Temperature Sensors Integrated into Power Modules Using NTC Temperature Sensors Integrated into Power Modules Pierre-Laurent Doumergue R&D Engineer Advanced Power Technology Europe Chemin de Magret 33700 Mérignac, France Introduction Most APTE (Advanced

More information

Thermistor. Created by Ladyada. Last updated on 2013-07-26 02:30:46 PM EDT

Thermistor. Created by Ladyada. Last updated on 2013-07-26 02:30:46 PM EDT Thermistor Created by Ladyada Last updated on 2013-07-26 02:30:46 PM EDT Guide Contents Guide Contents Overview Some Stats Testing a Thermistor Using a Thermistor Connecting to a Thermistor Analog Voltage

More information

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR

AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR AUTOMATIC NIGHT LAMP WITH MORNING ALARM USING MICROPROCESSOR INTRODUCTION This Project "Automatic Night Lamp with Morning Alarm" was developed using Microprocessor. It is the Heart of the system. The sensors

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

R&D Engineer. equipment. the power

R&D Engineer. equipment. the power Application Note APT0406 Using NTC Temperature sensor integrated into power module Pierre-Laurent Doumergue R&D Engineer Microsemi Power Module Products 26 rue de Campilleau 33 520 Bruges, France Introduction:

More information

APPLICATION NOTES DEFINITIONS NTC Thermistor 101

APPLICATION NOTES DEFINITIONS NTC Thermistor 101 APPLICATION NOTES DEFINITIONS NTC Thermistor 101 Thermistors Thermally sensitive resistors whose primary function is to exhibit a change in electrical resistance with a change in its body temperature.

More information

Unit 7: Electrical devices LO2: Understand electrical sensors and actuators Sensors temperature the thermistor

Unit 7: Electrical devices LO2: Understand electrical sensors and actuators Sensors temperature the thermistor Unit 7: Electrical devices LO2: Understand electrical sensors and actuators Sensors temperature the thermistor Instructions and answers for teachers These instructions should accompany the OCR resource

More information

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors.

LM 358 Op Amp. If you have small signals and need a more useful reading we could amplify it using the op amp, this is commonly used in sensors. LM 358 Op Amp S k i l l L e v e l : I n t e r m e d i a t e OVERVIEW The LM 358 is a duel single supply operational amplifier. As it is a single supply it eliminates the need for a duel power supply, thus

More information

ADC-20/ADC-24 Terminal Board. User Guide DO117-5

ADC-20/ADC-24 Terminal Board. User Guide DO117-5 ADC-20/ADC-24 Terminal Board User Guide DO117-5 Issues: 1) 8.11.05 Created by JB. 2) 13.12.05 p10: added 0V connection to thermocouple schematic. 3) 22.3.06 p11: removed C1. 4) 20.8.07 New logo. 5) 29.9.08

More information

Transistor Characteristics and Single Transistor Amplifier Sept. 8, 1997

Transistor Characteristics and Single Transistor Amplifier Sept. 8, 1997 Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 8, 1997 1 Purpose To measure and understand the common emitter transistor characteristic curves. To use the base current gain

More information

Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor. Teacher. 45 minutes

Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor. Teacher. 45 minutes Module 1, Lesson 3 Temperature vs. resistance characteristics of a thermistor 45 minutes Teacher Purpose of this lesson How thermistors are used to measure temperature. Using a multimeter to measure the

More information

Experiment 6 ~ Joule Heating of a Resistor

Experiment 6 ~ Joule Heating of a Resistor Experiment 6 ~ Joule Heating of a Resistor Introduction: The power P absorbed in an electrical resistor of resistance R, current I, and voltage V is given by P = I 2 R = V 2 /R = VI. Despite the fact that

More information

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation Program Definition: Write a program to control the speed of a dc motor using pulse width modulation. Discussion: The speed of a dc motor is

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

Transmission electronic controls outline. Inputs- processing- outputs

Transmission electronic controls outline. Inputs- processing- outputs Transmission electronic controls outline Inputs- processing- outputs Inputs provide the system the environmental conditions that are needed to operate or check the operation of the transmission. Inputs

More information

DW8501 High Power LED Driver

DW8501 High Power LED Driver Descriptions The is an instant On/Off LED driver for high power LED applications. At output stage, one regulated current port is designed to provide a uniform and constant current sink for driving LEDs

More information

Microcontroller-based experiments for a control systems course in electrical engineering technology

Microcontroller-based experiments for a control systems course in electrical engineering technology Microcontroller-based experiments for a control systems course in electrical engineering technology Albert Lozano-Nieto Penn State University, Wilkes-Barre Campus, Lehman, PA, USA E-mail: AXL17@psu.edu

More information

SCXI -1303 32-CHANNEL ISOTHERMAL TERMINAL BLOCK

SCXI -1303 32-CHANNEL ISOTHERMAL TERMINAL BLOCK INSTALLATION GUIDE SCXI -1303 32-CHANNEL ISOTHERMAL TERMINAL BLOCK Introduction This guide describes how to install and use the SCXI-1303 terminal block with SCXI-1102, SCXI-1102B, SCXI-1102C, and SCXI-1100

More information

Tristan s Guide to: Solving Parallel Circuits. Version: 1.0 Written in 2006. Written By: Tristan Miller Tristan@CatherineNorth.com

Tristan s Guide to: Solving Parallel Circuits. Version: 1.0 Written in 2006. Written By: Tristan Miller Tristan@CatherineNorth.com Tristan s Guide to: Solving Parallel Circuits. Version: 1.0 Written in 2006 Written By: Tristan Miller Tristan@CatherineNorth.com Parallel Circuits. Parallel Circuits are a little bit more complicated

More information

Experiment 4: Sensor Bridge Circuits (tbc 1/11/2007, revised 2/20/2007, 2/28/2007) I. Introduction. From Voltage Dividers to Wheatstone Bridges

Experiment 4: Sensor Bridge Circuits (tbc 1/11/2007, revised 2/20/2007, 2/28/2007) I. Introduction. From Voltage Dividers to Wheatstone Bridges Experiment 4: Sensor Bridge Circuits (tbc //2007, revised 2/20/2007, 2/28/2007) Objective: To implement Wheatstone bridge circuits for temperature measurements using thermistors. I. Introduction. From

More information

Electronics 5: Arduino, PWM, Mosfetts and Motors

Electronics 5: Arduino, PWM, Mosfetts and Motors BIOE 123 Module 6 Electronics 5: Arduino, PWM, Mosfetts and Motors Lecture (30 min) Date Learning Goals Learn about pulse width modulation (PWM) as a control technique Learn how to use a Mosfets to control

More information

Application Note, V1.0, Nov. 2009 AN2009-10. Using the NTC inside a power electronic module IMM INP LP

Application Note, V1.0, Nov. 2009 AN2009-10. Using the NTC inside a power electronic module IMM INP LP Application Note, V1.0, Nov. 2009 AN2009-10 Using the NTC inside a power electronic module C o n s i d e r a t i o n s r e g a r d i n g t e m p e r a t u r e m e a s u r e m e n t IMM INP LP Edition 2010-01-13

More information

Pulse Width Modulation

Pulse Width Modulation Pulse Width Modulation Pulse width modulation (PWM) is a powerful technique for controlling analog circuits with a microprocessor's digital outputs. PWM is employed in a wide variety of applications, ranging

More information

Chapter 6: From Digital-to-Analog and Back Again

Chapter 6: From Digital-to-Analog and Back Again Chapter 6: From Digital-to-Analog and Back Again Overview Often the information you want to capture in an experiment originates in the laboratory as an analog voltage or a current. Sometimes you want to

More information

USB-AD14f Data Acquisition System (USB)

USB-AD14f Data Acquisition System (USB) Data Acquisition System (USB) Measurement & Control. Super-Low Priced. Record and output signals with the USB-AD14f. The USB data acquisition system accomodated in a stable aluminum housing is ideal for

More information

TEA1024/ TEA1124. Zero Voltage Switch with Fixed Ramp. Description. Features. Block Diagram

TEA1024/ TEA1124. Zero Voltage Switch with Fixed Ramp. Description. Features. Block Diagram Zero Voltage Switch with Fixed Ramp TEA04/ TEA4 Description The monolithic integrated bipolar circuit, TEA04/ TEA4 is a zero voltage switch for triac control in domestic equipments. It offers not only

More information

A Digital Timer Implementation using 7 Segment Displays

A Digital Timer Implementation using 7 Segment Displays A Digital Timer Implementation using 7 Segment Displays Group Members: Tiffany Sham u2548168 Michael Couchman u4111670 Simon Oseineks u2566139 Caitlyn Young u4233209 Subject: ENGN3227 - Analogue Electronics

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

Welcome to this presentation on LED System Design, part of OSRAM Opto Semiconductors LED 101 series.

Welcome to this presentation on LED System Design, part of OSRAM Opto Semiconductors LED 101 series. Welcome to this presentation on LED System Design, part of OSRAM Opto Semiconductors LED 101 series. 1 To discuss the design challenges of LED systems we look at the individual system components. A basic

More information

Basic RTD Measurements. Basics of Resistance Temperature Detectors

Basic RTD Measurements. Basics of Resistance Temperature Detectors Basic RTD Measurements Basics of Resistance Temperature Detectors Platinum RTD resistances range from about 10 O for a birdcage configuration to 10k O for a film type, but the most common is 100 O at 0

More information

Thermistor Basics. Application Note AN-TC11 Rev. A. May, 2013 Page 1 WHAT IS A THERMISTOR?

Thermistor Basics. Application Note AN-TC11 Rev. A. May, 2013 Page 1 WHAT IS A THERMISTOR? Thermistor Basics May, 2013 Page 1 WHAT IS A THERMISTOR? A thermistor is a resistance thermometer, or a resistor whose resistance is dependent on erature. The term is a combination of thermal and resistor.

More information

Application Note 142 August 2013. New Linear Regulators Solve Old Problems AN142-1

Application Note 142 August 2013. New Linear Regulators Solve Old Problems AN142-1 August 2013 New Linear Regulators Solve Old Problems Bob Dobkin, Vice President, Engineering and CTO, Linear Technology Corp. Regulators regulate but are capable of doing much more. The architecture of

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

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

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

PC BASED PID TEMPERATURE CONTROLLER

PC BASED PID TEMPERATURE CONTROLLER PC BASED PID TEMPERATURE CONTROLLER R. Nisha * and K.N. Madhusoodanan Dept. of Instrumentation, Cochin University of Science and Technology, Cochin 22, India ABSTRACT: A simple and versatile PC based Programmable

More information

# 4. Thermistor Calibration and the Steinhart-Hart Equation

# 4. Thermistor Calibration and the Steinhart-Hart Equation # 4 Thermistor Calibration and the Steinhart-Hart Equation Thermistor Calibration and the Steinhart-Hart Equation Thermistors provide an inexpensive and accurate temperature monitor for use with laser

More information

Brilliant Mix System Design. Abstract

Brilliant Mix System Design. Abstract Brilliant Mix System Design Abstract Brilliant Mix refers to a light system containing a mix of high efficacious EQ white LEDs with amber red LEDs. Brilliant Mix allows high efficacious white light sources

More information

However, industrial applications may utilize a relay, which short-circuits the ICL path after the inrush sequence.

However, industrial applications may utilize a relay, which short-circuits the ICL path after the inrush sequence. Application note for Inrush Current Limiters (ICL) Turning on electrical devices generally cause high inrush currents which can damage electronic components and cause interruption of the line voltage if

More information

University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits

University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits University of California, Berkeley Department of Electrical Engineering and Computer Sciences EE 105: Microelectronic Devices and Circuits LTSpice LTSpice is a free circuit simulator based on Berkeley

More information

Using the NI 17xx Smart Camera Direct Drive Lighting Controller

Using the NI 17xx Smart Camera Direct Drive Lighting Controller Using the NI 17xx Smart Camera Direct Drive Lighting Controller Overview The use of proper lighting is often overlooked when designing a machine vision application. More robust and accurate inspections

More information

Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial

Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial Cornerstone Electronics Technology and Robotics I Week 15 Voltage Comparators Tutorial Administration: o Prayer Robot Building for Beginners, Chapter 15, Voltage Comparators: o Review of Sandwich s Circuit:

More information

Laboratory 4: Feedback and Compensation

Laboratory 4: Feedback and Compensation Laboratory 4: Feedback and Compensation To be performed during Week 9 (Oct. 20-24) and Week 10 (Oct. 27-31) Due Week 11 (Nov. 3-7) 1 Pre-Lab This Pre-Lab should be completed before attending your regular

More information

Page 2 5300 Series TECSource User s Manual

Page 2 5300 Series TECSource User s Manual Page 2 5300 Series TECSource User s Manual Table of Contents Introduction... 3 Safety Terms and Symbols... 4 Quick Start... 6 Installation... 7 Front Panel Operation... 10 Settings and Menus... 13 Rear

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

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A

Technical Manual. FAN COIL CONTROLLER COOLING or HEATING ANALOG or PWM Art. 119914 631001A COOLING or HEATING ANALOG or PWM Art. 119914 631001A TOTAL AUTOMATION GENERAL TRADING CO. LLC SUITE NO.506, LE SOLARIUM OFFICE TOWER, SILICON OASIS, DUBAI. UAE. Tel. +971 4 392 6860, Fax. +971 4 392 6850

More information

DS2438EVKIT+ Smart Battery Monitor Evaluation Kit

DS2438EVKIT+ Smart Battery Monitor Evaluation Kit 19-4829; Rev 1; 8/09 www.maxim-ic.com DS2438EVKIT+ Smart Battery Monitor Evaluation Kit FEATURES Demonstrates the Capabilities of the DS2438 Smart Battery Monitor, Including: Temperature Measurement Voltage

More information

XC series BD board for special functions. Operate Manual

XC series BD board for special functions. Operate Manual 68117 XC series BD board for special functions Operate Manual Catalog 一 CONFIGURE METHOD OF BD BOARD...3 二 ANALOG INPUT AND OUTPUT SAMPLING BOARD XC-2AD2DA-BD...4 2 一 Configure method of BD board Configure

More information

Design of a TL431-Based Controller for a Flyback Converter

Design of a TL431-Based Controller for a Flyback Converter Design of a TL431-Based Controller for a Flyback Converter Dr. John Schönberger Plexim GmbH Technoparkstrasse 1 8005 Zürich 1 Introduction The TL431 is a reference voltage source that is commonly used

More information

01-3 0000-00 6810-20 AIR CONDITIONING SYSTEM 1. FFH SPECIFICATION AIR CONDITIONING SYSTEM RODIUS 2004.09

01-3 0000-00 6810-20 AIR CONDITIONING SYSTEM 1. FFH SPECIFICATION AIR CONDITIONING SYSTEM RODIUS 2004.09 0000-00 01-3 6810-20 1. FFH SPECIFICATION 01-4 0000-00 2. SYSTEM LAYOUT AND COMPONENTS 0000-00 01-5 01-6 0000-00 3. FFH GENERAL INFORMATION The system is to increase the coolant temperature quickly by

More information

Introduction to Electronic Signals

Introduction to Electronic Signals Introduction to Electronic Signals Oscilloscope An oscilloscope displays voltage changes over time. Use an oscilloscope to view analog and digital signals when required during circuit diagnosis. Fig. 6-01

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

Line Reactors and AC Drives

Line Reactors and AC Drives Line Reactors and AC Drives Rockwell Automation Mequon Wisconsin Quite often, line and load reactors are installed on AC drives without a solid understanding of why or what the positive and negative consequences

More information

Quanser NI-ELVIS Trainer (QNET) Series: QNET HVAC. Heating, Ventilation, and Air Conditioning (HVAC) User Manual. User Manual

Quanser NI-ELVIS Trainer (QNET) Series: QNET HVAC. Heating, Ventilation, and Air Conditioning (HVAC) User Manual. User Manual Quanser NI-ELVIS Trainer (QNET) Series: QNET HVAC Heating, Ventilation, and Air Conditioning (HVAC) User Manual User Manual Table of Contents 1. Introduction...1 2. Requirements...1 3. References...1 4.

More information

Series and Parallel Circuits

Series and Parallel Circuits Series and Parallel Circuits Components in a circuit can be connected in series or parallel. A series arrangement of components is where they are inline with each other, i.e. connected end-to-end. A parallel

More information

Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 13, 2006

Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 13, 2006 Physics 623 Transistor Characteristics and Single Transistor Amplifier Sept. 13, 2006 1 Purpose To measure and understand the common emitter transistor characteristic curves. To use the base current gain

More information

High Power LED Driver Series User s Guide

High Power LED Driver Series User s Guide High Power LED Driver Series User s Guide 2004-2010 Sure Electronics Inc. LE-LL15113-LE-LL14113_Ver1.0 Table of Contents Chapter 1. Overview...1 1.1 Overview... 1 1.2 Features... 2 1.3 Applications...

More information

PROCEDURE: 1. Measure and record the actual values of the four resistors listed in Table 10-1.

PROCEDURE: 1. Measure and record the actual values of the four resistors listed in Table 10-1. The answer to two questions will help you identify a series or parallel connection: (1) Will the identical current go through both components? f the answer is yes, the components are in series. (2) Are

More information

Advanced LED Controller (LED Chaser)

Advanced LED Controller (LED Chaser) Advanced LED Controller (LED Chaser) Introduction. Advanced LED controller (also known as LED Chaser) is microcontroller based circuit designed to produce various visual LED light effects by controlling

More information

TECHNICAL SERVICE DEPARTMENT Technical Service Bulletin 1-800-432-8373. Tankless Electric (RTE) Troubleshooting

TECHNICAL SERVICE DEPARTMENT Technical Service Bulletin 1-800-432-8373. Tankless Electric (RTE) Troubleshooting Sequence of Operations 1 Power supply and field wiring block 2 Energy Cut Off (ECO) 3 Water flow plunger and cold inlet 4 Magnetic flow switch 5 Water temperature thermistor 6 Control panel and circuit

More information

Conversion Between Analog and Digital Signals

Conversion Between Analog and Digital Signals ELET 3156 DL - Laboratory #6 Conversion Between Analog and Digital Signals There is no pre-lab work required for this experiment. However, be sure to read through the assignment completely prior to starting

More information

R EXT THERMISTOR. Maxim Integrated Products 1

R EXT THERMISTOR. Maxim Integrated Products 1 19-2219; Rev 0; 2/02 Thermistor-to-Digital Converter General Description The converts an external thermistor s temperature-dependent resistance directly into digital form. The thermistor and an external

More information

Electronics. Discrete assembly of an operational amplifier as a transistor circuit. LD Physics Leaflets P4.2.1.1

Electronics. Discrete assembly of an operational amplifier as a transistor circuit. LD Physics Leaflets P4.2.1.1 Electronics Operational Amplifier Internal design of an operational amplifier LD Physics Leaflets Discrete assembly of an operational amplifier as a transistor circuit P4.2.1.1 Objects of the experiment

More information

More Op-Amp Circuits; Temperature Sensing

More Op-Amp Circuits; Temperature Sensing ECE 2A Lab #5 Lab 5 More OpAmp Circuits; Temperature Sensing Overview In this lab we will continue our exploration of opamps but this time in the context of a specific application: temperature sensing.

More information

USB-AD16f Data acquisition system (USB)

USB-AD16f Data acquisition system (USB) Data acquisition system (USB) Measurement & Control. Extremely powerful. Precisely record and output signals with the USB-AD16f: The high-performance USB data acquisition system accomodated in a stable

More information

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER

LABORATORY 2 THE DIFFERENTIAL AMPLIFIER LABORATORY 2 THE DIFFERENTIAL AMPLIFIER OBJECTIVES 1. To understand how to amplify weak (small) signals in the presence of noise. 1. To understand how a differential amplifier rejects noise and common

More information

LM134-LM234-LM334. Three terminal adjustable current sources. Features. Description

LM134-LM234-LM334. Three terminal adjustable current sources. Features. Description Three terminal adjustable current sources Features Operates from 1V to 40V 0.02%/V current regulation Programmable from 1µA to 10mA ±3% initial accuracy Description The LM134/LM234/LM334 are 3-terminal

More information

DELLORTO. Instructions Manual. Deuss Service Tool For ECS System ECU. Dell Orto Deuss Service Tool instruction manual Page 1 of 11.

DELLORTO. Instructions Manual. Deuss Service Tool For ECS System ECU. Dell Orto Deuss Service Tool instruction manual Page 1 of 11. DELLORTO Deuss Service Tool For ECS System ECU Instructions Manual Dell Orto Deuss Service Tool instruction manual Page 1 of 11 Revision History Level Date Author Change Description and section(s) affected

More information

Points Position Indicator (PPI1) for Points Motors with Common Ground

Points Position Indicator (PPI1) for Points Motors with Common Ground Points Position Indicator (PPI1) for Points Motors with Common Ground Monitors Points Action and Operates Leds on a Control Panel Monitors the brief positive operating voltage across points motors when

More information

A Practical Guide to Free Energy Devices

A Practical Guide to Free Energy Devices A Practical Guide to Free Energy Devices Device Patent No 29: Last updated: 7th October 2008 Author: Patrick J. Kelly This is a slightly reworded copy of this patent application which shows a method of

More information

Power Supplies. 1.0 Power Supply Basics. www.learnabout-electronics.org. Module

Power Supplies. 1.0 Power Supply Basics. www.learnabout-electronics.org. Module Module 1 www.learnabout-electronics.org Power Supplies 1.0 Power Supply Basics What you ll learn in Module 1 Section 1.0 Power Supply Basics. Basic functions of a power supply. Safety aspects of working

More information

DCP Fan Controller. Version 01/2009. The engineer s choice

DCP Fan Controller. Version 01/2009. The engineer s choice Version 01/2009 The engineer s choice Index Page 1. Introduction... 3 2. Technical specification... 4 3. Connection diagrams... 9 4. Configuration... 10 5. Compatible ebm-papst Fan List... 11 2 1. Introduction

More information

13.10: How Series and Parallel Circuits Differ pg. 571

13.10: How Series and Parallel Circuits Differ pg. 571 13.10: How Series and Parallel Circuits Differ pg. 571 Key Concepts: 5. Connecting loads in series and parallel affects the current, potential difference, and total resistance. - Using your knowledge of

More information

Accurate Measurement of the Mains Electricity Frequency

Accurate Measurement of the Mains Electricity Frequency Accurate Measurement of the Mains Electricity Frequency Dogan Ibrahim Near East University, Faculty of Engineering, Lefkosa, TRNC dogan@neu.edu.tr Abstract The frequency of the mains electricity supply

More information

TYPICAL APPLICATION CIRCUIT. ORDER INFORMATION SOP-EP 8 pin A703EFT (Lead Free) A703EGT (Green)

TYPICAL APPLICATION CIRCUIT. ORDER INFORMATION SOP-EP 8 pin A703EFT (Lead Free) A703EGT (Green) www.addmtek.com 2 CHANNELS 150mA HIGH VOLTAGE ADJUSTABLE CURRENT REGULATOR DESCRIPTION A703 is a high voltage, adjustable constant current driver for LED applications. Two regulated current ports are designed

More information

Tire pressure monitoring

Tire pressure monitoring Application Note AN601 Tire pressure monitoring 1 Purpose This document is intended to give hints on how to use the Intersema pressure sensors in a low cost tire pressure monitoring system (TPMS). 2 Introduction

More information

Measuring, Controlling and Regulating with labworldsoft

Measuring, Controlling and Regulating with labworldsoft Kai-Oliver Linde IKA-Werke Staufen Neumagenstraße 27 79219 Staufen Measuring, Controlling and Regulating with labworldsoft Rapid and easy networking of lab devices from different manufacturers The user

More information

ILX Lightwave Corporation www.ilxlightwave.com

ILX Lightwave Corporation www.ilxlightwave.com # 14 Optimizing TEC Current Optimizing TEC Drive Current This Application Note discusses methods for optimizing the TEC drive current for optimum operation in heating and cooling applications. BACKGROUND

More information

Current Digital to Analog Converter

Current Digital to Analog Converter Current Digital to Analog Converter AN0064 - Application Note Introduction This application note describes how to use the EFM32 Current Digital to Analog Converter (IDAC), a peripheral that can source

More information

Section 6. Introduction to Automatic A/C. Automatic Temperature Control

Section 6. Introduction to Automatic A/C. Automatic Temperature Control Automatic Control Introduction to Automatic A/C The heating, ventilation and air conditioning (HVAC) system in a house contains a wall-mounted thermostat to control outlet temperatures, distribution and

More information

FEATURES BODY DIA. MAX. Type M AWG 30: 0.0100 [0.254] Type C AWG 28: 0.0126 [0.320] Type T AWG 30: 0.0100 [0.254]

FEATURES BODY DIA. MAX. Type M AWG 30: 0.0100 [0.254] Type C AWG 28: 0.0126 [0.320] Type T AWG 30: 0.0100 [0.254] M, C, T NTC Thermistors, Coated FEATURES Small size - conformally coated. Wide resistance range. Available in 11 different R-T curves. DESCRIPTION Models M, C, and T are conformally coated, leaded thermistors

More information

Bend Sensor USB User Guide

Bend Sensor USB User Guide Bend Sensor USB User Guide Copyright 2015Flexpoint Sensor Systems, Inc. Page 1 of 7 SEG040404B Contents Page Introduction... 3 Kit Contents... 3 Installation instructions... 4 FlexpointBSV software...

More information

R22. K Control. Indoor Unit. Nomenclature. Compatibility PL H 3 G K H B. Unit style Heat Pump Horse Power

R22. K Control. Indoor Unit. Nomenclature. Compatibility PL H 3 G K H B. Unit style Heat Pump Horse Power R22. K Control. Indoor Unit. Nomenclature. PL H 3 G K H B Compatibility Unit style Heat Pump Horse Power Control Boost Heaters R22. K Control. Outdoor Unit. Nomenclature. PU H 3 Y K A Compatibility Outdoor

More information

Switch Mode Power Supply Topologies

Switch Mode Power Supply Topologies Switch Mode Power Supply Topologies The Buck Converter 2008 Microchip Technology Incorporated. All Rights Reserved. WebSeminar Title Slide 1 Welcome to this Web seminar on Switch Mode Power Supply Topologies.

More information

GT Sensors Precision Gear Tooth and Encoder Sensors

GT Sensors Precision Gear Tooth and Encoder Sensors GT Sensors Precision Gear Tooth and Encoder Sensors NVE s GT Sensor products are based on a Low Hysteresis GMR sensor material and are designed for use in industrial speed applications where magnetic detection

More information

RPLIDAR. Low Cost 360 degree 2D Laser Scanner (LIDAR) System Development Kit User Manual. 2014-2 Rev.1

RPLIDAR. Low Cost 360 degree 2D Laser Scanner (LIDAR) System Development Kit User Manual. 2014-2 Rev.1 RPLIDAR Low Cost 360 degree 2D Laser Scanner (LIDAR) Development Kit User Manual 2014-2 Rev.1 Team Contents: 1. OVERVIEW... 2 ITEMS IN DEVELOPMENT KIT... 2 RPLIDAR... 2 USB ADAPTER... 3 2. CONNECTION AND

More information

APPLICATION NOTES. Bimetal Disc Thermostat. Operating Principle

APPLICATION NOTES. Bimetal Disc Thermostat. Operating Principle Bimetal Disc Thermostat APPLICATION NOTES Operating Principle Bimetal disc thermostats are thermally actuated switches. When the bimetal disc is exposed to its predetermined calibration temperature, it

More information

If an occupancy of room is zero, i.e. room is empty then light source will be switched off automatically

If an occupancy of room is zero, i.e. room is empty then light source will be switched off automatically EE389 Electronic Design Lab Project Report, EE Dept, IIT Bombay, Nov 2009 Fully-automated control of lighting and security system of a Room Group No: D2 Bharat Bhushan (06d04026) Sravan

More information

MP-4000 Alarm List (Software version 2.4.3 or later)

MP-4000 Alarm List (Software version 2.4.3 or later) Service Bulletin SUBJECT: MP4000 Alarm s BULLETIN: C 100 DATE: June 19, 2013 ALARM LIST Where it is possible the alarm number is kept the same as for MP-3000. MP-3000 holds alarm number from 0 to 127.

More information

THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES

THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES TSI and TSI logo are registered trademarks of TSI Incorporated. SmartTune is a trademark of TSI Incorporated. THERMAL ANEMOMETRY ELECTRONICS, SOFTWARE AND ACCESSORIES IFA 300 Constant Temperature Anemometry

More information

UDG1000 Hach PCX2200 Serial Port Input Driver configuration

UDG1000 Hach PCX2200 Serial Port Input Driver configuration UDG1000 Hach PCX2200 Serial Port Input Driver configuration Introduction: The UDG1000 Hach PCX2200 Serial Port Input Driver is used to collect data from one or more daisy-chained Hach 2200 PCX Particle

More information