measure the ROS loop time in simulink

조회 수: 4 (최근 30일)
Nathaniel Goldfarb
Nathaniel Goldfarb 2021년 5월 30일
댓글: Nathaniel Goldfarb 2021년 5월 31일
I am trying to figure out my control loop time in simulink for controlling my simulation using MATLAB 2021a.
I am using the loop control rate block found in these closed loop control example here
The comments say:
% The rate control may not be effective if the simulation model is too
% complex to be handled at the desired rate. To check the rate control
% performance, consider output rateObj.LastPeriod. Ideally it should be
% close to SampleTime during most part of the simulation.
How do I actually output/access the rateObj.LastPeriod in the model so I can make a historgram of the control rate?

채택된 답변

Abhijeet Gadkari
Abhijeet Gadkari 2021년 5월 31일
Hello Nathaniel,
The Simulation Rate Control block used in this example is a MATLAB System Object.
You can modify the stepImpl method of this system object class, ExampleHelperSimulationRateControl.m, to add an output argument as below.
function r = stepImpl(obj)
%stepImpl Regulates simulation update
if coder.target('MATLAB')
obj.RateObj.waitfor();
r = obj.RateObj.LastPeriod;
else
r = nan;
end
end
Save the ExampleHelperSimulationRateControl.m class and re-open the model.
You should now see an output port on the Simulation Rate Control block, as shown below.
-Abhijeet
  댓글 수: 1
Nathaniel Goldfarb
Nathaniel Goldfarb 2021년 5월 31일
thank you so much. this worked perfectly

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Publishers and Subscribers에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by