Search found 93 matches

by MarvinH
Friday 12 October, 2012 - 16:50
Forum: Enterprise Dynamics Atoms
Topic: Call Operator
Replies: 8
Views: 10464

Re: Call Operator

Hello, I took the liberty to further adjust your model, as I was missing the closing of the conveyors after it was emptied. The following changes are applied: - Implemented calling and releasing of operators at the server; - Storing on a label whether a operator was already called or not, to avoid m...
by MarvinH
Friday 12 October, 2012 - 15:29
Forum: Enterprise Dynamics Atoms
Topic: Call Operator
Replies: 8
Views: 10464

Re: Call Operator

Sorry, missed your uploaded model. Here's the code for your Entry and Exit triggers in the last model: OnEntry: if( Label([CallOps],i) = True, Do( Label([CallReference], c) := i, CallOperators(in(2,c),1,1), Label([CallOps],i) := False ) ) OnExit: if( content(in(1,c)) = 0, FreeOperators(in(2,c),vtp(L...
by MarvinH
Friday 12 October, 2012 - 15:24
Forum: Enterprise Dynamics Atoms
Topic: Call Operator
Replies: 8
Views: 10464

Re: Call Operator

Hello! The issue with releasing the operator indeed has to do with the reference to which atom it is called. You can solve it by using labels again. When you call the operator (more in particular, when you call it at the server), it is assigned to the first atom (i.e. crate/product) inside the serve...
by MarvinH
Thursday 11 October, 2012 - 10:26
Forum: Enterprise Dynamics Atoms
Topic: Conveyors
Replies: 2
Views: 3708

Re: Conveyors

Hello!

Please have a look at Conveyor with Speed -1 / backward transportation?.

Kind regards,

Marvin
by MarvinH
Monday 08 October, 2012 - 09:55
Forum: Enterprise Dynamics 4DScript
Topic: Error in stop model with 4D Script in Source
Replies: 7
Views: 8109

Re: Error in stop model with 4D Script in Source

Hello Heimann, Your problem is not quite clear to me. I assume that you want to stop the simulation at a certain time, and you are using the User Event atom to do this. The code you included is not entirely clear to me. By use of the User Event atom, you can define an event at a certain time. On the...
by MarvinH
Tuesday 02 October, 2012 - 13:40
Forum: Modeling in Enterprise Dynamics
Topic: Advanced Transporter doesn't travel to desired location
Replies: 4
Views: 5333

Re: Advanced Transporter doesn't travel to desired location

Hi Katinka, Glad to read that your model works. I implemented the fix only for the inbound pallets at the conveyors, I had no idea whether you used the same functionality somewhere else in your model. Fortunately you were able to propogate these fixes over there as well. A small remark about reprodu...
by MarvinH
Tuesday 02 October, 2012 - 10:34
Forum: Enterprise Dynamics Atoms
Topic: Call Operator
Replies: 8
Views: 10464

Re: Call Operator

Hello! When the CallOperator statement is executed, as stated in the Help file, all events of the containing atom are delayed until the operator arrives. With the assembler, the EntryTrigger is executed immediately when an atom enters, afterwards events are scheduled. Therefore when a product enters...
by MarvinH
Monday 01 October, 2012 - 17:22
Forum: Modeling in Enterprise Dynamics
Topic: Advanced Transporter doesn't travel to desired location
Replies: 4
Views: 5333

Re: Advanced Transporter doesn't travel to desired location

Hi Katinka, I had a look at your model and as you mention, indeed there are two issues: 1) Loading time shorter than 45 seconds; 2) "Teleporting" products. Considering the first issue, I found the following: When a APM finished unloading at one of the racks, the ExitTrigger was executed. I...
by MarvinH
Thursday 30 August, 2012 - 11:03
Forum: Enterprise Dynamics 4DScript
Topic: CreateAtom (CreateAtomCopy)
Replies: 2
Views: 3633

Re: CreateAtom (CreateAtomCopy)

Hello Katinka! i.e. I sent it to a Queue Atom, but it just stays there, without going to the next Atom, although this is possible (and very much desired ) How do you send the product to the queue? I think there are 2 options: 1) Use CreateAtom where you provide the queue as the second parameter, to ...
by MarvinH
Monday 13 August, 2012 - 12:58
Forum: Enterprise Dynamics 4DScript
Topic: Error in stop model with 4D Script in Source
Replies: 7
Views: 8109

Re: Error in stop model with 4D Script in Source

Hello Heimann, in the sink needed to stop simulation after 60th seconds, but this model stop in 65th Seconds, why?why don't stop in 61 or 62? The EntryTrigger of the sink is only evaluated when a product enters. So in case the product enters after 65 seconds, then the simulation will stop after 65 s...