完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我们想在Agilent N5232A上使用labview创建7端口目录。
附件是测试我们的代码的子例程(子VI)。 我们收到以下错误:*错误-1074001424发生在AGPNA错误查询; * *仪器报告:* * + 104,“重复测量名称”* *此错误代码未定义。* AGPNA错误查询子VI在AGPNA内部使用 显示跟踪子VI。 SCPI命令序列未显示错误,请参阅附件。 使用LabVIEW探针时,似乎AGPNA错误查询子VI在尝试显示窗口编号#2(CH1_S7_1)的第一个迹线时会生成此错误。 trace参数(在DISP:WIND%d:TRAC%d:FEED“%s”)不能超过24,与每个窗口的最大跟踪数相同。因此,我们使用Windows 1和2.此外,我们 在创建Windows 2时重新编号。我们正在使用LabVIEW 2012 v12.0.1。感谢您的时间。单通道七端口目录-PNA-Carlos-ForLoop.vi50.0 KB 以上来自于谷歌翻译 以下为原文 We want to create 7-port catalog using LabVIEW on Agilent N5232A. Attached is the sub-routine (subVI) to test our code. We get the following error: *Error -1074001424 occurred at AGPNA Error Query;* *instrument reports:* *+104,"Duplicate measurement name"* *This error code is undefined.* AGPNA Error Query subVI is used inside the AGPNA Configure Display Trace subVI. The SCPI command sequence does not show an error, see attachment. Using LabVIEW probes, it seems AGPNA Error Query subVI generates this error while trying to display the first trace of Window Number# 2 (CH1_S7_1). The trace argument (in DISP:WIND%d:TRAC%d:FEED "%s) can't be more than 24, same as max number of traces per window. Hence, we are using Windows 1 and 2. Further, we are renumbering the traces when creating Windows 2. We are working with LabVIEW 2012 v12.0.1. Thank you for your time. 附件 |
|
相关推荐
6个回答
|
|
对不起,可以读取vi代码,但是如果你发布了specfic命令语法,我可能会对某些东西进行排序但是这个问题在类似的情况下出现了。
不幸的是,有两种类型的跟踪号。 有一个唯一的测量编号(MNUM),由cal:par:sel使用,并与显示屏上的Tr(n)编号匹配。 所以你只能有一个Tr1,Tr2等,它们可以在任何窗口中。 然后你有窗口跟踪号,它是“窗口中的第一个跟踪,窗口中的第二个跟踪”,并为每个窗口重新启动。 第一条迹线为黄色,第二条迹线为蓝色。 在创建测量时,您必须使用唯一的MNUM创建它,但是如果您有超过24个,则必须开始将迹线输入到新窗口中。 因此,当您创建第25个跟踪时,需要使用Cal:Par:Def创建具有唯一MName的跟踪,然后将其提供给具有重用Tnum的新窗口。 以上来自于谷歌翻译 以下为原文 Sorry, can read vi code, but if you post the specfic command syntax I might be able to sort something out But this question came up before in a similar situation. Unfotunately, there are two types of trace numbers. There is the unique Measurement Number (MNUM) which is used by cal:par:sel and matches the Tr(n) number on the display. So you can have only one Tr1, Tr2, etc, and they can be in any window. Then you have the window trace number, which is "first trace in the window, second trace in the window" and restarts for each window. First trace is yellow, second trace is blue. WHen you create a measurment, you have to create it with a unique MNUM, but then if you have more then 24, you have to start feeding the traces into a new window. So, when you create a 25th trace, you need to create it with Cal:Par:Def with a unique MName, but then feed it to a new window with a re-used Tnum. |
|
|
|
脑洞大赛9 发表于 2019-1-29 12:54 > {quote:title = Dr_joel写道:} {quote}>抱歉,可以阅读vi代码,但是如果你发布specfic命令语法我可能能够排序>我确实设法查看你的命令捕获,但不幸的是 许多命令被截断,因此很难理清你在做什么。 但我注意到你Cal:par:Def“name”但是我没有看到跟随Cal:Par:Sel之后。 我不肯定,但我总是在def命令后发送一个cal:par:sel命令,以确保我选择了新定义的跟踪。 此外,在命令捕获中,我没有看到任何错误。 您可能会尝试仅排除错误部分以使其更容易显示。 以上来自于谷歌翻译 以下为原文 > {quote:title=Dr_joel wrote:}{quote} > Sorry, can read vi code, but if you post the specfic command syntax I might be able to sort something out > I did manage to look through your command capture, but unfortunately many of the commands are truncated, so it's hard to sort out what you are doing. But I notice you Cal:par:Def "name" but I don't see a following Cal:Par:Sel right after. I'm not positive, but I always send a cal:par:sel command after a def command to ensure that I have selected the newly defined trace. Also, in the command capture, I'm not seeing any error. You might try to sort out just the error part to make it easier to reveiw. |
|
|
|
脑洞大赛9 发表于 2019-1-29 13:00 *首先*,我对延迟回复感到遗憾。 *第二个*,我的理解是我们不需要在收集它之前在PNA-L中显示痕迹。 我们确实需要为我们想要测量的所有迹线定义目录。 它是否正确? 很抱歉,您在打开LabVIEW子VI时遇到问题。 *第三*,specfic命令语法如下:a)在PNA中为所有跟踪定义目录* CALCulate:PARameter [:DEFine]:EXTended,b)显示跟踪* DISPlay:WINDow:TRACe:FEED我们使用AGPNA配置显示 跟踪subVI(在初始文章中提到)完成* b)。*如果您要在LabVIEW中打开AGPNA配置显示跟踪子VI,您将在其中看到AGPNA错误查询子VI。 问题是AGPNA错误查询子VI在尝试显示第2个窗口编号(在我的情况下为CH1_S7_1)时生成+104,“重复测量名称”错误。 请注意,在使用* a)创建目录时,我们使用唯一的测量名称(CH1_S1_1 ...至CH1_S7_7)。*您是正确的,10/21上附加的SCPI命令序列未显示+104,“重复测量 名称“错误。 可以从PNA-L显示屏和* LabVIEW探头*读取错误。 感谢您的时间。 以上来自于谷歌翻译 以下为原文 *First*, I regret the delayed response. *Second*, it is my understanding we do not need to display a trace in PNA-L before we can collect it. We do need to define a catalog for all traces we want to measure. Is this correct? I am sorry you are having problems opening the LabVIEW subVI. *Third*, the specfic command syntax is as follows a) define a catalog in PNA for all traces *CALCulate:PARameter[:DEFine]:EXTended , b) display the trace *DISPlay:WINDow:TRACe:FEED We use AGPNA Configure Display Trace subVI (mentioned in initial post) to accomplish *b).* If you were to open AGPNA Configure Display Trace subVI in LabVIEW, you will see AGPNA Error Query subVI inside it. The problem is that AGPNA Error Query subVI generates +104,"Duplicate measurement name" error while trying to display the first trace of Window Number# 2 (CH1_S7_1 in my case). Please note we use unique measurement names (CH1_S1_1... to CH1_S7_7) for all traces when creating the catalog using *a).* You are correct, the SCPI command sequence attached on 10/21 does not show +104,"Duplicate measurement name" error. The error can be read from PNA-L display and via *LabVIEW probes*. Thank you for your time. |
|
|
|
脑洞大赛9 发表于 2019-1-29 13:00 !!!编辑:kapurm于2013年10月28日下午6:20 以上来自于谷歌翻译 以下为原文 !!! Edited by: kapurm on Oct 28, 2013 6:20 PM |
|
|
|
脑洞大赛9 发表于 2019-1-29 13:00 ! 编辑:kapurm于2013年10月28日下午6:19编辑:kapurm于2013年10月28日下午6:20 以上来自于谷歌翻译 以下为原文 !!! Edited by: kapurm on Oct 28, 2013 6:19 PM Edited by: kapurm on Oct 28, 2013 6:20 PM |
|
|
|
脑洞大赛9 发表于 2019-1-29 12:54 !!!编辑:kapurm于2013年10月28日下午6:19 以上来自于谷歌翻译 以下为原文 !!! Edited by: kapurm on Oct 28, 2013 6:19 PM |
|
|
|
只有小组成员才能发言,加入小组>>
1231 浏览 0 评论
2351 浏览 1 评论
2161 浏览 1 评论
2026 浏览 5 评论
2910 浏览 3 评论
976浏览 1评论
关于Keysight x1149 Boundary Scan Analyzer
709浏览 0评论
N5230C用“CALC:MARK:BWID?”获取Bwid,Cent,Q,Loss失败,请问大佬们怎么解决呀
809浏览 0评论
1234浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-27 19:00 , Processed in 1.479473 second(s), Total 86, Slave 70 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号