07-16-2014 01:40 AM
Hi,
Procedure for how to log the data in labview. For example am running a vi which performs some arithematic calculations and i want to log this data. Can you please suggest how to do this
Thanks in advance
07-16-2014 01:45 AM - edited 07-16-2014 01:53 AM
Hi Vika,
I suggest to use file functions…
Did you do any of those free online LabVIEW courses for beginners offered by NI?
Did you even started the ExampleFinder in LabVIEW's help menu?
All your questions (so far) indicate missing knowledge of and practicing in using LabVIEW. Do yourself a favor and take some courses before starting to code…
And please learn to give better thread titles in the first place!
07-23-2014 07:34 AM
Obligitory links to free training.
3 Hour Introduction http://www.ni.com/white-paper/5243/en/
6 Hour Introduction http://www.ni.com/white-paper/5241/en/
LabVEW Basics http://www.ni.com/gettingstarted/labviewbasics/
Self Paced training for students http://www.ni.com/academic/students/learn/
Self Paced training beginner to advanced, SSP Required http://sine.ni.com/myni/self-paced-training/app/ma
LabVIEW Wiki on Training http://labviewwiki.org/LabVIEW_tutorial#External_L
Data logging stuff is generally under the File I/O palette and there is a simple function for writing text files, or writing arrays of data that append to existing files.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
07-23-2014 07:54 AM
If it is just a few numbers, wire them to an array first then wire that to a tdms write block. place your open tdms file outside the while loop and have your filename wired to that. this should explain how