How can i solve this system ?

3 vues (au cours des 30 derniers jours)
Mallouli Marwa
Mallouli Marwa le 25 Jan 2017
Commenté : Mallouli Marwa le 27 Jan 2017
Hi
To determine the damping ratio (psij and psik ), i have to solve the attached system where all other name
are constant.
How can i solve this system ?
  3 commentaires
Mallouli Marwa
Mallouli Marwa le 26 Jan 2017
I mean zeta
Mallouli Marwa
Mallouli Marwa le 26 Jan 2017
I want to solve it numerically.

Connectez-vous pour commenter.

Réponse acceptée

Torsten
Torsten le 26 Jan 2017
A = 2*omegaj*omegak/(omegaj^2-omegak^2)*[Y*I/omegak -Y*I/omegaj ; -m*omegak m*omegaj];
b = [cs*I ; ca];
zeta = A\b;
zetaj = zeta(1);
zetak = zeta(2);
Best wishes
Torsten.
  5 commentaires
Torsten
Torsten le 27 Jan 2017
Modifié(e) : Torsten le 27 Jan 2017
If abs(wr(i))=abs(wr(k)), your matrix A becomes singular and you won't get a solution.
This will at least be the case if i=k in your nested-loop construction.
Best wishes
Torsten.
Mallouli Marwa
Mallouli Marwa le 27 Jan 2017
Please how can i correct this error ?

Connectez-vous pour commenter.

Plus de réponses (1)

Torsten
Torsten le 26 Jan 2017
Hint:
The inverse of
[a b ; c d]
is
1/(a*d-b*c)*[d -b; -c a]
Best wishes
Torsten.

Catégories

En savoir plus sur Linear Algebra dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by