Control Systems in LabVIEW

Size: px
Start display at page:

Download "Control Systems in LabVIEW"

Transcription

1 Control Systems in LabVIEW with Self-paced Step-by-Step Exercises Hans-Petter Halvorsen, M.Sc.

2 Download the software here: LabVIEW Installation These are the main modules we use in the different courses at Telemark University College: LabVIEW (LabVIEW Professional Development System 32-Bit: English) NI-DAQmx (Hardware Driver for NI USB-6008, NI TC-01, etc.) LabVIEW Control Design and Simulation Module LabVIEW MathScript RT Module Note! These packages are separate downloads! Note! You get the Serial Number from your Teacher, but the software can be used for 30 days before you need to enter a valid Serial Number. All LabVIEW Software can be downloaded here:

3 LabVIEW Training Here you will find lots of Videos, Tutorials and Exercises LabVIEW Training for Students (National Instruments): LabVIEW Course: Learning by Doing! It is recommended that you watch some of the videos before you read furter

4 National Instruments is the vendor of LabVIEW National Instruments creates both Hardware and Software

5 Graphical Programming: LabVIEW = Fun! Very different from traditional programming like VB, C#, Maple, MATLAB, MathScript, etc. It is more like a drawing program than a Programming Language This makes it easy to use for those who are not programmers (or dont like programming J) Excellent tool when using Hardware, when you need to take Measurements (DAQ), etc. It is fun and makes you very creative!

6 LabVIEW Example LabVIEW has the same things as other programming languages, but in a graphical way! Sequence Structure Comment While Loop Sub VI (Function/Method) Local Variable Arrays Case Structure Stop Button Property Nodes Constants (if-else) Condition Note! To do something with an object Right-click on it (When shall the loop end?)

7 Hardware Air Heater Wi-Fi DAQ Water Tank Pt-100 USB-6008 TC-01 Arduino ZigBee Vision System crio NOx Sensor

8 LabVIEW This is the core LabVIEW installation that installs the LabVIEW Programming Environment. LabVIEW MathScript RT Module This module is a text-based tool that is very similar to MATLAB. The syntax is similar to MATLAB, you can create and run so-called m files, etc. The module is available from the Tools menu inside LabVIEW. LabVIEW Control Design and Simulation Module This module is used for creating Control and Simulation applications with LabVIEW. Here you will find PID controllers, etc. The module is available as a palette on your block diagram. NI-DAQmx DAQmx is the Hardware Driver needed in order to use hardware devices like NI USB-6008, NI TC-01, etc. inside LabVIEW. The module is available as a palette on your block diagram.

9 Students: Try some of these Shortcuts and Tools

10 Control Systems Hans-Petter Halvorsen, M.Sc.

11 DAQ Data Acquisition Sensors, etc. Your App created with LabVIEW A DAQ System consists of 4 parts: NI TC-01 Thermocouple Device, 1. Physical input/output signals, sensors NI USB 6008 DAQ Device, etc. 2. DAQ device/hardware 3. Driver software 4. Your software application (Application software) NI DAQmx Driver

12 Implementing a Control System While the real process is continuous, normally the Controller and the Filter is implemented in a computer.

13 Types of Industrial Control Systems PLC DCS SCADA

14 Industrial Control Systems (ICS) Industrial Control Systems are computer controlled systems that monitor and control industrial processes that exist in the physical world crio LabVIEW Programmable Automation Controller (PAC) Industrial PID Controller Distributed Control Systems (DCS) Controller PC based Control System/SCADA System (Supervisory Control And Data Acquisition) I/O Module PLC (Programmable Logic Controller) I/O Modules DeltaV Siemens PLC

15 PC-based Control System Industrial PID Controller PID Control using LabVIEW and I/O Module

16 PC-based Control System Process Examples 0-5V/1-5V 0-5V Analog In Measurement(s) - Analog Out + - Control Signal + Controller (PID) and Lowpass Filter Implementation I/O Module AD Converter USB-6008 DA Converter USB

17 PC-based Control System

18 PC-based Control System LabVIEW Example (Simulation) Mathematical Model of the Process Feedback Loop Feedback Node

19 PC-based Control System LabVIEW Example (Real process) SubVI that handles the I/O between LabVIEW and the Real Process included Filter and Scaling

20 PC-based Control System LabVIEW Example (HMI/GUI)

21 PID Control in LabVIEW Hans-Petter Halvorsen, M.Sc.

22 PID Control using LabVIEW Built-in PID Controllers: Discrete PI created from Scratch

23 Control System Controller v r e u y - K p T i T d PID Process Sensor

24 Control System implementation with Pen & Paper v K p T i T d r e u y PID Process - Sensor Control System implementation in LabVIEW A Simulation Loop is used in this Example

25 Controller Control System implementation with Pen & Paper v K p T i T d r e u y PID Process - Sensor Control System implementation in LabVIEW A While Loop is used in this Example

26 Alternative 1: PID Palette in LabVIEW (PID Toolkit) PID Control in LabVIEW Alternative 2: This alternative uses seconds! Note! The functions PID.vi and PID Advanced.vi requires that Ti and Td is in minutes, while it s normal to use seconds as the unit for these parameters. You can use the following piece of code in order to transform them: This means we enter values for Ti and Td in secons on the Front Panel and the values are converted to minutes in the code.

27 Help -> Find Examples... PID Control Demo Students: Try the General PID Simulator example that is included with LabVIEW

28 PID Controller Alternative 1a PID Advanced VI + While Loop

29 PID Controller Alternative 1b Right-click and select SubVI Node Setup PID Advanced VI + Simulation Loop

30 PID Controller Alternative 2a PID block + While Loop

31 PID Controller Alternative 2b PID block + Simulation Loop

32 Discretization Hans-Petter Halvorsen, M.Sc.

33 AD & DA Converters Measurement Signal AD Converter Control Signal DA Converter USB AD Analog to Digital DA Digital to Analog

34 Continuous Signal Note! Different books use different notations Discrete Signal A computer can only deal with discrete signals Ts = Sampling Time When Ts -> 0, we have a continuous signal, but in a computer that is not possible. k = 0, 1, 2, 3, 4,...

35 Discretization Methods Euler forward method: Euler backward method: Other methods are Zero Order Hold (ZOH), Tustin s method, etc.

36 Given the following continuous system: Discretization Example We will use the Euler forward method :

37 Discrete Syntax Note The following:

38 Discretization in LabVIEW using the Formula Node Implementing discrete equations in LabVIEW using C syntax Example:

39 Discrete Lowpass Filter Hans-Petter Halvorsen, M.Sc.

40 Discrete Lowpass Filter Lowpass Filter Transfer function: We define: Inverse Laplace the differential Equation: We use the Euler Backward method: This gives: Filter output Noisy input signal This gives: This algorithm can be easily implemented in a Programming language

41 Discrete Lowpass Filter - LabVIEW

42 Testing the Discrete Lowpass Filter We see the Filter removes the noise

43 Discrete PI Controller Hans-Petter Halvorsen, M.Sc.

44 Discrete PI Controller Continuous PI Controller: We may set: This gives the following discrete PI algorithm: We use the Euler Backward method: This algorithm can be easily implemented in a Programming language

45 Discrete PI Controller LabVIEW

46 Test of Discrete PI Controller in LabVIEW PID Controller created from scratch in LabVIEW Mathematical Model of the Process Feedback Loop Feedback Node

47 PC-based Control System LabVIEW Example (HMI/GUI)

48 Do you need more Practice? - Select a Challenge Hans-Petter Halvorsen, M.Sc.

49 Create a PC based Control System as illustrated below:

50 Hans-Petter Halvorsen, M.Sc. University College of Southeast Norway Blog:

DAQ in MATLAB HANS-PETTER HALVORSEN, 2012.09.11

DAQ in MATLAB HANS-PETTER HALVORSEN, 2012.09.11 Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics DAQ in MATLAB HANS-PETTER HALVORSEN, 2012.09.11 Faculty of Technology, Postboks 203, Kjølnes ring

More information

Data Acquisition in LabVIEW

Data Acquisition in LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Data Acquisition in LabVIEW HANS- PETTER HALVORSEN, 2013.08.16 Faculty of Technology, Postboks 203,

More information

SCADA, OPC and Database Systems

SCADA, OPC and Database Systems Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics SCADA, OPC and Database Systems HANS-PETTER HALVORSEN, 2012.08.20 Faculty of Technology, Postboks

More information

Control and Simulation. in LabVIEW

Control and Simulation. in LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Control and Simulation HANS-PETTER HALVORSEN, 2011.08.12 in LabVIEW Faculty of Technology, Postboks

More information

Hardware-in-the-Loop Simulation

Hardware-in-the-Loop Simulation Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Hardware-in-the-Loop Simulation Introduction What is Hardware-in-the-Loop (HIL) Simulation or What

More information

Industrial DAQ System for Measurements and Monitoring. Hans-Petter Halvorsen, M.Sc.

Industrial DAQ System for Measurements and Monitoring. Hans-Petter Halvorsen, M.Sc. Industrial DAQ System for Measurements and Monitoring Hans-Petter Halvorsen, M.Sc. System Overview Mobile Device Sensors DAQ System Industrial DAQ Hardware Data Logging Cloud Monitoring Data Computer Web

More information

Cloud-based Data Logging, Monitoring and Analysis

Cloud-based Data Logging, Monitoring and Analysis Industry 4.0, Internet of Things (IoT), Cloud Computing Cloud-based Data Logging, Monitoring and Analysis Measurement System Using Windows Azure, SQL Server, LabVIEW and Visual Studio/C# Hans-Petter Halvorsen,

More information

DSP Laboratory: Analog to Digital and Digital to Analog Conversion

DSP Laboratory: Analog to Digital and Digital to Analog Conversion OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License

More information

Lab View with crio Tutorial. Control System Design Feb. 14, 2006

Lab View with crio Tutorial. Control System Design Feb. 14, 2006 Lab View with crio Tutorial Control System Design Feb. 14, 2006 Pan and Tilt Mechanism Experimental Set up Power Supplies Ethernet cable crio Reconfigurable Embedded System Lab View + Additional Software

More information

How To Use First Robot With Labview

How To Use First Robot With Labview FIRST Robotics LabVIEW Training SECTION 1: LABVIEW OVERVIEW What is LabVIEW? It is a tool used by scientists and engineers to measure and automate the universe around us It is a graphical programming

More information

Introduction to LabVIEW

Introduction to LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Introduction to LabVIEW HANS- PETTER HALVORSEN, 2014.03.07 Faculty of Technology, Postboks 203,

More information

Three Levels of Data-Logging Software from National Instruments

Three Levels of Data-Logging Software from National Instruments Three Levels of Data-Logging Software from National Instruments One of the most common data acquisition applications is simply logging acquired data to disk or a database for future analysis. Most National

More information

Web Services. with Examples. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics

Web Services. with Examples. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Hans- Petter Halvorsen, 2014.03.01 Web Services with Examples Faculty of Technology, Postboks 203,

More information

Exercise 10: Basic LabVIEW Programming

Exercise 10: Basic LabVIEW Programming Exercise 10: Basic LabVIEW Programming In this exercise we will learn the basic principles in LabVIEW. LabVIEW will be used in later exercises and in the project part, as well in other courses later, so

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

Best Practises for LabVIEW FPGA Design Flow. uk.ni.com ireland.ni.com

Best Practises for LabVIEW FPGA Design Flow. uk.ni.com ireland.ni.com Best Practises for LabVIEW FPGA Design Flow 1 Agenda Overall Application Design Flow Host, Real-Time and FPGA LabVIEW FPGA Architecture Development FPGA Design Flow Common FPGA Architectures Testing and

More information

Using MCC GPIB Products with LabVIEW

Using MCC GPIB Products with LabVIEW Using Products with LabVIEW * This application note applies to PCI-GPIB-1M, PCI-GPIB-300K, PCM-GPIB, as well as to ISA- and PC104- boards How NI Compatibility Works National Instruments (NI) provides the

More information

OPC and Real-Time Systems in LabVIEW

OPC and Real-Time Systems in LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics OPC and Real-Time Systems in LabVIEW HANS-PETTER HALVORSEN, 2012.01.11 Faculty of Technology, Postboks

More information

Data Logging and Monitoring Pro. Hans-Petter Halvorsen, M.Sc.

Data Logging and Monitoring Pro. Hans-Petter Halvorsen, M.Sc. Data Logging and Monitoring Pro Hans-Petter Halvorsen, M.Sc. Data Logging and Monitoring With this Data Logging and Monitoring App you can Log and Monitoring Data from a DAQmx DAQ Device from National

More information

Technical Training Module ( 30 Days)

Technical Training Module ( 30 Days) Annexure - I Technical Training Module ( 30 Days) Section 1 : Programmable Logic Controller (PLC) 1. Introduction to Programmable Logic Controller - A Brief History, Need and advantages of PLC, PLC configuration,

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

KS3 Computing Group 1 Programme of Study 2015 2016 2 hours per week

KS3 Computing Group 1 Programme of Study 2015 2016 2 hours per week 1 07/09/15 2 14/09/15 3 21/09/15 4 28/09/15 Communication and Networks esafety Obtains content from the World Wide Web using a web browser. Understands the importance of communicating safely and respectfully

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

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

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

More information

Basics of Simulation Technology (SPICE), Virtual Instrumentation and Implications on Circuit and System Design

Basics of Simulation Technology (SPICE), Virtual Instrumentation and Implications on Circuit and System Design Basics of Simulation Technology (SPICE), Virtual Instrumentation and Implications on Circuit and System Design Patrick Noonan Business Development Manager National Instruments Electronics Workbench Group

More information

DATA ACQUISITION FROM IN VITRO TESTING OF AN OCCLUDING MEDICAL DEVICE

DATA ACQUISITION FROM IN VITRO TESTING OF AN OCCLUDING MEDICAL DEVICE DATA ACQUISITION FROM IN VITRO TESTING OF AN OCCLUDING MEDICAL DEVICE Florentina ENE 1, Carine GACHON 2, Nicolae IONESCU 3 ABSTRACT: This paper presents a technique for in vitro testing of an occluding

More information

Introduction to Data Acquisition

Introduction to Data Acquisition Introduction to Data Acquisition Overview This tutorial is part of the National Instruments Measurement Fundamentals series. Each tutorial in this series, will teach you a specific topic of common measurement

More information

A Study of Speed Control of PMDC Motor Using Auto-tuning of PID Controller through LabVIEW

A Study of Speed Control of PMDC Motor Using Auto-tuning of PID Controller through LabVIEW A Study of Speed Control of PMDC Motor Using Auto-tuning of PID Controller through LabVIEW Priyanka Rajput and Dr. K.K. Tripathi Department of Electronics and Communication Engineering, Ajay Kumar Garg

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

Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions

Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions Siemens and National Instruments Deliver Integrated Automation and Measurement Solutions The Need for Integrated Automation and Measurement Manufacturing lines consist of numerous decoupled systems for

More information

Implementation of Fuzzy and PID Controller to Water Level System using LabView

Implementation of Fuzzy and PID Controller to Water Level System using LabView Implementation of Fuzzy and PID Controller to Water Level System using LabView Laith Abed Sabri, Ph.D University of Baghdad AL-Khwarizmi college of Engineering Hussein Ahmed AL-Mshat University of Baghdad

More information

REMOTE LABORATORY PLANT CONTROL

REMOTE LABORATORY PLANT CONTROL REMOTE LABORATORY PLANT CONTROL HALÁS Rudolf, ĎURINA Pavol Institute of Information Engineering, Automation and Mathematics Faculty of Chemical and Food Technology Slovak University of Technology in Bratislava,

More information

Background: Experimental Manufacturing Cell

Background: Experimental Manufacturing Cell Session 3548 A WEB-BASED APPROACH TO AUTOMATED INSPECTION AND QUALITY CONTROL OF MANUFACTURED PARTS Immanuel Edinbarough, Manian Ramkumar, Karthik Soundararajan The University of Texas at Brownsville/Rochester

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

Hands-onIntroduction todataacquisition

Hands-onIntroduction todataacquisition ni.com/events Hands-onIntroduction todataacquisition withlabview ni.com/uk ni.com/ireland ni.com/uk/handson Introduction to LabVIEW and Computer-Based Measurements Hands-On Seminar 1 Company Profile Leaders

More information

Siemens AG 2013. LOGO! App V1.0.0 LOGO! Edition 03/2013. Manual. Answers for industry.

Siemens AG 2013. LOGO! App V1.0.0 LOGO! Edition 03/2013. Manual. Answers for industry. LOGO! App V1.0.0 LOGO! Manual Edition 03/2013 Answers for industry. The free of charge LOGO! App enables you to monitor actual process values of your LOGO! 0BA7 application with a smart phone or a tablet

More information

How To Write a Technical Lab Report with Practical Examples

How To Write a Technical Lab Report with Practical Examples University College of Southeast Norway How To Write a Technical Lab Report with Practical Examples 2016.02.29 Hans-Petter Halvorsen http://home.hit.no/~hansha 2/25 Tips and Tricks This document describes

More information

SHORT TRAINING COURSES

SHORT TRAINING COURSES Post Office Box SR 95, Spintex Road, Ghana Tel: +233 302 812680, Fax: +233 302 814709 E mail: contact@automationghana.com Website: www.automationghana.com SHORT TRAINING COURSES Equipping industries with

More information

Computerized Micro Jet Engine Test Facility

Computerized Micro Jet Engine Test Facility Computerized Micro Jet Engine Test Facility Flexible test bed for experiments Vladimir Krapp Yeshayahu Levy Eliyahu Mashiah Technion Basic physics similar to full scale engines Education UAVs Fun Why micro

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

TRY OUR SOFTWARE TAKE IT FOR A TEST DRIVE PRODUCT CATALOG 2015

TRY OUR SOFTWARE TAKE IT FOR A TEST DRIVE PRODUCT CATALOG 2015 WHO OUR CUSTOMERS ARE PREPARING THE FUTURE WORKFORCE Educational and training facilities all over the world rely on Real Games state-of-the-art training software. Spanning many different levels of education,

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

I2C PRESSURE MONITORING THROUGH USB PROTOCOL.

I2C PRESSURE MONITORING THROUGH USB PROTOCOL. I2C PRESSURE MONITORING THROUGH USB PROTOCOL. Product Details: To eradicate human error while taking readings such as upper precision or lower precision Embedded with JAVA Application: Technology Used:

More information

Medical Device Design: Shorten Prototype and Deployment Time with NI Tools. NI Technical Symposium 2008

Medical Device Design: Shorten Prototype and Deployment Time with NI Tools. NI Technical Symposium 2008 Medical Device Design: Shorten Prototype and Deployment Time with NI Tools NI Technical Symposium 2008 FDA Development Cycle From Total Product Life Cycle by David W. Fiegal, M.D., M.P.H. FDA CDRH Amazon.com

More information

SCADA and Monitoring for Solar Energy Plant

SCADA and Monitoring for Solar Energy Plant SCADA and Monitoring for Solar Energy Plant Segment: Industry Country: Thailand Author: Ranon Satitpanyapan Products: NI LabVIEW with LabVIEW Real-Time Module crio Real-Time controller 8 slot with 16 current

More information

Getting Started with the LabVIEW Mobile Module Version 2009

Getting Started with the LabVIEW Mobile Module Version 2009 Getting Started with the LabVIEW Mobile Module Version 2009 Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that

More information

AC 2012-4561: MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT

AC 2012-4561: MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT AC 2012-4561: MATHEMATICAL MODELING AND SIMULATION US- ING LABVIEW AND LABVIEW MATHSCRIPT Dr. Nikunja Swain, South Carolina State University Nikunja Swain is a professor in the College of Science, Mathematics,

More information

FRC WPI Robotics Library Overview

FRC WPI Robotics Library Overview FRC WPI Robotics Library Overview Contents 1.1 Introduction 1.2 RobotDrive 1.3 Sensors 1.4 Actuators 1.5 I/O 1.6 Driver Station 1.7 Compressor 1.8 Camera 1.9 Utilities 1.10 Conclusion Introduction In this

More information

LabVIEW DSP Test Integration Toolkit for TI DSP

LabVIEW DSP Test Integration Toolkit for TI DSP LabVIEW DSP Test Integration Toolkit for TI DSP Contents The LabVIEW DSP Test Integration Toolkit for TI DSP gives you the ability to use LabVIEW and the TI Code Composer Studio (CCS) Integrated Development

More information

S7 for Windows S7-300/400

S7 for Windows S7-300/400 S7 for Windows S7-300/400 A Programming System for the Siemens S7 300 / 400 PLC s IBHsoftec has an efficient and straight-forward programming system for the Simatic S7-300 and ern controller concept can

More information

Availability of the Program A free version is available of each (see individual programs for links).

Availability of the Program A free version is available of each (see individual programs for links). Choosing a Programming Platform Diane Hobenshield Tepylo, Lisa Floyd, and Steve Floyd (Computer Science and Mathematics teachers) The Tasks Working Group had many questions and concerns about choosing

More information

Straton and Zenon for Advantech ADAM-5550. Copalp integrates the straton runtime into the ADAM-5550 device from Advantech

Straton and Zenon for Advantech ADAM-5550. Copalp integrates the straton runtime into the ADAM-5550 device from Advantech Straton and Zenon for Advantech ADAM-5550 Copalp integrates the straton runtime into the ADAM-5550 device from Advantech Project Introduction: Programmable Application Controllers (PAC) are powerful and

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

Wireless Data Acquisition in. LabVIEW

Wireless Data Acquisition in. LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Wireless Data Acquisition in HANS-PETTER HALVORSEN, 2011.02.03 LabVIEW Faculty of Technology, Postboks

More information

Introduction to. Università degli Studi di Catania DIEEI

Introduction to. Università degli Studi di Catania DIEEI Introduction to Outline Definitions about Labview Main features and advantages Environment G Language principal components Labview in a measurement scenario What is LabVIEW? LabVIEW alias LABoratory Virtual

More information

Implementing a Reliable Furnace Monitoring System

Implementing a Reliable Furnace Monitoring System Category: Manufacturing Implementing a Reliable Furnace Monitoring System Products Used: RT Series PXI (PXI 1002 And PXI 8156B) LabVIEW Real-Time by V. Arunachalam Sr. Project Engineer Anand Chinnaswamy

More information

Lab Inventory System. Label Writer Access Card with Barcode Barcode Reader. Hans- Pe(er Halvorsen, M.Sc.

Lab Inventory System. Label Writer Access Card with Barcode Barcode Reader. Hans- Pe(er Halvorsen, M.Sc. Lab Inventory System Label Writer Access Card with Barcode Barcode Reader Hans- Pe(er Halvorsen, M.Sc. Lab Inventory System (LIS) 1. Register Equipment Data - Then Print out a Barcode Label and sfck it

More information

Industrial Automation Training Academy. PLC, HMI & Drives Training Programs Duration: 6 Months (180 ~ 240 Hours)

Industrial Automation Training Academy. PLC, HMI & Drives Training Programs Duration: 6 Months (180 ~ 240 Hours) nfi Industrial Automation Training Academy Presents PLC, HMI & Drives Training Programs Duration: 6 Months (180 ~ 240 Hours) For: Electronics & Communication Engineering Electrical Engineering Instrumentation

More information

1 Introduction. 2 Project Browser. 3 FlowStone Editor

1 Introduction. 2 Project Browser. 3 FlowStone Editor USER GUIDE C O N T E N T S CHAPTER 1 1 Introduction 3 OVERVIEW... 4 ABOUT THIS GUIDE...4 CHAPTER 2 2 Project Browser 5 OVERVIEW... 6 NAVIGATOR... 6 TOOLBAR...7 PROJECT LIST... 7 PROJECT ACTIONS... 9 OPENING

More information

Instrumentação Suportada em Computadores Pessoais Instrumentation

Instrumentação Suportada em Computadores Pessoais Instrumentation 1 Instrumentação Suportada em Computadores Pessoais PC-Based Instrumentation A. Lopes Ribeiro arturlr@ist.utl.pt 2 Objectives To give the students the ability to design and implement automated data acquisition

More information

MECE 102 Mechatronics Engineering Orientation

MECE 102 Mechatronics Engineering Orientation MECE 102 Mechatronics Engineering Orientation Mechatronic System Components Associate Prof. Dr. of Mechatronics Engineering Çankaya University Compulsory Course in Mechatronics Engineering Credits (2/0/2)

More information

LabVIEW Advanced Programming Techniques

LabVIEW Advanced Programming Techniques LabVIEW Advanced Programming Techniques SECOND EDITION Rick Bitter Motorola, Schaumburg, Illinois Taqi Mohiuddin MindspeedTechnologies, Lisle, Illinois Matt Nawrocki Motorola, Schaumburg, Illinois @ CRC

More information

E-learning for Graphical System Design Courses: A Case Study

E-learning for Graphical System Design Courses: A Case Study E-learning for Graphical System Design Courses: A Case Study Yucel Ugurlu Education & Research Programs National Instruments Japan Corporation Tokyo, Japan e-mail: yucel.ugurlu@ni.com Hiroshi Sakuta Department

More information

Eric Carestia. Dr. Janusz Zalewski. Florida Gulf Coast University. Ft. Myers, Florida. April 2011

Eric Carestia. Dr. Janusz Zalewski. Florida Gulf Coast University. Ft. Myers, Florida. April 2011 Wireless Network Security System Programmed in LabVIEW Eric Carestia Dr. Janusz Zalewski CEN 4931 Spring 2011 Independent Study Florida Gulf Coast University Ft. Myers, Florida April 2011 Eric Carestia

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

Getting Started with the LabVIEW Mobile Module

Getting Started with the LabVIEW Mobile Module Getting Started with the LabVIEW Mobile Module Contents The LabVIEW Mobile Module extends the LabVIEW graphical development environment to Mobile devices so you can create applications that run on Windows

More information

FUNDAMENTALS OF CONTROL ENGINEERING

FUNDAMENTALS OF CONTROL ENGINEERING EQUIPMENT FOR ENGINEERING EDUCATION EQUIPMENT FOR ENGINEERING EDUCATION ENGINEERING MECHANICS & MACHINE ELEMENTS Statics Strength of Materials Dynamics Fundamentals of Engineering Design Machinery Diagnosis

More information

D800002X122 March 2006. Getting Started With Your DeltaV Digital Automation System

D800002X122 March 2006. Getting Started With Your DeltaV Digital Automation System D800002X122 March 2006 Getting Started With Your DeltaV Digital Automation System TM 1996-2006 Fisher-Rosemount Systems, Inc. All rights reserved. Unauthorized duplication, in whole or in part, is prohibited.

More information

FUTEK USB LabVIEW 11 Example

FUTEK USB LabVIEW 11 Example 10 Thomas, Irvine, CA 92618, USA Toll Free: (800) 23-FUTEK Telephone: (949) 465-0900 Fax: (949) 465-0905 futek@futek.com www.futek.com 2 Table of Contents Requirements... - 3 - Initializing Connections...

More information

EXPERIMENT 2 TRAFFIC LIGHT CONTROL SYSTEM FOR AN INTERSECTION USING S7-300 PLC

EXPERIMENT 2 TRAFFIC LIGHT CONTROL SYSTEM FOR AN INTERSECTION USING S7-300 PLC YEDITEPE UNIVERSITY ENGINEERING & ARCHITECTURE FACULTY INDUSTRIAL ELECTRONICS LABORATORY EE 432 INDUSTRIAL ELECTRONICS EXPERIMENT 2 TRAFFIC LIGHT CONTROL SYSTEM FOR AN INTERSECTION USING S7-300 PLC Introduction:

More information

Programming with the Arduino: open-source hardware in an introductory programming laboratory. Paul Cruickshank pasc@st-andrews.ac.

Programming with the Arduino: open-source hardware in an introductory programming laboratory. Paul Cruickshank pasc@st-andrews.ac. Programming with the Arduino: open-source hardware in an introductory programming laboratory Paul Cruickshank pasc@st-andrews.ac.uk Motivation Prior to 2013, no formal programming for St Andrews physics

More information

Computer Controlled Vortex Tube Refrigerator Unit, with SCADA TPVC

Computer Controlled Vortex Tube Refrigerator Unit, with SCADA TPVC Technical Teaching Equipment Computer Controlled Vortex Tube Refrigerator Unit, with SCADA TPVC Teaching Technique used EDIBON SCADA System 2 Control Interface Box 5 Cables and Accessories 6 Manuals 3

More information

Industrial Communications Training

Industrial Communications Training Standards Certification Education & Training Publishing Conferences & Exhibits Industrial Communications Training Optimizing the flow and value of real-time data Expert-led training with real-world application

More information

Manage Software Development in LabVIEW with Professional Tools

Manage Software Development in LabVIEW with Professional Tools Manage Software Development in LabVIEW with Professional Tools Introduction For many years, National Instruments LabVIEW software has been known as an easy-to-use development tool for building data acquisition

More information

Bioreactor Process Plant Powered by NI LabVIEW and NI CompactRIO

Bioreactor Process Plant Powered by NI LabVIEW and NI CompactRIO Bioreactor Process Plant Powered by NI LabVIEW and NI CompactRIO Segment: Industry Country: Singapore Author(s): Sanka Hettiarachchi, Providev Kevin Kho, Technologies Unlimited Products: NI crio-9075 (Integrated

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

Computer Integrated Experimentation in Electrical Engineering Education over Distance

Computer Integrated Experimentation in Electrical Engineering Education over Distance Session 3542 Computer Integrated Experimentation in Electrical Engineering Education over Distance Oguz A. Soysal, Frostburg State University Abstract The paper presents the implementation of computer

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

Introduction To SCADA and Telemetry

Introduction To SCADA and Telemetry Introduction To SCADA and Telemetry Joe Mullaney Senior I&C Engineer MSE Technology Applications, Inc. Tetragenics Division joe.mullaney@mse-ta.com Overview Definitions What is SCADA? What is Telemetry?

More information

Setting up a Local Interconnect Network (LIN) using dspace MicroAutoBox 1401/1501 Simulink Blocks

Setting up a Local Interconnect Network (LIN) using dspace MicroAutoBox 1401/1501 Simulink Blocks Setting up a Local Interconnect Network (LIN) using dspace MicroAutoBox 1401/1501 Simulink Blocks Guiseppe Ferro Design Team 4 3/22/13 Executive Summary Learn how to setup and properly use the Real- Time

More information

Testing high-power hydraulic pumps with NI LabVIEW (RT) and the StateChart module. Jeffrey Habets & Roger Custers www.vi-tech.nl

Testing high-power hydraulic pumps with NI LabVIEW (RT) and the StateChart module. Jeffrey Habets & Roger Custers www.vi-tech.nl Testing high-power hydraulic pumps with NI LabVIEW (RT) and the StateChart module Jeffrey Habets & Roger Custers www.vi-tech.nl Agenda Introduction to the teststand The challenge New setup system overview

More information

NEW GENERATION PROGRAMMABLE AUTOMATION CONTROLLER

NEW GENERATION PROGRAMMABLE AUTOMATION CONTROLLER NEW GENERATION PROGRAMMABLE AUTOMATION CONTROLLER NEW GENERATION PROGRAMMABLE AUTOMATION CONTROLLER Understanding what a PAC is starts from the understanding of PLC. A PLC is a Programmable Logic while

More information

Controller Design using the Maple Professional Math Toolbox for LabVIEW

Controller Design using the Maple Professional Math Toolbox for LabVIEW Controller Design using the Maple Professional Math Toolbox for LabVIEW This application demonstrates how you can use the Maple Professional Math Toolbox for LabVIEW to design and tune a Proportional-Integral-Derivative

More information

Lab 5 Getting started with analog-digital conversion

Lab 5 Getting started with analog-digital conversion Lab 5 Getting started with analog-digital conversion Achievements in this experiment Practical knowledge of coding of an analog signal into a train of digital codewords in binary format using pulse code

More information

Create a Virtual Test Environment

Create a Virtual Test Environment Create a Virtual Test Environment Step by Step Exercises Hans- Pe5er Halvorsen, M.Sc. Why Do We Need a Test Environment? Why cant we just use our own PC? 2 3 Why Test Environment? It works on my PC says

More information

Connecting instruments serially to your computer

Connecting instruments serially to your computer Connecting instruments serially to your computer This TechNote will review how to connect instruments (GPS, Sounder, Heading Sensor ) to a computer. Important points such as electrical specification (RS-232

More information

Computer Controlled Capacity Control Methods in Refrigeration, with SCADA and PID Control THARA2C/1

Computer Controlled Capacity Control Methods in Refrigeration, with SCADA and PID Control THARA2C/1 Technical Teaching Equipment Computer Controlled Capacity Control Methods in Refrigeration, with SCADA and PID Control THARA2C/1 EDIBON SCADA System and PID CONTROL included Teaching Technique used 5 6

More information

DAQ Getting Started Guide

DAQ Getting Started Guide DAQ Getting Started Guide This guide describes how to confirm your NI data acquisition (DAQ) device is operating properly. Install your application and driver software, then your device, using the instructions

More information

EasyC. Programming Tips

EasyC. Programming Tips EasyC Programming Tips PART 1: EASYC PROGRAMMING ENVIRONMENT The EasyC package is an integrated development environment for creating C Programs and loading them to run on the Vex Control System. Its Opening

More information

LabVIEW Day 6: Saving Files and Making Sub vis

LabVIEW Day 6: Saving Files and Making Sub vis LabVIEW Day 6: Saving Files and Making Sub vis Vern Lindberg You have written various vis that do computations, make 1D and 2D arrays, and plot graphs. In practice we also want to save that data. We will

More information

Programmable Logic Controller PLC

Programmable Logic Controller PLC Programmable Logic Controller PLC UPCO ICAI Departamento de Electrónica y Automática 1 PLC Definition PLC is a user friendly, microprocessor based, specialized computer that carries out control functions

More information

Learning Remote Control Framework ADD-ON for LabVIEW

Learning Remote Control Framework ADD-ON for LabVIEW Learning Remote Control Framework ADD-ON for LabVIEW TOOLS for SMART MINDS Abstract This document introduces the RCF (Remote Control Framework) ADD-ON for LabVIEW. Purpose of this article and the documents

More information

TEMPERATURE CONTROL AND DATA ACQUISITION METHOD FOR FACTORY USING LABVIEW

TEMPERATURE CONTROL AND DATA ACQUISITION METHOD FOR FACTORY USING LABVIEW International Journal of Computer Engineering & Technology (IJCET) Volume 7, Issue 2, March-April 2016, pp. 01-14, Article ID: IJCET_07_02_001 Available online at http://www.iaeme.com/ijcet/issues.asp?jtype=ijcet&vtype=7&itype=2

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

Getting Started with the LabVIEW Embedded Module for ARM Microcontrollers 1.0 For the Keil MCB2300

Getting Started with the LabVIEW Embedded Module for ARM Microcontrollers 1.0 For the Keil MCB2300 Getting Started with the LabVIEW Embedded Module for ARM Microcontrollers 1.0 For the Keil MCB2300 Contents The LabVIEW Embedded Module for ARM Microcontrollers is a comprehensive graphical development

More information

EE289 Lab Fall 2009. LAB 4. Ambient Noise Reduction. 1 Introduction. 2 Simulation in Matlab Simulink

EE289 Lab Fall 2009. LAB 4. Ambient Noise Reduction. 1 Introduction. 2 Simulation in Matlab Simulink EE289 Lab Fall 2009 LAB 4. Ambient Noise Reduction 1 Introduction Noise canceling devices reduce unwanted ambient noise (acoustic noise) by means of active noise control. Among these devices are noise-canceling

More information

AutoLog ControlMan. Remote Monitoring & Controlling Service

AutoLog ControlMan. Remote Monitoring & Controlling Service AutoLog 1 AutoLog ControlMan Remote Monitoring & Controlling Service Web browser based HMI / SCADA interface Server is hosted by Internet server hosting company Control units communicate wirelessly via

More information

CIM Computer Integrated Manufacturing

CIM Computer Integrated Manufacturing INDEX CIM IN BASIC CONFIGURATION CIM IN ADVANCED CONFIGURATION CIM IN COMPLETE CONFIGURATION DL CIM A DL CIM B DL CIM C DL CIM C DL CIM B DL CIM A Computer Integrated Manufacturing (CIM) is a method of

More information

Sistemi di acquisizione. Grazie al sito National Instruments

Sistemi di acquisizione. Grazie al sito National Instruments Sistemi di acquisizione Grazie al sito National Instruments Tipiche funzionalità per scheda Ingressi analogici 8-32 canali Amplificazione controllabile da PC Uscite analogiche (di solito 2) Ingressi per

More information

Application Note IMU Visualization Software

Application Note IMU Visualization Software ECE 480 Spring 2013 Team 8 Application Note IMU Visualization Software Name: Alex Mazzoni Date: 04/04/2013 Facilitator: Dr. Aviyente Abstract This application note covers how to use open source software

More information