How to obtain a continuous acceleration plot from velocity plot?
3 次查看(过去 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!