Difference between revisions of "Introduction to LabVIEW & Digital Logic (Virtual)"

From EG1004 Lab Manual
Jump to: navigation, search
(Created page with "= Objective = The objective of this lab is to use LabVIEW and digital logic to design a heating and cooling system and an alarm system, and to test both systems on a NI-ELVIS...")
 
Line 45: Line 45:
Collectively, controls, indicators, structures, and functions are referred to as nodes. <b>Nodes</b> are connected to one another using the wiring tool. For example, two controls and an indicator can be wired to the addition function so that the indicator displays the sum of the two controls (Figure 9). Notice how the two controls have the triangle on the right, and the indicator has the triangle on the left.
Collectively, controls, indicators, structures, and functions are referred to as nodes. <b>Nodes</b> are connected to one another using the wiring tool. For example, two controls and an indicator can be wired to the addition function so that the indicator displays the sum of the two controls (Figure 9). Notice how the two controls have the triangle on the right, and the indicator has the triangle on the left.


[[Image:Function_Terminals.jpg|150px|thumb|center|Figure 8: Function Terminals]]
[[Image:Wiring_Nodes.jpg|300px|thumb|center|Figure 9: Wiring Nodes]]
 
The <b>toolbar</b> at the top of the front panel is used to execute and stop the program (Figure 10). The <b>run tool</b> (white arrow) runs the program once. The <b>run continuously tool</b> (two white arrows in a circle) keeps the program running continuously until the program is paused or stopped. This tool should be used when executing programs in this experiment. The <b>abort execution tool</b> (red stop sign) stops the VI immediately. The <b>pause button</b> (two vertical black rectangles) pauses the program and can be clicked again to continue the program.
 
[[Image:ToolBar.jpg|130px|thumb|center|Figure 10: Toolbar]]
 
== NI ELVIS II+ Board ==
 
<b>National Instruments' Educational Laboratory Virtual Instrumentation Suite (NI ELVIS II+) board</b> (Figure 11) is one solution LabVIEW can utilize to physically interface with external devices. It is a modular engineering device that includes a breadboard, power supply, ground, thermocouple, oscilloscope, function analyzer, and other common lab instruments. In this experiment, an NI ELVIS board II+ will be used to provide inputs and display outputs for the VIs that will be created.  Here is a tutorial video on NI ELVIS boards II+.
 
[[Image:NI_Elvis.jpg|500px|thumb|center|Figure 11: NI ELVIS II+ Board]]
 
== Digital Logic ==
 
<b>Digital logic</b> is the conceptual language behind modern computer systems. It uses the Boolean language, which consists of a system of rules that essentially says “yes” or “no” to a series of questions, leading to extremely complicated decisions. The fundamentals of digital logic will be explored in this lab, and a digital logic system will be designed to address a simple problem statement.
 
=== Truth Tables ===
 
In Boolean logic, there are only two values, true and false, represented by 1 and 0, respectively. These values are combined in equations to yield results that also have these two values. The equations are represented by <b>truth tables</b> that show the inputs to the equation and the outputs produced for those inputs. The rows of the table contain all the combinations of 1s and 0s for the inputs. The number of rows is determined by the number of combinations.
 
To illustrate a truth table and additional concepts that will be introduced, think of an ATM that has three options: print a statement, withdraw money, or deposit money. The ATM will charge a fee to (1) withdraw money or (2) print a statement without depositing money. The intent of the problem is to develop a Boolean equation and logic circuit that will determine the combinations of actions will result in a fee being charged. First, a truth table should be made for all the combinations of inputs. The inputs are the ATM's three functions. Let variable P stand for printing a statement, W for withdrawing money, and D for depositing money. A “1” indicates the user has taken that action and a “0” indicates the user has not taken that action. There are two outputs -- charge a fee (1) or do not charge a fee (0). The output column will be denoted by C. The truth table in Table 1 shows all the combinations of the inputs and their corresponding outputs.
 
{|class = "wikitable"
|+ Table 1: Truth Table for ATM Problem
!P!!W!!D!!C
|-
|style="text-align: center;"|0||style="text-align:center;"|0||style="text-align:center;"|0||style="text-align:center;"|0
|-
|style="text-align: center;"|0||style="text-align:center;"|0||style="text-align:center;"|1||style="text-align:center;"|0
|-
|style="text-align: center;"|0||style="text-align:center;"|1||style="text-align:center;"|0||style="text-align:center;"|1
|-
|style="text-align: center;"|0||style="text-align:center;"|1||style="text-align:center;"|1||style="text-align:center;"|1
|-
|style="text-align: center;"|1||style="text-align:center;"|0||style="text-align:center;"|0||style="text-align:center;"|1
|-
|style="text-align: center;"|1||style="text-align:center;"|0||style="text-align:center;"|1||style="text-align:center;"|0
|-
|style="text-align: center;"|1||style="text-align:center;"|1||style="text-align:center;"|0||style="text-align:center;"|1
|-
|style="text-align: center;"|1||style="text-align:center;"|1||style="text-align:center;"|1||style="text-align:center;"|1
|-
|}

Revision as of 16:53, 22 July 2020

Objective

The objective of this lab is to use LabVIEW and digital logic to design a heating and cooling system and an alarm system, and to test both systems on a NI-ELVIS II+ prototyping board. Building these systems will demonstrate the potential for using simulated instruments in a laboratory. These programs will also obtain data from outside the computer and incorporate it into a program design. The lab will be divided into two parts. Both parts of the lab focus on creating a solution for the assigned problem statement.

Overview

LabVIEW

The Laboratory Virtual Instrument Engineering Workbench (LabVIEW) is a development environment designed by National Instruments that creates graphics-based programs called virtual instruments (VI) that simulate actual laboratory instruments. A VI consists of two parts: a front panel and a back panel (Figure 1). The front panel allows the user to interact with the VI by displaying outputs and allows the user to supply the program with inputs. The back panel consists of the code used by the VI to obtain inputs from the front panel, operates on the inputs, and displays the results.

Figure 1: Front Panel (Left) and Back Panel (Right)

The front panel is built using controls and indicators. Controls are inputs that allow a user to supply information to the VI. Indicators are outputs that display the results based on the inputs given to the VI. Controls can be switches, knobs, dials, and buttons. Indicators can be meters, gauges, LEDs, and displays. These are located on the Controls palette and are placed on the front panel (Figure 2).

Figure 2: Controls Palette

The back panel, which is also known as the block diagram, contains the graphics-based source code. The environment of the back panel is built using the Tools palette (Figure 3).

Figure 3: Tools Palette

In Figure 3, only the icons in colored boxes will be used in this experiment. The operating tool changes the value of a control. The positioning tool positions, resizes, and selects objects. The labeling tool is used to create and edit all labels in the VI, such as the name of a Boolean control. The wiring tool wires objects together on the back panel. The scrolling tool allows scrolling the window by clicking and dragging.

All of the objects placed on the front panel will appear on the back panel as terminals. Terminals are basically entry and exit ports. They exchange information between the front panel and block diagram and appear with small triangles in the icons to indicate that they can be used to process information (Figure 4). A control terminal has the triangle to the right to indicate that it sends data to be processed. An indicator terminal has the triangle to the left to indicate that it receives data.

Figure 4: Control and Indicator Terminals

The back panel also contains structures and functions that perform operations on controls and supply data to indicators. Structures and functions are found on the Functions palette and are placed on the back panel (Figure 5).

Figure 5: Functions Palette

Structures are process control elements, such as while loops and for loops. The structure to be used in this experiment is the case structure (Figure 6), which is essentially multiple if-statements. A case structure contains multiple sub-diagrams (or cases), and a case will be executed depending on the input to the case structure.

Figure 6: Case Structure

In Figure 6, Item 1 is the selector label that displays the input value that the associated case will execute. The black arrows on the side of the selector label toggle between the different cases. Item 2 is the area for the code that executes the specific input in the selector label. When the selector label is toggled, the code in this area will also change. Item 3 is the case selector, which gives the input value to the case structure. The data type that is wired to the case selector that will determine the possible cases. For example, if a Boolean data type is wired to the case selector, the possible cases will only be true and false.

Functions are the fundamental operating elements of LabVIEW and have input and output terminals to pass data in and out. They are indicated by a pale yellow background in the icon (Figure 7).

Figure 7: Examples of Functions

Functions have a certain number of inputs and outputs, depending on the type of function. For example, the addition function (leftmost icon in Figure 7) has two inputs as it will add the two inputs together, and it will have one output that is the sum of the inputs. The inputs are wired to the left side of the function, and the outputs are wired to the right side of the function. The number of inputs and outputs of a function can be observed by hovering over the icon with the wiring tool and observing the terminals that appear (Figure 8).

Figure 8: Function Terminals

Collectively, controls, indicators, structures, and functions are referred to as nodes. Nodes are connected to one another using the wiring tool. For example, two controls and an indicator can be wired to the addition function so that the indicator displays the sum of the two controls (Figure 9). Notice how the two controls have the triangle on the right, and the indicator has the triangle on the left.

Figure 9: Wiring Nodes

The toolbar at the top of the front panel is used to execute and stop the program (Figure 10). The run tool (white arrow) runs the program once. The run continuously tool (two white arrows in a circle) keeps the program running continuously until the program is paused or stopped. This tool should be used when executing programs in this experiment. The abort execution tool (red stop sign) stops the VI immediately. The pause button (two vertical black rectangles) pauses the program and can be clicked again to continue the program.

Figure 10: Toolbar

NI ELVIS II+ Board

National Instruments' Educational Laboratory Virtual Instrumentation Suite (NI ELVIS II+) board (Figure 11) is one solution LabVIEW can utilize to physically interface with external devices. It is a modular engineering device that includes a breadboard, power supply, ground, thermocouple, oscilloscope, function analyzer, and other common lab instruments. In this experiment, an NI ELVIS board II+ will be used to provide inputs and display outputs for the VIs that will be created. Here is a tutorial video on NI ELVIS boards II+.

Figure 11: NI ELVIS II+ Board

Digital Logic

Digital logic is the conceptual language behind modern computer systems. It uses the Boolean language, which consists of a system of rules that essentially says “yes” or “no” to a series of questions, leading to extremely complicated decisions. The fundamentals of digital logic will be explored in this lab, and a digital logic system will be designed to address a simple problem statement.

Truth Tables

In Boolean logic, there are only two values, true and false, represented by 1 and 0, respectively. These values are combined in equations to yield results that also have these two values. The equations are represented by truth tables that show the inputs to the equation and the outputs produced for those inputs. The rows of the table contain all the combinations of 1s and 0s for the inputs. The number of rows is determined by the number of combinations.

To illustrate a truth table and additional concepts that will be introduced, think of an ATM that has three options: print a statement, withdraw money, or deposit money. The ATM will charge a fee to (1) withdraw money or (2) print a statement without depositing money. The intent of the problem is to develop a Boolean equation and logic circuit that will determine the combinations of actions will result in a fee being charged. First, a truth table should be made for all the combinations of inputs. The inputs are the ATM's three functions. Let variable P stand for printing a statement, W for withdrawing money, and D for depositing money. A “1” indicates the user has taken that action and a “0” indicates the user has not taken that action. There are two outputs -- charge a fee (1) or do not charge a fee (0). The output column will be denoted by C. The truth table in Table 1 shows all the combinations of the inputs and their corresponding outputs.

Table 1: Truth Table for ATM Problem
P W D C
0 0 0 0
0 0 1 0
0 1 0 1
0 1 1 1
1 0 0 1
1 0 1 0
1 1 0 1
1 1 1 1