Search found 362 matches

by HarryBunnik
Wednesday 01 April, 2020 - 12:49
Forum: Enterprise Dynamics 4DScript
Topic: Create a cycle time of Assembler atom that depends on product
Replies: 14
Views: 27590

Re: Create a cycle time of Assembler atom that depends on product

Sorry, here I was a bit to quick and only went through half of your question. In the OnExit of the source, you indeed create the labels identifying the products. I would write the code on the "Trigger on entry channel 2..n" in the Assembler atom and write the outcome away in a label called...
by HarryBunnik
Wednesday 01 April, 2020 - 11:42
Forum: Enterprise Dynamics 4DScript
Topic: Create a cycle time of Assembler atom that depends on product
Replies: 14
Views: 27590

Re: Create a cycle time of Assembler atom that depends on product

Ha ASV, Welcome to the community! There are a few things to take into account here: You're referring to the product with first(c). However, that is the first atom in the current atom (the assembler itself). This is most likely the container, and not the product you try to influence. That has no labe...
by HarryBunnik
Wednesday 18 March, 2020 - 16:58
Forum: Modeling in Enterprise Dynamics
Topic: A Lifttruck between two Nodes
Replies: 11
Views: 26272

Re: A Lifttruck between two Nodes

Ha vahid.bgh, Yes, when you're using a path that is 2 way, it is expected that the AT's can pass. So, in other words, the capacity is only valid in one direction. To have a network that is in the aisles bi-directional, but still is not allowing trucks to drive past (or through) each other, will requ...
by HarryBunnik
Wednesday 18 March, 2020 - 12:06
Forum: Modeling in Enterprise Dynamics
Topic: A Lifttruck between two Nodes
Replies: 11
Views: 26272

Re: A Lifttruck between two Nodes

Ha vahid.bgh, I haven't looked at your new model, since I don't have much time at the moment, but the code I gave you is to fix the capacity problem of the nodes. So now it should be possible to set the capacities of the narrow aisles to 1 again. This should prevent AT's of driving through each othe...
by HarryBunnik
Wednesday 11 March, 2020 - 17:40
Forum: Modeling in Enterprise Dynamics
Topic: A Lifttruck between two Nodes
Replies: 11
Views: 26272

Re: A Lifttruck between two Nodes

Pff... ED 8.1 That is some time ago ;-) Unfortunately I only don't have anything older than 8.2 on my computer, so it's a bit difficult to help you. However, I can give a few tips: What I mostly see with VNA's is that an aisle is one way and using a zigzag way to go through a warehouse. Otherwise, t...
by HarryBunnik
Tuesday 10 March, 2020 - 15:06
Forum: Modeling in Enterprise Dynamics
Topic: A Lifttruck between two Nodes
Replies: 11
Views: 26272

Re: A Lifttruck between two Nodes

Ha vahid.bgh, In which version of ED is this model made? It seems to be a bit older? Then I can try to recreate the same situation. What I see at least is that you have 2 networks, which are both connected to the same warehouses. Unfortunately this is not allowed. The warehouse is, because of the co...
by HarryBunnik
Monday 09 March, 2020 - 09:08
Forum: Modeling in Enterprise Dynamics
Topic: A Lifttruck between two Nodes
Replies: 11
Views: 26272

Re: A Lifttruck between two Nodes

Ha vahid.bgh,

Have you already tried to set the capacities of the nodes to 1? That way, only one Advanced Transporter is allowed in between 2 nodes.

Success,

Harry
by HarryBunnik
Monday 02 March, 2020 - 14:20
Forum: Modeling in Enterprise Dynamics
Topic: Advanced transporter doesn't go to exact column of warehouse for placing
Replies: 1
Views: 11016

Re: Advanced transporter doesn't go to exact column of warehouse for placing

Ha vahid.bgh, if you want to have the transporter to place the object at the correct position, you'll have to the offset on the transporter. Here you can use the labels to let the transporter drive to the correct position (Place X-offset etc). There is an example model available, which shows this be...
by HarryBunnik
Tuesday 07 January, 2020 - 10:11
Forum: Enterprise Dynamics 4DScript
Topic: ground storage queue discipline
Replies: 3
Views: 13328

Re: ground storage queue discipline

Ha Sam, That makes it a bit more difficult, but the same principles apply, only the code gets a bit more complicated. I would advise to split such information next time, so you'll have a label buffer and a level prio . That would have made the code easier. I've adjusted the model to reflect your pro...
by HarryBunnik
Monday 06 January, 2020 - 18:15
Forum: Enterprise Dynamics 4DScript
Topic: ground storage queue discipline
Replies: 3
Views: 13328

Re: ground storage queue discipline

Ha Sam, I've created a small example model to show you an option. It is slightly working differently, since I place the control on the ExitTrigger of the Buffer (which has all a capacity of 2). Because that is the first moment where I know that I would like to search for replenishment of my buffer. ...