官方淘宝店 易迪拓培训 旧站入口
首页 > 仿真设计 > CST微波工作室 > CST如何获得.sig文件

CST如何获得.sig文件

05-08
      我需要将CST中仿真后获得的端口处的收发信号输入到ADS中,ADS中可以导入.sig文件,但是怎么从CST中导出.sig文件呢?
      我从后处理的地方可以看到CST里有.sig文件,但是在仿真结果文件的results里面根本没有找到。不清楚后处理的这些文件都是从哪里调用进来的呢?我现在要怎么获得需要的端口处信号的sig文件呢?
      


SIG文件应该就是Results 1D的数据文件,包括S、Z、Y参数的数据文件吧。至于存在什么位置,我也不知道,但是从外部可以调用的。
An Result1D object can be created as follows:
From within CST MICROWAVE STUDIO®
dim objName as object
set objName = Result1D("adapt_error")
From an external progam
dim app As Object
set app = CreateObject("CSTStudio.Application")
dim mws = app.OpenFile("D:\Examples\example.mod")
dim objName as object
set objName = mws.Result1D("adapt_error")
While ”adapt_error” is the name of the result data the Result1D object should contain.
参考 online help\post processing\results 1D

谢谢小编热心帮忙!我来琢磨一下。

仿真得到的结果都存在Result/Storage,但是不知道怎么获得sig文件诶。

1D result里的sig,好像是找不到,只能调用。
VBA小编也那么说,应该没错了。

看来各位大神都没辙了,5555555

Top