Search found 200 matches

by MatthijsJongboer
Thursday 23 January, 2014 - 13:25
Forum: Enterprise Dynamics 4DScript
Topic: Saved but not saved
Replies: 7
Views: 7355

Re: Saved but not saved

Can you attach the model here?
by MatthijsJongboer
Thursday 23 January, 2014 - 12:37
Forum: Enterprise Dynamics 4DScript
Topic: Saved but not saved
Replies: 7
Views: 7355

Re: Saved but not saved

Hello Schepers,

This is strange behavior.
Does the model contain all other atoms and parameters as entered?
Are the function editor and user event atom still in the model?
by MatthijsJongboer
Friday 17 January, 2014 - 12:16
Forum: Enterprise Dynamics 4DScript
Topic: Help, 4DScript error keeps occuring
Replies: 2
Views: 3435

Re: Help, 4DScript error keeps occuring

Hello Jordi,

Have a close look at the required syntax.
Either use Label(....) := or Setlabel(...).
What you are trying to do is change the result of setlabel (instead of changing the label).
This results in an error.
by MatthijsJongboer
Friday 17 January, 2014 - 10:07
Forum: Modeling in Pedestrian Dynamics
Topic: PD shuts down
Replies: 9
Views: 35389

Re: PD shuts down

Hi Luke, This is the information I was looking for. This Intel graphics card is not suitable to run PD. It requires an advanced (gaming) graphics card that supports OpenGL 3 or higher. I know Macbooks can come with such a card but I am not aware they could also be supplied without. Please verify you...
by MatthijsJongboer
Wednesday 15 January, 2014 - 11:47
Forum: Modeling in Pedestrian Dynamics
Topic: PD shuts down
Replies: 9
Views: 35389

Re: PD shuts down

Hi Luke,

The problem seems to be caused by PD_ECMRouting.dll.
This module highly depends on the video card.
Can you post the card make and type including the installed driver version?

Gr. Matthijs
by MatthijsJongboer
Wednesday 15 January, 2014 - 10:27
Forum: Modeling in Pedestrian Dynamics
Topic: PD shuts down
Replies: 9
Views: 35389

Re: PD shuts down

Hello Luke,

That's not so good. Since you use dual boot I don't expect it to be a macbook specific problem.
Maybe you can have a look at the windows log to see if there is any information there?

Gr. Matthijs
by MatthijsJongboer
Tuesday 14 January, 2014 - 19:52
Forum: Modeling in Pedestrian Dynamics
Topic: PD shuts down
Replies: 9
Views: 35389

Re: PD shuts down

Hello Luke,

Does the software present any error messages in the error tracer?
Also, can you tell how you have installed PD on your macbook (virtual windows or dualboot)?

Matthijs
by MatthijsJongboer
Tuesday 31 December, 2013 - 13:40
Forum: Enterprise Dynamics Atoms
Topic: Change Port on Atom Socket Listen
Replies: 1
Views: 3344

Re: Change Port on Atom Socket Listen

Hi Marcson, You are right. The port is set only on creation of the atom (so at load). You can modify it using: Do( SocketStopListen(c), SocketStartListen(c, TextAtt(1, c)) ) The atom reference c can also be AnimAtom if you have selected the atom in your model layout. We will modify the atom that thi...
by MatthijsJongboer
Tuesday 31 December, 2013 - 11:53
Forum: Enterprise Dynamics 4DScript
Topic: change Dijkstra's algorithm
Replies: 3
Views: 4862

Re: change Dijkstra's algorithm

Hi Manual, What you want to achieve is the combination of 2 variables resulting in 1 path. This is not possible with the Dijkstra algorithm. I would suggest to use only one variable (e.g. time) and create your tables accordingly. This will present quite some challenges depending on the level of deta...
by MatthijsJongboer
Thursday 19 December, 2013 - 10:14
Forum: Enterprise Dynamics 4DScript
Topic: change Dijkstra's algorithm
Replies: 3
Views: 4862

Re: change Dijkstra's algorithm

Hello Manuel, The Dijkstra algorithm optimizes the tables to a single source shortest path. When you want to change the routing in your network, this is also possible. However, it would not be a routing according the Dijkstra algorithm anymore. To make use of the existing implementation, have a look...