question

Mayra Itzel RR avatar image
0 Likes"
Mayra Itzel RR asked Joerg Vogel commented

how to put sequences and times in a processor with a global table?

I want to put a sequence and a time to a processor

FlexSim 20.2.0
processorflexsim 20.2.0
· 3
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

Sam Stubbs avatar image
1 Like"
Sam Stubbs answered Joerg Vogel commented

@mayra_itzel.rr

If you want your processor to reference a cell on your table you can use the picklist option for Process Time called "Global Table Lookup" It will give you something looking like this:



You can also just get the same information using the flexscript statement:

Table("TableName")["RowName"]["ColumnName"]

The first part is a string that's your table name. The values in the square brackets are your row and column. They can be either a string or a number. For example if you had different Rows based on item type, and you wanted different times for the processors you could write it like this:

Table("ProcessTimeTable")[Item.Type][1]




· 4
5 |100000

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