implement off-ramp in METANET#5
Conversation
|
Hi @woodwm, I took a look at your implementation of the off-ramp and pushed some new modifications to your pull request branch. Would you be so kind to take a look at them and see if they make sense to you as well? In particular
|
|
Hi, @FilippoAiraldi thank you a lot for your changes. In the function Recently I have been thinking about the density of the off-ramp. Not many papers describe in detail how to set the density of the off-ramp. I think it should not be the density of the last incoming segment, which is fine for a normal destination. In this case, the off-ramp flow is only a part of the incoming flow in that node, which means that the speed of the off-ramp is much less than that of the incoming link in the mainstream, even though the speed of the off-ramp is not used. This is strange to me. I think the density of the off-ramp should be the density of first segment in the other exiting link. The following are from the METANET documantation. What do you think about this? |
|
Hi @woodwm, thanks for the answer, and good question on the density. I also agree that not many papers explain this point clearly (at least, the ones that I used as references), so I do not have a definite answer. I sort of understand your suggestion, and I have some points to address.
This node has one incoming link Now, intuitively speaking, I would expect the density of Does this counter-example make sense, or am I overlooking something?
|
|
Hi, @FilippoAiraldi I think your mentioned case is considered in the condition 3 as well. When the turn rate of I think no need to implement equation A(28). The currently implemented downstream boundary conditions are good and enough. I am also not sure how to set the density of off-ramp when there are multiple exit links except for the off-ramp. My current think is that the density of the off-ramp is used to calculate the virtual density in the case of multiple exit links (including the off-ramp). The idea is that the density of the off-ramp should not change significantly the virtual density. Then, we have What do you think on this? |
|
Hi @woodwm, You are right, I did not pay enough attention to the third condition! Regarding the case with one off-ramp and multiple exiting links, the only equation that came up in my mind is also the virtual downstream density Other solutions that I can think of are
|



Hi,
I implemented off-ramp in METANET. Could you take a look at?
I think the condition (9) in the network valid check function needs to be removed.
sym-metanet/src/sym_metanet/network.py
Lines 500 to 506 in 2bedf26