Search found 15 matches

by vincent1989
Thursday 04 April, 2013 - 09:33
Forum: Installation
Topic: Dual Graphics Card in laptop
Replies: 1
Views: 15417

Dual Graphics Card in laptop

Currently some notebooks have two graphics cards, generally one weaker intel graphics card and a powerful nVidia or AMD graphics card. The notebooks switches to the card depending on the application. The intel card is far weaker, but also uses less power. The nVidia or AMD card is the opposite. The ...
by vincent1989
Monday 29 October, 2012 - 16:26
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello, if(Label([Where],i)=0, Do(Min(NrOC(c), NrOC(c) + 1 - IndexMatch(NrOC(c), 1, OCReady(NrOC(c) + 1 - Count, c)))), If(|(Label([Where],i)=1,Label([Where],i)=4),3, if(|(Label([Where],i)=3,Label([Where],i)=6),4, if(Label([Where],i)=2,1, if(Label([Where],i)=5,2) ) ) ) ) is basically your routines, b...
by vincent1989
Monday 29 October, 2012 - 15:28
Forum: Enterprise Dynamics 4DScript
Topic: Please support me
Replies: 7
Views: 5414

Re: Please support me

Hello Duuzel, Indeed, to achieve what you want 4Dscript needs to be used. Steps in short: 1. Set either a name or a lable on the two products (to keep them apart). 2. Add 2 attributes (totstay1 and totstay2) to the queue. 3. Note 'time' at entry trigger for each product in a label (say [beginstay])....
by vincent1989
Monday 29 October, 2012 - 11:03
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello Dawrika, The code using [where] tells the robot where to put the current product next (in the server / turntable or on the conveyor). This code is used to perform all the movements you want, but is separate from the routines. The [productnr] tells us the number of the product. The first produc...
by vincent1989
Monday 29 October, 2012 - 10:58
Forum: Enterprise Dynamics 4DScript
Topic: Linear Assignment Problem
Replies: 4
Views: 5005

Re: Linear Assignment Problem

Hello Roberto, I already understood what you were referring to. A cost matrix C cannot be implemented into a multiserver (since individual workers cannot be selected) so separate servers have to be created. Each of these need to have their own cost column. Also, though it might be possible, I dont t...
by vincent1989
Monday 29 October, 2012 - 10:18
Forum: Enterprise Dynamics 4DScript
Topic: Please support me
Replies: 7
Views: 5414

Re: Please support me

Hello Duuzel, By going to the 'Experiment Wizard' under 'Experimentation' you can do an Experiment. Under the performance measures you can add measurements, including the average waiting time. So click 'add', enter the queue and select 'avgstay'. Give a name and run the experiment. Does this help to...
by vincent1989
Friday 26 October, 2012 - 14:31
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello David, To achieve what I said you can do the following: In your model, open the Atom Editor (shift + F5). Go to your source atom under O Model. There you can add an attribute, under "Attributes". Let's call this new attribute "counter". "counter" needs to be set a...
by vincent1989
Thursday 25 October, 2012 - 10:16
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello David, I must say I'm not familiar with teach-in, but I can tell you the following: By utilizing the 'Advanced Scara Robot' (Library Tree: Library -> Transport -> Robots -> Advanced Scara Robot) routines can be implemented. (In the model you sent me you were using the standard Robot) Double cl...
by vincent1989
Wednesday 24 October, 2012 - 15:47
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello David, I'm not exactly sure what you are referring to with your 'second' problem. Your third question: "What kind of syntax I should use when the server stopped working and robot automatically go to server and pick the product. That same situation with turntable atom." So the server ...
by vincent1989
Wednesday 24 October, 2012 - 10:27
Forum: Enterprise Dynamics 4DScript
Topic: Problem with 4Dscript
Replies: 15
Views: 10787

Re: Problem with 4Dscript

Hello David, Consider: if(Label([Where],i)=0, Do(Min(NrOC(c), NrOC(c) + 1 - IndexMatch(NrOC(c), 1, OCReady(NrOC(c) + 1 - Count, c)))), If(|(Label([Where],i)=1,Label([Where],i)=4),3, if(|(Label([Where],i)=3,Label([Where],i)=6),4, if(Label([Where],i)=2,1, if(Label([Where],i)=5,2) ) ) ) ) This segment ...