Search found 9 matches

by Gerben
Tuesday 17 December, 2019 - 16:30
Forum: Enterprise Dynamics 4DScript
Topic: Simulating a factory
Replies: 10
Views: 27646

Re: Simulating a factory

Hi Sam, I would suggest the following: - Add an extra attribute to each RDM, refering to the current RowIndex in RDMVraag which is being processed right now. Decrement the needed quantity of items in the row for every item you start processing in the RDM. - Keep track of the current accepted itemTyp...
by Gerben
Monday 30 April, 2018 - 12:44
Forum: Modeling in Enterprise Dynamics
Topic: Human resource priority
Replies: 2
Views: 2421

Re: Human resource priority

Hi Yfke,

I added an example model that may help you. Change it so that it has only one shared server and one human resource.
You can search in task assignment strategies (in hr-team) and input strategies (server) for a strategy that suits your purpose.

Gerben
by Gerben
Monday 30 April, 2018 - 12:21
Forum: Enterprise Dynamics 4DScript
Topic: Reading labels with the assembler
Replies: 4
Views: 4185

Re: Reading labels with the assembler

You can create a source that creates a container with 'x' products inside, instead of creating a label 'products on pallet' with value 'x'.
You can then use a splitter or unpacker to use these individual products.

Gerben
by Gerben
Monday 30 April, 2018 - 11:33
Forum: Modeling in Enterprise Dynamics
Topic: Warehouse modelling examples
Replies: 3
Views: 3191

Re: Warehouse modelling examples

Hi Tim,

It seems to me that the blue lines in 2D are drawn to the unrotated position of the warehouse, I think this is a bug instead of a modelling error.

Gerben
by Gerben
Monday 30 April, 2018 - 11:23
Forum: Enterprise Dynamics 4DScript
Topic: Reading labels with the assembler
Replies: 4
Views: 4185

Re: Reading labels with the assembler

Hi Maaike, I see two solutions for your problem: a) Model donations as pallets that you unpack, your assembler then uses the count of unpacked items. b) Create your own variant of an assembler, that uses an other counting mechanism. For option b), you may want to take a look at the 4dScript at Assem...
by Gerben
Monday 30 April, 2018 - 11:03
Forum: Modeling in Enterprise Dynamics
Topic: Connection Arrival list and Excel
Replies: 2
Views: 2327

Re: Connection Arrival list and Excel

Hi Yvonne,

I found a third solution, thanks to HarryBunnik:
3) Use an Initialize-atom with code that copies the table from your loaded Excel table to the ArrivalList.

Gerben
by Gerben
Monday 30 April, 2018 - 10:52
Forum: Modeling in Enterprise Dynamics
Topic: Connection Arrival list and Excel
Replies: 2
Views: 2327

Re: Connection Arrival list and Excel

Hi Yvonne,

For now I see two options for you, I'm not sure whether one of these solutions suits your specific case.
1) Use a copy-paste from your excel to the table on your arrivalList atom,
2) Make your own variant of the arrival list that uses a table you have imported from Excel

Gerben
by Gerben
Monday 30 April, 2018 - 10:32
Forum: Enterprise Dynamics 4DScript
Topic: what is the meaning of " i.row :=2 " in following code?
Replies: 2
Views: 3680

Re: what is the meaning of " i.row :=2 " in following code?

Hi Amin,

i.row refers to label 'row' on atom 'i'.
i.row := 2 equals Label([row], i) := 2

Gerben
by Gerben
Monday 30 April, 2018 - 10:13
Forum: Enterprise Dynamics Atoms
Topic: what "offset" exactly do, in "advance transporter" atom ?
Replies: 2
Views: 12599

Re: what "offset" exactly do, in "advance transporter" atom ?

Hi Amin, The offset determines/calculates the position (x,y,z) where an advanced transporter should drive to in order to pick or place an item. Try changing the pick X offset for one of the transporters in the attached model to a constant (try different values between 0 and 50). You will see a diffe...