12-24-2019 01:37 AM
Solved! Go to Solution.
12-30-2019
11:45 AM
- last edited on
10-21-2024
01:33 PM
by
Content Cleaner
This shows all the sub properties for the MNL Step Type.
01-01-2020 11:19 PM
Thank you for your response!
Actually, I still can not find the property to set the multiple numeric limits.
Can you tell me where can set the limits from below items? and how can I set? Thank you in advance!
1.Step.DataSource
2.Step.NumericArray
3.Step.UseIndividualDataSources
4.Step.DataSourceArray
5.Step.ExpectedNumMeasure
6.Step.ExtraDataAction
7.Step.MeasToRepeat
8.Step.ExtraMeasAction
01-02-2020
02:29 AM
- last edited on
10-21-2024
01:34 PM
by
Content Cleaner
Hi open28,
You can see this link : https://www.ni.com/docs/en-US/bundle/teststand/page/expressions.html
I also test it with Multiple Numeric Limit Test and the function is working.
So it will be like below ways and I think you know how to modify it ~
RunState.Sequence.Main["Multiple Numeric Limit Test"].Result.Measurement["Measurement 0"].Limits.Low = -99,
RunState.Sequence.Main["Multiple Numeric Limit Test"].Result.Measurement["Measurement 1"].Limits.Low = -97
Thanks,
Ricky
02-25-2020 02:00 AM
Hi, ricky
After follow you adveice, i can set the limits.
I have a follow up problem.
Is it possible to edit the name of measurenment. The default name is ["Measurement x"] and it is only after we add the measurement,then we can see the measurement name.
I hope we can edit the name through an expression in the labview vi.
02-25-2020 11:00 AM - edited 02-25-2020 11:01 AM
RunState.Sequence.Main["Multiple Numeric Limit Test"].Result.Measurement["Measurement 0"].Name = <newname>
02-25-2020 07:01 PM
Hi, jigg
Thank you for your response.
It shows an error here.Do I use it in the wrong way?
02-26-2020 09:19 AM
Didn't realize you were doing it in LabVIEW. Name is actually a property of the property object so you have to use the API. I've attached a screenshot that shows how you could do this.
Cheers,
02-26-2020 07:26 PM
Hi,jigg
Thank you for your response.
My picture is aimed to show that I use the teststand defaulf API(set property value.vi ) to set the value you gave me, but it didn`t work. So i think the way i used is wrong.
I tried the way you gave and it is worked.
Thank you very much!