LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Need Help Implementing Ramp Function for Kikusui Electronic Load PLZ205W in LabVIEW

Hello LV Experts,

 

I am a student, and your guidance is invaluable to my studies. I am working with a Kikusui Electronic Load PLZ205W and have installed the kiplz5w instrument driver in LabVIEW for controlling the device. I have successfully established a connection with the load and can operate it in constant current mode, as well as enable and disable the load.

However, I need to implement a ramp function because the driver does not have a built-in function for this.

Example Requirement:

  • Ramp to 5 A with a ramp rate of 0.1 A/s.
  • Then ramp to 2 A with a ramp rate of 0.2 A/s. (so on)
  • I would like to input the target current and ramp rate from the front panel to make the functionality flexible.

I understand that this involves incrementing the current in small steps over time, but I need advice on the best way to achieve this using LabVIEW's programming structures (e.g., loops, delays, etc.) and the driver commands.

Any guidance, tips, or example implementations would be greatly appreciated. Thank you for contributing to my learning journey!

0 Kudos
Message 1 of 4
(134 Views)

It might be hard to get a true ramp if that is not a built in function of the load. You can step the current by setting it in a loop but again you will be limited by the response time of the load. Perhaps you can empirically determine the step time delta that approximates a ramp. 

______________________________________________________________
Have a pleasant day and be sure to learn Python for success and prosperity.
0 Kudos
Message 2 of 4
(90 Views)

Hi Jay,

 

Thank you for your reply. Can you please elaborate on how to determine the step time delta?. I am confused on how to implement the loop. Thanks in advance :')

0 Kudos
Message 3 of 4
(60 Views)

Here is an example of how to set current values in a timed loop. Replace the VISA VIs with your KIKUSUI driver VIs (I don't have that driver) 

 

snip.png

______________________________________________________________
Have a pleasant day and be sure to learn Python for success and prosperity.
0 Kudos
Message 4 of 4
(42 Views)