Re: [sumo-user] Beginner for SUMO

2018-09-07 Thread Ei Ei Mon
Dear, I would like to ask again. In my case, I want to stop the vehicle by using the following statement: traci.vehicle.setStop('43.0',edgeID='L10189',laneIndex=1,pos=90,duration=600,flags=0,startPos=50); but in this case, *duration *attribute is not working. Could you give me some suggestions?

Re: [sumo-user] Beginner for SUMO

2018-09-07 Thread Ei Ei Mon
Dear, In my case, I want queue length of each edge. For this case, now I compute the average value from queue length of each lane by using lane area detector. Is it possible by using this way? Or are there any other methods to get queue length directly from each edge? with best regards, On Tue,

[sumo-user] Question about converting a network from Visum to Sumo

2018-09-07 Thread Alessandro Farina
Dear All, we have difficulty in converting a network from Visum to Sumo, using Netconvert. We are using the Visum version 13.00-14 in Italian and the newest Sumo release (of 4/9/2018). We tried with a trial network with only a few nodes and edges but we have the same problem. The problem we had is

[sumo-user] stop bus and car

2018-09-07 Thread Mohammed Bin Hariz
Hi I am new in SUMO. I am working now on project in SUMO. 1) In this stage i want three buses move stop in many stop station for many seconds then move to the other bus station . For example I want the bus stop in station A for 30 seconds and the move for one minutes to the next station and waiting

Re: [sumo-user] vehicle don't overtake in the opposite direction in SUMO 1.0.0

2018-09-07 Thread Jakob Erdmann
Hello, - the failure to change through the opposite lane in your example is due to there being multiple lanes on the road in question. The implementation was following the assumption that opposite-direction overtaking only needs to be considered on single-lane roads but this did not account for unu

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Jakob Erdmann
Yes. 2018-09-07 14:35 GMT+02:00 Muktadir R Chowdhury (mrchwdhr) < mrchw...@memphis.edu>: > > Regarding client ordering: the process that spawns the clients just needs > to assign an arbitrary running number and this number is given after > connecting with the setOrder command. > > Does it mean se

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Muktadir R Chowdhury (mrchwdhr)
Regarding client ordering: the process that spawns the clients just needs to assign an arbitrary running number and this number is given after connecting with the setOrder command. Does it mean setting up the order in which the clients will be served by Traci server? Muktadir __

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Jakob Erdmann
The web service technology employed by TraaS can be used in a local network without involving the world wide web. Regarding client ordering: the process that spawns the clients just needs to assign an arbitrary running number and this number is given after connecting with the setOrder command. 201

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Muktadir R Chowdhury (mrchwdhr)
My client program can not be web-based. So I am left with the first option and I am using C++ Traci API. When using TraCI in multi-client mode, all clients have to connect at the beginning and all of them have to run at least a loop similar to while True: traci.simulationStep() According t

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Jakob Erdmann
When using TraCI in multi-client mode, all clients have to connect at the beginning and all of them have to run at least a loop similar to while True: traci.simulationStep() Alternatively, you can use TraaS (TraCI as a Service) which acts as a single client and collects commands from an arbitra

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Muktadir R Chowdhury (mrchwdhr)
Thanks for your reply. Ok I will upgrade my SUMO. According to this http://sumo.dlr.de/wiki/TraCI#V2X_simulation , "When started with the --remote-port option, SUMO only prepares the simulation and wai

Re: [sumo-user] additional file - emission output

2018-09-07 Thread Jakob Erdmann
Each edgeData definition must have a unique id. 2018-09-07 12:57 GMT+02:00 Natalia Liora : > Thank you Jacob. > > However, do I have to use the same id for each *hour ? *e.g “ed1" for > begin='10800' > end=‘14400’ for all vehicle types? Or the ids should always be different ? > > regards, > Nat

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Jakob Erdmann
Multi-client support is only available since version 0.31.0. I recommend upgrading to version 1.0.0, though. regards, Jakob 2018-09-07 12:56 GMT+02:00 Muktadir R Chowdhury (mrchwdhr) < mrchw...@memphis.edu>: > How can I specify the number of clients when starting SUMO, I am using > SUMO version 0

Re: [sumo-user] additional file - emission output

2018-09-07 Thread Natalia Liora
Thank you Jacob. However, do I have to use the same id for each hour ? e.g “ed1" for begin='10800' end=‘14400’ for all vehicle types? Or the ids should always be different ? regards, Natalia > On 7 Sep 2018, at 13:31, Jakob Erdmann wrote: > > You have to define a new id for each edgeData de

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Muktadir R Chowdhury (mrchwdhr)
How can I specify the number of clients when starting SUMO, I am using SUMO version 0.25 and it is saying "no option with the name 'num-clients' exists." Muktadir From: sumo-user-boun...@eclipse.org on behalf of Jakob Erdmann Sent: Friday, September 7, 2018

Re: [sumo-user] additional file - emission output

2018-09-07 Thread Jakob Erdmann
You have to define a new id for each edgeData definition. The vTypes attributes look ok. regards, Jakob 2018-09-07 12:26 GMT+02:00 Natalia Liora : > Hello, > > I want to generate the emission outputs per vehicle type and per edge id. > > I use the following add.xml file (an example for 3 hours si

[sumo-user] additional file - emission output

2018-09-07 Thread Natalia Liora
Hello, I want to generate the emission outputs per vehicle type and per edge id. I use the following add.xml file (an example for 3 hours simulation). Is this correct? Or do I have to use a different name for edgeData id for each row? Also the vTypes correspond to the different emission classe

Re: [sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Jakob Erdmann
Yes, as long as you know the number of clients in advance. 2018-09-07 12:05 GMT+02:00 Muktadir R Chowdhury (mrchwdhr) < mrchw...@memphis.edu>: > I want to achieve the following in SUMO: > > (1) SUMO will run in a specified port. Let's say there are "n" vehicles in > the simulation. > (2) SUMO wil

Re: [sumo-user] related to traci.close()

2018-09-07 Thread himanshu soni
Thank You On Fri, Sep 7, 2018 at 12:46 PM Mirko Barthauer wrote: > You can use the SUMO option --quit-on-end to close the application > automatically. > > Regards > Mirko > > Am 07.09.2018 um 09:03 schrieb himanshu soni: > > Hello, > I want to know is there a method, whenever I call traci.close(

[sumo-user] Getting information from simulated vehicle

2018-09-07 Thread Muktadir R Chowdhury (mrchwdhr)
I want to achieve the following in SUMO: (1) SUMO will run in a specified port. Let's say there are "n" vehicles in the simulation. (2) SUMO will keep running while "n" client will connect to SUMO, and each client will print location information of each of the vehicles in regular interval. Is

Re: [sumo-user] related to traci.close()

2018-09-07 Thread Mirko Barthauer
You can use the SUMO option --quit-on-end to close the application automatically. Regards Mirko Am 07.09.2018 um 09:03 schrieb himanshu soni: Hello, I want to know is there a method, whenever I call traci.close(), the sumo-gui also gets closed. Regards

[sumo-user] related to traci.close()

2018-09-07 Thread himanshu soni
Hello, I want to know is there a method, whenever I call traci.close(), the sumo-gui also gets closed. Regards ___ sumo-user mailing list sumo-user@eclipse.org To change your delivery options, retrieve your password, or unsubscribe from this list, visit