1

我有一个 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次!

任何解释上述问题的帮助将不胜感激。

4

1 回答 1

1

只是一些小的更正和改进,例如,使其成为无效功能。

model Test
  Real x;
  discrete Real y(start=10, fixed=true);

function try
    input Real x;
    output Real y; 
    external "C" testC(x,y)
    annotation(Include="
void testC(double x, double* y)
{
   *y=x+30;
}");
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;
annotation(experiment(StopTime=200));
end Test;

顺便说一句,与 FMI 无关。

于 2018-11-12T21:48:16.460 回答