我有一个 Modelica 模型:
model test
Real x;
Real y (start=10);
function try
input Real x;
output Real y;
external "C" testC(x,y)
annotation(Include="#include <test.c>");
end try;
function round
input Real u;
input Real accuracy;
output Real y;
algorithm
y :=if (u > 0) then floor(u/accuracy + 0.5)*accuracy else ceil(u/accuracy - 0.5)*accuracy;
end round;
algorithm
x:=round(time, 60);
when time>=pre(y) then
y:=try(x);
end when;
end test;
并且c代码也如下所示:
int testC(double x, double* y)
{
puts("run ex");
*y=x+30;
}
上面的代码在 Dymola 中运行良好,但是当我在 JModelica 中运行它时,我遇到了一个问题:
在 [0,200] 期间模拟此模型时,我预计 c 函数将被调用 4 次:t=10,30,90,150。但是我在Jmodelica中发现,c函数实际上被调用了24次!
任何解释上述问题的帮助将不胜感激。