Search found 28 matches

by EvelineHermans
Monday 17 August, 2015 - 16:30
Forum: Enterprise Dynamics 4DScript
Topic: Assembler - flowtime
Replies: 12
Views: 12348

Re: Assembler - flowtime

No, I want the last product of B, the last product of C and the the last product of D to be entering the Assember at the same time. See a timeline I reconstructed: Assembler1.gif So (assume all flows are 1 product per second): - I want to open input channel 1 of Assember (connected to reservoir A) a...
by EvelineHermans
Friday 14 August, 2015 - 22:08
Forum: Enterprise Dynamics 4DScript
Topic: Assembler - flowtime
Replies: 12
Views: 12348

Re: Assembler - flowtime

Sorry, but yes I need this reservoirs as my model is bigger than just this problem ;-). These reservoirs are also used in reality (as well as their min. and max. level of products) and as I also want to simulate the HR team doing some tasks and so on, I am convinced that I need these reservoirs. In ...
by EvelineHermans
Friday 14 August, 2015 - 21:25
Forum: Enterprise Dynamics 4DScript
Topic: Assembler - flowtime
Replies: 12
Views: 12348

Re: Assembler - flowtime

Hi Taid, The products A, B, C, D are all different products and they are therefore all stored in a separate atom which is fed by a transporter filling the reservoirs with batches of 25 products. In my model I start off with a source (A-B-C-D separately), followed by a transporter that connects the s...
by EvelineHermans
Friday 14 August, 2015 - 13:05
Forum: Enterprise Dynamics 4DScript
Topic: Assembler - flowtime
Replies: 12
Views: 12348

Assembler - flowtime

Hi, I have a questions concerning the assembling of multiple products into one product. For example I need 1A + 20B + 5C + 2D to form mij product: E . As my intermediate products are stored in a reservoir, the flow of the outgoing intermediate products determines the time it takes till the assembler...
by EvelineHermans
Tuesday 11 August, 2015 - 16:38
Forum: Enterprise Dynamics 4DScript
Topic: Action on evert n-th event
Replies: 1
Views: 2928

Re: Action on evert n-th event

I was too fast in asking.. sorry.
I found the answer already in one of the predefined functions in another atom :)

Code: Select all

mod(output(c),150)
by EvelineHermans
Tuesday 11 August, 2015 - 16:28
Forum: Enterprise Dynamics 4DScript
Topic: Action on evert n-th event
Replies: 1
Views: 2928

Action on evert n-th event

Hi, I am wondering if it is possible to simplify my code. I want to regulary close two inputchannels, to which I already made a reference. At every 150th output, I want to shortly open these two inputchannels. Now I write the code for the 150th and 300th output separately, but as I want to generate ...
by EvelineHermans
Tuesday 11 August, 2015 - 13:28
Forum: Enterprise Dynamics Atoms
Topic: Availability Atom connected to Excel/Access?
Replies: 2
Views: 4296

Re: Availability Atom connected to Excel/Access?

Thanks a lot for your very clear explaination and your help :)! It works
by EvelineHermans
Friday 07 August, 2015 - 14:47
Forum: Enterprise Dynamics Atoms
Topic: Availability Atom connected to Excel/Access?
Replies: 2
Views: 4296

Availability Atom connected to Excel/Access?

Is there a way to connect an Excel-document to the Availability Time Scheduele? I would like to manage these numbers by just one simple document (Excel or Access) so that I can make a change in these tables easily. When I reset the model, I would like to also update the availablities from the docume...
by EvelineHermans
Friday 07 August, 2015 - 13:10
Forum: Enterprise Dynamics 4DScript
Topic: Regular transporter 'Send to' code
Replies: 7
Views: 6177

Re: Regular transporter 'Send to' code

Sorry, made a little mistake in the code. The code below is working nicely: Do( var([atmReservoir], vbAtom), var([atmServer], vbAtom), atmReservoir := Out(1, Out(Label([transporter], first(c)), c)), atmServer := Out(Label([transporter], first(c)),c), LoopUntil( Content(atmReservoir) < Att([Max.], at...
by EvelineHermans
Friday 07 August, 2015 - 13:04
Forum: Enterprise Dynamics 4DScript
Topic: Regular transporter 'Send to' code
Replies: 7
Views: 6177

Re: Regular transporter 'Send to' code

Of course you were right, my explaination was not correct ;-) Thanks, it seems to work correctly with the following code: Do( var([atmReservoir], vbAtom), var([atmServer], vbAtom), atmReservoir := Out(1, Out(Label([transporter1], first(c)), c)), atmServer := Out(1,c), LoopUntil( Content(atmReservoir...