How to change waypoints while running the simulation model when using UAV toolbox(Path Manager)?
8 ビュー (過去 30 日間)
古いコメントを表示
I want to achieve a flight path like this:
There are some cars along the road, once the UAV has detected a car, it would fly towards the car, otherwise it would fly along the road.
I am trying to modify the UAV package delivery example(https://ww2.mathworks.cn/help/uav/ug/uav-package-delivery.html) to achieve this in simulink.
But it seems that the PathManager block only receive the waypoint set once.
For example,
Here I have 12 waypoints along the road, the first waypoint pair is (point1,point2), if there is no car along this road,
then the next waypoint pair is (point2, point3)
But when I change the value of GCScommands in the Multirotor block, it didn't recieve the value.
(I changed the value directly from the data dictionary)
After the UAV reach point2, it will stuck at there instead of moving forward, even I have changed the value of GCSCommands into (point2,point3).
It will still take the first 2 points as waypoints.
How can I solve this?
0 件のコメント
採用された回答
Jianxin Sun
2021 年 5 月 10 日
Hi Shichen,
Mission data is loaded in "uavPackageDelivery/Ground Control Station/Get Flight Mission/noQGC" subsystem when model simulation starts in this example. If you want to dynamically update the mission, you can modify this subsystem to accept run time changes. Alternatviely, you can add a state machine before the control reaches "uavPackageDelivery/Multirotor (MultirotorModel)/Guidance Logic/Full Guidance Logic/Guidance Stateflow" subsystem and switch to alternative control modes when you detect a car.
Thanks,
Jianxin
5 件のコメント
Robert Naquila
2021 年 8 月 11 日
I tried just passing the waypoints through the function block but it gives the same error.
function newMission = fcn(mission)
newMission = mission;
It seems like the function block does not return any signal at all. Is there any configuration I need to make to the function block to make this work?
Jianxin Sun
2021 年 8 月 12 日
Hi Robert,
I tried your modification. I think you need to explict set the data type for your MATLAB function block output. It should be set to Bus:uavPathManagerBus type like the screenshot shown below. You can refer to https://www.mathworks.com/help/simulink/ug/ports-and-data-manager.html to find out how to open the dialog below for MATLAB function block.
Thanks,
Jianxin
その他の回答 (1 件)
Giuseppe Silano
2022 年 3 月 2 日
編集済み: Giuseppe Silano
2022 年 3 月 2 日
This is an example of using MATLAB 3D Animation Toolbox for object detection and tracking with an Unmanned Aerial Vehicle. I hope this can be of help.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!