Re: [sumo-user] car following models

2019-10-09 Thread Santa Maiti via sumo-user
Dear Sir/Madam,

Clarifying my query,

is not working.
It is popping up the error message - 'Error: Unknown car following model
'ACC'

Could you please suggest?

Thanks,
Santa



On Thu, Oct 10, 2019 at 1:01 AM Santa Maiti 
wrote:

> Dear Sir/Mam,
>
> I would like to use ACC or CACC car following model in SUMO created
> runtime using TraCI (matlab). Could you please let me know what is the
> exact typeID I need to mention or where can I see the possible values? Such
> as for IDM I'm using ''Follow_IDM".
>
> Thanks in advance,
> Santa
> --
> Santa Maiti,
> Ph.D Student,
> Geomatics, Department of Infrastructure Engineering,
> University of Melbourne.
>


-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.

___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


[sumo-user] car following models

2019-10-09 Thread Santa Maiti via sumo-user
Dear Sir/Mam,

I would like to use ACC or CACC car following model in SUMO created runtime
using TraCI (matlab). Could you please let me know what is the exact typeID
I need to mention or where can I see the possible values? Such as for IDM
I'm using ''Follow_IDM".

Thanks in advance,
Santa
-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.

___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


[sumo-user] Information regarding car-following model

2019-10-03 Thread Santa Maiti via sumo-user
Dear Jakob,

I'm using IDM car following model in my simulation for normal traffic as
well as to form vehicle platoons. Though I'm controlling platooning
vehicle's speed in order to maintain constant intra platoon gap. Could you
please suggest if IDM car following model is suitable for vehicle
platooning or I need to use some other model?

Regards,
Santa

-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.

___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


[sumo-user] Fuel consumption in sumo

2017-10-22 Thread Santa Maiti via sumo-user
Hi Jacob,

Could you please clarify, is the fuel consumption of a vehicle in any
timestamp depends on only its speed or any other parameters like
accel/decel. I was checking the output file, in some cases, it is showing
fuel consumption is 0  through the vehicle has some speed. Is there any
link which explains how the fuel consumption is computed?

Regards,
Santa

-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


Re: [sumo-user] Default speed mode value used in Sumo

2017-10-21 Thread Santa Maiti via sumo-user
Thanks Jacob. It's working now.

Regards,
Santa

On Sun, Oct 22, 2017 at 4:29 AM, Jakob Erdmann 
wrote:

> Hello,
> command traci.vehicle.setSpeed sets the new desired speed indefinitely. In
> order to go back to normal behavior the command setSpeed(vehID, -1) must be
> sent.
> see http://sumo.dlr.de/wiki/TraCI/Change_Vehicle_State
> regards,
> Jakob
>
> 2017-10-20 19:45 GMT+02:00 Santa Maiti :
>
>> Hi Jacob,
>>
>> Please find the sample example code rough.m . The initial vehicle speed
>> is 2 m/s and it is increasing as per accel. speedmode is set to 0. Later,
>> speed is increased and speedmode is set back to 31. But, the speed of the
>> vehicle remains same 20m/s. Can you please tell me where is the mistake
>> here?
>>
>> Thanks,
>> Santa
>>
>> On Fri, Oct 20, 2017 at 5:23 PM, Jakob Erdmann <
>> namdre.s...@googlemail.com> wrote:
>>
>>> Hello,
>>> the default speed mode is 31. Please check whether the vehicles have
>>> already reached their maximum desired speed (speedLimit * speedFactor).
>>> Also, remove any previous setSpeed() commands by sending
>>> traci.vehicle.setSpeed(vehID, -1).
>>> Furthermore, ensure that the maximum allowed acceleration value of the
>>> vehicle type is positive.
>>> regards,
>>> Jakob
>>>
>>> 2017-10-20 7:26 GMT+02:00 Santa Maiti :
>>>
 Hi Jacob,

 Could you please tell me what is the default speed mode value used in
 Sumo, where the vehicles speed up if the lane is free? I thought it's 31.
 In my simulation, I first made the speed mode as 0 that makes all checks
 off. In next simulation step when I'm resetting the speed mode in 31, the
 vehicles are moving at constant speed. They are not accelerating even if
 the lane is empty. I'm working in traci-matlab.

 Thanks in advance,
 Santa

 --
 Santa Maiti,
 Ph.D Student,
 Geomatics, Department of Infrastructure Engineering,
 University of Melbourne.

>>>
>>>
>>
>>
>> --
>> Santa Maiti,
>> Ph.D Student,
>> Geomatics, Department of Infrastructure Engineering,
>> University of Melbourne.
>>
>
>


-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


Re: [sumo-user] Default speed mode value used in Sumo

2017-10-20 Thread Santa Maiti via sumo-user
Hi Jacob,

Please find the sample example code rough.m . The initial vehicle speed is
2 m/s and it is increasing as per accel. speedmode is set to 0. Later,
speed is increased and speedmode is set back to 31. But, the speed of the
vehicle remains same 20m/s. Can you please tell me where is the mistake
here?

Thanks,
Santa

On Fri, Oct 20, 2017 at 5:23 PM, Jakob Erdmann 
wrote:

> Hello,
> the default speed mode is 31. Please check whether the vehicles have
> already reached their maximum desired speed (speedLimit * speedFactor).
> Also, remove any previous setSpeed() commands by sending
> traci.vehicle.setSpeed(vehID, -1).
> Furthermore, ensure that the maximum allowed acceleration value of the
> vehicle type is positive.
> regards,
> Jakob
>
> 2017-10-20 7:26 GMT+02:00 Santa Maiti :
>
>> Hi Jacob,
>>
>> Could you please tell me what is the default speed mode value used in
>> Sumo, where the vehicles speed up if the lane is free? I thought it's 31.
>> In my simulation, I first made the speed mode as 0 that makes all checks
>> off. In next simulation step when I'm resetting the speed mode in 31, the
>> vehicles are moving at constant speed. They are not accelerating even if
>> the lane is empty. I'm working in traci-matlab.
>>
>> Thanks in advance,
>> Santa
>>
>> --
>> Santa Maiti,
>> Ph.D Student,
>> Geomatics, Department of Infrastructure Engineering,
>> University of Melbourne.
>>
>
>


-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.


Rough.7z
Description: Binary data
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


[sumo-user] Default speed mode value used in Sumo

2017-10-19 Thread Santa Maiti via sumo-user
Hi Jacob,

Could you please tell me what is the default speed mode value used in Sumo,
where the vehicles speed up if the lane is free? I thought it's 31. In my
simulation, I first made the speed mode as 0 that makes all checks off. In
next simulation step when I'm resetting the speed mode in 31, the vehicles
are moving at constant speed. They are not accelerating even if the lane is
empty. I'm working in traci-matlab.

Thanks in advance,
Santa

-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


Re: [sumo-user] Vehicle speed for next step

2017-08-21 Thread Santa Maiti via sumo-user
Thank you Jakob for suggestion. I'll check the link.

Thanks,
Santa



On Tue, Aug 22, 2017 at 4:19 PM, Jakob Erdmann 
wrote:

> Hello,
> there is currently no traci method that would accomplish this (though I've
> taken up your suggestion here: http://sumo.dlr.de/trac.wsgi/ticket/3361).
> To determine why your calculated speeds differ from the observed speeds,
> take a look at src/microsim/cfmodels/MSCFModel_IDM.cpp in particular the
> methods followSpeed() and moveHelper().
> regards,
> Jakob
>
> 2017-08-22 6:43 GMT+02:00 Santa Maiti via sumo-user <
> sumo-user@lists.sourceforge.net>:
>
>> Hi Team,
>>
>> Is there any function available to get the speed of a vehicle for the next
>> step. For example, if I'm in ith simulation step, I want to know the speed
>> of a vehicle for i+1 step. In general, it becomes speed+acc for a free
>> road. But, if there are other traffics as well, what will be the speed?
>> I'm
>> using IDM car-following model in sumo-matlab platform.
>>
>> I've also tried to calculate the speed as per IDM car following model, but
>> it is differing a bit like (+/-1 m/s^2) from the actual one. Can you
>> please
>> suggest.
>>
>> Thanks,
>> Santa
>>
>> --
>> Santa Maiti,
>> Ph.D Student,
>> Geomatics, Department of Infrastructure Engineering,
>> University of Melbourne.
>> 
>> --
>> Check out the vibrant tech community on one of the world's most
>> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
>> ___
>> sumo-user mailing list
>> sumo-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/sumo-user
>>
>
>


-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user


[sumo-user] Vehicle speed for next step

2017-08-21 Thread Santa Maiti via sumo-user
Hi Team,

Is there any function available to get the speed of a vehicle for the next
step. For example, if I'm in ith simulation step, I want to know the speed
of a vehicle for i+1 step. In general, it becomes speed+acc for a free
road. But, if there are other traffics as well, what will be the speed? I'm
using IDM car-following model in sumo-matlab platform.

I've also tried to calculate the speed as per IDM car following model, but
it is differing a bit like (+/-1 m/s^2) from the actual one. Can you please
suggest.

Thanks,
Santa

-- 
Santa Maiti,
Ph.D Student,
Geomatics, Department of Infrastructure Engineering,
University of Melbourne.
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
sumo-user mailing list
sumo-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sumo-user