【发布时间】:2015-05-25 02:49:07
【问题描述】:
给定一个模型,其中包含未指定大小的连接器数组 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);
...
【问题讨论】:
标签: modelica openmodelica