Jump to content

Saving measurement data in a .txt file


Recommended Posts

Hello dear Labview friends,

Main program background: (if somebody wants to know)

Okay as roughly speaking it is a 6 point measurement on a 3 contact tandem solar cell.
So actually it is two 4 point measurements where 2 measurement points overlap (so one contact has 4 measurement pins instead of two)
Which is why we get two data (voltage, current for A) for the first 4 point measurement and 2 (voltage, current for B) for the other :)
While we apply a constant voltage to one contact (with Channel B), the other one goes through all voltage steps (Channel A). So the inner loop.
But since the measurements are connected to each other, when we increase the voltage in channel A, not only the current of channel A changes, but also the current of channel B. So everytime we perform the inner loop, we have to measure both channels. (is a bit crazy I know ). Thereby 4 measurement data are produced Channel A (voltage and current density) and Channel B (voltage and current density). When the first run of channel A is finished, the voltage of channel B goes to the next voltage value and channel A starts from the beginning and both Channels are measured. An Example for a potenzial Output would look something like this:

1646304333_Screenshot2022-02-17224115.png.eb758de71e7de2bf92e6a88f6454ef85.png

The simplified VI I send here has only the functions needed to show approximately what is happening, so it is not too much to look at and you don't have to spend years to understand:)

Currently 4 data are "measured" (random numbers) and are plotted in two graphs. The values are the replacement for the measured values taken for the 2 channels from the Keithley 2614B.

While running the Program:
Before you click on Start you can select a .txt file at Save Data where you want to save the data at the end.
If you press Start and have not yet selected one, a message appears that you should do it and you must select a .txt document.
So you have to create a .txt to move on
After the measurement, the data should then be in there.

I am quite honest I have no idea how I can do this best:/ (Probably but my Array in a cluster, but how to save it hmmm...)

Finally everything should be saved in a .txt file.

The header of the .txt simply outputs the values that were entered at the beginning of the measurement + an IDN? Output (can be ignored for now)
As second there were some calculations (can be ignored for now)
and the third are the actual measurement data for our case its:
voltage_A, Current_A, voltage_B, Current_B

 

Normally in the old version the measurement data comes into the "Write To Spreadsheet File.vi" as stream of a 2DArray of doubles which looks like this: (here only channel A was measured in the old test program, but in principle there would 2 rows more)

253317778_Screenshot2022-02-17222404.png.818b60223132496ace3a63c872d6e5bc.png
 

It does not even have to be the best solution if it works I would find it already awesome.

I thought I could simply build a 2 D array during the measurement and then send it to the save area. Unfortunately this did not work.

Or maybe at the lower Loop where the graph is plotted then collect the measurement data into a 2D Array and return it to the "save" area

Would be awesome if you could put your potential solution in the VI i sent along so i can see and learn what you did, but iam grateful for every idea:)

I wish you all a nice week!

Sebastian

How to Save Data.vi

Link to comment

I would suggest using tdms to save the data. Then you don't have to reinvent the wheel, and you can save data for each point and just forget about how it works. The "Save" function you have can instead be an Export-function that exports the tdms-data to a text file.

Just some quick thoughts to get you in the right direction. I'm sure you will get more thorough responses soon, but have a look at tdms in the meantime.

Link to comment
5 hours ago, Sebbastiannn said:

I thought I could simply build a 2 D array during the measurement and then send it to the save area. Unfortunately this did not work.

The reason this doesn't work is because you are building a plot array of complex numbers and the Save To Spreadsheet accepts doubles. I expect what you were seeing was just the real part as the complex numbers were converted to doubles. Why are you building the array as complex numbers? Do you wish to save the data in complex notation?

Link to comment
14 hours ago, mcduff said:

This is a quick way to do a X-Y Plot, no arrays of x and y data, or bundles of x and y points.

Except for all the in-place structures and array manipulation ;)

14 hours ago, mcduff said:

Snap131.png

That won't save it in the i+j notation, hence my question.

It also looks like the OP wants to interleave the data from the two graphs to get to his table when he could just have built the array the "old way" and sliced out the data for display.

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.