Clear Filters
Clear Filters

How can i solve this system ?

1 view (last 30 days)
Mallouli Marwa
Mallouli Marwa on 25 Jan 2017
Commented: Mallouli Marwa on 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 Comments
Mallouli Marwa
Mallouli Marwa on 26 Jan 2017
I want to solve it numerically.

Sign in to comment.

Accepted Answer

Torsten
Torsten on 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 Comments
Torsten
Torsten on 27 Jan 2017
Edited: Torsten on 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 on 27 Jan 2017
Please how can i correct this error ?

Sign in to comment.

More Answers (1)

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

Categories

Find more on Linear Algebra in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!