04-05-2019 04:34 PM
Hello,
I am using LabVIEW to control a function generator 33500B. I have to use the burst mode to generate 20 cycles sine wave (1000Hz) in every second. And I need to keep the code running so that I can update the amplitude in every second (without clicking the RUN button again and again). Now I am using a while loop to keep the code running. I've got the following issues:
1) The execution time for one-time loop cycle is about 1.3s, which is longer than my desired burst cycle (1s). So I got a burst of 20 cycles sine wave in each 1.3s, instead of every 1s. My guess is that, since I am using a while loop, so in every execution cycle the function generator is re-initialized and re-configured, which is time consuming, costs about 1.3s. Is there any way to speed up the initialization and configuration process?
2) I found that there is another burst of sine waves appears before the 20 cycles of sine waves. This undesired burst has the same frequency and amplitude with the desired one. This undesired burst lasts about 1.5ms. And, after about 5.8ms, the desired burst comes out. I have completely no idea why and how this undesired burst is generated. I have attached the .vi project and a photo of the waveform I got.
Thanks in advance!
Shanshan
Solved! Go to Solution.
04-08-2019 10:30 AM
You can control this instrument directly through the SCPI protocol according to the instrument manual. I would send the direct commands to configure the instrument to the desired state.
If you want to update the waveshape every second, then you will need to control your system using LabVIEW Real-Time rather than the standard LabVIEW running under Windows.
04-08-2019 12:08 PM
You need to take a big step back and look at what you are doing within your While loop. In every loop you are initializing communications with the instrument, configuring the STD sine wave, configuring burst mode, then turning on the output. Perhaps you are able to send all those commands to the instrument in 1.3s, but I doubt the instrument can keep up with all of those commands. So what you are getting is a garbled output of what the instrument had time to process in one loop itteration before the next loop tried to overwrite it!
What you aren't ever doing is disabling the output, closing communications with the instrument. In short you are hammering the instrument with commands, and it is doing its best to give you something...but its not what you want.
So you need to redesign your program. Probably think about how you want to trigger this burst waveform. Consider if a software trigger with all of its inexactness is adequate, or if you need a hardware trigger. Then start the coding. When you do take the initialize, the STD waveform configure, the Burst Configure and your trigger configuration all outside (before) of the While loop. Then in the loop simply trigger one measurement by software, or skip the while loop and have hardware handle triggering.
I can't tell you how best to do the measurement, you haven't provided details, but hopefully this gives you some things to think about.
Craig
04-08-2019 04:38 PM
Thank you so much for your reply!
Actually, I measure the transducer-generated cavitation signal in water, and calculate its power. If the power of the cavitation signal is lower than I want, I increase the amplitude of my function generator (KeySight 33500B) to provide higher output voltage to the transducer, which leads to higher cavitation phenomenon in water. If the power of cavitation signal is higher than I want, the output amplitude of the function generator is decreased. Therefore, I need to detect the cavitation signal in each second and update the output amplitude of the function generator, in order to adjust the input voltage for the transducer and keep the power of the cavitation in a desired level.
I have attached a figure to illustrate what I want to do with LabVIEW.
Any suggestion/comments on how should I design the program is highly appreciated!
Shanshan
04-10-2019 09:29 AM
Thanks for your suggestion! SCPI worked!
05-28-2019 06:37 AM
Can you please tell me how to control the amplitude and frequency of a transducer by using signal generator ?
Did you achieved this by using labview ??