Download as pdf or txt
Download as pdf or txt
You are on page 1of 38

Lecture: 2

SYSTEM DESIGN AND SIMULATION


Asst. Prof. Rupak Chaudhary
Department of Mechanical and Automobile
Institute of Engineering,
Thapathali Campus,
Tribhuvan University
Kathmandu, Nepal
1/3/2022 1
System
• A collection of elements or components that are
organized for a common purpose.
Design
• Design is the process and art of planning and making
detailed drawings of something.
• Design is a set of specifications and drawings that can be
consistent with the needs
• Design is to compromise between the requirements and
attainable

1/3/2022 Asst. Prof. Rupak Chaudhary 2


What is System design?

System design is a set of specifications and drawings that can


clearly and describe the whole shape and arrangement of the
system in detail.

System Design needs to be familiarized with the specifications


of the system upon which the design is to be based.

System design should collect all available information and


comments of the same general type as that proposed.

System design is based on rigorous experimentation, but it need


more creativity. Design of a system has no sole result, it will be
developing, be perfecting.
Asst. Prof. Rupak Chaudhary
Develop from nothing

4 Asst. Prof. Rupak Chaudhary


Better and better

5 Asst. Prof. Rupak Chaudhary


WHAT IS SIMULATION?

• The imitation of the operation of a real-world process or system


over time…
– Most widely used tool (along LP) for decision making
– Usually on a computer with appropriate software
– An analysis (descriptive) tool – can answer what if questions
– A synthesis (prescriptive) tool – if complemented by other tools
• Applied to complex systems that are impossible to solve
mathematically

1/3/2022 Asst. Prof. Rupak Chaudhary 6


MATLAB Simulation of Vehicle Suspension System

1/3/2022 Asst. Prof. Rupak Chaudhary 7


Simplified Model
• Unsprung Mass: 320 kg
• Spring stiffness: 49kN/m
• Damping coefficient: 350 N-s/m
• Bump: 0.15m
• ωn= 2πfn fn = Natural Frequency
• ζ = damping ratio

1/3/2022 Asst. Prof. Rupak Chaudhary 8


Real and Unequal Roots

• When b2 > 4mk


• Here fluid Friction dominates, and results in sluggish behavior.
• This response is called overdamped.

1/3/2022 Asst. Prof. Rupak Chaudhary 9


Real and Equal Roots

• When b2 = 4mk
• Here fluid Friction and stiffness are balance , and results in
yielding the fasted possible non-oscillatory response.
• This response is called critically damped.

1/3/2022 Asst. Prof. Rupak Chaudhary 10


Complex roots

• When b2 < 4mk


• Here, stiffness dominates , and results in oscillatory behavior.
• This response is called under damped.

1/3/2022 Asst. Prof. Rupak Chaudhary 11


1/3/2022 Asst. Prof. Rupak Chaudhary 12
1/3/2022 Asst. Prof. Rupak Chaudhary 13
1/3/2022 Asst. Prof. Rupak Chaudhary 14
1/3/2022 Asst. Prof. Rupak Chaudhary 15
1/3/2022 Asst. Prof. Rupak Chaudhary 16
Variables

• sprung Mass: 300.5 kg


• UnSprung Mass: 40.3 kg
• Suspension Spring stiffness: 17474.9 N/m
• Tyre Spring constant: 179913.0 N/m
• Tyre damping coefficient: 3.7 N-s/m
• Suspension Damping coefficient: 1328 N-s/m

1/3/2022 Asst. Prof. Rupak Chaudhary 17


1/3/2022 Asst. Prof. Rupak Chaudhary 18
Project: Optimizing Vehicle Suspension Design through System Level
Simulation
Reference:
• https://www.mathworks.com/videos/optimizing-vehicle-suspension-design-through-
system-level-simulation-81865.html

1/3/2022 Asst. Prof. Rupak Chaudhary 19


Basic Matrix Operations

1/3/2022 Asst. Prof. Rupak Chaudhary 20


What do matrices do to vectors?

(0,2)
(2,1)
(3,1)

Asst. Prof. Rupak Chaudhary


Recall

(3,5)

(2,1)

Asst. Prof. Rupak Chaudhary


What do matrices do to vectors?

(3,5)
• The new vector is:
(2,1)
1) rotated
2) scaled

Asst. Prof. Rupak Chaudhary


Are there any special vectors
that only get scaled?

Asst. Prof. Rupak Chaudhary


Are there any special vectors
that only get scaled?

Try (1,1)

Asst. Prof. Rupak Chaudhary


Are there any special vectors
that only get scaled?

= (1,1)

Asst. Prof. Rupak Chaudhary


Are there any special vectors
that only get scaled?

= (3,3)

= (1,1)

Asst. Prof. Rupak Chaudhary


Are there any special vectors
that only get scaled?

• For this special vector,


multiplying by M is like
multiplying by a scalar.
= (3,3) • (1,1) is called an
eigenvector of M
• 3 (the scaling factor) is
= (1,1) called the eigenvalue
associated with this
eigenvector
Asst. Prof. Rupak Chaudhary
Are there any other eigenvectors?
• Yes! The easiest way to find is with MATLAB’s
eig command.

• Exercise: verify that (-1.5, 1) is also an


eigenvector of M.
• Note: eigenvectors are only defined up to a
scale factor.
– Conventions are either to make e’s unit vectors, or
make one of the elements
Asst. Prof. 1
Rupak Chaudhary
Step back:
Eigenvectors obey this equation

Asst. Prof. Rupak Chaudhary


Step back:
Eigenvectors obey this equation

Asst. Prof. Rupak Chaudhary


Step back:
Eigenvectors obey this equation

Asst. Prof. Rupak Chaudhary


Step back:
Eigenvectors obey this equation

• This is called the characteristic equation for l


• In general, for an N x N matrix, there are N
eigenvectors
Asst. Prof. Rupak Chaudhary
A physical example application of eigenvalues and
eigenvectors

1/3/2022 Asst. Prof. Rupak Chaudhary 34


• For m1 and m2Mass system
𝑑 2 𝑥1
𝑚1 2
= −𝑘 𝑥1 − 𝑥2
𝑑𝑡
𝑑 2 𝑥2
𝑚2 2
= −𝑘𝑥2 + 𝑘 𝑥1 − 𝑥2
𝑑𝑡
Rewriting the equation
𝑑 2 𝑥1
𝑚1 2
− 𝑘 𝑥2 − 𝑥1 = 0
𝑑𝑡
𝑑 2 𝑥2
𝑚2 2
− 𝑘 −2𝑥2 + 𝑥1 = 0
𝑑𝑡

1/3/2022 Asst. Prof. Rupak Chaudhary 35


• Let m1 = 10kg, m2 = 20kg, and k=15N/mm
𝑑2 𝑥1
10 𝑑𝑡 2 − 15 𝑥2 − 𝑥1 = 0
𝑑2 𝑥
20 𝑑𝑡 22 − 15 −2𝑥2 + 𝑥1 = 0

• From vibration theory, the solutions can be of the form


xi = Ai sin(ωt − φ)
where Ai is the amplitude of the vibration of mass i, ω is the frequency of vibration and φ is
the phase shift. Then the above equation can be given as

1/3/2022 Asst. Prof. Rupak Chaudhary 36


• Let ω2 = λ then Ax = λx
• In the above equation, λ is the eigenvalue and x is the eigenvector corresponding to λ. Natural
frequency of the system is given by ω = λ
• It is important because we do not want to have a force on the spring-mass system close to this
frequency as it would make the amplitude Ai very large and make the system unstable.

1/3/2022 Asst. Prof. Rupak Chaudhary 37


Model Analysis of Cantilever beam Using MATLAB

1/3/2022 Asst. Prof. Rupak Chaudhary 38

You might also like