Search found 20 matches

by Nienke Valkhoff
Monday 12 June, 2017 - 10:47
Forum: Modeling in Pedestrian Dynamics
Topic: Evacuation time analysis
Replies: 31
Views: 196116

Re: Evacuation time analysis

Dear ie_1998, Yes, it Is possible to change the maximum speed of the agents to a specific value at any time and location. It is indeed possible to do this when the action timer starts. If you change the Agent_MaxSpeed during the simulation it will not have effect. You need to use the function Agent_...
by Nienke Valkhoff
Thursday 08 June, 2017 - 13:32
Forum: Modeling in Pedestrian Dynamics
Topic: Evacuation time analysis
Replies: 31
Views: 196116

Re: Evacuation time analysis

Dear ie_1989, If you use the effect on infrastructure of elements of the Action timer element and set the escalators to bidirectional then the escalators are used as if it were a stairs element. Agents can use the escalators to go both up and down and the escalator has speed zero. The choice the age...
by Nienke Valkhoff
Monday 09 May, 2016 - 14:47
Forum: Modeling in Pedestrian Dynamics
Topic: Evacuation time analysis
Replies: 31
Views: 196116

Re: Evacuation time analysis

Hi, You can indeed get statistics of a special group of agents without using waypoints. Like you did in the model for the second output route you can indeed use a filter to select a specific profile ID. The strange distances are caused by the way the agents with the special profile are placed in the...
by Nienke Valkhoff
Monday 01 December, 2014 - 14:55
Forum: Enterprise Dynamics 4DScript
Topic: Dead Source
Replies: 2
Views: 4091

Re: Dead Source

Hi Immo, If you need to write data for each product to a new row in your sheet then you might not even need your own global variable. You can just use Input(c) when you write code from an Entry trigger or Output(c) when you write your code on an exit trigger to address a new row in the sheet. These ...
by Nienke Valkhoff
Monday 17 November, 2014 - 18:22
Forum: Installation
Topic: Change main menu
Replies: 2
Views: 15438

Re: Change main menu

Hi Chiara, In Enterprise Dynamics 9 the Main menu is created by the function Menu_CreateMainMenu. This function is defined on the Menu atom that can be found in the systems group of the Library. On the functions page of the atom editor you can see all the function defined on the Menu atom. The funct...
by Nienke Valkhoff
Thursday 28 August, 2014 - 11:01
Forum: Enterprise Dynamics 4DScript
Topic: Distance
Replies: 7
Views: 9222

Re: Distance

Hello Hesam Adrang The easiest 4DScript word to use is AtomDistance(e1,e2) where e1 and e2 are reference to the atoms between which you need to know the distance. The unit of measurement for distance is meters. You can also calculate the distance using words for querying the location of an atom: xLo...
by Nienke Valkhoff
Wednesday 04 June, 2014 - 09:57
Forum: Modeling in Enterprise Dynamics
Topic: Model for different Scheduling rule
Replies: 1
Views: 3483

Re: Model for different Scheduling rule

Hi Jeroen, Yes you can model any scheduling rule that you want. You write that you have read the ED Tutorial but I also recommend that you read and tryout examples of the Tutorial "A First start to 4DScript". For many models it can by very useful to know how to work with labels. So you sho...
by Nienke Valkhoff
Wednesday 28 May, 2014 - 18:07
Forum: Modeling in Enterprise Dynamics
Topic: Finetuning of a model
Replies: 4
Views: 5787

Re: Finetuning of a model

Hi Ditmar, In the Trigger on entry and Trigger on exit of the queue you can store the Time in a label on the product. For this you need the following code: Trigger on entry: Label([entrytime], i) := Time Trigger on exit: Label([exittime], i) := Time This way the current entry time is stored in the l...
by Nienke Valkhoff
Monday 26 May, 2014 - 17:24
Forum: Modeling in Enterprise Dynamics
Topic: Finetuning of a model
Replies: 4
Views: 5787

Re: Finetuning of a model

Hi Ditmar, If seen that you have made some more progress with your model. If I understand correctly your models gives you different waiting time result and different number of waiting trucks then you see in your data. I have not checked if you are using the right distribution based on the data you h...
by Nienke Valkhoff
Tuesday 18 February, 2014 - 11:20
Forum: Modeling in Enterprise Dynamics
Topic: Experimentation with the Advanced transporter
Replies: 3
Views: 4731

Re: Experimentation with the Advanced transporter

Hi René, Here a first step that can help you with acchieving 3 and 4. If you place the following code in the entry and exit trigger of the Adv Transporter, then you can write all the Load and unload locations and the times to a table with alias 'MyTable'. Do( Inc(Label([row], c)), SetMyTable(Label([...