Adding BSM/Beacons to OMNeT++ Simulations | Tutorial #6

แชร์
ฝัง

ความคิดเห็น • 13

  • @mubashirmurshedayon2033
    @mubashirmurshedayon2033 3 ปีที่แล้ว +3

    please make tutorials on how vehicles communicate data messages between them e.g. broadcast message and peer to peer message.

  • @aneeqahmed3629
    @aneeqahmed3629 2 ปีที่แล้ว

    how we can implement a traffic congestion scenario in which Rsu can broadcast Speed limits to cars and cars can implement it accordingly?

  • @alisirte1
    @alisirte1 ปีที่แล้ว

    Hello, Do you have any example using accident with Pedestrian please?

  • @alisirte1
    @alisirte1 ปีที่แล้ว

    Thanks for reply me. Could you please complete the example of this video by adding the code that shows how the cars will change direction or turn around after receiving the BSM message?

    • @thedefeatedengineer
      @thedefeatedengineer  ปีที่แล้ว

      You can just make it true and run the simulation. Note down all the parameters. Then go ahead and turn off the beacon, you would see that the vehicles would not turn when an accident occurs.

    • @alisirte1
      @alisirte1 ปีที่แล้ว

      @@thedefeatedengineer what parameter I can chang it to true?

    • @alisirte1
      @alisirte1 ปีที่แล้ว

      Please Sir I need the work as an urgent. if you do favorite implement it and recorded video to me. Thanks

  • @alisirte1
    @alisirte1 ปีที่แล้ว

    Hello Sir, How we can compare the results of this tutorial with and example without using BSM/Beacons?

    • @thedefeatedengineer
      @thedefeatedengineer  ปีที่แล้ว

      You can go to the ini file and make BSM/Beacon as false.

  • @sanabouassida5557
    @sanabouassida5557 3 ปีที่แล้ว

    Can i have the code please?

  • @htmtechnologyplc3233
    @htmtechnologyplc3233 3 ปีที่แล้ว

    Hello ! I want to Add VehicleID, vehicle Length and Number of vehicles in our scenario, but i can't . Any one can help me? Thanks

    • @thedefeatedengineer
      @thedefeatedengineer  3 ปีที่แล้ว

      There is an icon for Vehicle Settings in the SUMO, you can edit the specifications there.

  • @norrisnovat2501
    @norrisnovat2501 2 ปีที่แล้ว

    Getting errors on the statement is it correct?
    void MyVeinsApp::onBSM(DemoSafetyMessage* bsm)
    {
    // Your application has received a beacon message from another car or RSU
    // code for handling the message goes here
    if (hasStopped==false) {
    traciVehicle->setSpeedMode(0x1f);
    traciVehicle->setSpeed(0);
    hasStopped=true;
    }
    else
    }
    traciVehicle->setSpeedMode(0x1f);
    traciVehicle->setSpeed(0);
    hasStopped=false;
    }
    }