Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[sumo-user] Possible issue in closingLaneReroute
  • From: "Evans, Barry" <B.Evans@xxxxxxxxxxxx>
  • Date: Sun, 13 Oct 2019 12:35:27 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=exeter.ac.uk; dmarc=pass action=none header.from=exeter.ac.uk; dkim=pass header.d=exeter.ac.uk; 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-SenderADCheck; bh=qyyfktJOiLd9kl7+iNz/24xJxnftcw87bpibeZMDYsk=; b=B0mYjmQ3nLD7knZ7Ave+cGSw8X4CWpnkARJSI1WGt/Fl4gaWPJvfzAIDQAVYMyy2Az+JA32wK9zGe7JItZzOA9vdazfndo9/oirVRuDQU0Vzh/FuY38YTFr8JUfIW/EP7lNqf5S196Jmiff9jWW2a7qoLPYExlEq9G7D907oNCPFYMyA2q9zItRjD7Cg32UAgEp7Uq2fP4DhCJz2pBc7EtgtBufsoGI0rp5NEFsnKtkx7C0ZZT1DaxXlvoL8rszbJ49SnXyeHOLLfiwF8BXv58swCQE3vm7BfryztzxoLQBYd53EexF6hPpgNlsU2+NLO/bABaL8zzQibrn2RDKxiw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=cbkIPViNTyaCnaVov0UFLXNtBfy+SmfsLU78Zxif2JZxsH0OISpMDWNWGj4CAYM08qtklbVRhWeBH4M2lQrlXPd3pBZz7HQhDCMpy73r0j58n7P0FiNgi2xET/VRB/B3wdc64uiH/tx9r84Q+1aY9iSK2VwvK5ZXWMEdxoCBsnZO4cPnBpqxjjyfSRjold1EcqvVrrj8JoNitXWfIrWZcX2yVw9SpzEQudm7EnT2Z1qlEsTJImdzlFKo3GlP7NGIb5LD/zEYzdMnjkSUfZg2We+HM5BMLQwedZPc2qvgNIvwOBdkHl99lOaqa9Uq+kxjuAN6ReWLDW4/tpivK2CavQ==
  • 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>
  • Thread-index: AdWBwDKnNuoRAeOUR8+w5ljH76pEaQ==
  • Thread-topic: Possible issue in closingLaneReroute

Good afternoon,

 

I’ve trying out the Rerouter (https://sumo.dlr.de/docs/Simulation/Rerouter.html) in SUMO to close a large number of lanes simultaneously within the network for a given period of time. I have then placed rerouters prior to these closures to trigger the vehicles to reroute accordingly. When I have tried the closingLaneReroute method however the vehicles do not reroute. For comparison I’ve tried closing the edges instead of the lanes and in this instance vehicles do reroute. I’ve included an example of my input data below:

 

 

For both scenarios in my additional file I have multiple lines with the following format:

 

<rerouter edges="177728541 177728531" file="R_Zone97.shp.def.xml" id="Zone97.shp" probability="1" />

 

 

Ideally I want to be able to close individual lanes with some edges having all lanes closed. In the lookup file I would have the following when attempting to close lanes:

 

<rerouter id="Zone97.shp">

                <interval begin="25200" end="27000">

                                <closingLaneReroute disallow="all" id="177728531_0" />

<closingLaneReroute disallow="all" id="177728531_1" />

                </interval>

</rerouter>

 

When I run the simulations with the lane closure lookup files none of the vehicles actually reroute.

 

For comparison, instead of closing lanes I tested closing edges and amending the lookup files accordingly:

 

<rerouter id="Zone97.shp">

                <interval begin="25200" end="27000">

                                <closingReroute disallow="all" id="177728531" />

                </interval>

</rerouter>

 

 

When I run the simulation in this instance in my output tripinfo.xml file I now see that vehicles are rerouting.

 

I’m wondering, could there be a bug in the rerouting algorithm when using rerouters which is causing sumo to ignore the rerouters for lane closures even if the all lanes are closed which would be similar to closing an edge?

 

Any insight would be greatly appreciated.

 

Kind regards,

 

Barry

 

 

 


Back to the top