필터 지우기
필터 지우기

How to obtain a continuous acceleration plot from velocity plot?

조회 수: 2 (최근 30일)
SHALINI R
SHALINI R 2022년 11월 22일
답변: Sakshay 2022년 11월 29일
I used derivative block to obtain acceleration plot from velocity plot. I got discrete graph.But I need a continuous graph .How can I obtain a continuous acceleration plot from velocity plot?
  댓글 수: 3
Mathieu NOE
Mathieu NOE 2022년 11월 22일
well, data you have / get from a simulation are always discrete points, whatever the solver you use
only by plotting a line that goes through those points you have the feeling it's continuous
"true" continuous signals would mean a infinite number of points for whatever signal duration;
so to me it's more a question how you plot the data that may be the issue

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

답변 (1개)

Sakshay
Sakshay 2022년 11월 29일
Hello Shalini,
As per my understanding, you are trying to generate the plot for the derivative of a quantity. But, the plot generated doesn't seem to be continuous.
The Derivative Block is a continuous block in Simulink. The plot we receive in Simulink is dependent on the step size of the model. If you want a more detailed (fine-grained) plot, you can adjust the step size accordingly. In your case, this would be done by lowering the step size.
You can adjust the step size, from the Configuration Parameters of the Simulink Model. In the Solver pane of the Configuration window, select the Fixed-step Solver Type. And fill a small value (like 0.01) in the Fixed-step size.
This can also be done programmatically, using the command:
sim('modelName','StartTime','0','StopTime','10','FixedStep','0.01');
For more information on the Solver Pane of Configuration Parameters, you can refer to the following documentation:

카테고리

Help CenterFile Exchange에서 Scopes and Data Logging에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by