Questions tagged [labview]

LabVIEW stands for Laboratory Virtual Instrumentation Engineering Workbench and is a graphical programming system by National Instruments. The programming language is called G but often referred to as just LabVIEW.

LabVIEW is a graphical development environment offered as proprietary software by National Instruments and complementing their industrial controllers and data acquisition systems used in research labs and elsewhere.

The programming language itself is called G but usually referred to as just LabVIEW. The programming language is a parallel, dataflow, graphical, type-safe language. Dataflow provides automatic memory allocation/deallocation without the overhead of garbage collection. The language includes hooks to call into native C, .NET, COM, etc.

A LabView application is represented by a so-called "virtual instrument" or VI. A VI is divided into two parts: the front panel and the block diagram. The front panel acts as the GUI and defines the user interface where all the visual elements ("controls") are drawn and placed. Front panel controls include buttons, switches, knobs, and so on. Output elements like graphs, thermometers, and text boxes are also placed on the front panel.

The block diagram contains the execution code. LabVIEW code follows a dataflow-based execution paradigm. Functions are represented as individual blocks on the block diagram, with each function having zero or more inputs and one or more outputs. The dataflow programming paradigm dictates that a block (function) cannot execute until it has received data on all of its inputs, and a block outputs data on all of its outputs simultaneously once it has executed. Each block is, from the perspective of the block diagram in which it resides, atomic. Wiring determine execution order between blocks, and sections of a block diagram that share no connections can run completely in parallel.

To include LabVIEW code in your question, consider using a VI Snippet so that others can view, run and edit your code.

You can read more on the LabVIEW wiki or on the official National Instruments website.

1408 questions
-1
votes
4 answers

Can Labview simulate the electrical circuits like Pspice?

I really need to know that can I simulate the simple circuits like RC, OP-AMP, RL, or RLC in labview? Or it can only make processes for recorded signals? I think, it cannot create and simulate the electrical circuits like pscpice or simulink. Please…
-1
votes
1 answer

How to get a while loop once a value exceeds a given value

I want to get my while loop to sound an alarm when the value exceeds 20. To do this I am trying to use a while loop where if the final value exceeds 20 sound an alarm. How do I get my while loop to stop when the random number is >20? Numeric is…
user3008456
  • 35
  • 2
  • 6
-1
votes
1 answer

Duplicating the number of controlled systems

I have a file that controls three pumps (pressure and temperature). I want to extend the number to six. Is there a quick way to do this? Thanks
-1
votes
2 answers

DLL stop main thread when running

I call a DLL written in C++ (VS2012) from a software (LabView) and what it does is uploading a file on a server via FTP. While the DLL is uploading the file (15MB) it does not let LabView continue with other tasks. How could this problem be solved?
LppEdd
  • 20,274
  • 11
  • 84
  • 139
-1
votes
1 answer

Handling bad data during decryption (TripleDES, .NET)

I have an enc/dec process set up for a system where a user edits a file. If the encrypted file has been modified maliciously, I want to be able to handle it and say "oh decryption failed, gonna start with a clean file"... something like that. But…
-2
votes
1 answer

How to call a built dll file in LabVIEW from c#?

I have tried dllimport and extern command without any success. Searched the net for some examples, which just added more to my confusion :-). Any hints? Thanks in advance. Here is what I have tried: Static void Main (string[]…
Globalhawk
  • 148
  • 2
  • 8
-2
votes
0 answers

Why is lower arrow in webview2-scrollbar missing?

I implemented a webview2 control via LabVIEW in a frontpanel. Development environment is fine. But in runtime it doesn't shows the full vertical scrollbar. The lower arrow is missing. I tested a simple application just with the webview2 control in a…
Lancel
  • 1
-2
votes
2 answers

Program won't start before stop the program frist?

I'm a newbie using LabView for my project. So I'm developing a program that gathers data from sensors that attach in the DAQmx board and also a spectrometer from STS-VIS ocean optic. At the first developing, I combine both devices in one loop inside…
Kevin
  • 57
  • 6
-2
votes
1 answer

labview truth table combination

i want to create truth table combination depends on input like, if one input then just two combination 0 and 1 and if two input then combinations are 00, 10, 01, 11 and the inputs are N so it creates depends on input number
-2
votes
1 answer

RGB image with depth info

I am using the Intel ReslSense D435 stereo camera. I need to get RGB image correlated with depth information. I am using the LabVIEW wrapper. I succeed to grab depth info, grayscale image of the left camera and RGB image from the RGB camera. I…
-2
votes
1 answer

Send sensor data from Nodmcu to labview

I want to send sensor data(like DHT) from NODEMCU to LABVIEW. Is there any library or sketch to do this ? NODEMCU is connected to network in station mode. In labview, I have to use which library to do this?
REZA
  • 3
  • 4
-2
votes
1 answer

Firmware Update for myRIO

I have been looking for a newer version of firmware to download and install to a myRIO. I have not been able to find any downloads for myRIO firmware, let alone a recent version. Any thoughts as to where I could look for a new version of the…
Aaron
  • 3
  • 2
-2
votes
1 answer

M-ary simulation in labview

I am totally new to LabVIEW .I am having the block diagram of M-ary communication system: How can I create the same project by myself? Where can i find these components?.A step by step approach is welcomed. I am getting an error in the above…
user6889367
  • 123
  • 2
  • 7
-2
votes
1 answer

Is there any difference between AES_128_CBC and AES_128_CBC_SHA algorithm?

Is there any difference between AES_128_CBC and AES_128_CBC_SHA algorithm? I have a client document which says AES_128_CBC_SHA algorithm for data encryption. could anybody can share some Library files (.net, C,C#) which does AES_128_CBC_SHA…
Jijith
  • 1
  • 2
-2
votes
1 answer

How do you measure RSSIs of different parts of the spectrum(like FM, DVB-T and so on) using LabView?

I am doing a project on indoor localisation using fingerprinting. Is it possible to build a system in LabView which can scan the entire spectrum and provide me the RSSI measurements of different types of signals?(say FM, GSM, DVB-T and so on.) In…
1 2 3
93
94