2

给定一个模型,其中包含未指定大小的连接器数组 x,例如

connector con
...
end con;

model test
con x[:];
end test;

x 如何以特定大小实例化,例如像这样的东西?

test t(x = ?);
...
equation
connect(t.x[1], a);
connect(t.x[2], b);
...
4

1 回答 1

2

为什么需要未指定的维度?你可以这样做:

connector con
...
end con;

model test
 constant Integer dim = 1;
 con x[dim];
end test;

// usage
test(dim = 10);
...
equation
  connect(t.x[1], a);
  connect(t.x[2], b);
...
于 2015-03-21T23:34:02.547 回答