question

DaniCor avatar image
0 Likes"
DaniCor asked DaniCor commented

Problems With Delete Transporters

SIMULATION WITHOUT TRANSPORTER.fsmSIMULATION WITH TRANSPORTER.fsm

Hi community

I have a problem, I've deleted the transporters of my simulation and now shows me an error with the dispatcher but I never conected with the dispatcher, on the other hand I unpinned the option use transport for the output of my queue "ALMACEN"

The first pic shows the normal working of the simulation with transporter

normal-working-with-transporter.png

The second pic shows the error when I deleted the transporter

without-transporter-error.png

FlexSim 24.0.0
transporterportsoutport
· 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 @DaniCor, was one of DaniCor's or Julio R's or Kavika F's answers helpful? If so, please click the "Accept" button at the bottom of the one that best answers your question. 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 ·
Julio R avatar image
0 Likes"
Julio R answered DaniCor commented

your last processor "ENVASADO" is trying to use the central port 2 for transport but does not have a second conexion.

1704734695151.png

You just need to change that 2 int a 1 and the problem should be fixed.


1704734695151.png (36.5 KiB)
· 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.

DaniCor avatar image DaniCor commented ·

Hi mates

Thanks a lot for the support now it works well but my curiosity now it's. Why the simulation doesn't run since the beggining like the program with transporter(afterwards some time currently the processor make outputs but suddenly from 0 units of output to 600 units. As you can see in the pic

tweak-simulation-without-transporter.png

The program with transporter ass you can see in the first question work normal since the beginning according the process time of my procesor

SIMULATION WITH TRANSPORTER.fsm

SIMULATION WITHOUT TRANSPORTERv2.fsm

Best regards!

0 Likes 0 ·
Julio R avatar image Julio R DaniCor commented ·
Hola @DaniCor ,

no entiendo muy bien estos últimos comentarios. Veo que en ambos modelos corren hasta que se procesan todos los items.

Si la pregunta es por qué uno tarda más que el otro, tu modelo está lleno de miles de eventos muy rápidos con muchos items, esto se podría solucionar de forma sencilla con estratégias como eliminar los mansajes del queue inicial y sustituirlos por un source, reducir el número de items en el queue inicial creando solo un consolidado como un item individual que luego se divida en un separator o cualquier otra estratégia que reduzca el número de eventos o el número de items que están en tu modelo simultáneamente sin afectar a las estadísticas de salida.

Saludos

0 Likes 0 ·
DaniCor avatar image DaniCor Julio R commented ·
Hola Julio

Correcto corren los dos modelos, pero en el modelo con sin transporters, no se ve un flujo normal del processor1, de la nada de cantidad de output 0 aparece output 700, y eso varia los datos de tiempo de funcionamiento. En cambio en el modelo con transporter desde el inicio de la simulación de ve salidas del output del processor linealmente

Gracias por la ayuda

0 Likes 0 ·
Show more comments
Kavika F avatar image
0 Likes"
Kavika F answered

Hey @DaniCor, one reason you're getting "Array Index Out of Bounds" errors on the processor ENVASADO is because it's using center-port connection 2 when there's only 1 center-port connection available.

1704734587564.png

It seems to work fine after you change ENVASADO to use

current.centerObjects[1]

instead.


1704734587564.png (17.1 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.

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.