Can ode45 be used to solve mx'' + cx' + kx^1.1=0 x(0)=5;x'(0)=0? Getting complex numbers in answers.

2 visualizzazioni (ultimi 30 giorni)
I want to examine the transient response of a second order system with a nonlinear spring force. For example Fspring=kx^n where 0<n<2. I get answers when using ode45, but also a warning, when n is not =1, when plotting that tells that the numbers are complex but only the real part is plotted. Can ode45 be used for this problem? If not, can you suggest alternate. Thanks....version 9.7.0.1296695 (R2019b) Update 4
  1 Commento
Richard Klein
Richard Klein il 2 Lug 2020
Thanks for your quick response. The complex answers were bothersome to me, and I have since seen an error in my problem formulation. Your answer helped push my thinking in the right direction. Thanks again.

Accedi per commentare.

Risposta accettata

Star Strider
Star Strider il 29 Giu 2020
You need to plot the real and complex parts separately.
Assuming:
[t,y] = ode45(yourOdefcn, tspan, ic);
plot it as:
figure
plot(t, real(y))
hold on
plot(t, imag(y))
plot(t, abs(y))
hold off
grid
depending on the result you want.
.

Più risposte (0)

Categorie

Scopri di più su Programming in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by