Connexions

You are here: Home » Content » Pop-up Graph VI and Use Pop-up Graph VI
Content Actions
Lenses

What is a lens?

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

This content is ...
Affiliated with (?)
This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • This module is included in aLens by: National InstrumentsAs a part of collection:"LabVIEW Graphical Programming Course"

    Comments:

    "A full introductory course on programming with LabVIEW."

    Click the "National Instruments" link to see all content affiliated with them.

    National Instruments
Also in these lenses
  • This module is included inLens: Connexions Books Available for Print on Demand
    By: ConnexionsAs a part of collection:"LabVIEW Graphical Programming Course"

    Comments:

    "This book is available through the Connexions beta version of print-on-demand from online materials."

    Click the "Printable Books" link to see all content selected in this lens.

    Printable Books
Tags

(?)

These tags come from the endorsement, affiliation, and other lenses that include this content.

Pop-up Graph VI and Use Pop-up Graph VI

Module by: National Instruments

Summary: To display a subVI front panel when a VI runs.

Problem 1
Complete the following steps to build a VI that acquires temperature once every 0.5 seconds for 10 seconds, displays a subVI front panel that shows the acquired data in a graph, and keeps the front panel open until you click a button.

1.a) Front Panel

Open a blank VI and build the following front panel.
usepopup.png
Figure 1
Use the following guidelines to assist you in building the front panel.
  • The indicator to the right of the thermometer is a digital display belonging to the thermometer. Right-click the thermometer and select Visible Items>>Digital Display from the shortcut menu to display the digital value.
  • Change # of data values to signed 32-bit integer (I32) representation.

1.b) Block Diagram

  1. Build the following block diagram.
    usepopupbd.png
    Figure 2
    1. tempicon.png Place the Thermometer VI from a previous exercise on the block diagram. This VI acquires the current temperature value.
    2. waitms.png Place the Wait Until Next ms Multiple function, located on the Functions>>All Functions>>Time & Dialog palette, on the block diagram. Right-click the input, select Create>>Constant, and type 500 in the constant to cause the For Loop to execute every 500 ms.
    3. multiply.png Place the Multiply function, located on the Functions>>Arithmetic & Comparison>>Express Numeric palette, on the block diagram. This function multiplies each element of the output array by 0.50 to scale the xx values to represent the time interval at which the VI takes the measurements.
    4. popupicon.png Place the Pop-up Graph VI, located in the C:\Exercises\LabVIEW Basics I directory, on the block diagram. This VI plots the temperature data on an XY graph.
    5. Complete the block diagram as shown in the previous figure.
  2. Save the VI as Use Pop-up Graph.vi in the C:\Exercises\LabVIEW Basics I directory.
  3. Configure the subVI to display its front panel when called.
    1. Double-click the Pop-up Graph subVI to open its front panel.
    2. Select File>>VI Properties.
    3. Select Window Appearance from the Category pull-down menu.
    4. Click the Customize button. Configure the window appearance as shown in the dialog box.
      custwinapp.png
      Figure 3
    5. Click the OK button twice and save and close the subVI. If the front panel is not closed, it will not close after the subVI runs.
  4. Run the Use Pop-up Graph VI. After the VI acquires 10 seconds of temperature data, the front panel of the Pop-up Graph VI displays and plots the temperature data. Click the DONE button to return to the calling VI.
  5. Change the window appearance settings for the Pop-up Graph subVI to the Dialog window style.
  6. Save and close the subVI.
  7. Run the Use Pop-up Graph VI again. The Pop-up Graph subVI front panel window behaves as a dialog box. For example, the window stays on top of all other windows and uses the system colors.
  8. Close all open VIs.

Comments, questions, feedback, criticisms?

Discussion forum

Send feedback