Search found 200 matches

by MatthijsJongboer
Thursday 19 January, 2012 - 16:37
Forum: Enterprise Dynamics Atoms
Topic: Accumulating Conveyor
Replies: 5
Views: 7577

Re: Accumulating Conveyor

Hallo ich habe eine kleine Frage zu Abständen im Accumulating Conveyor. Meine Produkte die über eine Source auf den Conveyor gelangen bekommen mittels einer Bernoulli-Verteilung unterschiedliche Groesen zugeordnet wie kann ich es nun realisieren dass zwischen den Produkten immer ein bestimmter Abst...
by MatthijsJongboer
Wednesday 18 January, 2012 - 14:27
Forum: Installation
Topic: Error processing summary report document
Replies: 1
Views: 17641

Re: Error processing summary report document

It is a rights issue. When working with Windows Vista or Windows 7, the easiest solution would be to run Enterprise Dynamics with elevated rights. To do this, there are two options: 1. Create (or you might already have one) a shortcut and open the properties. Here, under the Compatibility tab, at Pr...
by MatthijsJongboer
Wednesday 18 January, 2012 - 09:41
Forum: Enterprise Dynamics Atoms
Topic: Notify Router Atom!
Replies: 1
Views: 3526

Re: Notify Router Atom!

The Notify Router does not have special 2D modelling features. I can move, select and delete it. Maybe you turned the (main)layer edit functionality off? There is no example for this atom. You must use it if more than one Condition Control atom listens to a certain atom.
by MatthijsJongboer
Tuesday 17 January, 2012 - 09:54
Forum: Enterprise Dynamics 4DScript
Topic: How to count and identify the Products defined in a Model
Replies: 3
Views: 3737

Re: How to count and identify the Products defined in a Mode

When you create the atom and have the user connect the atoms, the result would be simply the number of input channels (nric). So creating the connections is also possible (e.g. OnReset). You can use the 4DScript Connect where channel 0 is the central channel. You can increse the number of channels o...
by MatthijsJongboer
Monday 16 January, 2012 - 16:18
Forum: Enterprise Dynamics 4DScript
Topic: How to count and identify the Products defined in a Model
Replies: 3
Views: 3737

Re: How to count and identify the Products defined in a Mode

When you want to get the total number of product types, the first question is how you identify a product type. If it's through a color or image or through a label or maybe some other definition? When you define the number of product types as being equal to the number of sources, you could verify the...
by MatthijsJongboer
Thursday 05 January, 2012 - 10:02
Forum: Enterprise Dynamics 4DScript
Topic: classes
Replies: 19
Views: 12102

Re: classes

Marvin, thank you, thank you... now it works perfects, because we know for little law: L = rho/ (1 - rho) and rho = 0.5 for the whole system, so L = 1, so L = 1/2 for every queue. And I obain now 0.25 for every queue stay (from your try2), and that is correct, because L_q (length queue) = 0.5 - 0.2...
by MatthijsJongboer
Monday 02 January, 2012 - 14:41
Forum: Enterprise Dynamics 4DScript
Topic: warehouse
Replies: 3
Views: 3781

Re: warehouse

When you use the default warehouse, atom reference first(c) (product to send) and outputchannel 1 are the default values. What you are looking for is a pull strategy. What could be helpfull is example model AdvancedTransporter_PickAtom&PlaceAtom2.mod located in the transport example directory.
by MatthijsJongboer
Monday 02 January, 2012 - 12:00
Forum: Enterprise Dynamics 4DScript
Topic: warehouse
Replies: 3
Views: 3781

Re: warehouse

This depends on how you placed the products in the warehouse. If you placed the products in the warehouse as they arrived, you need to define your pickupstrategy in a way that you 'search' the warehouse for a matching product. Maybe you have defined some logic of where to put the products that will ...
by MatthijsJongboer
Wednesday 28 December, 2011 - 15:10
Forum: Enterprise Dynamics 4DScript
Topic: classes
Replies: 19
Views: 12102

Re: classes

Well, you place the label on the involved atom (which will not work on the input strategy, only on the trigger on entry and exit). But you use the label from c. So the first change will be putting it on c. What could be helpul is the 4DScript interact window. Here you can try chuncks of code and see...
by MatthijsJongboer
Tuesday 27 December, 2011 - 12:39
Forum: Enterprise Dynamics 4DScript
Topic: classes
Replies: 19
Views: 12102

Re: classes

maybe you can store them in 2 local variables like this:
do(
var([p1], vbValue, Uniform(0, 1)),
var([p2], vbValue, 1-p1),
...
)