给定一个模型,其中包含未指定大小的连接器数组 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);
...
给定一个模型,其中包含未指定大小的连接器数组 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);
...