Why we use Transfer Function to represent/describe a Dynamic Model?

조회 수: 1 (최근 30일)
Bob
Bob 2016년 5월 6일
답변: Azzi Abdelmalek 2016년 5월 6일
Why we use Transfer Function to represent/describe a Dynamic Model?
%%Parameters
m1 = 2500; % Sprung Mass (kg)
m2 = 320; % Unsprung Mass (kg)
k1 = 80000; % Suspension Stiffness (N/m)
k2 = 500000; % Wheel and Tire Stiffness (N/m)
b1 = 350; % Suspension Damping Coefficient (N*s/m)
b2 = 15020; % Wheel and Tire Damping Coefficient (N*s/m)
%%Dynamic Model
% Displacement of Mass 1, G1(s) = X1(s)/W(s)
num1 = [(0) (0) (b1*b2) (b1*k2+b2*k1) (k1*k2)]; % Output X1(s)
den1 = [(m1*m2) (m1*b1+m1*b2+m2*b1) (m1*k1+m1*k2+m2*k1+b1*b2) (b1*k2+k1*b2) (k1*k2)]; % Input W(s)
G1 = tf(num1,den1);
% Displacement of Mass 2, G2(s) = X2(s)/W(s)
num2 = [(0) (m1*b2) (m1*k2+b1*b2) (b1*k2+b2*k1) (k1*k2)]; % Output X2(s)
den2 = [(m1*m2) (m1*b1+m1*b2+m2*b1) (m1*k1+m1*k2+m2*k1+b1*b2) (b1*k2+k1*b2) (k1*k2)]; % Input W(s)
G2 = tf(num2,den2);

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 5월 6일

카테고리

Help CenterFile Exchange에서 Chassis Systems에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by