Re: [sumo-user] (no subject)

2023-06-09 Thread Jakob Erdmann
run with: --statistic-output stats.xml --tripinfo-output tripinfos.xml --device.emissions.probability 1 - almost all the average values you want are in statistic-output (see https://sumo.dlr.de/docs/Simulation/Output/StatisticOutput.html) - you can get the average fuel/electricity consumption

[sumo-user] (no subject)

2023-06-09 Thread williamrpaine
Hi all, I'm looking for the most efficient way to get the following statistics: * the average time taken for a vehicle to complete its route, * the average distance travelled for a vehicle to complete its route, * the average amount of time a vehicle spent queuing while

Re: [sumo-user] (no subject)

2023-02-14 Thread HoujiaQD
Thank you very much ! It works!!! At 2023-02-14 15:57:09, "Jakob Erdmann" wrote: Most likely, the first vehicle did not clear up the insertion location quickly enough for the second vehicle to enter on time *safely*. Where *safely* is related to the gap that the car following

Re: [sumo-user] (no subject)

2023-02-13 Thread Jakob Erdmann
Most likely, the first vehicle did not clear up the insertion location quickly enough for the second vehicle to enter on time *safely*. Where *safely* is related to the gap that the car following model would like to maintain at insertion based on the desired insertion speed. You can disable the

[sumo-user] (no subject)

2023-02-13 Thread qidiao
Hi, Jakob, I simulated several continuous intersections on sumo, and the depart time of the vehicles subjected to uniform distribution (the depart time equal to 4s in my experiments). I used reinforcement learning algorithm to generate the acceleration for the vehicle at each simulation step.

Re: [sumo-user] (no subject)

2021-12-08 Thread Jakob Erdmann
Hello, by default all vehicles are using the route which would be the fastest in an empty network. To distribute the traffic (without reference to measurement data) sumo supports two approaches - perform traffic assignment ( https://sumo.dlr.de/docs/Demand/Dynamic_User_Assignment.html) -

[sumo-user] (no subject)

2021-12-08 Thread Ambreen Ilyas Athar
Hello to all I have a question. hope you people will guide me. I have a conventional grid network with 3 sources and 4 destination TAZ. In that network, all the vehicles traveling from one particular source TAZ (let say Taz 1) to some particular destination TAZ (let say TAZ 7), follow exactly

Re: [sumo-user] (no subject)

2020-10-27 Thread nohtyp
You have to change speed to mode to 6. See https://sumo.dlr.de/docs/TraCI/Change_Vehicle_State.html#speed_mode_0xb3 -- Sent from: http://sumo-user-mailing-list.90755.n8.nabble.com/ ___ sumo-user mailing list sumo-user@eclipse.org To unsubscribe from

[sumo-user] (no subject)

2020-10-27 Thread Thilagavathy Giri
Hi everyone, within the intersection is it possible to control the speed of vehicles. i tried . but the vehicles are not moving with speed set using traci in the intersection area. how to solve this issue? how to make a code writte n in python to get implemented in the network created in

Re: [sumo-user] (no subject)

2020-10-01 Thread Jakob Erdmann
The 'sumo' application by itself does not use python. What exactly are you running? Did you compare this to the running time on another computer with the same hardware and a different operating system? Possibly you are running the debug version. What is the output of calling 'sumo' without

[sumo-user] (no subject)

2020-10-01 Thread Pallavi Mandhare
Hi, Why sumo is so slow on ubuntu 20.04 please help I am using python3.8 -- Thanks & Regards Pallavi Mandhare Burande ___ sumo-user mailing list sumo-user@eclipse.org To unsubscribe from this list, visit

Re: [sumo-user] (no subject)

2020-08-03 Thread Jakob Erdmann
clipse.org] *On Behalf Of *Eugene Vinitsky > *Sent:* Mittwoch, 22. Juli 2020 18:42 > *To:* Sumo project User discussions > *Subject:* [sumo-user] (no subject) > > > > Dear all, > > > > I have configured an on-ramp merge but am regularly seeing collisions on >

Re: [sumo-user] (no subject)

2020-07-23 Thread Maria.Armellini
][cid:image008.png@01D66112.2D273C60][Connectivity at on-off-ramp] Regards, Giuliana From: sumo-user-boun...@eclipse.org [mailto:sumo-user-boun...@eclipse.org] On Behalf Of Eugene Vinitsky Sent: Mittwoch, 22. Juli 2020 18:42 To: Sumo project User discussions Subject: [sumo-user] (no subject) Dear all, I

[sumo-user] (no subject)

2020-07-22 Thread Eugene Vinitsky
Dear all, I have configured an on-ramp merge but am regularly seeing collisions on it as well as an odd phenomenon where the vehicles move incredibly slowly on the junction, I've tried both: 1. setting speed mode to make sure it's set to 25 2. increasing the length of the merge section Is there

Re: [sumo-user] (no subject)

2020-07-02 Thread Amirhosein Karbasi
thank you so much. On Thu, Jul 2, 2020 at 5:02 PM Jakob Erdmann wrote: > Attribute density reports density per edge which gives you twice the > number of vehicles for a two-lane edge. You can use laneDensity since > version 1.6.0 for the scaled value. > > Am Do., 2. Juli 2020 um 14:27 Uhr

Re: [sumo-user] (no subject)

2020-07-02 Thread Jakob Erdmann
Attribute density reports density per edge which gives you twice the number of vehicles for a two-lane edge. You can use laneDensity since version 1.6.0 for the scaled value. Am Do., 2. Juli 2020 um 14:27 Uhr schrieb Amirhosein Karbasi < amirhosein.karbas...@gmail.com>: > hi Jakob, > I have 2

[sumo-user] (no subject)

2020-07-02 Thread Amirhosein Karbasi
hi Jakob, I have 2 lane freeway and I used edge data. my min gap is 2.5 and vehicle length is 5 .so my jam density should be nearly 133 vehicle/km but in my edge data jam density is nearly 260 vehicle/km.what is the problem? ___ sumo-user mailing list

Re: [sumo-user] (no subject)

2020-06-15 Thread Jakob Erdmann
Currently, the only method to determine departure times is to call traci.simulation.getDepartedIDList in every simulation step and check whether the vehicle of interest is part of that list. Am Mo., 15. Juni 2020 um 15:56 Uhr schrieb Aristide BAMAZI < aristide.bam...@imsp-uac.org>: > Hello sumo

[sumo-user] (no subject)

2020-06-15 Thread Aristide BAMAZI
Hello sumo users and developers, actually, i am using TRACI coupled with SUMO, and faced a problem. I add vehicles dynamically to the simulation with < traci.vehicle.add() > method. What I want to know, is it possible to retrieve each vehicle departure time from the simulation after adding it

Re: [sumo-user] (no subject)

2020-03-23 Thread Flix Chu
Hi Jakob, I found my way to output the values using CMD. Thank you. Regards, Felix On Mon, 23 Mar 2020 at 17:13, Flix Chu wrote: > Hi Jakob, > > I am new to programming and I don't know where should I put the code into. > If I want to output the , shall I include the whole > code in the .net

Re: [sumo-user] (no subject)

2020-03-23 Thread Flix Chu
Hi Jakob, I am new to programming and I don't know where should I put the code into. If I want to output the , shall I include the whole code in the .net file or the .rou file? Also if I want to extract a aggregated traffic measure with --duration-log.statistics , where should I put it? Thank

Re: [sumo-user] (no subject)

2020-03-03 Thread Jakob Erdmann
see https://sumo.dlr.de/docs/Simulation/Output.html#aggregated_traffic_measures https://sumo.dlr.de/docs/Simulation/Output/Lane-_or_Edge-based_Traffic_Measures.html#edge-based_network_states https://sumo.dlr.de/docs/Tools/Xml.html#xml2csvpy regards, Jakob Am Di., 3. März 2020 um 17:03 Uhr

[sumo-user] (no subject)

2020-03-03 Thread Flix Chu
Hey guys, I am working on the network and demand building in NETEDIT, and I can successfully run it in SUMO for the visualisation of the simulation. However, I do not know how to output values in numbers, such as the average speed of the whole network (as I am simply simulating a 2-lane network

Re: [sumo-user] (no subject)

2020-01-08 Thread Jakob Erdmann
Yes, if you use a matlab toolbox (or write your own) that handles video data and then write your own script to transform its results into appropriate TraCI API calls for SUMO. Am Mi., 8. Jan. 2020 um 10:31 Uhr schrieb Freeha Ibrar : > ok if i use traci4matlab and try to control sumo scenario

Re: [sumo-user] (no subject)

2020-01-08 Thread Freeha Ibrar
ok if i use traci4matlab and try to control sumo scenario through matlab then is it possible to give video type input data ? On Wed, Jan 8, 2020 at 12:12 PM Jakob Erdmann wrote: > SUMO cannot process video data. Input must either be in XML as described > in

Re: [sumo-user] (no subject)

2020-01-07 Thread Jakob Erdmann
SUMO cannot process video data. Input must either be in XML as described in https://sumo.dlr.de/docs/SUMO_User_Documentation.html#demand_modelling or created with a program via the TraCI API. Am Mi., 8. Jan. 2020 um 06:09 Uhr schrieb Freeha Ibrar : > if i just use only SUMO and not create its

[sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
Hi, I m very confused is it is necessary to create configurtaion of SUMO and Matlab to create traffic light algorithm ? is it's not possible to work on single software (SUMO)? will u plz help or tell me what steps should i take to create traffic light control algorithm in SUMO ? and how i can

Re: [sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
if i just use only SUMO and not create its configuration with Matlab then SUMO accept the Video form input of traffic to control the traffic light algorithm? On Wed, Jan 8, 2020 at 10:07 AM Freeha Ibrar wrote: > Thank u so much > > On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann > wrote: > >>

Re: [sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
Thank u so much On Wed, Jan 8, 2020 at 3:35 AM Jakob Erdmann wrote: > TraCI is used to control the simulation from an external script. This is a > very flexible way to add custom behavior (such as traffic light algorithms) > in a variety of programming languages (python, java etc.).

Re: [sumo-user] (no subject)

2020-01-07 Thread Jakob Erdmann
TraCI is used to control the simulation from an external script. This is a very flexible way to add custom behavior (such as traffic light algorithms) in a variety of programming languages (python, java etc.). TraCI4Matlab is for adding custom algorithms with Matlab. Without TraCI you can still

[sumo-user] (no subject)

2020-01-07 Thread Freeha Ibrar
what is the use of TraCI4Matlab? ___ sumo-user mailing list sumo-user@eclipse.org To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/sumo-user

Re: [sumo-user] (no subject)

2019-12-19 Thread Jakob Erdmann
see https://sumo.dlr.de/docs/Demand/Routes_from_Observation_Points.html Am Do., 19. Dez. 2019 um 06:32 Uhr schrieb Freeha Ibrar < freeha1...@gmail.com>: > Hy, i m new to SUMO and im working on a project that will control traffic > light signals dynamically.i want that i will create a program

[sumo-user] (no subject)

2019-12-18 Thread Freeha Ibrar
Hy, i m new to SUMO and im working on a project that will control traffic light signals dynamically.i want that i will create a program that take video as input in matlab and matlab will detect the number of cars in a road these number of cars become the input of SUMO and control the scenario. is

Re: [sumo-user] (no subject)

2019-12-10 Thread Albert Jeans
Hi Freeha, What I would do is turn the video data into turning counts for each intersection for all directions of travel. From that, turn ratios can be calculated (use a spreadsheet), and those can be used by JTRROUTER along with the network description and the vehicle input flows to generate

Re: [sumo-user] (no subject)

2019-11-20 Thread Mouna karoui
Sorry, I tried to compress the file and treat it with python. But, It takes a lot of time and it crashes. So what do you recommend to treat this kind of file? Le mer. 20 nov. 2019 à 14:10, Mouna karoui a écrit : > I record emissions output for a scenario 24-hour. > The output file is so large.

[sumo-user] (no subject)

2019-11-20 Thread Mouna karoui
I record emissions output for a scenario 24-hour. The output file is so large. So, I tried to compress the file with bzip2 and to treas mentionned in the note here https://sumo.dlr.de/docs/Simulation/Output/FullOutput.html ___ sumo-user mailing list

Re: [sumo-user] (no subject)

2019-08-29 Thread Thilagavathy Giri
ok sir . i will try. On Thu, Aug 29, 2019 at 12:16 PM Jakob Erdmann wrote: > There is no direct support for grids. However, you can retrieve the x,y > coordinates of all vehicles at all times and thus map them to an arbitrary > grid by rounding towards the grid-cell-center coordiantes. > > Am

Re: [sumo-user] (no subject)

2019-08-29 Thread Jakob Erdmann
There is no direct support for grids. However, you can retrieve the x,y coordinates of all vehicles at all times and thus map them to an arbitrary grid by rounding towards the grid-cell-center coordiantes. Am Do., 29. Aug. 2019 um 06:53 Uhr schrieb Thilagavathy Giri < thilagagiri7...@gmail.com>:

[sumo-user] (no subject)

2019-08-28 Thread Thilagavathy Giri
Hello, i modeled a four legged normal intersection with 5 nodes and 4 edges with left-hand traffic mode. i made the second node as intersection area of 4 legs and hence made its type as traffic light . i need to have connected autonomous vehicles of heterogeneous type on each lane. i have to

Re: [sumo-user] (no subject)

2019-04-26 Thread Jakob Erdmann
All the XSD files are in sumo/data/xsd so as long as you set SUMO_HOME you never need an internet connection. Am Fr., 26. Apr. 2019 um 19:41 Uhr schrieb Jose Monreal Bailey < jmonr...@gmail.com>: > What I did, was to download all XSD files and have them in my system. As I > did not have internet

Re: [sumo-user] (no subject)

2019-04-26 Thread Jose Monreal Bailey
What I did, was to download all XSD files and have them in my system. As I did not have internet connection from the server running the simulations On Fri, 26 Apr 2019, 18:22 Paolo Camacho, wrote: > Hi, > > Could anyone help me?, please. Before I could run the simulations, but now > the next

[sumo-user] (no subject)

2019-04-26 Thread Paolo Camacho
Hi, Could anyone help me?, please. Before I could run the simulations, but now the next mistake appears. *Error: unable to open file 'https://sumo.dlr.de/xsd/routes_file.xsd '* * In file 'C:\Users\Paolo Camacho\Sumo\2019-02-14-21-04-32 - copia -

[sumo-user] (no subject)

2019-02-25 Thread Graziano Manduzio
Hello users!, Using TraCI Lane Area detectors, the Traas command conn.do_job_get(Lanearea.getLastStepVehicleIDs("yourdetector")) don't recongnize the ID detector, altough specified in its relative additional file; indeed the following message appears on display: SUMO error for command 173: Lane

Re: [sumo-user] (no subject)

2019-01-27 Thread Arslane Hamza Cherif
Hello Graziano, Since you did not provide any details regarding your working environment, I guess that is not a problem, In my opinion, you should take a closer look at the TraCI API which allows you to simulate vehicles with Python, and retrieve many interesting

[sumo-user] (no subject)

2019-01-27 Thread Graziano Manduzio
hello, I'm a reasercher at the university of Florence and I'm using Sumo for my works. I'd like to know how is it possible to get as output, data related to the departure times of all vehicles crossing a given lane that is not an entering network lanes. Thanks, Graziano

Re: [sumo-user] (no subject)

2018-10-28 Thread Jakob Erdmann
This is currently not supported by a parkingAreaReroute definition. but you could achieve this via TraCI. regards, Jakob Am Sa., 27. Okt. 2018 um 19:46 Uhr schrieb Jane Cheung < cheung180...@gmail.com>: > Hi everyone, could I use option to let vehicles which have the "STOP" > definition, but

[sumo-user] (no subject)

2018-10-27 Thread Jane Cheung
Hi everyone, could I use option to let vehicles which have the "STOP" definition, but neither waiting for to park or choose another parking lot, in other words, this vehicle would directly go through the route to the pervious destination even though it planned to park in that parking lot?

[sumo-user] (no subject)

2018-07-27 Thread un famous via sumo-user
Hello, i'm trying to create a simulation where i need to do some rerouting of a vehicle when it approach in intersection . i tried using traci.vehicle.subscribe("veh0", ( tc.VAR_NEXT_TLS ,)) and raci.vehicle.getSubscriptionResults("veh0")[tc.VAR_NEXT_TLS] to get the id of the next TLS but i

Re: [sumo-user] (no subject)

2018-06-05 Thread Jakob Erdmann
see http://sumo.sourceforge.net/userdoc/FAQ.html#What.27s_the_deal_with_schema_resolution_warnings_.2F_xsd_errors.3F 2018-06-05 12:53 GMT+02:00 Claude Njoh via sumo-user < sumo-u...@lists.sourceforge.net>: > Hello , > > I am using Duarouter to create the traffic , but I got an error when the >

Re: [sumo-user] (no subject)

2018-04-26 Thread Jakob Erdmann
Hello, i'm not sure I understood your question. Do you wish to run SUMO with FCD data as input (i.e. to interpolate gaps) or do you wish to integrate CTM as a new dynamic model into the SUMO framework? regards, Jakob 2018-04-24 13:04 GMT+02:00 HANIFI Mohamed : > Hi,

[sumo-user] (no subject)

2018-04-25 Thread HANIFI Mohamed
Hi, i'm new SUMO user, i work on traffic estimation using FCD and model driven (Cell Transmission Model CTM), and i'm want to now how can i integrate CTM code who take (data extract from FCD as input) on SUMO. Thanks. ___ sumo-user mailing list

Re: [sumo-user] (no subject)

2018-04-11 Thread Jakob Erdmann
Hello, You can use traci.vehicle.getNextTLS(). As soon as the tls is no longer in the returned list of upcoming traffic lights, you can be sure that it has been passed. regards, Jakob 2018-04-11 13:27 GMT+02:00 Mouna Karoui via sumo-user < sumo-u...@lists.sourceforge.net>: > Dear sumo users, > >

[sumo-user] (no subject)

2018-04-11 Thread Mouna Karoui via sumo-user
Dear sumo users, How can I verify that vehicles are crossed a traffic light or not ? In fact, I developed this code; verifyPassage(std::string tlsID) { bool passage; double p=0; std::vector ctrlLink; ctrlLink=

Re: [sumo-user] (no subject)

2018-03-01 Thread Anne Onyango
Hello Jakob Have a look at my screen shot in the attachment. I am still getting the same error. Error is on processing the additional file. Can you give me the syntax on how to run it on Cmd. Thank you On Feb 28, 2018 20:48, "Jakob Erdmann" wrote: > Hello, >

Re: [sumo-user] (no subject)

2018-01-29 Thread christopher.ew...@t-online.de
Hi Michael, thank you very much for your replys, after rearranging everything it now works, as it should, by setting the speed to 0 again, for every timestep. No more errors. Thanks, Christopher -Original-Nachricht- Betreff: Re: [sumo-user] (no subject) Datum: 2018-01-28T14:55:15

Re: [sumo-user] (no subject)

2018-01-28 Thread Michael Behrisch
't. > If I try to add a stop I get a Java NullPointerException at the line where I > try to add the stop. > I am using sumo 0.32.0 and the latest TraaS version > > Thanks, > Christopher > > > > -Original-Nachricht- > Betreff: Re: [sumo-user] (no

[sumo-user] (no subject)

2018-01-26 Thread Christopher.Ewert--- via sumo-user
Hello, I am trying to stop a car right where it is, using Traas with Java. At the same time I want the timer to still keep going but it won't work. Either the car travels it's route to completion or I get an error and sumo stops. What am I doing wrong? Thanks in advance. Christopher 

[sumo-user] (no subject)

2017-12-02 Thread NAVEEN RAI via sumo-user
When I am trying to perform the netconvert on a net.xml file and generate it's equivalent XODR (Open Drive) file, for all the straight(line) geometry segments I get the length to be 0 in the OpenDrive format. I have attached the OSM file which I used to generate the net.xml using the