Re: [sumo-user] Manually controlled vehicles

2020-08-05 Thread Traboulsi, Abdullah
ob Erdmann wrote: > The getLeader function limits it's lookahead range to the braking distance > by default. You could try calling traci.vehicle.getLeader(vehID, 1000) > > Am Fr., 3. Juli 2020 um 12:52 Uhr schrieb Traboulsi, Abdullah < > at...@njit.edu>: > >> Thanks J

Re: [sumo-user] Changing maximum speed limit of all the vehicles in a simulation at a given time.

2020-07-03 Thread Traboulsi, Abdullah
a for loop from 0 to len(VID) and used > *traci.vehicle.setMaxSpeed(VID[v],0.5*35) > *to alter the speeds of all the vehicles. > > I hope it is clear. > > Thanks > PSK > -- > *From:* sumo-user-boun...@eclipse.org on > behalf of Traboulsi,

Re: [sumo-user] Manually controlled vehicles

2020-07-03 Thread Traboulsi, Abdullah
as Leader. I really appreciate your help. Best regards On Fri, Jul 3, 2020 at 4:26 AM Jakob Erdmann wrote: > see > https://sumo.dlr.de/docs/TraCI/Change_Vehicle_State.html#speed_mode_0xb3 > > Am Do., 2. Juli 2020 um 20:53 Uhr schrieb Traboulsi, Abdullah < > at...@njit.edu>: &g

Re: [sumo-user] Changing maximum speed limit of all the vehicles in a simulation at a given time.

2020-07-03 Thread Traboulsi, Abdullah
Hi, Could you please share your solution? How did you do that? Thank you and regards On Fri, Jul 3, 2020 at 2:20 AM Padisala, Shanthan Kumar < padisal...@buckeyemail.osu.edu> wrote: > Thanks, guys. > > I was able to figure it out. > > -- > *From:*

Re: [sumo-user] Manually controlled vehicles

2020-07-02 Thread Traboulsi, Abdullah
wrote: > You can instead use TraCI commands to define the vehicle and control it. > > -PSK > -- > *From:* sumo-user-boun...@eclipse.org on > behalf of Traboulsi, Abdullah > *Sent:* Thursday, July 2, 2020 2:43:49 PM > *To:* Sumo project User discus

[sumo-user] Manually controlled vehicles

2020-07-02 Thread Traboulsi, Abdullah
Hi, I am trying to take complete control of vehicle speed acceleration ..etc. But whenever I define vehicles using tags in routes and run the simulation, it will be automatically assigned with Car Following Model and LCModel. These models will control the vehicle using the defined algorithm. Is

Re: [sumo-user] Number of vehicles in Car Following Model

2020-07-02 Thread Traboulsi, Abdullah
Additionally, if I try to speed up the vehicles using traci.vehicle.setSpeed() command to reduce gap, but nothing happen. thanks in advance for your assistance On Thu, Jul 2, 2020 at 8:47 AM Traboulsi, Abdullah wrote: > Hi Jakob, > > I wanted to ask if there were a limit to t

[sumo-user] Number of vehicles in Car Following Model

2020-07-02 Thread Traboulsi, Abdullah
Hi Jakob, I wanted to ask if there were a limit to the number of vehicles in a platoon of Car Following Models? For example, I am generating 10 vehicles every 10 steps with the same tau and sigma, but every 4 vehicles are following each other. I have attached my Routes file as well as

Re: [sumo-user] CarFollowingModel - not applied

2020-04-21 Thread Traboulsi, Abdullah
Apr. 2020 um 18:07 Uhr schrieb Traboulsi, Abdullah < > at...@njit.edu>: > >> Hi >> >> I have selected my car following model in the demand.rou configuration >> file >> When viewing the type parameter, it shows that my Car Following Model is >> "Kra

Re: [sumo-user] CarFollowingModel - not applied

2020-04-21 Thread Traboulsi, Abdullah
he name should be > there. You could check the vehicle types set in your .rou files, too. > > Probably nobody here will volunteer to debug your code... > > Regards > Mirko > Am 21.04.2020 um 15:04 schrieb Traboulsi, Abdullah: > > Hi > > I am trying to compare t

[sumo-user] CarFollowingModel - not applied

2020-04-21 Thread Traboulsi, Abdullah
Hi I am trying to compare the behavior of CarFollowingModel already available in SUMO (SmartSK) with the one I created. But, the vehicles in my network is behaving the same with all car following models and with no car following model. It seems these models is not applied to my network. Please

Re: [sumo-user] Unknown Car Following Model

2020-04-13 Thread Traboulsi, Abdullah
and once in the > carFollowModelValues. Also please try whether running with sumo instead > of netedit works. > > Best regards, > Michael > > Am 06.04.20 um 01:31 schrieb Traboulsi, Abdullah: > > Hi Jakob, > > > > I have created my own custom car following model based on

[sumo-user] Unknown Car Following Model

2020-04-06 Thread Traboulsi, Abdullah
Hi Jakob, I have created my own custom car following model based on SMART_SK model. I followed the instructions to define it as mentioned at this link : https://sumo.dlr.de/docs/Developer/How_To/Car-Following_Model.html But when I try to select this mode with the tag and try to load it to

Re: [sumo-user] CarFollowingModels functions call graph

2020-03-26 Thread Traboulsi, Abdullah
els > > Greetings, Harald > Am 25.03.20 um 07:42 schrieb Jakob Erdmann: > > Hello, > did you try searching the source code? > I recommend > grep -i "\.followSpeed(" `find src -name "*.cpp" -o -name "*.h" > and > grep -i "\.followSpeed(&qu

[sumo-user] CarFollowingModels functions call graph

2020-03-24 Thread Traboulsi, Abdullah
Hi, I am trying to trace the call of functions defined in the car following model (e.g. Smart_SK) such as the function of follow Speed. I would like to understand how these car follow models modify the behavior of vehicle movement using these functions, and from where they are called. Thank you

Re: [sumo-user] Car Following Model (Smart_SK1)

2020-03-17 Thread Traboulsi, Abdullah
Never mind, I miss typed the new model name in sumo/src/microsim/cfmodels/CMakeLists.txt After correcting it, I was successful in building it. On Tue, Mar 17, 2020 at 11:47 AM Traboulsi, Abdullah wrote: > Hi everyone, > > I am trying to create my own car following model, by du