how to solve 3 equations in 1 st order using rk4 method

1 回表示 (過去 30 日間)
Mallikarjun Bangi
Mallikarjun Bangi 2017 年 10 月 16 日
回答済み: Mischa Kim 2017 年 10 月 16 日
%%Initial inputs values
x = 10000.0;
y = 0.0;
theta = 30deg;
V = 300m/s;
%%3 main equations inter dependant
xdot = (dx/dt) = V*cos(theta);
ydot = (dy/dt) = V*sin(theta);
thetadot = (dtheta/dt) = acc/V;
%%Note: we can derive V = sqrt(xdot^2 + ydot^2); "Integration" or by using "S-function" of Xdot and ydot we will get instatenous x, y values at every step size w.r.to given acceleration variable (acc);
can anyone pls give some idea to solve it

回答 (1 件)

Mischa Kim
Mischa Kim 2017 年 10 月 16 日
Mallikarjun, check out this answer for the Lorentz attractor.

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by