ODE45 to solve for velocity & plot velocities v frequencies?

조회 수: 7 (최근 30일)
onamaewa
onamaewa 2019년 5월 31일
답변: Steven Lord 2019년 5월 31일
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?

답변 (1개)

Steven Lord
Steven Lord 2019년 5월 31일
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.

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by