question

bcallaghan avatar image
0 Likes"
bcallaghan asked bcallaghan commented

Display PN Data on Sink

I want to see what the total process time was for each item hitting my sink, as there are a variety of different PNs with their respective differing process times. I also added some variation algorithms to the processors to create a more realistic actuals output for the process time. Any thoughts on how to see my total process time in my sink as a list of all the different PNs? Thanks!

FlexSim 21.2.4
sinkdata listsink data
· 1
5 |100000

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

Jason Lightfoot avatar image Jason Lightfoot ♦ commented ·

Hi @bcallaghan, was Kavika F's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.

If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always comment back to reopen your question.

0 Likes 0 ·

1 Answer

·
Kavika F avatar image
0 Likes"
Kavika F answered bcallaghan commented

Hey @bcallaghan, if you'd like to see total process time for all items that go to a sink, here's something you can try.

sink-total-processing.fsm

Add a label to each item that is their personal "ProcessTime". Add a label to the Sink that is "TotalProcessTime". Add an OnEntry trigger to your Sink that increments a label and increment your TotalProcessTime by the ProcessTime of each entering item.

TotalProcessingTime.gif


· 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.

bcallaghan avatar image bcallaghan commented ·
To clarify: I want a data sheet that I can look at that gives the average / total process time of each individual PN (with varying quantities) displayed in a list format. I had assumed this would be in the sink to track that.
0 Likes 0 ·
Kavika F avatar image Kavika F ♦ bcallaghan commented ·
@bcallaghan, the sink doesn't keep track of that kind of information on its own. You'll have to keep track of it on the item as it travels through the system. Then you can write that information to a Global Table if you want and export it to an Excel Spreadsheet.
0 Likes 0 ·
bcallaghan avatar image bcallaghan Kavika F ♦ commented ·
Ok got it. Thanks for the info!
0 Likes 0 ·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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