Search found 20 matches

by Gabe-Hein Dijkstra
Wednesday 07 December, 2022 - 15:31
Forum: Enterprise Dynamics 4DScript
Topic: Help needed in basic 4DS Programming
Replies: 4
Views: 12681

Re: Help needed in basic 4DS Programming

Hi Max, It is always nice to help, so no worries. :D As mentioned before, "i" cannot be used on the SendTo. Why this is the case has a quite technical answer, but I will try my best to keep it simple. In Enterprise Dynamics everything revolves around events and event handlers. Event handle...
by Gabe-Hein Dijkstra
Tuesday 06 December, 2022 - 10:32
Forum: Enterprise Dynamics 4DScript
Topic: Help needed in basic 4DS Programming
Replies: 4
Views: 12681

Re: Help needed in basic 4DS Programming

Hi Max, Welcome back to the forum! The problem lies in the consecutive if-functions in your SendTo. The results from the previous if-statements are overwritten later on. From the help: "Syntax: If(e1, e2 {, e3}) Parameter 1 (e1) is the test statement. If this test statement returns 1 (True) par...
by Gabe-Hein Dijkstra
Wednesday 23 November, 2022 - 13:27
Forum: Modeling in Enterprise Dynamics
Topic: Sequence of placing products on a ground storage
Replies: 9
Views: 23629

Re: Sequence of placing products on a ground storage

Hi Max, I have discovered what causes your error. The problem has occurred before and was subsequently solved in the latest beta. However, as you are not running on that version, you do not have the solution yet. I will send you a pm containing the updated ground storage atom which will solve your p...
by Gabe-Hein Dijkstra
Tuesday 22 November, 2022 - 09:27
Forum: Modeling in Enterprise Dynamics
Topic: Sequence of placing products on a ground storage
Replies: 9
Views: 23629

Re: Sequence of placing products on a ground storage

Hi Max, Thank you for sharing the model. Whenever I run the model, I do not get any errors. There also is nothing placed on the exittrigger of the ground storage. Are you certain this is the model you are getting errors with? If so, can you send me your Enterprise Dynamics version so I can replicate...
by Gabe-Hein Dijkstra
Monday 21 November, 2022 - 10:06
Forum: Modeling in Enterprise Dynamics
Topic: Sequence of placing products on a ground storage
Replies: 9
Views: 23629

Re: Sequence of placing products on a ground storage

Hi Max, Of course I can help again! It looks like there is code on the ExitTrigger of the GroundStorage which calls the attribute "ExitTrigger" of the product. An attribute with this name does not exist on the product, an hence you get an error. My advice would be to check the code on the ...
by Gabe-Hein Dijkstra
Friday 11 November, 2022 - 10:06
Forum: Modeling in Enterprise Dynamics
Topic: Sequence of placing products on a ground storage
Replies: 9
Views: 23629

Re: Sequence of placing products on a ground storage

Hi Max, Welcome to the Enterprise Dynamics community! You already discovered that the basic assignment within the ground storage is done by setting the labels "row" and "column" on the products. If I understand your question correctly, you want to assign the columns based on the ...
by Gabe-Hein Dijkstra
Wednesday 05 October, 2022 - 10:19
Forum: Modeling in Enterprise Dynamics
Topic: Crashing of model after about 1500 hours of simulating
Replies: 4
Views: 13050

Re: Crashing of model after about 1500 hours of simulating

Hi Rico,

Great to hear! I was just typing a response to your previous message. ;)

Gr. Gabe-Hein
by Gabe-Hein Dijkstra
Tuesday 04 October, 2022 - 14:10
Forum: Modeling in Enterprise Dynamics
Topic: Crashing of model after about 1500 hours of simulating
Replies: 4
Views: 13050

Re: Crashing of model after about 1500 hours of simulating

Hi Rico, The problem lies in the fact that the number of atoms in your model grows exponentially. Instead of placing atoms in atoms you could maybe store the relevant information in tables or labels. Each atom has its own table (see the Help for more information) but there also exists a table atom. ...
by Gabe-Hein Dijkstra
Thursday 16 June, 2022 - 13:23
Forum: Enterprise Dynamics 4DScript
Topic: Help needed for multiserver query
Replies: 3
Views: 12322

Re: Help needed for multiserver query

Hi Shio, It is important to know the distinction between the 'Cycletime' parameter and the 'Send to' parameter. The 'Cycletime' parameter indicates the time needed to process products/atoms. The 'Send to' parameter is used to determine the output channel through which the product/atom needs to be se...
by Gabe-Hein Dijkstra
Thursday 16 June, 2022 - 09:19
Forum: Enterprise Dynamics 4DScript
Topic: Help needed for multiserver query
Replies: 3
Views: 12322

Re: Help needed for multiserver query

Hi Shio, I would be cautious trying to set the cycletime on the 'send to'-statement. Most atoms (like the MultiService) provide the option to set the cycletime using the GUI. For more information you can look at the Help-entry of the MultiService. The help can be found in the ribbon. Hopefully this ...