[sumo-user] Time step right before arrival

2017-09-26 Thread Mani Amoozadeh via sumo-user
Hello, Is there any ways to figure out the last time step before vehicle's arrival ? I want to call a TraCI function on a vehicle right before its arrival. Thanks! - Mani -- Check out the vibrant tech

[sumo-user] Simulation Step TraCI call at time 0

2017-09-26 Thread Mani Amoozadeh via sumo-user
Hello, I setup a SUMO simulation with 0.5s time step in TraCI mode. Once the TraCI is established I subscribe to departed vehicles count and then insert 10 vehicles at time 0s. I call simulation step like this: simulationStep(500) --> simulationStep(1000) --> simulationStep(1500) .

[sumo-user] Head on collision

2017-08-22 Thread Mani Amoozadeh via sumo-user
Hello, I have created the following simple network to simulate the overtaking of a vehicle using the opposite lane: I need to simulate the head-on accident and when I use the TraCI to change lane to the opposite direction, the vehicle

[sumo-user] Next intersection

2017-08-11 Thread Mani Amoozadeh via sumo-user
Hello, Is there any ways to get the next traffic intersection along a vehicle's route similar to getNextTL. Thanks! - Mani -- Check out the vibrant tech community on one of the world's most engaging tech sites,

[sumo-user] Vehicle Dynamics in SUMO

2017-08-08 Thread Mani Amoozadeh via sumo-user
Hello, I want to calculate when a vehicle is oversteering and understeering. Is there any way to get steering input from a vehicle, the radius of its current path, tire slip angle, and other relevant quantities to calculate this? - Mani

[sumo-user] VEhicular NeTwork Open Simulator (VENTOS)

2017-07-05 Thread Mani Amoozadeh via sumo-user
fully release them in shorter intervals. You can subscribe to the VENTOS mailing list by sending an email to man...@ucdavis.edu with title: 'VENTOS mailing list' - Mani Amoozadeh PhD candidate in UCD -- Check ou

[sumo-user] subscription to Person

2017-06-28 Thread Mani Amoozadeh via sumo-user
Hello, I was wondering if there is any way so that I can subscribe to the departed/arrived person in the simulation similar to VAR_DEPARTED_VEHICLES_IDS and VAR_ARRIVED_VEHICLES_IDS. Thanks! - Mani -- Check

[sumo-user] SUMO GUI

2017-06-28 Thread Mani Amoozadeh via sumo-user
Hello, I have the following two questions: 1. What is the default zoom level when a SUMO network file is loaded into SUMO-GUI? Does SUMO-GUI tries to fit the whole network into the window? 2. I load my network into SUMO-GUI and change the perspective to my liking. I click the change

[sumo-user] Route duration

2017-04-03 Thread Mani Amoozadeh
Hello, Is there any ways to get the 'route duration' of a vehicle at the time of insertion? Assuming that the destination and route is fixed during the simulation. - Mani -- Check out the vibrant tech community

Re: [sumo-user] Questions about C++ TraCI

2017-02-14 Thread Mani Amoozadeh
[mailto:namdre.s...@googlemail.com] Sent: Sunday, January 22, 2017 11:47 PM To: Mani Amoozadeh <mamooza...@ucdavis.edu> Cc: wasim_m...@yahoo.in; sumo-user <sumo-user@lists.sourceforge.net> Subject: Re: [sumo-user] Questions about C++ TraCI Hello, 1) you are correct. I have updated t

Re: [sumo-user] Change vehicle shape

2017-01-26 Thread Mani Amoozadeh
This will apply the schema for all the vehicles. Right? Can I change it for only one specific vehicle? - Mani From: Jakob Erdmann [mailto:namdre.s...@googlemail.com] Sent: Thursday, January 26, 2017 3:11 AM To: Mani Amoozadeh <mamooza...@ucdavis.edu> Cc: sumo-user <

[sumo-user] Change vehicle shape

2017-01-26 Thread Mani Amoozadeh
Hi, Through TraCI, can I set the shape of a specific vehicle to an 'image' or a 'square' ? - Mani -- Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org!

[sumo-user] Showing the current route

2017-01-22 Thread Mani Amoozadeh
Hi, It seems that "show current route" does not work properly in SUMO-GUI. I inserted two vehicles (green, yellow) through TraCI. The yellow vehicle goes straight and the 'show current route' shows the route properly. The green vehicle turns left, but the 'show current route' shows the

Re: [sumo-user] Insert a vehicle in parking status

2017-01-22 Thread Mani Amoozadeh
] Sent: Friday, January 20, 2017 12:18 AM To: Mani Amoozadeh <mamooza...@ucdavis.edu> Cc: sumo-user <sumo-user@lists.sourceforge.net> Subject: Re: [sumo-user] Insert a vehicle in parking status see http://sumo.dlr.de/wiki/TraCI/Change_Vehicle_State#stop_.280x12.29. Parking is one of

Re: [sumo-user] Questions about C++ TraCI

2017-01-19 Thread Mani Amoozadeh
5. see http://sumo.dlr.de/trac.wsgi/ticket/2524 I have two issues in applying the workaround (last two bullets): 1. How can I delete a route using TraCI ? There is no such command right now. 2. I remove the vehicle, but the vehicle still exists in the simulation environment. So

[sumo-user] Insert a vehicle in parking status

2017-01-19 Thread Mani Amoozadeh
Hello, Using TraCI, how can I insert a vehicle in parking mode? - Mani -- Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot

[sumo-user] Junction name

2017-01-17 Thread Mani Amoozadeh
Hello, I am using the TraCI command to get all junctions in a big network. Among the junction names, I see names that starts with ':'. When I list the junctions in the SUMO-GUI (locate junctions) there is no junction with ':'. Are they removed intentionally? - Mani

[sumo-user] Removing a vehicle

2017-01-17 Thread Mani Amoozadeh
Hi, Through TraCI, I added a vehicle into SUMO. Then at some point of the simulation, I remove it. SUMO-GUI removes the vehicle but shows the following error message: Error: Answered with error to command 0xa4: Vehicle 'stopped_veh' is not known After the error, the simulation is

Re: [sumo-user] Questions about C++ TraCI

2017-01-17 Thread Mani Amoozadeh
> You can get it from getCurrentTime() function in SimulationsScope class. > You can find it in TraCIAPI.h > > Thanks > > Sent from Yahoo Mail on Android > <https://overview.mail.yahoo.com/mobile/?.src=Android> > > On Tue, 17 Jan 2017 at 1:12 pm, Mani Amoozadeh > <

[sumo-user] Questions about C++ TraCI

2017-01-17 Thread Mani Amoozadeh
Hi, I have a couple of questions, mostly about TraCI. Sorry if the question list is too long. 1. when I change the vehicle length through TraCI, it seems that the length is applied to the vehicle, but sumo-gui does not update the shape. I am expecting to see a longer vehicle in the

[sumo-user] [SPAM] Re: GUI Error

2016-06-23 Thread Mani Amoozadeh
Following the last email, I got another error message, but this time SUMO did not recover and closed. Here is the error message: [1]https://db.tt/jr7spLnz - Mani On 06/22/2016 12:57 PM, Mani Amoozadeh wrote: Hi, I got this error message while I started SUMO. [2]https

[sumo-user] [SPAM] GUI Error

2016-06-23 Thread Mani Amoozadeh
Hi, I got this error message while I started SUMO. [1]https://db.tt/bRP029u7 It only happened once and clicking on the 'skip message' resumed the simulation. Is this normal? - Mani References 1. https://db.tt/bRP029u7

[sumo-user] Make a vehicle stop with higher decel

2016-06-21 Thread Mani Amoozadeh
Hi, I am trying to send a stop TraCI command to a vehicle so that the corresponding vehicle stops with a deceleration higher than its type. What is the easiest way to do this? Should I change the speed mode to disregard the maximum deceleration, then send 'change speed' TraCI command, and

[sumo-user] getPartialOccupatorEnd()

2016-06-16 Thread Mani Amoozadeh
Hi, After updating my local sumo code to the latest svn version, I can not compile it any more. It seems that getPartialOccupatorEnd() does not exist any more. Here is my old code that is part of my own car-following model. // get the following vehicle const MSVehicle*

[sumo-user] [SPAM] Latest code

2016-04-27 Thread Mani Amoozadeh
Hi, Compiling the latest version of SUMO on SVN generates the following compile-time error: g++ -DHAVE_CONFIG_H -I. -I../../../src -I/home/mani/Desktop/VENTOS_SUMO_2/VENTOS_SUMO/sumo/./src -I/usr/include/fox-1.6-I/usr/include/gdal -I/usr/include

[sumo-user] [SPAM] SUMO compile time error

2016-04-27 Thread Mani Amoozadeh
Hi, Compiling the latest version of SUMO on SVN generates the following compile-time error: g++ -DHAVE_CONFIG_H -I. -I../../../src -I/home/mani/Desktop/VENTOS_SUMO_2/VENTOS_SUMO/sumo/./src -I/usr/include/fox-1.6-I/usr/include/gdal -I/usr/include

[sumo-user] Hiding Wide-Area detectors

2016-03-19 Thread Mani Amoozadeh
Hi, I was wondering how can I hide the wide-area detectors (E2 detectors)? When I change the "Exaggerate by" value to 0, I can still see a narrow line throughout the lane. This technique works for normal loop detectors but not for E2 detectors. Is there any other way? - Mani

Re: [sumo-user] Compiling SUMO (SVN) on MAC OS X

2016-01-29 Thread Mani Amoozadeh
ough I did not try the Captain > yet), did you use the Macports approach > http://sumo.dlr.de/wiki/Installing/MacOS_Build or how exactly did you > try to build? > > Best regards, > Michael > > Am 25.01.2016 um 09:10 schrieb Mani Amoozadeh: >> Hi, >> I am get

[sumo-user] Build Error

2015-12-08 Thread Mani Amoozadeh
Hello, Building the latest version of SUMO on SVN gives me build error: make[4]: Entering directory `/home/mani/Desktop/VENTOS_SUMO/src/microsim/traffic_lights' make[4]: *** No rule to make target `MSRailCrossing.o', needed by `libmicrosimtls.a'. Stop. P.S. I run sudo make -f Makefile.cvs at

[sumo-user] Build Error

2015-12-07 Thread Mani Amoozadeh
Hello, Building the latest version of SUMO on SVN gives me build error: make[4]: Entering directory `/home/mani/Desktop/VENTOS_SUMO/src/microsim/traffic_lights' make[4]: *** No rule to make target `MSRailCrossing.o', needed by `libmicrosimtls.a'. Stop. P.S. I run sudo make -f Makefile.cvs at

[sumo-user] Using Netconvert

2015-11-28 Thread Mani Amoozadeh
Hi, I was trying to get the node, edge, and connection files for the network in test/complex/tutorial/traci_pedestrian_crossing/pedcrossing.net.xml. So I used the following command: netconvert -s pedcrossing.net.xml --plain-output-prefix plain It generated 4 files. Then I tried

[sumo-user] Simulation Time Step

2015-06-26 Thread Mani Amoozadeh
Hi, I have difficulties in using simulation step (0x02) command. Assume that the time step is 100 ms (0.1s). Calling simulation step command with 100 does not proceed the simulation to 100 ms. I am looking at the simulation time step at the top of sumo-gui and it is still zero. Calling

[sumo-user] Problem with person

2015-05-08 Thread Mani Amoozadeh
Hi, I have two vehicles and two person in my simulation. As soon as the vehicles go out of the simulation area (person are still there) the SUMO pauses and does not proceed. The external application connected through TraCI does not get any response from SUMO. I am also having problem with

[sumo-user] ability to hide detectors in sumo-gui

2015-04-30 Thread Mani Amoozadeh
Hi, Is there any way to hide loop detectors in sumo-gui? I put a detector at the end of a lane and it completely covers both the traffic light and link decals. Thanks! - Mani -- One dashboard for servers and

[sumo-user] Traffic light status

2015-04-25 Thread Mani Amoozadeh
Hi, How can I get the next link that a vehicle goes to in an intersection? I need this data to determine the traffic light status for that vehicle. For example if vehA takes link 16 in an intersection then I can get the 16th character in traffic light state. Thanks! - Mani

[sumo-user] Loop Detector Creation

2015-03-15 Thread Mani Amoozadeh
Hi, Is there any TraCI command to create an induction loops? We need to create a loop detector through TraCI rather than defining it in the additional file. - Mani -- Dive into the World of Parallel Programming The Go

Re: [sumo-user] Loop detector creation using TraCI

2015-03-12 Thread Mani Amoozadeh
in a batch procedure. regards Mario Am 12.03.2015 um 02:59 schrieb Mani Amoozadeh: Hi, Is there any TraCI command to create an induction loop? We need to create a loop detector through TraCI rather than defining it in the additional file. Thanks! - Mani

[sumo-user] Loop detector creation using TraCI

2015-03-11 Thread Mani Amoozadeh
Hi, Is there any TraCI command to create an induction loop? We need to create a loop detector through TraCI rather than defining it in the additional file. Thanks! - Mani -- Dive into the World of Parallel Programming

[sumo-user] Pedestrian Subscription

2015-02-17 Thread Mani Amoozadeh
Hi, I have added two pedestrians to my network as following: person id=Ped1 type=TypePedestrian depart=10 walk edges=EC CW departPos=0 arrivalPos=-1.0/ /person person id=Ped2 type=TypePedestrian depart=20 walk edges=EC CW departPos=0 arrivalPos=-1.0/ /person Then I

Re: [sumo-user] Problem making source code

2015-02-15 Thread Mani Amoozadeh
. Best regards, Michael Am 15.02.2015 um 03:24 schrieb Mani Amoozadeh: Hi, I am having problem in making the SUMO source code after updating to the latest revision. make[3]: Leaving directory `/home/mani/Desktop/VENTOS_SUMO/src/guisim' make[3]: Entering directory `/home/mani

Re: [sumo-user] Car-following model

2014-08-06 Thread Mani Amoozadeh
, Jakob 2014-08-04 2:35 GMT+02:00 Mani Amoozadeh [1]mani.amoozad...@gmail.com: Hi, Following your how to develop a new car-following model [1]page, I have developed two new car-following models so far, and everything is working fine and as expected

[sumo-user] Configure Error

2014-07-05 Thread Mani Amoozadeh
Hi, In the latest repository update, configure issues an error. error: cannot find input file: 'src/foreign/tcpip/Makefile.in' No Makefile.in in that directory. - Mani -- Open source business process management suite

[sumo-user] Lane Change

2014-06-06 Thread Mani Amoozadeh
Hi, Question 1: I was wondering whether we can change the 'Show As' setting of Vehicles in SUMO-gui from TraCI ? I want to change it to 'raster image', every time the simulation starts. Question 2: I am simulating a long straight three-lane highway where vehicles are inserted

[sumo-user] Obstacle

2014-06-01 Thread Mani Amoozadeh
Hi, How can I put an obstacle in the middle of a lane? I want to simulate an incident on a specific lane. And I want to force the approaching vehicles to change lane. Thanks! - Mani -- Learn Graph Databases - Download

[sumo-user] Lane-changing model

2014-05-18 Thread Mani Amoozadeh
Hi, What reference can I use on the current lane-changing model in SUMO. Is the following reference reflects the current lane change model in SUMO? Krajzewicz2009_1 Kombination von taktischen und strategischen Einflüssen in einer mikroskopischen Verkehrsflusssimulation; Krajzewicz, Daniel; In:

[sumo-user] Problem with lane changing

2014-04-02 Thread Mani Amoozadeh
Hi, I have a problem with lane changing behaviour. I have defined an edge with two lanes (lane 0 and lane 1). Lane 1 has disallow = transport tag. One vehicle with vClass = transport starts its journey from lane 0. At time t1, I want to change the lane of the vehicle to 1, but nothing happens.

[sumo-user] TraCI changing color

2014-03-01 Thread Mani Amoozadeh
Hi, In [1]changing the color of a vehicle, the value of the command response seems incorrect. SUMO sends back 0xc8, but it should be 0xc4 I guess. Thanks! - Mani References 1. http://sumo-sim.org/userdoc/TraCI/Change_Vehicle_State.html

[sumo-user] Problem with Loop Detector

2014-02-13 Thread Mani Amoozadeh
Hi, I have difficulties in using loop detectors in SUMO. I would appreciate if you give me a hint. I am using this xml file and feed it to the sumo-gui. --- additional