question

Yu Y avatar image
0 Likes"
Yu Y asked Jason Lightfoot commented

Processor Connection

Hi! I am a beginner and I need helps to create a production line as the following:I have 5 processors, and one item should revisit a processor a couple times to finish its production. Processor D is capable of 3 processes (different processing time, D1, D2, D3). Processor V is capable of 2 processes (V1, V2). My production process is C-W-W-F-D(D1)-V(V1)-D(D2)-V(V2)-D(D3)

Q1: In step 2 and 3, the same process is conducted twice in a row on the same machine. How can I do this?

Q2: I use multiprocessor for D and V. Given the machine processes one item at a time, and one item will come back for different processes, how can I do this?

Q3: Can I build the above production process with a table, instead of using 3D objects?

My Flexsim version is 18.1.1.

FlexSim 18.1.2
multiprocessorflexsim 18.1.2production schedule
1615782680287.png (6.7 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.

1 Answer

Jason Lightfoot avatar image
0 Likes"
Jason Lightfoot answered Jason Lightfoot commented

1: Change the processing time to 2xW

2: Why use a multiprocessor - that's for mutliple steps per visit, you only have one step per visit with a different processing time. If you want to just make the times of D1 and D3 in the D2 visit zero. It easiest done with a step counter on the item and test which step it is: item.step==5?ptime:0 //returns ptime if step is 5 otherwise 0.

3. Without 3D objects - do you mean using process flow? You need something to represent the number of processor types you have in order to reflect the capacity constraint. That can be 3D objects or abstract resources in process flow.

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