How to obtain a continuous acceleration plot from velocity plot?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Mathieu NOE
el 22 de Nov. de 2022
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
Respuestas (1)
Sakshay
el 29 de Nov. de 2022
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 comentarios
Ver también
Categorías
Más información sobre General Applications en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!