question

JoseVM avatar image
0 Likes"
JoseVM asked tannerp commented

Combine items by type

Hello everybody,

I have a question related to Combiners. I have a model where I want to collect items in batches of maximum 25, but always batches with items with the same type. I have a delivery that is asking for 55 items of type A and 40 items of type B. How can I do to make the type respected? For example:

Batch 1: 25 (Type A)

Batch 2: 25 (Type A)

Batch 3: 5 (Type A)

Batch 4: 25 (Type B)

Batch 5: 15 (Type B)

Thanks in advance,

FlexSim 19.0.9
combinerflexsim 19.0.9type
· 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

Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered

The combiner is a very specialized object, when it comes to assemble or batch products. A combination of items is NOT build through attributes on the items, it is built by an amount of items through input ports. You see often that there is a label involved like Type. But this attribute matters only in objects previous to the combiner, if those objects decide which attribute is responsible to send an item through an output port. This output port is connected to an combiners input port. AND this is the important fact - the INPUT PORT. In your case the separator must tell the source which pallet must be sent to the combiner to change the recipe. And further on the separator must send the items through the output port that matches with the input port of the recipe.

The mechanism to change recipes is called “Update Combiners Components List“. There are plenty of videos, answers to find on this subject. The keywords are just “combiner” and “flexsim”.

If you need a sequence of recipes like {25, 25, 5}, then your pallet will tell the combiner to exchange the recipe to batch accordingly. The first pallet has a label Type to choose the recipe for 25 items through input port 2. The next has got the same value in the label Type. The label of third pallet has got a value to choose a recipe to collect 5 items through input port 2.

Your duty will be to decide which recipe the pallet collects next in the combiner to get a total batch of 55 or 40 by the pallet item, which enters the combiner through input port 1. As you see i didn’t mention Type A or B, because that is not relevant for a combiner. What counts is only the amount, not a Type.

5 |100000

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