Please consider 2 scripts below, this supposed to be output the same results of D but it doesn't
script 1:
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_s = 200000; %(N/m) Suspension stiffness
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
D
script 2:
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
syms k_s
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
k_s = 200000;
D=double(subs(D))
THANK YOU!

9 件のコメント

ali hassan
ali hassan 2020 年 11 月 27 日
are your inputs complete??
i dont think so
KSSV
KSSV 2020 年 11 月 27 日
Give the complete code which you have tried.....the inputs which lead to the given output is not shown. Without this how you expect us to help you?
Tran Gia Minh
Tran Gia Minh 2020 年 11 月 27 日
Sorry for that, INPUT is another file which contains input variables
I have just updated the scripts, if you have time please take a look.
ali hassan
ali hassan 2020 年 11 月 27 日
編集済み: ali hassan 2020 年 11 月 27 日
try this. hope it will work
%%script 1:
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_s = 200000; %(N/m) Suspension stiffness
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
D
%% %%script 2:
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
syms k_s
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
k_s = 200000;
% D=double(subs(D))
double(subs(D))
ali hassan
ali hassan 2020 年 11 月 27 日
編集済み: ali hassan 2020 年 11 月 27 日
plzzz reply if it worked??
i am sure it worked.
you were actually making a mistake using sub.firstly, try to keep code simple. u dont need to use symbolic variables when you are going to give the value later coz there is no reason to add lines.
hope answers the question
BEST REGARDS
Tran Gia Minh
Tran Gia Minh 2020 年 11 月 27 日
Unfortunately, they still give different result,
Thank you for your patient Ali Hassan!
I try symbolic variables for a specific purpose of my own.
Tran Gia Minh
Tran Gia Minh 2020 年 11 月 27 日
in script 1 you provided, result of D is:
D =
1.0e+03 *
5.3690 0
0 0.0810
and script2:
D =
1.0e+03 *
0.0810 0
0 5.3690
ali hassan
ali hassan 2020 年 11 月 27 日
編集済み: ali hassan 2020 年 11 月 27 日
brother these are eigen values and you have got two answers and the position does'nt matter in my reckoning.
did u get it or i need to explain more??
if u want i can
ali hassan
ali hassan 2020 年 11 月 27 日
actually i hope you know but just to remind you.
actually D is a scalor value and when it is multipled with the eigen vector it satisfies the equation
wA = Dw
here D is a scalor value and you have got two different values which means when you will multiply your two values one by one with the eigen vector, you must get the left side of equation(wA) and it is true in your case. so dont get puzzled with the sequence.

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

 採用された回答

VBBV
VBBV 2020 年 11 月 27 日
編集済み: VBBV 2020 年 11 月 27 日

0 投票

D=double(subs(D,k_s))
Use the variable k_s as argument, I get the same results now
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_s = 200000; %(N/m) Suspension stiffness
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
D
D =
1.0e+03 *
5.3690 0
0 0.0810
clear
m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
syms k_s
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[V,D] = eig(A);
k_s = 200000;
D=double(subs(D,k_s))
D =
1.0e+03 *
5.3690 0
0 0.0810

1 件のコメント

VBBV
VBBV 2020 年 11 月 27 日
編集済み: VBBV 2020 年 11 月 27 日
Use clear statment in the begnning of 2nd script

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

その他の回答 (2 件)

VBBV
VBBV 2020 年 11 月 27 日

0 投票

It depends on values for input variables inside the M and K matrices If you use different values for each of script the resulting D will not be same

1 件のコメント

ali hassan
ali hassan 2020 年 11 月 27 日
***if we use same values for each of script the resulting D will not be same.
right???

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

Steven Lord
Steven Lord 2020 年 11 月 27 日
編集済み: Steven Lord 2020 年 11 月 27 日

0 投票

m_s = 2000; %(kg) Sprung mass
m_u = 200; %(kg) Un-sprung mass
k_s = 200000; %(N/m) Suspension stiffness
k_u = 870000; %(N/m) Tire stiffness
c_s = 6000; %(Ns/m) Damping coefficient
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[Vdbl,Ddbl] = eig(A);
Ddbl;
syms k_s
M = [m_u 0;0 m_s];
K = [k_s+k_u -k_s; -k_s k_s];
A = M\K;
[Vsym,Dsym] = eig(A);
k_s = 200000;
Dsym2=double(subs(Dsym));
isequal(sort(diag(Ddbl)), sort(diag(Dsym2)))
ans = logical
1
Ddbl and Dsym2 do contain the same diagonal elements, but the order of those elements along the diagonal is not the same. If you swap the columns of Vsym accordingly you'll see that each eigenvector in Vdbl is a non-zero scalar multiple of the corresponding eigenvector in Vsym. If v is an eigenvector of A with eigenvalue d, k*d is also an eigenvector of A with eigenvalue d for any non-zero scalar k.
format longg
Vdbl./fliplr(double(subs(Vsym)))
ans = 2×2
-0.0189755917710498 0.982462249755453 -0.0189755917710498 0.982462249755453
So same answers, just in a different order in the output.

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

質問済み:

2020 年 11 月 27 日

編集済み:

2020 年 11 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by