I have some coupled nonlinear ordinary differential equations. Three equations have three 2nd order derivative coupled together. Can someone tell me how I can get the response

3 ビュー (過去 30 日間)
I have some coupled nonlinear ordinary differential equations. Three equations have three 2nd order derivative coupled together. Can someone tell me how I can get the response, numerically? i.e t vs x , t vs theta dot plots.
Thanks in advance
  2 件のコメント
James Tursa
James Tursa 2022 年 9 月 21 日
Do you have initial conditions for all the variables and first derivatives?

サインインしてコメントする。

採用された回答

Torsten
Torsten 2022 年 9 月 21 日
編集済み: Torsten 2022 年 9 月 21 日
Solve the third equation for theta_dotdot and insert this expression in equations (1) and (2).
Then use the usual substitutions
z1 = x
z2 = xdot
z3 = y
z4 = ydot
z5 = theta
z6 = thetadot
  6 件のコメント
James Tursa
James Tursa 2022 年 9 月 21 日
OK, then you can use Torsten's advice.

サインインしてコメントする。

その他の回答 (1 件)

James Tursa
James Tursa 2022 年 9 月 21 日
編集済み: James Tursa 2022 年 9 月 21 日
Another related approach is to isolate all the 2nd derivatives on the LHS and put everything else on the RHS. Then pick off the coefficients of the 2nd order derivatives to form a matrix problem that you solve for the 2nd derivatives. E.g., the matrix problem would look something like this based on your comment edits:
A*z = b
where
A = [ 1 0 -f*sin(theta);
0 1 f*sin(theta);
-m*e*sin(theta) m*e*cos(theta) (m*e^2+Ip)/B^2]
and
z = [x_dotdot; y_dotdot; theta_dotdot]
and
b = 3x1 vector with all the other stuff from RHS
Then solve for z to get the 2nd derivatives.
  7 件のコメント
Torsten
Torsten 2022 年 9 月 22 日
編集済み: Torsten 2022 年 9 月 22 日
It works up to t = 90 approximately (see above).
Then all your variables seem to blow up.
Either your equations are wrong, there is a singularity around t = 90 or the integrator is not able to solve your problem.
For all three problems, I cannot be of help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSystems of Nonlinear Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by