How to obtain a continuous acceleration plot from velocity plot?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
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
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:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 General Applications에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!