The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003

Size: px
Start display at page:

Download "The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003"

Transcription

1 The Temperature Controlled Window Matt Aldeman and Chase Brill ME 224 June 2003

2 Design Objectives The purpose of our device is to control a window based on the temperature of a specified area. The goal is to allow a user to input the temperature at which they would like the window to open and close. The window will then open once the temperature of the area reaches this specified temperature. Then, as the area cools, the window will close once this specified temperature is again reached. To achieve this goal, we will use a thermistor, an operational amplifier, two relays, a DC motor, five volt, twelve volt, and negative twelve volt power sources, a digital acquisition card, and a Labview program. Circuitry The first step we took was to simplify the project. We wanted to simulate the actual opening and closing of a window, but we did not have access to a portable window such that we could bring it into class to demonstrate, and the equipment required for such a task would be rather bulky and expensive. To simplify, we decided to scale everything down. Our motor is a small high-rpm DC motor with a set of reduction gears. This motor is suitable to attach a spool to the output shaft and wrap string around the spool. We could then attach a small weight weighing a few ounces to simulate the window. This project assumes that the window is on a frictionless windowsill such that the window will return to the closed position when no force is applied to keep it open, i.e. closing the window does not require a downward force; it must simply be let go. To obtain the ambient temperature, a thermistor is used. Five volts is sent through the thermistor, and the varying voltage from the thermistor is then sent through a difference operational amplifier with a DC offset to obtain a range large enough to work with in LabView (see section below on our operational amplifier). After the signal is amplified to a range of approximately -5 to 5 volts, which is sufficient for our purposes, the signal is input into LabView through the ADC card. The signal is input into LabView (see section below on our LabView program) and LabView converts the voltage into a temperature using calibration data that we obtained. The purpose of the LabView program is to send a current to one of our DAC s if the temperature is above the pre-set activation temperature and the window is currently closed. Conversely, the program should send a current to our second DAC if the temperature is below the activation temperature and the window is currently open. The current from the DAC s then passes through a set of relay switches. The DAC card does not supply an adequate current to power our motor, so we had to use two relay switches. When current passes through the relay, it triggers a switch completing the circuit between the connected power source (either +12V or -12V) and our motor. The LabView program only sends current through the DAC for a time period sufficient to close or open the window. This time period is easily adjustable in LabView so it could be used for a variety of windows. A circuitry diagram is included with this report in Appendix A.

3 The Operational Amplifier The operational amplifier is an integrated circuit used for signal conditioning. It is a high performance linear amplifier. We used a difference operational amplifier to amplify the voltage coming out of the thermistor. Originally, this voltage ranged from about 4.51 to about 4.81 volts for a temperature range from 25 ûc to 50 ûc (77 ûf to 122 ûf). A chart containing voltage vs. temperature follows: Temperature [ C] Voltage [V] The governing equation for a difference operational amplifier is: V out =R 2 /R 1 (V 1 -V 2 ) In this equation, V 2 is the DC offset, which is equal to V ave. V ave =(V max +V min )/2=( )/2=4.66 R 2 /R 1 is the gain, n, of the operational amplifier. n=10v/ V V=(V max -V min )/2=( )/2=.14 Thus, the gain, n, is equal to 71 and R 2 must be 71 times R 1. To ensure that we do not get a voltage above 10 volts or below -10 volts, we will use a slightly lower gain in our circuit. Thus, we will not use quite the entire range of -10 to 10 volts through which the operational amplifier can work. We choose our R2 resistance to be 56KΩ and our R1 resistance to be 1KΩ. With these values in place, we have created an operational amplifier that will amplify the range of voltages from the thermistor from the previous values ranging from 4.51 to 4.81 volts to the amplified values ranging from -5 to 5 volts.

4 The Temperature Voltage Formula In order to convert from a voltage to a temperature in Labview to allow the user to input a desired transition temperature, is is necessary to develop an equation for temperature as a function of voltage. To do this, we took a series of reading for various temperatures and recorded it in a graph. Then, we found the equation for the regression line through these points. The data, graph and equation follow: Voltage [V] Temperature [C] Temperature [C] Voltage vs. Temperature y = x Voltage [V] This is the equation used in the formula node in the Labview program discussed in detail in the next section.

5 The Labview Program The Labview program used for our design is attached. Follow along with it as I explain the steps used in our program: 1) The user inputs the desired window transition temperature on the front panel and indicates whether the window is currently up or currently down. If the window is up, the light should be on and if the window is down it should be off. This boolean actually controls a local variable in the program. 2) In the first frame of the large sequence structure, the voltage from the operational amplifier is input to the program with an analog-to-digital controller. This voltage is converted to a temperature using a pre-determined formula (explained above) in a formula node. 3) This temperature is compared to the desired transition temperature. Then, one of three options occurs: (a) If the window is closed and the current thermistor temperature is greater than the desired transition temperature, then the bottom case structure is run. Inside this case structure is a sequence structure that first uses a digital-to-analog controller to supply 5 volts to a relay and changes the value of the local variable to true, indicating that the window is now up. Then it waits for two seconds, and finally, uses another digital-to-analog controller to stop the voltage to the relay. (b) If the window is open and the current thermistor temperature is less than the desired transition temperature, then the top case structure is run. Inside this case structure is a sequence structure that first uses a digital-toanalog controller to supply 5 volts to the other relay and changes the value of the local variable to false, indicating that the window is down. Then it waits for two seconds, and finally, uses another digital-to-analog controller to stop the voltage to this relay. (c) If neither of the above conditions is true, no action is taken. 4) After one of these three actions is taken, the second frame of the sequence structure runs, which contains a wait command that is set to one second, causing the voltage from the operational amplifier to be taken once every second.

6 Relay Switches The relay switches are used to supply power to the DC motor used to operate the window. Because our motor needs to operate in the forward as well as reverse directions ( opening and closing the window), the polarity of the power source needs to be switched whenever we need to switch the operation of the motor. To accomplish this, two relay switches are used to supply power. A diagram of our relay setup can be found in Appendix A, and a diagram of the operation of a relay can be found in Appendix B. A relay operates using a coil and an actuator arm. When a current is passed through the coil, a magnetic field is developed, which pushes the actuator arm to complete a circuit. For our setup, we needed both of our relays to be in the normally open mode. The relays should close the circuit between the power source and the motor only when current is being sent from the DAC. Our LabView program ensures that only one relay switch will be receiving current from the DAC at any given time: both relay switches will never be receiving current at the same time. When current is being sent from our first DAC to the first relay switch, the relay connects the positive power source to the positive terminal of the motor and the negative power source to the negative motor terminal. However, when the second DAC is turned on and the second relay switch is active, the situation is reversed. The negative power source is connected to the positive motor terminal, and the positive power source is connected to the negative motor terminal. In this way we were able to control the motor in both forward and reverse directions.

ET 438B Sequential Digital Control and Data Acquisition Laboratory 4 Analog Measurement and Digital Control Integration Using LabVIEW

ET 438B Sequential Digital Control and Data Acquisition Laboratory 4 Analog Measurement and Digital Control Integration Using LabVIEW ET 438B Sequential Digital Control and Data Acquisition Laboratory 4 Analog Measurement and Digital Control Integration Using LabVIEW Laboratory Learning Objectives 1. Identify the data acquisition card

More information

Section 2 Lab Experiments

Section 2 Lab Experiments Section 2 Lab Experiments Section Overview This set of labs is provided as a means of learning and applying mechanical engineering concepts as taught in the mechanical engineering orientation course at

More information

F4 16DA 2 16-Channel Analog Voltage Output

F4 16DA 2 16-Channel Analog Voltage Output F46DA2 6-Channel Analog Voltage In This Chapter.... Module Specifications Setting Module Jumpers Connecting the Field Wiring Module Operation Writing the Control Program 22 F46DA2 6-Ch. Analog Voltage

More information

University of Portland EE 271 Electrical Circuits Laboratory. Experiment: Digital-to-Analog Converter

University of Portland EE 271 Electrical Circuits Laboratory. Experiment: Digital-to-Analog Converter University of Portland EE 271 Electrical Circuits Laboratory Experiment: Digital-to-Analog Converter I. Objective The objective of this experiment is to build and test a circuit that can convert a binary

More information

Massachusetts Institute of Technology. Lab 2: Characterization of Lab System Components

Massachusetts Institute of Technology. Lab 2: Characterization of Lab System Components OBJECTIVES Massachusetts Institute of Technology Department of Mechanical Engineering 2.004 System Dynamics and Control Fall Term 2007 Lab 2: Characterization of Lab System Components In the future lab

More information

MSK4310 Demonstration

MSK4310 Demonstration MSK4310 Demonstration The MSK4310 3 Phase DC Brushless Speed Controller hybrid is a complete closed loop velocity mode controller for driving a brushless motor. It requires no external velocity feedback

More information

2 Thermistor + Op-Amp + Relay = Sensor + Actuator

2 Thermistor + Op-Amp + Relay = Sensor + Actuator Physics 221 - Electronics Temple University, Fall 2005-6 C. J. Martoff, Instructor On/Off Temperature Control; Controlling Wall Current with an Op-Amp 1 Objectives Introduce the method of closed loop control

More information

F4 08DA 2 8-Channel Analog Voltage Output

F4 08DA 2 8-Channel Analog Voltage Output 8-Channel Analog Voltage In This Chapter.... Module Specifications Setting the Module Jumper Connecting the Field Wiring Module Operation Writing the Control Program 92 8-Ch. Analog Voltage Module Specifications

More information

Linear vs. PWM/ Digital Drives

Linear vs. PWM/ Digital Drives APPLICATION NOTE 125 Linear vs. PWM/ Digital Drives INTRODUCTION Selecting the correct drive technology can be a confusing process. Understanding the difference between linear (Class AB) type drives and

More information

GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS

GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS GENERATION OF SIGNALS USING LABVIEW FOR MAGNETIC COILS WITH POWER AMPLIFIERS Ashmi G V 1, Meena M S 2 1 ER&DCI-IT, Centre for Development of Advanced Computing, Thiruvananthapuram(India) 2 LAMP Group,

More information

Tel: Fax:

Tel: Fax: B Tel: 78.39.4700 Fax: 78.46.33 SPECIFICATIONS (T A = +5 C, V+ = +5 V, V = V or 5 V, all voltages measured with respect to digital common, unless otherwise noted) AD57J AD57K AD57S Model Min Typ Max Min

More information

ENGR 1 Presentation. Thomas Matthews

ENGR 1 Presentation. Thomas Matthews ENGR 1 Presentation Thomas Matthews My Background Sacramento State UC Davis San Jose State 1995-1998 Sacramento State 1999-present EEE Chair, 2013-2018 Advising Fellow 2018-2019 Motivation Say something

More information

DC motor control using arduino

DC motor control using arduino DC motor control using arduino 1) Introduction: First we need to differentiate between DC motor and DC generator and where we can use it in this experiment. What is the main different between the DC-motor,

More information

King Fahd University of Petroleum and Minerals. Department of Electrical Engineering

King Fahd University of Petroleum and Minerals. Department of Electrical Engineering King Fahd University of Petroleum and Minerals Department of Electrical Engineering AN OPEN LOOP RATIONAL SPEED CONTROL OF COOLING FAN UNDER VARYING TEMPERATURE Done By: Al-Hajjaj, Muhammad Supervised

More information

ENGS 26 CONTROL THEORY. Thermal Control System Laboratory

ENGS 26 CONTROL THEORY. Thermal Control System Laboratory ENGS 26 CONTROL THEORY Thermal Control System Laboratory Equipment Thayer school thermal control experiment board DT2801 Data Acquisition board 2-4 BNC-banana connectors 3 Banana-Banana connectors +15

More information

Servo Closed Loop Speed Control Transient Characteristics and Disturbances

Servo Closed Loop Speed Control Transient Characteristics and Disturbances Exercise 5 Servo Closed Loop Speed Control Transient Characteristics and Disturbances EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the transient behavior of a servo

More information

University of Tennessee at. Chattanooga

University of Tennessee at. Chattanooga University of Tennessee at Chattanooga Step Response Engineering 329 By Gold Team: Jason Price Jered Swartz Simon Ionashku 2-3- 2 INTRODUCTION: The purpose of the experiments was to investigate and understand

More information

sin(wt) y(t) Exciter Vibrating armature ENME599 1

sin(wt) y(t) Exciter Vibrating armature ENME599 1 ENME599 1 LAB #3: Kinematic Excitation (Forced Vibration) of a SDOF system Students must read the laboratory instruction manual prior to the lab session. The lab report must be submitted in the beginning

More information

*X036/12/01* X036/12/01 TECHNOLOGICAL STUDIES HIGHER NATIONAL QUALIFICATIONS 2013 TUESDAY, 21 MAY 1.00 PM 4.00 PM

*X036/12/01* X036/12/01 TECHNOLOGICAL STUDIES HIGHER NATIONAL QUALIFICATIONS 2013 TUESDAY, 21 MAY 1.00 PM 4.00 PM X036/12/01 ATIOAL QUALIFICATIOS 2013 TUESDA, 21 MA 1.00 PM 4.00 PM TECHOLOGICAL STUDIES HIGHER 200 marks are allocated to this paper. Answer all questions in Section A (120 marks). Answer two questions

More information

EE445L Spring 2018 Final EID: Page 1 of 7

EE445L Spring 2018 Final EID: Page 1 of 7 EE445L Spring 2018 Final EID: Page 1 of 7 Jonathan W. Valvano First: Last: This is the closed book section. Calculator is allowed (no laptops, phones, devices with wireless communication). You must put

More information

AD557 SPECIFICATIONS. T A = 25 C, V CC = 5 V unless otherwise noted) REV. B

AD557 SPECIFICATIONS. T A = 25 C, V CC = 5 V unless otherwise noted) REV. B SPECIFICATIONS Model Min Typ Max Unit RESOLUTION 8 Bits RELATIVE ACCURACY 0 C to 70 C ± 1/2 1 LSB Ranges 0 to 2.56 V Current Source 5 ma Sink Internal Passive Pull-Down to Ground 2 SETTLING TIME 3 0.8

More information

EKT 314/4 LABORATORIES SHEET

EKT 314/4 LABORATORIES SHEET EKT 314/4 LABORATORIES SHEET WEEK DAY HOUR 4 1 2 PREPARED BY: EN. MUHAMAD ASMI BIN ROMLI EN. MOHD FISOL BIN OSMAN JULY 2009 Creating a Typical Measurement Application 5 This chapter introduces you to common

More information

F4-04DA-1 4-Channel Analog Current Output

F4-04DA-1 4-Channel Analog Current Output F4-4DA- 4-Channel Analog Current 32 Analog Current Module Specifications The Analog Current Module provides several features and benefits. ANALOG PUT 4-Ch. Analog It is a direct replacement for the popular

More information

SRVODRV REV7 INSTALLATION NOTES

SRVODRV REV7 INSTALLATION NOTES SRVODRV-8020 -REV7 INSTALLATION NOTES Thank you for purchasing the SRVODRV -8020 drive. The SRVODRV -8020 DC servo drive is warranted to be free of manufacturing defects for 1 year from the date of purchase.

More information

PowerAmp Design. PowerAmp Design PAD20 COMPACT HIGH VOLTAGE OP AMP

PowerAmp Design. PowerAmp Design PAD20 COMPACT HIGH VOLTAGE OP AMP PowerAmp Design Rev C KEY FEATURES LOW COST HIGH VOLTAGE 150 VOLTS HIGH OUTPUT CURRENT 5A 40 WATT DISSIPATION CAPABILITY 80 WATT OUTPUT CAPABILITY INTEGRATED HEAT SINK AND FAN SMALL SIZE 40mm SQUARE RoHS

More information

Control System Circuits with Opamps

Control System Circuits with Opamps Control System Circuits with Opamps 27.04.2009 Purpose To introduce opamps, transistors and their usage To apply a control system with analog circuit elements. Difference Amplifier Figure 1 Basic Difference

More information

Upgrading from Stepper to Servo

Upgrading from Stepper to Servo Upgrading from Stepper to Servo Switching to Servos Provides Benefits, Here s How to Reduce the Cost and Challenges Byline: Scott Carlberg, Motion Product Marketing Manager, Yaskawa America, Inc. The customers

More information

Lab 15: Lock in amplifier (Version 1.4)

Lab 15: Lock in amplifier (Version 1.4) Lab 15: Lock in amplifier (Version 1.4) WARNING: Use electrical test equipment with care! Always double-check connections before applying power. Look for short circuits, which can quickly destroy expensive

More information

UNIVERSAL INPUT RESISTANCE OUTPUT

UNIVERSAL INPUT RESISTANCE OUTPUT UNIVERSAL INPUT RESISTANCE OUTPUT FEATURES Jumper selectable analog input DIP switch selectable pulse input type DIP switch selectable time bases 256 step output resolution Field changeable resistance

More information

Optical Theremin Critical Design Review Yanzhe Zhao, Mason Story, Nicholas Czesak March

Optical Theremin Critical Design Review Yanzhe Zhao, Mason Story, Nicholas Czesak March Optical Theremin Critical Design Review Yanzhe Zhao, Mason Story, Nicholas Czesak March-07-2015 Abstract A theremin is a musical instrument whose tone and pitch can be controlled without physical contact.

More information

EE 300W Lab 2: Optical Theremin Critical Design Review

EE 300W Lab 2: Optical Theremin Critical Design Review EE 300W Lab 2: Optical Theremin Critical Design Review Team Drunken Tinkers: S6G8 Levi Nicolai, Harvish Mehta, Justice Lee October 21, 2016 Abstract The objective of this lab is to create an Optical Theremin,

More information

STEPPING MOTOR EMULATION

STEPPING MOTOR EMULATION OPERATING MANUAL SERIES SMTBD1 OPTIONAL FUNCTIONS (Version 2.0) European version 2.0 STEPPING MOTOR EMULATION OPTION C This manual describes the option "C" of the SMT-BD1 amplifier: Stepping motor emulation.

More information

Chapter 5: Signal conversion

Chapter 5: Signal conversion Chapter 5: Signal conversion Learning Objectives: At the end of this topic you will be able to: explain the need for signal conversion between analogue and digital form in communications and microprocessors

More information

Lab 2: Optical Theremin Team 2 Flyback By Brian Pugh, Andrew Baker, and Michael Betts

Lab 2: Optical Theremin Team 2 Flyback By Brian Pugh, Andrew Baker, and Michael Betts Lab 2: Optical Theremin Team 2 Flyback By Brian Pugh, Andrew Baker, and Michael Betts Table of Contents Abstract... 3 Introduction... 3 Rationale... 4 Implementation... 5 Hardware... 5 Software... 5 Conclusion...

More information

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK Team Members: Andrew Blanford Matthew Drummond Krishnaveni Das Dheeraj Reddy 1 Abstract: The goal of the project was to build an interactive and mobile

More information

ME 461 Laboratory #5 Characterization and Control of PMDC Motors

ME 461 Laboratory #5 Characterization and Control of PMDC Motors ME 461 Laboratory #5 Characterization and Control of PMDC Motors Goals: 1. Build an op-amp circuit and use it to scale and shift an analog voltage. 2. Calibrate a tachometer and use it to determine motor

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

Measuring Power Supply Switching Loss with an Oscilloscope

Measuring Power Supply Switching Loss with an Oscilloscope Measuring Power Supply Switching Loss with an Oscilloscope Our thanks to Tektronix for allowing us to reprint the following. Ideally, the switching device is either on or off like a light switch, and instantaneously

More information

Electronic Instrumentation & Automation. ET-7th semester. By : Rahul Sharma ET & TC Deptt. RCET, Bhilai

Electronic Instrumentation & Automation. ET-7th semester. By : Rahul Sharma ET & TC Deptt. RCET, Bhilai Electronic Instrumentation & Automation ET-7th semester By : Rahul Sharma ET & TC Deptt. RCET, Bhilai UNIT: III Voltage and Current Measurements Digital Voltmeters: Non-Integrating type, Integrating Type,

More information

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018 ME375 Lab Project Bradley Boane & Jeremy Bourque April 25, 2018 Introduction: The goal of this project was to build and program a two-wheel robot that travels forward in a straight line for a distance

More information

Embedded Systems Lab Lab 7 Stepper Motor Application

Embedded Systems Lab Lab 7 Stepper Motor Application Islamic University of Gaza College of Engineering puter Department Embedded Systems Lab Stepper Motor Application Prepared By: Eng.Ola M. Abd El-Latif Apr. /2010 :D 0 Objective Tools Theory To realize

More information

F4 04DAS 1 4-Channel Isolated 4 20mA Output

F4 04DAS 1 4-Channel Isolated 4 20mA Output F44DAS 4-Channel Isolated 4mA F44DAS 4-Channel Isolated 4mA Module Specifications The F44DAS 4-channel Isolated Analog module provides several features and benefits. ANALOG 4 CHANNELS PUT F44DAS 4-Ch.

More information

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao

Embedded Test System. Design and Implementation of Digital to Analog Converter. TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao Embedded Test System Design and Implementation of Digital to Analog Converter TEAM BIG HERO 3 John Sopczynski Karim Shik-Khahil Yanzhe Zhao EE 300W Section 1 Spring 2015 Big Hero 3 DAC 2 INTRODUCTION (KS)

More information

Magnetic Levitation System

Magnetic Levitation System Introduction Magnetic Levitation System There are two experiments in this lab. The first experiment studies system nonlinear characteristics, and the second experiment studies system dynamic characteristics

More information

9200 Series, 300 MHz Programmable Pulse Generator

9200 Series, 300 MHz Programmable Pulse Generator 9200 Series, 300 MHz Programmable Pulse Generator Main Features Variable edge pulses (1 nsec to 1 msec) at rates to 250 MHz Fast 300 psec edges to 300 MHz Wide output swings to 32 V at pulse rates to 50

More information

Zero-Drift, High Voltage, Bidirectional Difference Amplifier AD8207

Zero-Drift, High Voltage, Bidirectional Difference Amplifier AD8207 Zero-Drift, High Voltage, Bidirectional Difference Amplifier FEATURES Ideal for current shunt applications EMI filters included μv/ C maximum input offset drift High common-mode voltage range 4 V to +65

More information

Lab 6 Prelab Grading Sheet

Lab 6 Prelab Grading Sheet Lab 6 Prelab Grading Sheet NAME: Read through the Background section of this lab and print the prelab and in-lab grading sheets. Then complete the steps below and fill in the Prelab 6 Grading Sheet. You

More information

MTY (81)

MTY (81) This manual describes the option "d" of the SMT-BD1 amplifier: Master/slave electronic gearing. The general information about the digital amplifier commissioning are described in the standard SMT-BD1 manual.

More information

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC)

ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) ANALOG TO DIGITAL (ADC) and DIGITAL TO ANALOG CONVERTERS (DAC) Connecting digital circuitry to sensor devices

More information

Electro Controls. Input-Output Modules WattsIndustries.co.uk

Electro Controls. Input-Output Modules WattsIndustries.co.uk Electro Controls Input-Output Modules - 2017 WattsIndustries.co.uk Input-Output Modules Section 08 B.M.S INPUT - OUTPUT MODULES SINGLE AND ADJUSTABLE RELAY ESRM.. Volt free contacts DIN RAIL mounted relay

More information

PEAKTRONICS AMC-103 ADDITIONAL FEATURES. AC Motor Controller, 2A AMC-103 AMC-103A AMC-103B

PEAKTRONICS AMC-103 ADDITIONAL FEATURES. AC Motor Controller, 2A AMC-103 AMC-103A AMC-103B PEAKTRONICS The Peaktronics AC Motor Controller is a compact module that is intended for controlling small AC actuator motors of up to 2A. The is very well suited for applications where space constraints

More information

Project Proposal. Low-Cost Motor Speed Controller for Bradley ECE Department Robots L.C.M.S.C. By Ben Lorentzen

Project Proposal. Low-Cost Motor Speed Controller for Bradley ECE Department Robots L.C.M.S.C. By Ben Lorentzen Project Proposal Low-Cost Motor Speed Controller for Bradley ECE Department Robots L.C.M.S.C. By Ben Lorentzen Advisor Dr. Gary Dempsey Bradley University Department of Electrical Engineering December

More information

SCX Series Precision compensated pressure sensors

SCX Series Precision compensated pressure sensors FEATURES 0...1 psi to 0...150 psi Precision temperature compensation Calibrated zero and span Small size Low noise High accuracy High impedance for low power applications APPLICATIONS Medical equipment

More information

EMG Electrodes. Fig. 1. System for measuring an electromyogram.

EMG Electrodes. Fig. 1. System for measuring an electromyogram. 1270 LABORATORY PROJECT NO. 1 DESIGN OF A MYOGRAM CIRCUIT 1. INTRODUCTION 1.1. Electromyograms The gross muscle groups (e.g., biceps) in the human body are actually composed of a large number of parallel

More information

CA SERIES PRECISION REGULATED, LOW RIPPLE HIGH VOLTAGE DC TO DC CONVERTERS

CA SERIES PRECISION REGULATED, LOW RIPPLE HIGH VOLTAGE DC TO DC CONVERTERS Proven Reliability CA SERIES PRECISION REGULATED, LOW RIPPLE HIGH VOLTAGE DC TO DC CONVERTERS 200V to 2000V @ 1 Watt PRODUCT SELECTION TABLE NOW UL RECOGNIZED PRODUCT DESCRIPTION Precision regulated, very

More information

ANALOG TO DIGITAL CONVERTER ANALOG INPUT

ANALOG TO DIGITAL CONVERTER ANALOG INPUT ANALOG INPUT Analog input involves sensing an electrical signal from some source external to the computer. This signal is generated as a result of some changing physical phenomenon such as air pressure,

More information

MASTER/SLAVE TENSION CONTROL

MASTER/SLAVE TENSION CONTROL OPERATING MANUAL SERIES SMTBD1 OPTIONAL FUNCTIONS (Version 2.0) European version 2.0 MASTER/SLAVE TENSION CONTROL OPTION E This manual describes the option "E" of the SMT-BD1 amplifier: Master / Slave

More information

PHASE CUT SIGNAL DRIVERS

PHASE CUT SIGNAL DRIVERS FEATURES Input to output isolation 27, 40 or 80 watts output power Fused 24VAC power supply Input and power LED indication DESCRIPTION & OPERATION The Digital Controller Interface Module Phase Cut Driver

More information

Tech Note #3: Setting up a Servo Axis For Closed Loop Position Control Application note by Tim McIntosh September 10, 2001

Tech Note #3: Setting up a Servo Axis For Closed Loop Position Control Application note by Tim McIntosh September 10, 2001 Tech Note #3: Setting up a Servo Axis For Closed Loop Position Control Application note by Tim McIntosh September 10, 2001 Abstract: In this Tech Note a procedure for setting up a servo axis for closed

More information

Motor Generator Dynamometer Setup

Motor Generator Dynamometer Setup P a g e Motor Generator Dynamometer Setup ENG470 Engineering Honours Thesis Mark Anthony Rondilla Supervisor: A/Prof. Graeme Cole Associate Supervisor: Dr. Greg Crebbin 9 January 2017 P a g e i Disclaimer

More information

Continental Hydraulics Installation Manual CEM-RA-A

Continental Hydraulics Installation Manual CEM-RA-A CEM-RA-A Description: This ramp amplifier drives either single or dual solenoid proportional valve coils up to 2.6A. It is suitable to control current to either proportional directional, flow, or pressure

More information

Figure 70 - False-colored image of Shoffner's team basic design for a Peltier (thermalelectric cooler - TEC) driven PCR-chip thermocycler.

Figure 70 - False-colored image of Shoffner's team basic design for a Peltier (thermalelectric cooler - TEC) driven PCR-chip thermocycler. External fast thermocycler - 151 Basic setup A final decision on temperature control concerned the basic setup of the system; that is, which components (sensors, circuitry, etc.) to use and in what hierarchical

More information

Bend Sensor Technology Electronic Interface Design Guide

Bend Sensor Technology Electronic Interface Design Guide Technology Electronic Interface Design Guide Copyright 2015 Flexpoint Sensor Systems Page 1 of 15 www.flexpoint.com Contents Page Description.... 3 Voltage Divider... 4 Adjustable Buffers.. 5 LED Display

More information

Low-Power, 12-Bit, Rail to Rail Voltage-Output Serial DAC in SOT23

Low-Power, 12-Bit, Rail to Rail Voltage-Output Serial DAC in SOT23 General Description The MAX5712 is a small footprint, low-power, 12-bit digitalto-analog converter (DAC) that operates from a single +2.7V to +5.5V supply. The MAX5712 on-chip precision output amplifier

More information

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G

L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G P R O F. S L A C K L E C T U R E R, E L E C T R I C A L A N D M I C R O E L E C T R O N I C E N G I N E E R I N G G B S E E E @ R I T. E D U B L D I N G 9, O F F I C E 0 9-3 1 8 9 ( 5 8 5 ) 4 7 5-5 1 0

More information

NAU82011WG 2.9 W Mono Filter-Free Class-D Audio Amplifier. 1 Description VIN. Output Driver VIP. Class D Modulator VDD VSS

NAU82011WG 2.9 W Mono Filter-Free Class-D Audio Amplifier. 1 Description VIN. Output Driver VIP. Class D Modulator VDD VSS NAU82011WG 2.9 W Mono Filter-Free Class-D Audio Amplifier 1 Description The NAU82011WG is a mono high efficiency filter-free Class-D audio amplifier with variable gain, which is capable of driving a 4Ω

More information

Current loop output (4...20mA) for a volt pressure transmitter

Current loop output (4...20mA) for a volt pressure transmitter Application note AN11 Application: Adapting a sensor with an (Uout =.5 4.5V) output and a 5V supply to suit a 4 2mA industrial current interface (3 wire-version) powered by 24V. The following article describes*

More information

Chapter 5. Tracking system with MEMS mirror

Chapter 5. Tracking system with MEMS mirror Chapter 5 Tracking system with MEMS mirror Up to now, this project has dealt with the theoretical optimization of the tracking servo with MEMS mirror through the use of simulation models. For these models

More information

Users Group Conference 2018

Users Group Conference 2018 Users Group Conference 2018 Magnetic Pickup Verification Rocky Auterson Equipment Analyst, Windrock, Inc. 1 Magnetic Pickup Verification Setup and verification of signal strength 2 Magnetic Pickup Verification

More information

T6+ Analog I/O Section. Installation booklet for part numbers: 5/4-80A-115 5/4-90A-115 5/4-80A /4-90A-1224

T6+ Analog I/O Section. Installation booklet for part numbers: 5/4-80A-115 5/4-90A-115 5/4-80A /4-90A-1224 T and T+ are trade names of Trol Systems Inc. TSI reserves the right to make changes to the information contained in this manual without notice. publication /4A115MAN- rev:1 2001 TSI All rights reserved

More information

DACPORT Low Cost, Complete P-Compatible 8-Bit DAC AD557*

DACPORT Low Cost, Complete P-Compatible 8-Bit DAC AD557* a FEATURES Complete 8-Bit DAC Voltage Output 0 V to 2.56 V Internal Precision Band-Gap Reference Single-Supply Operation: 5 V ( 10%) Full Microprocessor Interface Fast: 1 s Voltage Settling to 1/2 LSB

More information

PowerAmp Design. PowerAmp Design PAD135 COMPACT HIGH VOLATGE OP AMP

PowerAmp Design. PowerAmp Design PAD135 COMPACT HIGH VOLATGE OP AMP PowerAmp Design COMPACT HIGH VOLTAGE OP AMP Rev G KEY FEATURES LOW COST SMALL SIZE 40mm SQUARE HIGH VOLTAGE 200 VOLTS HIGH OUTPUT CURRENT 10A PEAK 40 WATT DISSIPATION CAPABILITY 200V/µS SLEW RATE APPLICATIONS

More information

Introduction. ELCT903, Sensor Technology Electronics and Electrical Engineering Department 1. Dr.-Eng. Hisham El-Sherif

Introduction. ELCT903, Sensor Technology Electronics and Electrical Engineering Department 1. Dr.-Eng. Hisham El-Sherif Introduction In automation industry every mechatronic system has some sensors to measure the status of the process variables. The analogy between the human controlled system and a computer controlled system

More information

Remote Laboratory Operation: Web Technology Successes

Remote Laboratory Operation: Web Technology Successes Remote Laboratory Operation: Web Technology Successes Masoud Naghedolfeizi 1, Jim Henry 2, Sanjeev Arora 3 Abstract National Aeronautics and Space Administration (NASA) has awarded Fort Valley State University

More information

Introduction to MS150

Introduction to MS150 Introduction to MS150 Objective: To become familiar with the modules and how they operate. Equipment Required: Following equipment is required to perform above task. Quantity Apparatus 1 OU150A Operation

More information

HVW Technologies Analog Infra-Red Ranging System (AIRRS )

HVW Technologies Analog Infra-Red Ranging System (AIRRS ) HVW Technologies Analog Infra-Red Ranging System (AIRRS ) Overview AIRRS is a low-cost, short-range Infra-Red (IR) alternative to ultrasonic range-finding systems. Usable detection range is 10 cm to 80

More information

CHAPTER AC DRIVE PARAMETERS. In This Chapter...

CHAPTER AC DRIVE PARAMETERS. In This Chapter... CHAPTER AC DRIVE 4 PARAMETERS In This Chapter... GS2 Parameter Summary....................4 2 Detailed Parameter Listings.................4 11 Motor Parameters........................4 11 Ramp Parameters.........................4

More information

Linear Power Amplifier Module

Linear Power Amplifier Module Linear Power Amplifier Module User's Guide Version 2.0 Table of Contents Table of Contents Technical Specifications...7 Absolute Maximum Ratings...7 Amplifier Specifications...7 Amplifier Board Layout...9

More information

ME 144L Prof. R.G. Longoria Dynamic Systems and Controls Laboratory. Department of Mechanical Engineering The University of Texas at Austin

ME 144L Prof. R.G. Longoria Dynamic Systems and Controls Laboratory. Department of Mechanical Engineering The University of Texas at Austin Summary The first week of this lab takes the steps toward building and demonstrating open loop control of an analog meter needle position. A first step is learning about and using LabVIEW vision tools

More information

ERROR MESSAGES: Click on Error for further detail PROBE ERROR: PROBE IS OPEN OR NOT CONNECTED.

ERROR MESSAGES: Click on Error for further detail PROBE ERROR: PROBE IS OPEN OR NOT CONNECTED. ERR MESSAGES: Click on Error for further detail MOT OVERCURRENT:THE PLATEN HAS BEEN MECHANICALLY RESISTED. MOT ERR: NO ENCODER MESSAGE TO THE MOT SPEED CONTROL IGNITION ERR: after the 4 th failed attempt

More information

Sensor-Emulator-EVM. System Reference Guide. by Art Kay High-Precision Linear Products SBOA102A

Sensor-Emulator-EVM. System Reference Guide. by Art Kay High-Precision Linear Products SBOA102A by Art Kay High-Precision Linear Products Simplifies Development of Voltage Excited Bridge Sensor Signal Conditioning Systems Provides Eleven Different Emulated Sensor Output Conditions Provides Three

More information

Lab E5: Filters and Complex Impedance

Lab E5: Filters and Complex Impedance E5.1 Lab E5: Filters and Complex Impedance Note: It is strongly recommended that you complete lab E4: Capacitors and the RC Circuit before performing this experiment. Introduction Ohm s law, a well known

More information

Teaching Mechanical Students to Build and Analyze Motor Controllers

Teaching Mechanical Students to Build and Analyze Motor Controllers Teaching Mechanical Students to Build and Analyze Motor Controllers Hugh Jack, Associate Professor Padnos School of Engineering Grand Valley State University Grand Rapids, MI email: jackh@gvsu.edu Session

More information

This Errata Sheet contains corrections or changes made after the publication of this manual.

This Errata Sheet contains corrections or changes made after the publication of this manual. Errata Sheet This Errata Sheet contains corrections or changes made after the publication of this manual. Product Family: DL4 Date: September 12, 218 Manual Number D4-ANLG-M Revision and Date th Ed., Rev.

More information

Electronic Systems. Dr. Kenneth Kin-Yip Wong. ENGG st Semester, Department of Electrical and Electronic Engineering

Electronic Systems. Dr. Kenneth Kin-Yip Wong. ENGG st Semester, Department of Electrical and Electronic Engineering Electronic Systems ENGG1015 1 st Semester, 2011 Dr. Kenneth Kin-Yip Wong Department of Electrical and Electronic Engineering Introduction Today H ENGG1015: Hybrid 1 semester L Recall that ENGG1015 is about

More information

ELG3336 Design of Mechatronics System

ELG3336 Design of Mechatronics System ELG3336 Design of Mechatronics System Elements of a Data Acquisition System 2 Analog Signal Data Acquisition Hardware Your Signal Data Acquisition DAQ Device System Computer Cable Terminal Block Data Acquisition

More information

PowerAmp Design. PowerAmp Design PAD112 HIGH VOLTAGE OPERATIONAL AMPLIFIER

PowerAmp Design. PowerAmp Design PAD112 HIGH VOLTAGE OPERATIONAL AMPLIFIER PowerAmp Design Rev C KEY FEATURES LOW COST HIGH VOLTAGE 150 VOLTS HIGH OUTPUT CURRENT 5 AMPS 50 WATT DISSIPATION CAPABILITY 100 WATT OUTPUT CAPABILITY INTEGRATED HEAT SINK AND FAN COMPATIBLE WITH PAD123

More information

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers Chapter 4 Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers 4.1. Introduction Data acquisition and control boards, also known as DAC boards, are used in virtually

More information

High Voltage Current Shunt Monitor AD8212

High Voltage Current Shunt Monitor AD8212 High Voltage Current Shunt Monitor FEATURES Adjustable gain High common-mode voltage range 7 V to 65 V typical 7 V to >500 V with external pass transistor Current output Integrated 5 V series regulator

More information

Wednesday 7 June 2017 Afternoon Time allowed: 1 hour 30 minutes

Wednesday 7 June 2017 Afternoon Time allowed: 1 hour 30 minutes Please write clearly in block capitals. Centre number Candidate number Surname Forename(s) Candidate signature A-level ELECTRONICS Unit 4 Programmable Control Systems Wednesday 7 June 2017 Afternoon Time

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT BIT DIFFERENTIAL INPUT DELTA SIGMA ADC LTC DESCRIPTION

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT BIT DIFFERENTIAL INPUT DELTA SIGMA ADC LTC DESCRIPTION LTC2433-1 DESCRIPTION Demonstration circuit 745 features the LTC2433-1, a 16-bit high performance Σ analog-to-digital converter (ADC). The LTC2433-1 features 0.12 LSB linearity, 0.16 LSB full-scale accuracy,

More information

Laboratory Tutorial#1

Laboratory Tutorial#1 Laboratory Tutorial#1 1.1. Objective: To become familiar with the modules and how they operate. 1.2. Equipment Required: Following equipment is required to perform above task. Quantity Apparatus 1 OU150A

More information

Low Cost, General Purpose High Speed JFET Amplifier AD825

Low Cost, General Purpose High Speed JFET Amplifier AD825 a FEATURES High Speed 41 MHz, 3 db Bandwidth 125 V/ s Slew Rate 8 ns Settling Time Input Bias Current of 2 pa and Noise Current of 1 fa/ Hz Input Voltage Noise of 12 nv/ Hz Fully Specified Power Supplies:

More information

GS1 Parameter Summary Detailed Parameter Listings...4 9

GS1 Parameter Summary Detailed Parameter Listings...4 9 CHAPTER AC DRIVE 4 PARAMETERS Contents of this Chapter... GS1 Parameter Summary...............................4 2 Detailed Parameter Listings..............................4 9 Motor Parameters.........................................4

More information

Section3 Chapter 2: Operational Amplifiers

Section3 Chapter 2: Operational Amplifiers 2012 Section3 Chapter 2: Operational Amplifiers Reference : Microelectronic circuits Sedra six edition 1/10/2012 Contents: 1- THE Ideal operational amplifier 2- Inverting configuration a. Closed loop gain

More information

Exercise 3-3. Manual Reversing Starters EXERCISE OBJECTIVE DISCUSSION. Build manual reversing starters and understand how they work.

Exercise 3-3. Manual Reversing Starters EXERCISE OBJECTIVE DISCUSSION. Build manual reversing starters and understand how they work. Exercise 3-3 Manual Reversing Starters EXERCISE OBJECTIVE Build manual reversing starters and understand how they work. DISCUSSION Reversing motor rotation direction is a common operation in industrial

More information

Anacon Power & Controls Relay Assembly Specialists An Anacon Electronic Sales, Inc. Company

Anacon Power & Controls Relay Assembly Specialists An Anacon Electronic Sales, Inc. Company ZERO CROSS SSR CONTROLLER USERS MANUAL SSR INTELLIGENT POWER CONTROL MODULE TABLE OF CONTENTS Section Page 1 Ordering Code... 3 2 Description... 3 2.1 Features... 3 3 Installation... 3 3.1 Mounting Instructions...

More information

10. Computer-Assisted Data Acquisition and Analysis

10. Computer-Assisted Data Acquisition and Analysis 10. Computer-Assisted Data Acquisition and Analysis Objective The purpose of this experiment is to practice computer-assisted data acquisition and analysis. Students use LabVIEW programs to control the

More information

Continental Hydraulics Installation Manual CEM-PA-A

Continental Hydraulics Installation Manual CEM-PA-A CEMPAA Description: This closed loop PID amplifier drives a single solenoid proportional pressure or flow control valve coil up to 2.6A. It is suitable to provide precise closed loop control in pressure,

More information