ODE45 to solve for velocity & plot velocities v frequencies?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
FREQ = 0:1000;
m1 = 12; m2 = 24;
K1 = 6000; K2 = 3450;
R1 = 40; R2 = 28;
P = 1 * (1i * 2 * pi * FREQ);
My state variable equations are:
I want to use ODE45 to solve the system of equations.
& plot the velocity x(dot)1 {should result in 1000 values for x(dot)1} vs FREQ.
How can I do this?
0 comentarios
Respuestas (1)
Steven Lord
el 31 de Mayo de 2019
See the "Systems of ODEs" section on this documentation page for how to write your ODE function. Then use that in a call to ode45. You should be able to adapt the "Solve Nonstiff Equation" example on the documentation page for ode45 (which you can open using the command doc ode45) for your problem.
0 comentarios
Ver también
Categorías
Más información sobre Ordinary Differential Equations 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!