Analysis of a Motorbike 2 DOF Dynamic System in Mechanical Engineering

Verified

Added on  2020/02/18

|17
|2333
|216
Project
AI Summary
This project presents a detailed analysis of a motorbike's second-degree-of-freedom (2 DOF) dynamic system. The study utilizes MATLAB and Simulink to model and analyze the motorbike's behavior, focusing on free and forced vibration responses. The project includes schematic diagrams, free body diagrams, and equations of motion derived using Newton's second law. The analysis explores natural frequencies, magnification, and transmissibility factors. The Simulink model demonstrates the 2 DOF system. Furthermore, the project discusses frequency domain analysis, comparing it to the time domain, and includes a design analysis comparing SDOF and 2-DOF systems. The project also addresses the limitations of the model, such as the lack of consideration for sharp turns and aerodynamic constraints, and suggests improvements for future designs, particularly in suspension and tire-road contact. The conclusion emphasizes the importance of stiffness, damping, and suspension geometry in the design of motorbike shock absorbers and suspension units.
tabler-icon-diamond-filled.svg

Contribute Materials

Your contribution can guide someone’s learning journey. Share your documents today.
Document Page
ABSTRACT
This paper seeks to discuss the second degree of freedom dynamic system modelling of
a motor bike. The key software used for analysis is the MATLAB software. Damping is vital in
preventing the uncontrollable oscillation of the system about its equilibrium point. Most of the
motorbikes are used to race on solely flat surfaces but others are exposed to uneven terrain. This
is done to ensure that the motorbike does not only survive good straight-line speed and ensures
that it can corner in a quick and safe manner. While operating in straight motion, the main
function of the suspension geometric system is to separate the unsprang mass. The mass defines
the chassis and rider from any road irregularities. This is accomplished using a soft set up with
low stiffness. For instance, if the motorbike encounters a bump in the road, the suspension is
compressed and the rider notices little or no discomfort, then the suspension or shock absorbers
are said to be intact. Former engineering designs may not have successfully accomplished to
solve the issue of a motorbike having to speed from straight line of motion to negotiating a sharp
bend. The flaw in the design leads to a suspension which is flexible in almost all directions a
situation which affects lateral stability (Cossalter, 2002). Unfortunately, the single DOF in
dynamic modelling does not adequately model all the systems.
tabler-icon-diamond-filled.svg

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
TABLE OF CONTENTS
ABSTRACT................................................................................................................................................1
INTRODUCTION AND ASSUMPTIONS.................................................................................................3
Introduction.............................................................................................................................................3
Assumptions............................................................................................................................................4
FREE VIBRATION RESPONSE................................................................................................................4
(i) Schematic diagram of free vibration................................................................................................4
(ii) Free body diagram of free vibration.............................................................................................4
(iii) Equation of motion as per newton’s second law of motion..........................................................4
(iv) Discussion....................................................................................................................................6
FORCED VIBRATION RESPONSE..........................................................................................................7
(i) Schematic diagram of forced vibration and free body diagram of free vibration.............................7
.................................................................................................................................................................7
(ii) Equation of motion as per newton’s second law of motion..........................................................7
(iii) Discussion....................................................................................................................................8
ANALYSIS.................................................................................................................................................8
MAGNIFICATION AND TRANSMISSIBILITY FACTOR......................................................................8
MODELLING THE SYSTEM IN SIMULINK.........................................................................................11
(iii) Minimum Scope: Reflection and Discussion.................................................................................14
CONCLUSION.........................................................................................................................................18
REFERENCES..........................................................................................................................................18
Document Page
INTRODUCTION AND ASSUMPTIONS
The free body system of a motorbike in the second degree of freedom, has the following
dynamic system modelling.
The values used in the calculations for this assignment were stipulated in the previous project
while tackling the single DOF tasks. The systems that require two independent coordinates to
describe their motion are called the two degree of freedom systems.
Assumptions
(a) The system has second degree of freedom.
(b) The springs and dampers are not fault and do not experience any drag.
(c) The resistance force is neglected
Document Page
(d) The motorbike remains steady even when traversing uneven terrains and when jumping
the ramp.
FREE VIBRATION RESPONSE
(i) Schematic diagram of free vibration
Damping is disregarded in this case as both forces are equal to each other.
(ii) Free body diagram of free vibration
(iii) Equation of motion as per newton’s second law of motion.
The equation of motion is denoted as shown in the series of equations below. The two degree of
freedom system has two normal modes of vibration that correspond to two natural frequencies.
For the free vibration analysis of the system, the following general illustration is adopted where
the forces are equal to 0, i.e. F1(t)=F2(t)=0. Additionally, the damping is equally disregarded
such that c1=c2=c3=0.
The resulting equations of motion are,
For an undamped system we wish to see the two natural frequencies that result. The following
equation is the characteristic equation whose solution yields the natural frequencies of the
system.
tabler-icon-diamond-filled.svg

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
(iv) Discussion
Using the values defined above one can compute the free vibration response of the system as
shown below,
Replacing with the actual values, the natural frequency is obtained as,
Document Page
FORCED VIBRATION RESPONSE
(i) Schematic diagram of forced vibration and free body diagram of free vibration
(ii) Equation of motion as per newton’s second law of motion
The application of the newton’s second law of motion to all the masses involved in the
equations of motion,
The first set of equation contains the terms involving x2 while the second one has terms
involving x1. These equations represent a system of two coupled second order differential
equation. One can expect that the motion of the m1 will influence the motion of m2 and vice
versa.
Re-writing the equations in matrix form we can obtain,
Where [m], [c], and [k] are the mass, damping and stiffness matrices respectively.
The functions x(t) and F(t) are the displacement and force vectors respectively.
Solving the equations further we obtain,
Document Page
(iii) Discussion
Replacing the equations with the actual values we obtain the frequency equation as,
The solutions to the above equation natural frequencies,
Natural frequency, 1,
=sqrt(1.45678)/3500
=0.064714
Natural frequency, 2,
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
=sqrt(3*1.45678)/3500
=0.0353365
ANALYSIS
The second degree of freedom system refers to a vibrating system that requires two coordinates
to describe its motion. These coordinates are the generalized coordinates when they are
independent of each other and equal in number to the degrees of freedom of the system. The
discussion of the 2 DOF systems follows the Alembert principle. The inertia force acts opposite
to the direction of acceleration. In the free body diagrams, it is evident that the inertia forces are
drawn to the left. The Lagrangian principle of kinetic energy and potential energy results in the
equation below,
The equation of motion for the free vibration case is obtained from the Lagrange principle such
that,
MAGNIFICATION AND TRANSMISSIBILITY FACTOR
The model used to study the system of a motorbike is as shown below. It is simplified as much as
possible so as to represent the system dynamics. It aims at demonstrating the dynamic behavior
of the actual system that can be simulated leading to a clearer view of the issues at hand.
Using the transfer function above, a bode plot is plotted when the actual measurements
are used. Using Matlab, we obtain the following script,
%% 2DOF transmissibility plots
%The transfer function is T(s)=x(s).k/F(s) =k/(ms^2+cs+k)
m=250;
k=35000;
c=1500;
Document Page
num=k;
den=[m c k];
sys=tf(num,den);
%% to obtain the plots
figure(1)
bode(sys)
figure(2)
margin(sys)
figure(3)
rlocus(sys)
solution
sys =
35000
------------------------
250 s^2 + 1500 s + 35000
Continuous-time transfer function.
The bode diagram
Document Page
The margin diagram obtained from the bode diagram
tabler-icon-diamond-filled.svg

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
The rlocus of the transfer function,
Document Page
MODELLING THE SYSTEM IN SIMULINK
The 2 DOF system is modelled in the Matlab Simulink platform as shown in the schematic
below,
The output of the Simulink to demonstrate the second degree of freedom system is as shown
below,
PART 2
Document Page
When riding the motorbike, one is bound to encounter frictional forces on the road. The rider
may pull of different stunts were the motorbike is no longer in a perpendicular position to the
road surface but at an angle less than 900. The longitudinal slip is the ratio between the slip
velocity and the forward velocity (Lot, 2004).
(i) Frequency domain analysis vs. time domain
The frequency domain analysis the system is evaluated on the basis of the frequencies. A linear
system undergoes Fourier transformation to convert a system from frequency domain to time
domain. The relationship between frequency and time is as shown in the equation below.
f = 1
T
Signals and wave are said to run on periods. The horizontal axis of the waveform depicts the
time range as the wave traverses. A period refers to the time taken for a wave to repeat itself. It is
closely related to frequency as shown in the equation above. There are two ways of describing a
signal, that is, time domain or frequency domain. In practice, the frequency domain is much
more preferred than the time domain. Frequency domain is derived from time domain analysis
using the Fourier series and Fourier transform techniques. The frequency domain gains
precedence to the time domain in practice as a result of the following merits,
(i) It is used to determine the behavior of the linear time invariant systems and
formulate transfer functions which are difficult to achieve in time domain
(ii) It is easy to determine the corrective measurement for noises created within a
system due to parameter variation.
(iii) It is possible to determine the absolute and relative stability of the closed loop
system.
(iv) The frequency domain can establish the transfer functions and techniques for
control in nonlinear systems.
(ii) Design analysis and comparison of SDOF and 2-DOF.
The system is unstable and it is not capable of maintaining the equilibrium position for the ride
environment. The system is improved by setting up a feedback control on the one side to
eradicate the difference between the torque and also due to the centrifugal effect and the effect of
the gyroscope when the torque is applied. Designers are yet to realize an important yet
tabler-icon-diamond-filled.svg

Paraphrase This Document

Need a fresh take? Get an instant paraphrase of this document with our AI Paraphraser
Document Page
ubiquitous concept of using functional design in modelling dynamic systems. They can
benchmark on such kind of design from the mass-spring-damper system design. The mass-
spring-damper system working principle is as illustrated by the mathematical equations below,
(iii) Minimum Scope: Reflection and Discussion
It is not easy to mathematically model the single-track vehicles. The library provides several
single-track vehicle models of different complexities. The models are composed of multibody
elements. The 2 DOF systems are, thereafter, modelled to demonstrate the pitch and translation
DOF of the motorbike body.
The multi-degree of freedom systems
Many engineering systems are continuous and have infinite number of degrees of freedom. The
continuous systems can be used to show the multi-degree of freedom systems in this case. The
eigenvalue or the characteristic value problem is expressed as shown in the equation below,
The quantities that show the squared natural frequencies are the eigenvalues or the characteristic
values indicating the square of the free vibration frequencies.
Document Page
Stiffness and damping computation where 3 masses are involved,
mg=kx
Assuming that the displacement by the third mass is 0.5m
k 2=m2 g
x2
¿ 12509.81
0.5
¿ 24525 N
m
The natural frequency, ωn= k
m= 4.42 rad
s
The damping ratio, ε = C2
Cc
Document Page
There is an assumption that based on the critical capacity, the damping ration is said to be 0.6.
Cc=2m2ωn
The Simulink model is plotted to determine the behavior of the three-mass model with 4 DOF.
Non-linearity’s are added and the damping to the Simulink model is done to make it more
reflective of the real situation. There are a few shortfalls on the suspension design,
(i) The model does not cater for situations where the rider is negotiating very sharp
corners. This is the point where the wheel tilts at an angle. There was a common
assumption that the entire tire mass was placed on the ground optimally.
(ii) The model fails to account for accidents and improvements made to overcome aero-
constraints that impact the motorbike while in motion.
To improve the accuracy of the model or the performance of the bike’s suspension it is crucial
for the designers to cater for the aerodynamics section of the motorcycle. This refers to the
inclusion of gyroscopic precision on the operation of the motorcycle to ensure that the passenger
is safe at all times despite the speed and angles they ride. The model should have put more
emphasis on the tire-road contact geometry as well as other tire related attributes to ensure that
the system runs effectively.
CONCLUSION
In a nutshell, the forced and free vibration responses on the system were analyzed and the
conclusion was that the free vibration only experience harmonics at the beginning of the
translational motion. The design of the motorbike shock absorbers and suspension unit for the
two-degree freedom is described on the basis of the stiffness, damping and suspension geometry.
The flaw in the design leads to a suspension which is flexible in almost all directions a situation
which affects lateral stability (Cossalter, 2002). Stiffness is employed as a suspension element
and contributes to the operations of the motorbike immensely. It follows the rule of elasticity
such as the elastic properties of rubber and the compressibility of air or other gases. The number
of degrees of freedom is associated with the natural frequencies where each is associated with its
own mode shape.
tabler-icon-diamond-filled.svg

Secure Best Marks with AI Grader

Need help grading? Try our AI Grader for instant feedback on your assignments.
Document Page
REFERENCES
Corno, M. & Savaresi, S. M., 2010. Experimental Identification of Engine-to-slip Dynamics for
Traction Control Applications in a Sport Motorbike. European Journal of Control, pp. 88-108.
Cossalter, V., 2002. Motorcycle Dynamics. s.l.:GreendaleL: Race Dynamics.
Dornbirn & Schmitt, B. T., 2009. Modelling of a Motorcycle in Dymola/Modelica. Zurich: FH
Vorarlberg; Vorarlberg University of Applied Sciences.
Lot, R., 2004. Theoretical and Experimental Aspects, Meccanica. A motorcycle Tire Model for
Dynamic Simulations, pp. 207-220.
chevron_up_icon
1 out of 17
circle_padding
hide_on_mobile
zoom_out_icon
logo.png

Your All-in-One AI-Powered Toolkit for Academic Success.

Available 24*7 on WhatsApp / Email

[object Object]