Get 1st element/reading from a Real-time encoder readings
1 回表示 (過去 30 日間)
古いコメントを表示
I am using an absolute encoder to read my motor in real time through udp on Simulink Real-time, and i would like to save the 1st element from the readings (the position at which the encoder starts at) to use it later on,
I am using the very simple function below, i tried to modify it to include a dynamic array thast stores all values of encoder yet, without success,
Any suggestions?
Thanks in advance!
function y = Encoder_I(Encoder_Readings)
y = Encoder_Readings(1);
0 件のコメント
採用された回答
Dimitri MANKOV
2022 年 10 月 24 日
編集済み: Dimitri MANKOV
2022 年 10 月 24 日
Hi Ahmet,
How about using a block-based approach instead? You could for example go for something similar to this:
In this case, I use the simulation time to switch between the new data and the data from the previous step, but you can adjust that condition to your use case.
I hope this is helpful!
Dimitri
2 件のコメント
Dimitri MANKOV
2022 年 10 月 24 日
Hi Ahmet,
Certainly! When the simulation starts, the clock signal will start incrementing accordingly. If you know when you expect to receive your first UDP Packet, you can compare the clock signal to that value to trigger the condition that will reuse the first packet's data continuously until the end of the simulation.
In the example screenshot above, that time is set to 1ms. Suppose you have a time step of 1ms and you know with certainty that you will receive data during the first time step, this approach could work.
An alternative would be to monitor the data signal output by the "Receive UDP packets" block, and to trigger the same condition as the one shown in the screenshot above by detecting the first change in the data signal.
Dimitri
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Target Computer Setup についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!