Search found 362 matches

by HarryBunnik
Wednesday 17 February, 2016 - 14:17
Forum: Enterprise Dynamics 4DScript
Topic: Advanced non accumalating conveyor position
Replies: 2
Views: 3370

Re: Advanced non accumalating conveyor position

Ha JimH, This is a quite tricky thing (and I hope I can give you something to make a start with). First of all you'll need the function "Conveyors_PreliminaryExit". Hopefully you have the option to go into the atom editor and can check the code there (TRANSPORT\General Conveyor Functions)....
by HarryBunnik
Tuesday 02 February, 2016 - 15:21
Forum: Modeling in Enterprise Dynamics
Topic: Mini load system help
Replies: 1
Views: 3985

Re: Mini load system help

Hello, First of all, you have to many picking orders from your warehouse. And these keep the transporter occupied. So you might want to play with the order in which tasks are handled by the Dispatcher, instead of using as FIFO you might want to take in account where the order is coming from. Is this...
by HarryBunnik
Tuesday 02 February, 2016 - 14:54
Forum: Modeling in Enterprise Dynamics
Topic: only two of three transporters are busy?
Replies: 1
Views: 4519

Re: only two of three transporters are busy?

Hello Jaxson,

Can you send an example model? Then I can have a look.

Gr. Harry
by HarryBunnik
Tuesday 02 February, 2016 - 14:53
Forum: Enterprise Dynamics 4DScript
Topic: Sales with different dates
Replies: 3
Views: 4698

Re: Sales with different dates

Hello Marthieka, Would it be an idea to store all products in one queue and then, based on the consumer type (LEFO or FEFO), take either the last or the first product in the row (you would have to place the last product in the queue to the first position, before reopening the queue again (SetRank(1,...
by HarryBunnik
Tuesday 02 February, 2016 - 14:23
Forum: Enterprise Dynamics 4DScript
Topic: OpenOutput problem
Replies: 2
Views: 4384

Re: OpenOutput problem

Ha thegame2,

You could play here a bit with for instance the Output(c) and the Mod(Output(c), 4) = 0 and only then re-open the queue again. This ensures that 4 products are out of the server.

Gr. Harry
by HarryBunnik
Thursday 10 December, 2015 - 17:33
Forum: Enterprise Dynamics Atoms
Topic: Several status pies at the same time
Replies: 1
Views: 15415

Re: Several status pies at the same time

Ha PeutLeVoir,

I fear that in the moment that what you want is not possible. A status monitor can only be linked to one object.

Cheers, Harry
by HarryBunnik
Thursday 10 December, 2015 - 16:57
Forum: Enterprise Dynamics 4DScript
Topic: assign label to products
Replies: 1
Views: 3131

Re: assign label to products

Ha Christian, What I would do is create a label and fill it using the Output(c) (This gives the number of products that have left the Source) and use a modulo: Label([?????], i) := Mod(Output(c) - 1, 4) + 1 If you place this code on the OnExit trigger of the source, it will label each outgoing produ...
by HarryBunnik
Tuesday 08 September, 2015 - 12:01
Forum: Enterprise Dynamics 4DScript
Topic: Batch size server
Replies: 3
Views: 4989

Re: Batch size server

Ha Eveline, You're very close. Your problems lays in the fact that when you have a red product (Label([Barrel], i) = 1) the first IF-statement is nicely returning 75. However, in the next line of code (that also will be executed) you check if the label([Barrel], i) might be 2. This returns a false a...
by HarryBunnik
Thursday 06 August, 2015 - 12:06
Forum: Modeling in Enterprise Dynamics
Topic: Modelling a multi variant pull system?
Replies: 21
Views: 16064

Re: Modelling a multi variant pull system?

Ha Dominik,

I'm sorry that it still isn't doing what you want it to do, but hope you have enough for your thesis.
Success with it! And enjoy a beer when you've finished your thesis ;-)

Gr. Harry
by HarryBunnik
Monday 03 August, 2015 - 15:37
Forum: Enterprise Dynamics 4DScript
Topic: ordering and assemmbler
Replies: 4
Views: 4921

Re: ordering and assemmbler

Ha Padelis, First I have a few points: - You have several labels that contain spaces. If I were you I would not do that. I'm not sure if that may not cause problems, but is not advisable. - You can't set or update the BaseTime, so that gives an Access violation at every reset. - Quite some of the se...