필터 지우기
필터 지우기

Can anyone suggest how to speed up the simulation?

조회 수: 2 (최근 30일)
Vishal Naik
Vishal Naik 2024년 2월 20일
댓글: Vishal Naik 2024년 5월 7일
Here, I have uploaded matlab code and simulink model. The procedure to run the simulink is as follows:
  1. Open trail_0 and run it.
  2. Open 'Three_R_Robot_Adaptive' and run it.
According to me, 'Polynomial Trajectory' and 'para_estimation block' in 'Three_R_Robot_Adaptive.slx' is taking a lot of time. I will be very thankful, if anyone suggest a solution for it.
  댓글 수: 3
Vishal Naik
Vishal Naik 2024년 2월 20일
Thank you, I will look at it.
Vishal Naik
Vishal Naik 2024년 2월 27일
I tried, but it did not work. Another reason might be that I am not an expert in MATLAB. I am in an intermiddient level.

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

채택된 답변

Gyan Vaibhav
Gyan Vaibhav 2024년 4월 16일
Hi Vishal,
So, I tried running your simulink model, and seems to run for eternity. But if you look closely at the status where it shows the simulation percentage, one thing becomes evident that the solver's step size is way smaller, and for even for it to simulate one-thousandth of a second it would take way more time. This is probably due to the relative tolerance of the solver, which is currently 1e-4. However, if you try to reduce the tolerance it gives an error which is probably because of how your model blocks are configured.
You can go to the Debug tab->Performance Advisor-> Solver Profiler, and run it for some time and then you can pause to get the statistics upto that time. For the current simulation the avg step size comes out to be of around 1e-10.
Similarly, you can identify the blocks taking the most time, Debug tab->Performance Advisor.
So, here are few ways I think you can approach to reduce the step size:
  1. Try changing to some more appropriate solver.
  2. Try reducing the relative tolerance, and make the appropriate changes in the model.
  3. Follow this official answer: https://www.mathworks.com/matlabcentral/answers/94052-how-can-i-speed-up-simulation-of-my-simulink-model
Hope this helps.
Thanks
Gyan

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 General Applications에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by