Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] Rote cost
  • From: Amanda Romano <amandaromano@xxxxxxxxxxx>
  • Date: Wed, 6 Oct 2021 18:01:17 +0000
  • Accept-language: pt-BR, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=yUsDDD+gxhEzPRaXdUmDkdJwHjPpqBhVF+Rw5UrI9QI=; b=PxJu/X4xqJrAYQIVTaAe+6yZSSLZNU0XOH4YCYYtSsKi0YqhELum/ieLZUUWlMPm+2g1Hv2vrIIosxf0k4fu5dvf2aF1d1eMWgnC8IWgsF7pIrGbODJqJJAGblOmAKGUrPsFYVxVyf5zEoD158uxf39WfspB4UlHjx6Gk2dXW45B4EkSFd6HMCZfJDc1xT4jAuubaWDe8vul/TP6mF0SzyWmKGtHgugmJeco3kUpTQ13aCNZby343W8qZTAbVS+1OMY3ztccOoe3EDDClCFyveDgbIX3/PbULkPyAxZKp4YbsX94pC5iNoekkoLX77PmqSMV8X0yUaTfSnRfhw5cyw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=SzMoQaO3K45DYzxkYS65VGXo8xhbVjW9wZjXZiX8iIqS9DzYBAK59HW2WbmHtQWkr4O4xS9E8DWdISrE10k79Wa2O+50S0okWtPHy6fEebmao+hZKbhGe6AEnhKJI4Gq152XMICrsph/NCXiui/Ap0Od/090KMfsuj22G2eqIiJY7+otMlu2VsCO/QojihTE3nYa0hBOhJ6qInfNfqFHLJ6UABbWNuxKY9dhGpz6t+TcXcT0LqvjNR4Hj7SK86glzpwlh6PMAkWP8TeXbQCVBZ0Lxd8Le0H37Jjlgnf5Wgx6eETikqdtX7gUzzZVp4fzjo+qcNBkbW8gWM9c/CO41g==
  • Delivered-to: sumo-user@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/sumo-user/>
  • List-help: <mailto:sumo-user-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/sumo-user>, <mailto:sumo-user-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/sumo-user>, <mailto:sumo-user-request@eclipse.org?subject=unsubscribe>
  • Suggested_attachment_session_id: d8a678f9-0c5a-c4f6-49b5-69dfadc536ea
  • Thread-index: AQHXutvHyaSuiPLyWE679LZMWYfPaw==
  • Thread-topic: Rote cost

Dear all,

I'm simulating a congestion. When generating routes with duarouter, the route cost is calculated in the .rou.alt.xml file. How is this route cost calculated? Would it be the calculation of generalized costs? For exemple:

<vehicle id="211" depart="28.10" departLane="free" departSpeed="max" fromTaz="34301" toTaz="34301">
        <routeDistribution last="0">
            <route cost="32.16" probability="1.00000000" edges="134235751#0 47097675 47097677#1 47097677#2 47097677#3 47097677#4"/>
        </routeDistribution>

In the vehicle routes output file (vehroute-output), I used the additional option vehroute-output.cost, all costs are -1. Shouldn't it be the same cost as the duarouter? For exemple:

<vehicle id="211" depart="29.00" departLane="0" departSpeed="7.24" fromTaz="34301" toTaz="34301" arrival="64.00" routeLength="474.15">
        <route cost="-1.00" savings="0.00" edges="134235751#0 47097675 47097677#1 47097677#2 47097677#3 47097677#4"/>
</vehicle>

In another scenario, I add taxis to this simulation, would it be possible to calculate the route and the route costs or the costs of each person using the sumo (considering waiting time, time inside the taxi, walking time and taxi cost)? The dispatch algorithm is routeExtension. The trips were defined as follows:

<trip id="taxi_1" type="taxi" depart="0.00" from="202567751" to="202567751">
 <stop lane="202567751_0" triggered="person"/>
 </trip>
...
<person id= "1" depart= "1.15">
 <ride from="134235664#11" to= "202567668#1" lines="taxi"/>  
 <walk from="624802548#1" to="918951156"/>  
 </person>
...

Thanks

Back to the top