question

Marie Lisa avatar image
0 Likes"
Marie Lisa asked Joerg Vogel commented

Separator cutting false

Hello guys,

We have a problem with cutting a whole layer. The only thing the separator does is to cut one by one string and only the first bit of the String from the OnExit expression. Just take a look at the attached model.

It should cut all the combined items a little bit down and then press the whole layer forward and cut the next bit and so on.

Is there any possibility to simulate this ?

Thank you in advance.

f5.png

trennschleif3.fsm

FlexSim 17.1.2
separatoritemscut
f5.png (71.7 KiB)
trennschleif3.fsm (892.5 KiB)
5 |100000

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

Joerg Vogel avatar image
5 Likes"
Joerg Vogel answered Joerg Vogel commented

The separator is not cutting false. The object splitts only one item, because you can't set the maximum capacity at all. The Separator may be not a suitable object to get what you want. You can unpack or split your package of raw material and then cut each piece in another separator by splitting again.

What you are doing is repeating a cutting process on one item several times. This is a job of a multiprocessor. The number of processes defines how many pieces you get. After each single process you have to create another item in your model and move this to the next object in your material flow model. This copied item get the size of the part you cut away and the raw material's size is reduced in its size, too. Then the next Process starts.


· 13
5 |100000

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

Jordan Johnson avatar image
1 Like"
Jordan Johnson answered

If I understand correctly, you have steel coming in to the separator, that needs to be cut into small layers, and you want to see an animation of the steel being pushed forward a little, then cut, then pushed forward a little more, and then cut again, until the steel is all used up.

If this is the case, then the Separator might only be part of the solution. The Separator does not split items incrementally. Instead, it asks how long it takes to split all the items. In your case, the Separator is making all the cuts simultaneously, rather than cut by cut.

Maybe you could use the Separator, with a queue and a processor to get what you want. You could use the separator to split the steel into all the pieces you need in zero model time. Then you could send all those pieces to a queue, and feed them one at a time to a processor.

I have attached a simple model of this second approach. I will say, though, that @Jörg Vogel's approach is a lot cleaner.

Neither of these approaches have the exact animation effect you are looking for, but both are (or can be) mathematically correct, as far as the simulation time goes. This kind of animation is surprisingly complicated, and so is difficult to create without a lot of code.incrementalcutter.fsm


5 |100000

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