question

guoyi avatar image
0 Likes"
guoyi asked Julie Weller commented

How to set variable processing times

There are two processors in my model. The goods processed by processor 1 enter processor 2 after passing through the queue. However, due to the inconsistent time between the two, processor 2 cannot work continuously. What I want to do is to set up a logic for For processor 2, if there is no goods waiting to be processed on the queue when the processing is about to end, he will extend the processing time to wait for the goods to arrive in the queue, but the maximum time cannot be exceeded. Can this logic be established?

1685161413957.pngprocesstime.fsm


FlexSim 23.1.2
processtime
1685161413957.png (10.5 KiB)
processtime.fsm (30.5 KiB)
· 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.

Julie Weller avatar image Julie Weller commented ·

Hi @guoyi, was Felix's answer helpful? If so, please click the "Accept" button at the bottom of the 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 unaccept and comment back to reopen your question.

0 Likes 0 ·

1 Answer

·
Arun Kr avatar image
1 Like"
Arun Kr answered Jason Lightfoot edited

Hi @guoyi,

The answer is yes, this logic can be done using process flow and a basic FR object. Using a regular processor it isn't easy to control the processing time with respect to the contents in the upstream Queue. With a Basic FR object it's very easy to customize as per your requirements.

In the attached model, I have created a Basic FR and process flow. The event-triggered source in the process flow releases a token once a part enters the upstream queue. The released token acquires the machine and executes the normal machining process time. Once the normal machining time is completed the token will check the presence of any part in the Queue. If no parts are present the token will execute the process time till the max wait time. During the period of waiting if any part enters the Queue, the part which is in the machine will be released.

The max process time and the normal process time value is stored as labels on the Basic FR. Here I have taken constant values. In the process flow you can change the process times as distribution also.

VariablePT_1.fsm

1685364063605.png

1685364148176.png

Regards,

Arun KR


1685364063605.png (53.5 KiB)
1685364148176.png (14.9 KiB)
variablept-1.fsm (48.8 KiB)
· 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 ·

Here's an alternative Object Process Flow that allows you to use the BasicFR as a regular FlexSim object with port connections, transport etc., and also to allow you to use multiple BasicFR instances with this process in the same model.

1685444655702.png

The ReceiveItem activity is waiting for an item to enter and the ReleaseItem is waiting for the item to exit.

There are two labels on the BasicFR - one for the variable process time and one for the maximum.

processtime_extension_BasicFRObjectFlow.fsm

1 Like 1 ·

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.