Insert waypoints into a simulink model

조회 수: 27 (최근 30일)
Islam Elnady
Islam Elnady 2018년 1월 19일
댓글: Benjamin Alessio 2021년 11월 24일
I'm guiding an UAV to land at a specific point on the ground. I have used some waypoints algorithm to create a set of waypoints (x,y) between the starting and ending points. I need to send these waypoints one by one to the flight Simulink model so that the model could switch to the next waypoint once the current one is reached. Any tips how I can do that ?
  댓글 수: 3
Islam Elnady
Islam Elnady 2018년 1월 19일
@birdman
Yes
Benjamin Alessio
Benjamin Alessio 2021년 11월 24일
was this ever resolved?

댓글을 달려면 로그인하십시오.

답변 (1개)

Birdman
Birdman 2018년 1월 19일
One approach would be using To Workspace block in Simulink. I don't know how you configured and set your model but the usage of To Workspace block is as follows:
Consider your x and y data as 1000x1 vectors respectively. To be able to provide data to Simulink, you need to provide it with a time data which will imitate Simulink's simulation time. Therefore if we again consider x and y data to be a column vector, also consider that your time vector is a column vector as well and have same number of rows with your datas, in this case, construct the array as follows:
data=[time x y];
After you do this, write data to your block and separate the output of the To Workspace block with a Demux having an output of 2, to be able to use your x and y data.
Hope this helps.
  댓글 수: 1
Islam Elnady
Islam Elnady 2018년 1월 19일
편집: Islam Elnady 2018년 1월 19일
Hi Birdman, Thank you for your answer. Do you mean From Workspace block? Yes I tried to to this, I created an array of xy and time but I couldn't synchronize it with Simulink model. For example, I need to take data[1,:] and send it to Simulink, and blocks any other data until data[1,:] is reached, and after that switch to data[2,:].

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by