|
From: Michael B. <beh...@in...> - 2010-06-26 13:58:01
|
Hi Omair, first of all, I think this is rather a topic for the developer list, please let's continue the discussion there. > I am looking at SUMO for a traffic simulation project where I will have > to implement a new microscopic Cellular Automata model. I had a few > questions and would be grateful if anyone could help me with any of the > questions. > > - Is it possible to replace SUMO's model with another model and to what > extent? Of course it is, this is an open source project you can replace everything you want ;-). In fact, we added some models quite recently, see src/microsim/cfmodels/. Not all of them are in a "working" state but an implementation according to this interface allows to modify the behavior of the vehicle in terms of the desired speed and distance to the predecessor in all situations. > - SUMO's model is space continuous, is it possible to change it to a > Cellular Automata Model? Not with the approach above. Well I suppose you could fake something by allowing only discrete speeds but in essence you would need to modify the net and the vehicle implementation as well, which we already tried in one case but which is much harder to do. Nevertheless we are always interested in the implementation of new models, thus if you are willing to try, maybe we can give hints. Regards, Michael |