LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

To set T-max, T-min in infrared calibrator 9133

Solved!
Go to solution

Hi, I would like to set temperature setpoints on my 9133 calibrator, providing only a T-max, a T-min, and the number of setpoints. Is it possible? Before, I had a vector of n temperature setpoint, but I don’t like it. Thank you.

0 Kudos
Message 1 of 7
(330 Views)

To be clear, is your question about feasibility or how to?

 

If about feasibility, your instrument user manual will be the right place to check if it supports.

 

If about how to, do you have any existing code that controls the instrument or starting from scratch?

 

I hope this is your device,

https://www.fluke.com/en-us/product/calibration-tools/temperature-calibrators/fluke-calibration-9132...

 

Edit:

If all that you want is to convert your min, max, steps into vector, you can use this VI in LabVIEW to achieve that,

santo_13_0-1718813704648.png

 

Santhosh
Soliton Technologies

New to the forum? Please read community guidelines and how to ask smart questions

Only two ways to appreciate someone who spent their free time to reply/answer your question - give them Kudos or mark their reply as the answer/solution.

Finding it hard to source NI hardware? Try NI Trading Post
0 Kudos
Message 2 of 7
(319 Views)

so i will try to be as clear as possible. For setting my instrument (it is an infrared calibrator 9133 FLUKE) now i use an array with n setpoint, (i load a simple vi exemple) so now i would to setting my instrument not with a vector of n points, but simply using a minimum temperature value, a maximum value and the number of intervals. if in the example for each cycle I set the instrument with 5 setpoints (s=10, s=20, s=30, s=40, s=50) now I only want to give it as setpoint the minimum s=10, the maximum s=50 and the number of intervals n=5) and create the vector automatically. is it possible to do this?

PS. VI in not complete, it is just an example to explain the setting method!

0 Kudos
Message 3 of 7
(268 Views)

Hi John,

 


@John96Dee wrote:

 i would to setting my instrument not with a vector of n points, but simply using a minimum temperature value, a maximum value and the number of intervals. if in the example for each cycle I set the instrument with 5 setpoints (s=10, s=20, s=30, s=40, s=50) now I only want to give it as setpoint the minimum s=10, the maximum s=50 and the number of intervals n=5) and create the vector automatically. is it possible to do this?


The number of "intervals" is just 4 in your example, but there are 5 elements in the array of setpoints…

 

What's wrong with the ramp function shown by Santosh? You can give the min, max and number of samples!

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 4 of 7
(262 Views)

John96Dee_0-1718958308654.png

to set the instrument I use an array of strings, because on the instrument datasheet the command to bring the instrument to 30°C is for example s=30. I have an array like in the photo (uploaded) and I want to create an array like the one in the photo, but only with min and max and number of setpoints. I think "ramp funcition" is not adequate. If it is, how do I use it?

0 Kudos
Message 5 of 7
(256 Views)
Solution
Accepted by topic author John96Dee

Hi John,

 


@John96Dee wrote:

to set the instrument I use an array of strings, because on the instrument datasheet the command to bring the instrument to 30°C is for example s=30. I have an array like in the photo (uploaded) and I want to create an array like the one in the photo, but only with min and max and number of setpoints. I think "ramp funcition" is not adequate. If it is, how do I use it?


So your problem is to describe an algorithm, that takes 3 inputs (min, max, NumOfSamples) and creates an array of strings with a certain formatting?

 

What about an algorithm like this:

 

1. Create an array of needed setpoints as numbers
2. Create an array of formatted strings using this numeric array as input

 

Once you learn to describe your requirements in simple steps it becomes very easy to solve your task:

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 6 of 7
(237 Views)
Solution
Accepted by topic author John96Dee

ok yes I already solved it anyway, playing with "ramp pattern". thanks anyway everyone

0 Kudos
Message 7 of 7
(230 Views)