question

Hailey Oh avatar image
0 Likes"
Hailey Oh asked Felix Möhlmann commented

Conveyor length and speed from global table

I'm trying to set conveyor horizontal length & speed using the global table. Each conveyor has been named and each row in GlobalTable2 has that conveyor name in the first column, speed in the 9th column, and length in the 11th column. I want to use columns 9 & 11 to set the speed and length of each conveyor using the conveyor names. I was looking around in the forum and tried to implement some of them to my model but I'm don't know how I would modify each method to fit my need. The part that is missing from other forums is the name matching part that has to happen for all conveyors (not just groups).

MHE_SIM_V0.2.fsm

FlexSim 23.0.2
conveyorglobal tableconveyor speedconveyor length
mhe-sim-v02.fsm (805.4 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Felix Möhlmann avatar image
0 Likes"
Felix Möhlmann answered Felix Möhlmann commented

Table().getRowByKey or Table().getValueByKey let you find the row/value where the specified column equals the given value.

  1. Table convData = Table("GlobalTable2");
  2. int row = convData.getRowByKey(token.Conveyor.name, "Name");
  3. token.Conveyor.as(Conveyor).targetSpeed = convData[row][9];

Is there a reason why you change the speed after the start of the model and not on reset?

Also, do you plan to use the virtual length property to make the conveyors act as if they had the given length or do you plan to change the actual object size? In the second you would also need information about which conveyor connects to which other conveyor so you can adjust their locations based on the new sizes.

· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.