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
-2
votes
1 answer

Using labview realtime module to catch .txt file in D disk

How to use labview real-time module to catch .txt file in D disk ? I would like to use myRIO project.
-2
votes
1 answer

DLL not writting in txt file from LabVIEW?

I am calling a dll in labview where the dll gets two numbers for summing and then has to be saved in txt file. Summing works perfectly fine, but writing it in the txt, doesn't work. When I a create separate c project and saving some random number in…
Josuhua
  • 1
  • 3
-3
votes
1 answer

Designing a water tank factory process in LabVIEW

I am currently designing a factory process in LabVIEW. I have a tank filled with water. I want to transfer 80% from it to one tank and after that the remaining 20% into another tank. How can I do that in LabVIEW?
-3
votes
1 answer

How i can acquire temperature by Thermo couple on Labview

every one i have knowledge about DAQ but my main question is which type of Thermo couple i used for NI DAQ devices and i there some link to buy it online, waiting for your kind Response
-3
votes
1 answer

Programming with opencv, dll, visual studio and labview

I am trying to build a module with two functions using opencv c++ in visual studio. I need to create a dll out of the program and use the dll in labview for processing a segment. Can anyone provide with an example code on how to create a dll using…
Sai krishna
  • 168
  • 9
-3
votes
1 answer

Why I can't run my own dll on another PC (msvcrt.dll is missed)

I have written my own DLL that wrap UNICODE to char and call another DLL from MicroChip. When I call my DLL from LabVIEW on my PC it works well. But if I try to call this DLL from another PC, I see the error that msvcrt.dll is missed. To solve this…
Artem
  • 1
-3
votes
1 answer

Resistive current measurement by novizon

can anyone provide vi file of resistive current measurement as following block diagram?
Prashant sharma
  • 415
  • 1
  • 4
  • 5
-3
votes
1 answer

How to set DMM4040 multimeter into remote mode?

I have developed a labview program to set DMM4040 series multimeter into remote mode and it is not working. But when I did the same thing by NI-MAX It works fine. I don't understand what is the problem with this code.
user3162506
  • 43
  • 1
  • 10
-4
votes
1 answer

Send variable from LabVIEW 2016 to Rasperry Pi 3 via TCP/IP to incorperate in code

I am trying to create a few inputs in LabVIEW 2016 which a user can modify (eg. total frames = 100). This number will then be sent to and RPi3 unit which is running a basic TCP/IP server script. The idea is that these numbers will set the…
-4
votes
1 answer

Parallel Programming in lab view is it possible?

I want to know two things regarding parallel programming, First, now a days how much processor supports parallel processing, if someone give me a link of any survey paper or website link in which they defined clearly. Second, is it possible, i will…
-4
votes
2 answers

Loading and Show Image Sequence

I am using LabView and OpenCV to load a an unknown amount of 2D-Pictures from a folder (16 Bit Signed) in LabView and then give it to OpenCV where you do s.th. with it, afterwards send it back to LabView. Here is my approach, but it didn't work,…
Xeno1987
  • 9
  • 1
  • 6
1 2 3
93
94