|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
各位大神,希望不吝赐教,指点一二。
情况是这样的,我现在在用verilogA写一个模型,具体就是无输入,输出端口的电压是一个函数cos(seed*$abstime*100000),目的是想要做蒙特卡洛分析。
verilogA的代码如下 source.va
// VerilogA for Model, source, veriloga
`include "constants.vams"
`include "disciplines.vams"
module source(b);
inout b;
electrical b;
integer seed;
(*cds_inherited_parameter*)parameter real seedin = 0;
analog begin
seed=seedin;
V(b) <+ cos($abstime*seed*100000000);
end
endmodule
为了Monte Carlo分析自己建了一个model file如下 source.scs
simulator lang=spectre
parameters seedin=0
statistics {
mismatch{
vary seedin dist=gauss std=1
}
}
在做仿真的时候已经添加了这个model file。但是在仿真的时候总是出现如下错误
Attempt to override value of inherited parameter `seedin' when instantiating a subcircuit.
可有哪位大神见过这个问题,请指教一下,谢谢~ |
|