How to park a car in the simulation of vehicular network using omnet++?
in my simulation, I need to park a car in the parking, and when the car is out of the parking, it transfers their information to the rest of the cars inside the parking.Therefore, when the vehicle is parked in the parking ,its communication with the outside or with the interior of the parking should not be interrupted.
i am using omnetpp-5.0, sumo-0.25.0 and veins-veins-4.4. I tried to apply changes to the base veins, but I did not get the result.
How can I park a car without interrupting communication with the outside and inside of the parking ?
Can anyone help me?
omnet++ veins sumo
add a comment |
in my simulation, I need to park a car in the parking, and when the car is out of the parking, it transfers their information to the rest of the cars inside the parking.Therefore, when the vehicle is parked in the parking ,its communication with the outside or with the interior of the parking should not be interrupted.
i am using omnetpp-5.0, sumo-0.25.0 and veins-veins-4.4. I tried to apply changes to the base veins, but I did not get the result.
How can I park a car without interrupting communication with the outside and inside of the parking ?
Can anyone help me?
omnet++ veins sumo
add a comment |
in my simulation, I need to park a car in the parking, and when the car is out of the parking, it transfers their information to the rest of the cars inside the parking.Therefore, when the vehicle is parked in the parking ,its communication with the outside or with the interior of the parking should not be interrupted.
i am using omnetpp-5.0, sumo-0.25.0 and veins-veins-4.4. I tried to apply changes to the base veins, but I did not get the result.
How can I park a car without interrupting communication with the outside and inside of the parking ?
Can anyone help me?
omnet++ veins sumo
in my simulation, I need to park a car in the parking, and when the car is out of the parking, it transfers their information to the rest of the cars inside the parking.Therefore, when the vehicle is parked in the parking ,its communication with the outside or with the interior of the parking should not be interrupted.
i am using omnetpp-5.0, sumo-0.25.0 and veins-veins-4.4. I tried to apply changes to the base veins, but I did not get the result.
How can I park a car without interrupting communication with the outside and inside of the parking ?
Can anyone help me?
omnet++ veins sumo
omnet++ veins sumo
edited Jan 2 at 11:05
rakhsha
asked Jan 2 at 10:59
rakhsharakhsha
83
83
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I am not an expert in Veins so I can only speak for the sumo side. you can simply add a stop to the vehicle route and flag it is a parking like that:
<vehicle id="1" depart="0">
<route edges="edge1 edge2"/>
<stop lane="edge2_0" endPos="100" duration="100" parking="true"/>
</vehicle>
If this is not working because parking removes the vehicle from the network and thus may disable the communication because there is no reliable position anymore, then create a separate street in your network:
<vehicle id="1" depart="0">
<route edges="edge1 edge2a parking edge2b"/>
<stop lane="parking_0" endPos="100" duration="100"/>
</vehicle>
where "parking" has at least one lane more then edge2 such that vehicles can overtake. (I wrote the example from memory without testing so there maybe errors in it.)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005127%2fhow-to-park-a-car-in-the-simulation-of-vehicular-network-using-omnet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I am not an expert in Veins so I can only speak for the sumo side. you can simply add a stop to the vehicle route and flag it is a parking like that:
<vehicle id="1" depart="0">
<route edges="edge1 edge2"/>
<stop lane="edge2_0" endPos="100" duration="100" parking="true"/>
</vehicle>
If this is not working because parking removes the vehicle from the network and thus may disable the communication because there is no reliable position anymore, then create a separate street in your network:
<vehicle id="1" depart="0">
<route edges="edge1 edge2a parking edge2b"/>
<stop lane="parking_0" endPos="100" duration="100"/>
</vehicle>
where "parking" has at least one lane more then edge2 such that vehicles can overtake. (I wrote the example from memory without testing so there maybe errors in it.)
add a comment |
I am not an expert in Veins so I can only speak for the sumo side. you can simply add a stop to the vehicle route and flag it is a parking like that:
<vehicle id="1" depart="0">
<route edges="edge1 edge2"/>
<stop lane="edge2_0" endPos="100" duration="100" parking="true"/>
</vehicle>
If this is not working because parking removes the vehicle from the network and thus may disable the communication because there is no reliable position anymore, then create a separate street in your network:
<vehicle id="1" depart="0">
<route edges="edge1 edge2a parking edge2b"/>
<stop lane="parking_0" endPos="100" duration="100"/>
</vehicle>
where "parking" has at least one lane more then edge2 such that vehicles can overtake. (I wrote the example from memory without testing so there maybe errors in it.)
add a comment |
I am not an expert in Veins so I can only speak for the sumo side. you can simply add a stop to the vehicle route and flag it is a parking like that:
<vehicle id="1" depart="0">
<route edges="edge1 edge2"/>
<stop lane="edge2_0" endPos="100" duration="100" parking="true"/>
</vehicle>
If this is not working because parking removes the vehicle from the network and thus may disable the communication because there is no reliable position anymore, then create a separate street in your network:
<vehicle id="1" depart="0">
<route edges="edge1 edge2a parking edge2b"/>
<stop lane="parking_0" endPos="100" duration="100"/>
</vehicle>
where "parking" has at least one lane more then edge2 such that vehicles can overtake. (I wrote the example from memory without testing so there maybe errors in it.)
I am not an expert in Veins so I can only speak for the sumo side. you can simply add a stop to the vehicle route and flag it is a parking like that:
<vehicle id="1" depart="0">
<route edges="edge1 edge2"/>
<stop lane="edge2_0" endPos="100" duration="100" parking="true"/>
</vehicle>
If this is not working because parking removes the vehicle from the network and thus may disable the communication because there is no reliable position anymore, then create a separate street in your network:
<vehicle id="1" depart="0">
<route edges="edge1 edge2a parking edge2b"/>
<stop lane="parking_0" endPos="100" duration="100"/>
</vehicle>
where "parking" has at least one lane more then edge2 such that vehicles can overtake. (I wrote the example from memory without testing so there maybe errors in it.)
answered Jan 5 at 12:08
MichaelMichael
1,7291717
1,7291717
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005127%2fhow-to-park-a-car-in-the-simulation-of-vehicular-network-using-omnet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown