LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Problems making an curve tracer with the add-on Digilent VI

Solved!
Go to solution

Hello to all,

 

I know this is quite a begginer or maybe an obvious question but i really need help with someone pointing it out.

Recently im trying to make an expansion for the Analog Discovery 2 to make it able to caracterice an transistor with a Vce more than 5 V, up to 36V and a base current instead of simply a Vb, for my final year project.

Whens_Wens_Day_0-1742747200494.png

How to caracterize the transistor

I managed to made a prototype of the hardware and Im trying to control it with Labview, the setup is like the image.

Whens_Wens_Day_1-1742747452250.png

This setup should be correct as i tried it in Waveforms from Digilent

But when I did the Labview block diagrams, it does not give me the curve as i expected. I think the problem is in how I plotted the results, which made a lot of trouble.

Whens_Wens_Day_2-1742747624111.png

The main loop prepares to read the channels 1 and 2 as well generating the functions W1,W2, but Im not quite sure what i did with the results are correct, as well for the plotting, as I see it only always overwrite the plot.

Whens_Wens_Day_0-1742748060679.png

Plot from Labview

Any suggestions please?

0 Kudos
Message 1 of 6
(198 Views)

Hi Day,

 


@Whens_Wens_Day wrote:

But when I did the Labview block diagrams, it does not give me the curve as i expected. I think the problem is in how I plotted the results, which made a lot of trouble.

The main loop prepares to read the channels 1 and 2 as well generating the functions W1,W2, but Im not quite sure what i did with the results are correct, as well for the plotting, as I see it only always overwrite the plot.

Any suggestions please?


Right now you show the lastest curve data in your XY graph. Nothing less, and nothing more…

 

What's the point in collecting your measurement data in growing 2D arrays when you plot just the data of the current iteration?

 

(Maybe you should append new data to a 1D array instead of building 2D arrays?)

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 2 of 6
(152 Views)

Hello there,

 

I spent some time debugging the program and managed to make some progress. First, I discovered that I had missed a wire. Second, I noticed that the functions responsible for sampling from the analog channels—channel 1 and channel 2—were acquiring both signals and indexing them into the same waveform data. I was able to separate each channel and obtained the following results:

Whens_Wens_Day_0-1742841370202.png

 

This makes sense because those are the waves I generated.

Now, I see that the issue lies in how I plot the samples. Since I’m overwriting the XY plot each time, I’m only displaying the last group of data. For example, I can see this:

Whens_Wens_Day_0-1742842886473.png

For the first loops

Whens_Wens_Day_1-1742842911941.png

Some loops later

Whens_Wens_Day_3-1742842936625.png

Finally

So that means the way i store data and plot them is the problem, now how should be the flow to save data and then plot them all together?

For now Im doing this:

 

Whens_Wens_Day_0-1742843130115.png

But its not right, so how should be a classic loop and plot diagram look like? It doesn't mather if i plot the data in the current iteration or outside it.

 

Wen

 

 

 

0 Kudos
Message 3 of 6
(131 Views)

Hi all,

 

I finally got it:

Whens_Wens_Day_0-1742944179454.png

 

But there i still have some trouble when changing with the plotting, if i change the plot type lining the points into a curve:

Whens_Wens_Day_1-1742944285548.png

So now Im trying to acces the array data that makes this plot, is there a way to acces it?

 

Wen

 

0 Kudos
Message 4 of 6
(109 Views)
Solution
Accepted by topic author Whens_Wens_Day

Hi Wens,

 


@Whens_Wens_Day wrote:

But there i still have some trouble when changing with the plotting, if i change the plot type lining the points into a curve:


Two options to avoid those interpolation liines between the curves:

  • create separate plots for each curve
  • separate the data of each curve with a NaN point, when you put them all into one plot. NaN samples will not be plotted in the graph…
Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 5 of 6
(99 Views)

Hi GerdW,

Whens_Wens_Day_0-1743267491072.png

 

Thank you for your help, now it works as I want.

 

Sincerely,

Wen

 

0 Kudos
Message 6 of 6
(67 Views)