Search found 200 matches

by MatthijsJongboer
Tuesday 27 December, 2011 - 09:59
Forum: Enterprise Dynamics 4DScript
Topic: classes
Replies: 19
Views: 12039

Re: classes

It seems that what you are looking for is an input strategy for the object calling the products from both queues. If this object has two input channels (one for each queue), you have a reference to both queues. You code on the input strategy can do the job. To get the length of the queues you can us...
by MatthijsJongboer
Wednesday 09 November, 2011 - 09:52
Forum: Installation
Topic: HASP License Manager
Replies: 0
Views: 52359

HASP License Manager

When Enterprise Dynamics is protected with a network HASP key, the license manager is required to run on the machine (server) where the HASP network key is plugged in. The software (for windows) is provided on the CD-ROM you received when you ordered the software (CD\HASP\lmsetup.exe) or in your Ent...
by MatthijsJongboer
Monday 19 September, 2011 - 12:23
Forum: Modeling in Enterprise Dynamics
Topic: Moving atoms from one queue to another
Replies: 2
Views: 3858

Re: Moving atoms from one queue to another

The presented solution might be the answer to continue modelling. If the answer leaves room for additional questions or discussion, feel free to continue in this thread on the topic 'Moving atoms from one queue to another'. For new topics, you can start a new thread.
by MatthijsJongboer
Monday 12 September, 2011 - 16:16
Forum: Modeling in Enterprise Dynamics
Topic: input channels closed for no reason
Replies: 3
Views: 4535

Re: input channels closed for no reason

Yes, product dimensions are an important factor. Glad you have it working now.
by MatthijsJongboer
Thursday 25 August, 2011 - 17:51
Forum: Modeling in Enterprise Dynamics
Topic: input channels closed for no reason
Replies: 3
Views: 4535

Re: input channels closed for no reason

Hi Leo, What could be a problem is the defenition you use in the condition control. The 3rd parameter of the 4DScript CreateEvent is the EventCode (Not the code to execute, although this is also possible). The result of the function Conveyors_ChangeSpeed is used in the atom speciefied as 2nd paramet...
by MatthijsJongboer
Monday 15 August, 2011 - 10:37
Forum: Modeling in Enterprise Dynamics
Topic: Portal Crane with two crossbeams
Replies: 1
Views: 3884

Re: Portal Crane with two crossbeams

It is possible but to achieve this you require complete modification of the portal cranes. They should interact with each other. This is a large project even for experienced 4DS programmers. We have a multicrane controller system: http://www.incontrolsim.com/en/addons/multicrane-controller.html . Ho...
by MatthijsJongboer
Friday 24 June, 2011 - 16:50
Forum: Modeling in Enterprise Dynamics
Topic: Parttime operator
Replies: 1
Views: 3582

Re: Parttime operator

For this I would suggest to have one server (let's call it home) calling and claiming one operator for 50% of the time.
by MatthijsJongboer
Tuesday 07 June, 2011 - 11:34
Forum: Enterprise Dynamics 4DScript
Topic: Error while opening saved simulation
Replies: 1
Views: 3239

Re: Error while opening saved simulation

Hello Olga, The Enterprise Dynamics models are saved with a .mod extension by default. During the closing routine of Enterprise Dynamics, a temporary file is created (with .~mod extension) to detect model changes. This file should no longer exist when ED is closed. The fact that you have this file i...
by MatthijsJongboer
Friday 20 May, 2011 - 15:07
Forum: Enterprise Dynamics 4DScript
Topic: Referencing to atoms entering from a specific channel
Replies: 1
Views: 3532

Re: Referencing to atoms entering from a specific channel

Hello Giannis, There is a command to reference the inputchannel that triggered the event. it's IC. In your case, you only want to set a label when entered through channel one. This can then be done using an if statement. Something like this: if(ic(c)=2, Label([batch], i) := 1 ) In the help you have ...
by MatthijsJongboer
Friday 08 April, 2011 - 10:06
Forum: Enterprise Dynamics 4DScript
Topic: Reordering channels to delete empty channel
Replies: 2
Views: 3504

Re: Reordering channels to delete empty channel

Hello EDwin, During model creation this can happen. The code you are looking for will only work if you use code or routines that do not take into account specific channel numbers! Also, for some atoms it is required that they have unconnected channels. I created an example atom that will do this for...