LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Controlling multiple testing rigs remotely from one computer

Solved!
Go to solution

Hello,

 

I have 8 testing rigs that I'm trying to update to work independently from a central computer that controls them. I am planning to use a cDAQ with an integrated controller (probable NI-9132) since I do not need to have the faster cRIO to control my rigs and it would be easier to adapt the existing code to the new set-up.

 

However, I still want to be able to control the test rigs from the central computer to make it easier to control multiple rigs at once. I am thinking of using a TCP/IP or Network Sharing to do this but I have little experience in coding in LabView. Does anyone have an idea about controlling multiple test rigs over a network and help explain (in a general sense) how to use those functions to do it?

0 Kudos
Message 1 of 14
(3,802 Views)
Solution
Accepted by topic author JATHL

Hi JATHL,

 

If you're new to LabVIEW, there's a good chance you have access to NI's Self-Paced Online Training. It would be worth at least skimming through Core 1 and Core 2. (If you have prior programming experience, you'll probably get through it quickly.)

 

Once you've done that, a couple other things to look at that would give you an idea of how to approach it:

You could use TCP/IP as well, personally I'd go Network Streams. Built on TCP/IP, but a little easier to use in LabVIEW.

William R.
Message 2 of 14
(3,789 Views)

Can you elaborate a little bit more on what requirements you need in regards to control?  Do you just want to be able to view/modify the status?  Do these rigs need to be in some form of synchronization or awareness of each other?   What you need to control is going to have a big impact on the method in which you do it.  Any details you can provide on what you are trying to accomplish will help us give better advice.

 

Regards,

 

Tim

0 Kudos
Message 3 of 14
(3,777 Views)

Hello Tim,

 

The rigs are designed to measure the torque applied to multi-turn valves and they use a stepper motor to apply the torque. I need to control these stepper motors by telling them to turn to either a set torque or by number of rotations before changing direction. Additionally, I need to set the speed in which the stepper motor turns the valves and there is also a shut-off for when the valve breaks (i.e. pressure in system drops significantly) or when the measured torque exceeds the maximum allowed torque. There are also manual controls that I must implement that are mainly used to set-up a test.

 

Sychronization between rigs is not neccessary but being able to observe the data measurements with minimal delay is desirable. Additionally, more than one rig will be used at the same time but ussually not all of them. Therefore, I need to be able to specify which rigs need to be controlled. Also, since most inputs (rotation speed, max torque, etc) are the same for multiple rigs in a test, it would be desireable to change these inputs for multiple rigs at once yet maintain individual control for troubleshooting.

0 Kudos
Message 4 of 14
(3,769 Views)

Look to the STM library.  It is a free library available through VIPM.  Use it to establish your communications between a single cDAQ and the main computer.  If you do this right, you can dynamically call that VI that does the communication with that cDAQ to have as many of these connections as necessary.  For communicating with these connection VIs, I would use an User Event.  User Events are a lot like queues, but they are broadcasted to everybody who is registered for the event will see it and be able to react to it.

 

This will quickly turn into a complex architecture, so hopefully you can get somebody experienced to help you through all of this.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 5 of 14
(3,721 Views)

Hello Crossrulz,

 

While there are a few people that can help me with learning to code in LabView, none of them have experience using the STM library, VIPM, or User Events. Do you know of any resources that I can use to help me familiarize myself with these topics? 

 

Additionally, since VIPM is an add-on for LabView that I don't currently have and I'm using a company computer which prohibits me from installing software without permission, I don't know if I will be able to get access to VIPM. Therefore, do you have any other suggestions to solving this problem in the event that I am unable to use VIPM?

0 Kudos
Message 6 of 14
(3,710 Views)

Which version of LabVIEW are you using?  If I remember correctly 2015(ish) and beyond installs VIPM automatically for you.  

 

VIPM isn't difficult to use so I don't expect you'll have too much trouble there.

 

For the actual code packages after you finish with VIPM check the example library in labview under 'Help'.  There's often examples that will show you how to work with a code set.  

 

Best Wishes,

 

Tim

 

 

Message 7 of 14
(3,700 Views)

Hello Tim,

 

Thank you for letting me know about the automatic VIPM installation but I don't think that I have it. I do have LabView 2015 but, when I click the "Find LabView add-ons" link under "Find drivers and add-ons", I am sent to NI's LabView Tools Network webpage.

 

If I am unable to use the STM library, do you think that using Network Streams would allow me to accomplish my goal for this project?

0 Kudos
Message 8 of 14
(3,693 Views)

wrote:

If I am unable to use the STM library, do you think that using Network Streams would allow me to accomplish my goal for this project?


The STM library is just a nice package on top of the built-in TCP/IP functions.  It adds information like the message length and metadata for you, making it quite convenient.  You can still do this yourself with TCP or Network Streams.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 9 of 14
(3,691 Views)

Hello Crossrulz,

 

Thank you for the conformation.

 

Additionally, I realized that the VI that I will be using in the cDAQ has an ideal front panel for my application. Is there a way to mirror the front panel of the VI on the cDAQ to the VI on the computer?

0 Kudos
Message 10 of 14
(3,674 Views)