SlideShare a Scribd company logo
1 of 19
Download to read offline
Analysis of Active and Passive Suspension Systems in Luxury SUVs
EGME 476A-52 Dynamic Systems and Controls Laboratory
California State University Fullerton
Kristopher Kerames
Due: 7/3/2021
Submitted to: Yong Seok Park, Ph.D.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 2 of 19
Abstract
This experiment explores how proportional (P), derivative (D), and integral (I) controllers can be combined to
deliver the best driving experience in a luxury, performance sport utility vehicle (SUV). The combinations of
controllers used were PD, PI, and PID controllers. These were also compared to a passive suspension system
without any form of PID control. Governing equations of motion were developed for a quarter-SUV going
over a single bump, and the passive suspension system – without a PID controller – was simulated in
SIMULINK. The Zeigler-Nichols Method was used to tune the PID, and simulate all combinations of the
PID-controlled system in SIMULINK. In each case, the SUV settled close to a steady-state value of 0 m. The
PID controller allowed for the fastest rise time, the lowest peak amplitude of 4.1 mm, and the fastest 2%
settling time of 3.85 sec. For comparison, the system with the passive suspension had a peak amplitude of
32.6 mm which was also the largest of all systems tested. Having such a low peak amplitude results in the PID
controller offering a much more comfortable ride to the passengers. PID controllers are more expensive than
the other options considered in this experiment, but considering the context, they are the best option. In the
luxury SUV class, components that are integral to the driving experience are expected by consumers to be
factored into the cost. Therefore, cost is likely to be met with demand when including components like the
PID controller.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 3 of 19
Table of Contents
Abstract................................................................................................................................................. 2
List of Symbols and Units..................................................................................................................... 4
Introduction........................................................................................................................................... 5
Theory................................................................................................................................................... 6
Test Setup and Procedure...................................................................................................................... 8
Sample Calculations............................................................................................................................ 10
Error Analysis ..................................................................................................................................... 11
Results................................................................................................................................................. 12
Discussion and Conclusion................................................................................................................. 14
References........................................................................................................................................... 15
Appendix A......................................................................................................................................... 16
Appendix B......................................................................................................................................... 18
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 4 of 19
List of Symbols and Units
Name of Factor Symbol Unit
Damping Coefficient c 𝑁 ∙ 𝑠/𝑚
Spring Stiffness k 𝑁/𝑚
Ground Height g 𝑚
Initial Height 𝑦𝑖 m
Marginal Stability 𝑘∗
N/m
Period 𝑇∗
seconds
Integral Controller 𝑘𝑖 𝑁/𝑚
Derivative Controller 𝑘𝑑 𝑁/𝑚
Proportional Controller 𝑘𝑝 𝑁/𝑚
Force 𝐹 𝑁
Acceleration 𝑎 𝑚/𝑠2
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 5 of 19
Introduction
One of the key considerations to make when designing a car is the suspension system. This system
affects important characteristics of a car including its handling, level of comfort, and durability. Components
that make up the suspension system are the shock absorbers, springs, and mechanical linkages connecting
them to the rest of the car. Parameters that can be changed in this system include the damping coefficient,
spring constant, and mass of the components it consists of. These are called passive parameters and cannot be
actively changed while driving. When left to their own devices, passive components alone cannot always
achieve the desired driving characteristics. In the case of a luxury vehicle, a comfortable ride is desirable
without compromising on handling. Reducing the spring constant can create a more comfortable ride, but will
hinder the car’s handling. In cases like this, an active suspension system can be used to adjust the
characteristics of the suspension according to certain inputs. Active suspension systems can use proportional
integral derivative controllers (PIDs) which allow stiffer springs to be used for improving handling while the
PID controller actively adjusts the suspension response making the ride more comfortable. PIDs apply
corrective adjustments to a system in a feedback loop and can mitigate oscillations in the suspension system
caused by bumps in the road. P, I, and D controllers can be combined in any order. The P-controller linearly
relates the controller output and the system error in order to reduce rise times. The I-controller removes
deviations in the output in order to reduce the error in the system’s steady-state value. The D-controller
measures the change in error and can allow the PID to control the response rate, minimizing the percent
overshoot. This experiment will focus on separately using a PD, PI, and PID controller to optimize the
suspension system in a luxury, high-performance (SUV). Luxury SUVs have been increasing in production,
and a relatively small amount of research has been dedicated, specifically, to cars in this high-demand class.
Simulations in this study will focus on luxury SUVs, as research dedicated to improving these vehicles would
benefit many auto manufacturers. The methods used are based on an article on modeling car suspension
systems in SIMULINK [1]. However, the article covers different types of controllers and parameters than this
experiment does, and it generalizes the simulation to model a typical car. The main objective of this
experiment is to compare the three different PID configurations and a passive suspension system in a quarter-
car-model to determine which is most effective in the context of a luxury, performance SUV.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 6 of 19
Theory
The suspension system can be modeled in a quarter-car going over a bump as in Figure 1,
Figure 1. Diagram of a quarter-car going over a bump defined by 𝑔.
𝑚2 is the mass of the car’s frame, and 𝑚1 is the mass of the suspension components, including the wheel. The
height of the bump, 𝑔, is defined by the piecewise function,
𝑔 = {
0, 0 ≤ 𝑡 < 1
5𝑡 − 5, 1 ≤ 𝑡 ≤ 1.25
0, 1.25 < 𝑡
(1)
𝑢 is the input of the PID controller. 𝑘2 is the spring stiffness of the suspension system, and 𝑘1 is the spring
stiffness. 𝑐2 is the damping coefficient of the dampers in the suspension system, and 𝑐1 is the damping
coefficient of the tire.
The equations of motion (EOM) can be found from the free body diagrams. The free body diagram of 𝑚2is in
Figure 2, and the free body diagram of 𝑚1 is in Figure 3.
Figure 2. Free body diagram of the car’s mass.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 7 of 19
Figure 3. Free body diagram of the suspension system’s mass.
Using Newton’s 2nd
Law of motion,
Σ 𝐹
⃗ = 𝑚𝑎
⃗ (2)
The EOM for 𝑚1 becomes,
𝑚1𝑦̈1 = − 𝑐2(𝑦̇2 − 𝑦̇1) − 𝑐1(𝑦̇1 − 𝑔̇ ) + 𝑘2(𝑦2 − 𝑦1) − 𝑘1(𝑦1 − 𝑔) − 𝑢
⇒ 𝑦̈1 =
1
𝑚1
[− 𝑐2(𝑦̇2 − 𝑦̇1) − 𝑐1(𝑦̇1 − 𝑔̇ ) + 𝑘2(𝑦2 − 𝑦1) − 𝑘1(𝑦1 − 𝑔) − 𝑢]
(3)
The EOM for 𝑚2 is,
𝑚2𝑦̈2 = −𝑐2(𝑦̇2 − 𝑦̇1) − 𝑘2(𝑦2 − 𝑦1) + 𝑢
⇒ 𝑦̈2 =
1
𝑚2
[−𝑐2(𝑦̇2 − 𝑦̇1) − 𝑘2(𝑦2 − 𝑦1) + 𝑢]
(4)
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 8 of 19
Test Setup and Procedure
Define all constants in MATLAB that are used in the SIMULINK models.
Run all simulations using a 0.001 sec fixed time-step.
1. Open SIMULINK to set up a system representing the passive suspension components that uses the
EOMs defined in Equations (3) and (4). Set 𝑢 = 0.
2. Find 𝑘∗
by adding a feedback loop to the system in step 1 that uses 𝑘𝑝 as a gain value. Adjust the gain
value until the response is marginally stable. At that point, 𝑘∗
= 𝑘𝑝. An example of the marginally
stable response can be seen in Figure
3. Find 𝑇∗
by using the measuring tool to measure the period of the marginally stable system. The graph
with the measuring tool should look as it does in Figure 4.
4. Create a PD-controlled system by adding 𝑘𝑝 and 𝑘𝑑 gains to the loop to form a PD controller.
5. Create a PI-controlled system by adding 𝑘𝑝 and 𝑘𝑖 gains to the loop to form a PI controller.
6. Create a PID-controlled system by adding a built-in PID controller from SIMULINK.
7. Tune the PID controller using the parameters in the “tune” window. These values can be seen in the
bottom-right of Figure 5.
8. For all simulations, determine the values of peak response, peak time, percent overshoot, settling
time, and steady-state error.
The complete set of SIMULINK block diagrams can be found in Appendix A.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 9 of 19
Figure 4. Marginally stable system with measuring tool in use.
Figure 5. Control parameters are in the bottom-right of this window.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 10 of 19
Sample Calculations
The following constants have values which would typically be seen in a luxury vehicle. These constants are
based off of parameters mentioned in a study on ride comfort [2].
• 𝑚1 = 20 𝑘𝑔
• 𝑚2 = 1800 𝑘𝑔
• 𝑘1 = 500000 𝑁/𝑚
• 𝑘2 = 16812
𝑁
𝑚
• 𝑐1 = 2500 𝑁 ∙ 𝑠/𝑚
• 𝑐2 = 1000 𝑁 ∙ 𝑠/𝑚
The following parameters are for the active suspension system responses using the Zeigler-Nichols Method.
The value, 𝑘∗
, that makes the P-controlled loop marginally stable is,
𝑘∗
= 7.75 × 103
𝑁/𝑚
The period, 𝑇∗
, is obtained from the plot of the marginally stable system and has a value of,
𝑇∗
= 1.877 𝑠𝑒𝑐
This period was found by using the measuring device in SIMULINK to measure the difference in heights
between peaks in the plot of the marginally stable response (Fig. 4).
For the system using the PD controller, the proportional response is,
𝑘𝑝 = 0.45𝑘∗
= 0.45(7.75 × 103
𝑁/𝑚) = 3487.5 𝑁/𝑚
The derivative gain for this system is,
𝑘𝑑 = 0.125 ∗ 𝑘∗
∗ 𝑇∗
= 0.125 (7.75 × 103 𝑁
𝑚
)(1.877 𝑠𝑒𝑐 ) = 1818.34 𝑁/𝑚
For the PI controlled system, the proportional stiffness is the same as it is for the PD controlled system,
𝑘𝑝 = 3487.5 𝑁/𝑚
And the integral gain is,
𝑘𝑖 =
1.2 𝑘∗
𝑇∗
=
1.2 (7.75 × 103 𝑁
𝑚
)
1.877 𝑠𝑒𝑐
= 4954.71 𝑁/𝑚
MATLAB script used to calculate the responses can be found in the Appendix B.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 11 of 19
Error Analysis
Steady state errors were calculated using 2% settling values. Results obtained in this error analysis can also be
found in tables 1 and 2.
A. Error analysis of passive system
𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100
𝑦𝑚𝑎𝑥 − 𝑦𝑖
𝑦𝑖
= 100
0.0326 − 0
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = |𝑦𝑜𝑢𝑡 − 𝑦𝑖| = | − 6.45 × 10−4
− 0| = 6.45 × 10−4
𝑚
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100
|𝑦𝑜𝑢𝑡 − 𝑦𝑖|
𝑦𝑖
= 100
|6.45 × 10−4
− 0|
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
B. Error analysis of active system
PD-controller:
𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100
0.0245 − 0
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 4.90 × 10−4
− 0| = 4.90 × 10−4
𝑚
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100
|5.0983 − 0|
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
PI-controller:
𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100
0.0293 − 0
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 1.14 × 10−4
− 0| = 1.14 × 10−4
𝑚
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100
|1.14 × 10−4
− 0|
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
PID-controller:
𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100
0.0041 − 0
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 8.24 × 10−5
− 0| = 8.24 × 10−5
𝑚
𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100
|8.24 × 10−5
− 0|
0
= 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 12 of 19
Results
The passive response was stable, but had the highest peak value at 0.0326 (Fig. 6 and Table 1). The
PID-controlled response had the lowest peak value by a significant margin (Fig. 6). The PI-controlled system
had the longest 2% settling time when compared to all other systems while the PID-controlled system had the
smallest 2% settling time (Table 1). The plot of the marginally stable response has a constant amplitude, so it
does not reach a steady-state value (Fig. 7). All other curves approached a steady-state value of 0 m.
Figure 6. Plot of all responses to passive and active suspension systems.
0 5 10 15 20 25 30
Time (s)
-0.03
-0.02
-0.01
0
0.01
0.02
0.03
0.04
Height
(m)
All Passive and Active Responses
Passive Response
PD Controlled Response
PI Controlled Response
PID Controlled Response
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 13 of 19
Figure 7. Plot of the marginally stable system operating at k*
.
Table 1. Closed Loop Step Response Values
Passive PD Controller PI Controller PID Controller
Rise Time (sec) 0.0022 5.53 × 10−10 0.001 0
Peak Response (m) 0.0326 0.0245 0.0293 0.0041
Peak Time (sec) 1.65 1.58 1.6 1.31
Percent Overshoot (%) 475810 1.4 × 1012
2.18 × 104
5.155 × 1019
Settling Time (sec) 14.90 6.37 25.67 3.8456
Steady-State Error (m) 6.45 × 10−4
4.90 × 10−4
1.14 × 10−4
8.24 × 10−5
Steady-State Error Percentage (%) undefined undefined undefined undefined
Note: The percentages on the order of ~104
or higher were calculated in MATLAB, but are in reality
undefined values.
0 10 20 30 40 50 60 70 80 90 100
Time (s)
-0.04
-0.03
-0.02
-0.01
0
0.01
0.02
0.03
0.04
Height
(m)
Marginally Stable Response
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 14 of 19
Discussion and Conclusion
Each configuration for the suspension system offers different strengths and weaknesses. The
passive suspension system reached its steady-state value in a similar amount of time as the more
expensive PI and PD controlled systems. Although it reached steady-state slower than the PID
controlled system did, it can be implemented at a lower cost than the PID can. A key drawback of
the passive suspension system is that it has the highest peak value. This means it would cause the
passengers of the SUV to move a greater distance up and down as the car goes over bumps. This
would not be ideal for the passengers. The PI controller resulted in the longest settling time, and only
had the third lowest peak amplitude of the four options. Its best performance measure is its steady-
state error value (Table 1), and that was only second best behind the PIDs steady-state error value.
Given that it is relatively expensive compared to a passive suspension system, but offers no
significant benefit, it is one of the worst solutions for a luxury SUV. The PD controlled system has
the second smallest 2% settling time, and the second lowest peak value. Given that it costs less to
use in the SUV than the PID does, it is an alternative that strikes a balance between cost and benefit.
Nonetheless, the PID controller remains the best option among the four for this application. In the
market for luxury, performance SUVs, consumers expect costs to be increased by features that
materially improve the driving experience. The simulations in this experiment support that the PID
controller offers the best driving experience by a large margin. Given that luxury SUVs are in
increasingly high demand, higher costs of using the PID are likely to meet the demand of consumers
looking for this class of vehicle.
There is a large amount of research simulating quarter-car models, but few focus on the
luxury SUV market. As this is an emerging market, auto manufacturers would benefit from this
research, as well as future research that improves upon the simulations in this experiment. One area
in which there is room for improvement would be the input from the road. The bump in this
experiment, expressed by 𝑔, has a triangular shape. As there are many different types of
imperfections in road surfaces, future research would benefit from exploring additional road features
and how they affect the system.
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 15 of 19
References
[1] “Suspension: Simulink Controller Design,” Control Tutorials for MATLAB and Simulink - Suspension:
Simulink Control, (2021). [Online]. Available:
https://ctms.engin.umich.edu/CTMS/index.php?example=Suspension§ion=SimulinkControl. [Accessed: 01-
Jul-2021].
[2] A. Tiwari, S. More, and A. Shahane, (2018). “Study of Road Holding and Ride Comfort Analysis With
the Help of Quarter Car Model”. International Journal of Scientific Development
t and Research. Vol. 3. Available: https://www.ijsdr.org/papers/IJSDR1812050.pdf
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 16 of 19
Appendix A
SIMULINK Models
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 17 of 19
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 18 of 19
Appendix B
MATLAB Script
%EGME 476A Final Lab
%Author: Kit Kerames
clc; clear; close all
%Constants
m1=20;
m2=1800;
k1=500000;
k2=16812;
c1=2500;
c2=1000;
% Makes system margnally stable
KpStar=7.75e3;
Tstar=1.877;
KdMS=0;
% Makes system PD controlled
Kp=0.45*KpStar;
Kd=0.125*KpStar*Tstar;
% Makes system PI controlled
Ki=KpStar*Tstar/1.2;
%Runs simulation
sim('EGME476AFinalLab')
%Plots passive system response
figure(1)
plot(ans.y2);
hold on
plot(ans.y2PD);
plot(ans.y2PI);
plot(ans.y2PID);
legend('Passive Response', 'PD Controlled Response',...
'PI Controlled Response', 'PID Controlled Response')
grid on
title('All Passive and Active Responses');
xlabel('Time (s)')
ylabel('Height (m)');
%Plots marginally stable response
figure(2)
plot(ans.y2MS);
grid on
title('Marginally Stable Response');
xlabel('Time (s)')
ylabel('Height (m)');
%Table information
PASsystem=stepinfo(ans.y2.data,ans.y2.time);
PDsystem=stepinfo(ans.y2PD.data,ans.y2PD.time);
EGME 476A-52 Analysis of Active and Passive Suspension Systems
Kristopher Kerames Page 19 of 19
PIsystem=stepinfo(ans.y2PI.data,ans.y2PI.time);
PIDsystem=stepinfo(ans.y2PID.data,ans.y2PID.time);
%Calculating steady-state values at 2% settling
PASss=ans.y2.data(find(ans.y2.time==14.9));
PDss=ans.y2PD.data(find(ans.y2PD.time==6.37));
PIss=ans.y2PI.data(find(ans.y2PI.time==29.97));
PIDss=ans.y2PID.data(find(ans.y2PID.time==3.85));

More Related Content

What's hot

Process Control Final Report
Process Control Final ReportProcess Control Final Report
Process Control Final ReportLogan Williamson
 
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAV
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAVIRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAV
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAVIRJET Journal
 
Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Zac Darcy
 
Energies 08-06820
Energies 08-06820Energies 08-06820
Energies 08-06820AmineHarir2
 
Speed control of ward leonard layout system using h infinity optimal control
Speed control of ward leonard layout system using h  infinity optimal controlSpeed control of ward leonard layout system using h  infinity optimal control
Speed control of ward leonard layout system using h infinity optimal controlMustefa Jibril
 
Linear Control Technique for Anti-Lock Braking System
Linear Control Technique for Anti-Lock Braking SystemLinear Control Technique for Anti-Lock Braking System
Linear Control Technique for Anti-Lock Braking SystemIJERA Editor
 
1 s2.0-s0957415814001354-main
1 s2.0-s0957415814001354-main1 s2.0-s0957415814001354-main
1 s2.0-s0957415814001354-mainrabeenanchal
 
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...Giacomo Risitano
 
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...Design Error-based Linear Model-free Evaluation Performance Computed Torque C...
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...Waqas Tariq
 
07 15 sep14 6532 13538-1-rv-edit_
07 15 sep14 6532 13538-1-rv-edit_07 15 sep14 6532 13538-1-rv-edit_
07 15 sep14 6532 13538-1-rv-edit_IAES-IJPEDS
 
Shared Steering Control between a Driver and an Automation: Stability in the ...
Shared Steering Control between a Driver and an Automation: Stability in the ...Shared Steering Control between a Driver and an Automation: Stability in the ...
Shared Steering Control between a Driver and an Automation: Stability in the ...paperpublications3
 
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM Drives
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM DrivesComparison of Different Rules Based Fuzzy Logic Controller for PMSM Drives
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM DrivesIOSR Journals
 
REU spring 2016
REU spring 2016REU spring 2016
REU spring 2016Jack Yuan
 

What's hot (18)

Design of H_∞ for induction motor
Design of H_∞ for induction motorDesign of H_∞ for induction motor
Design of H_∞ for induction motor
 
Process Control Final Report
Process Control Final ReportProcess Control Final Report
Process Control Final Report
 
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAV
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAVIRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAV
IRJET- A Performance of Hybrid Control in Nonlinear Dynamic Multirotor UAV
 
Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...Optimal and pid controller for controlling camera’s position in unmanned aeri...
Optimal and pid controller for controlling camera’s position in unmanned aeri...
 
Energies 08-06820
Energies 08-06820Energies 08-06820
Energies 08-06820
 
Speed control of ward leonard layout system using h infinity optimal control
Speed control of ward leonard layout system using h  infinity optimal controlSpeed control of ward leonard layout system using h  infinity optimal control
Speed control of ward leonard layout system using h infinity optimal control
 
Linear Control Technique for Anti-Lock Braking System
Linear Control Technique for Anti-Lock Braking SystemLinear Control Technique for Anti-Lock Braking System
Linear Control Technique for Anti-Lock Braking System
 
1 s2.0-s0957415814001354-main
1 s2.0-s0957415814001354-main1 s2.0-s0957415814001354-main
1 s2.0-s0957415814001354-main
 
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...
SIMULATION OF THE DYNAMIC MODEL OF A VEHICLE AND FEM ANALYSIS ABOUT ITS DRIVE...
 
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...Design Error-based Linear Model-free Evaluation Performance Computed Torque C...
Design Error-based Linear Model-free Evaluation Performance Computed Torque C...
 
07 15 sep14 6532 13538-1-rv-edit_
07 15 sep14 6532 13538-1-rv-edit_07 15 sep14 6532 13538-1-rv-edit_
07 15 sep14 6532 13538-1-rv-edit_
 
D011113035
D011113035D011113035
D011113035
 
Shared Steering Control between a Driver and an Automation: Stability in the ...
Shared Steering Control between a Driver and an Automation: Stability in the ...Shared Steering Control between a Driver and an Automation: Stability in the ...
Shared Steering Control between a Driver and an Automation: Stability in the ...
 
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM Drives
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM DrivesComparison of Different Rules Based Fuzzy Logic Controller for PMSM Drives
Comparison of Different Rules Based Fuzzy Logic Controller for PMSM Drives
 
paper
paperpaper
paper
 
energies-13-02795.pdf
energies-13-02795.pdfenergies-13-02795.pdf
energies-13-02795.pdf
 
REU spring 2016
REU spring 2016REU spring 2016
REU spring 2016
 
Basics of control system
Basics of control system Basics of control system
Basics of control system
 

Similar to Best suited suspension system for luxury SUVs

Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Model
Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car ModelMathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Model
Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Modelijsrd.com
 
International Journal of Information Technology, Control and Automation (IJITCA)
International Journal of Information Technology, Control and Automation (IJITCA)International Journal of Information Technology, Control and Automation (IJITCA)
International Journal of Information Technology, Control and Automation (IJITCA)IJITCA Journal
 
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLES
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLESIMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLES
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLESIJITCA Journal
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...IJITCA Journal
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...IJITCA Journal
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...IJITCA Journal
 
Improved Control Design for Autonomous Vehicles
Improved Control Design for Autonomous VehiclesImproved Control Design for Autonomous Vehicles
Improved Control Design for Autonomous VehiclesIJITCA Journal
 
Neural network based controllers design for nonlinear quarter car active susp...
Neural network based controllers design for nonlinear quarter car active susp...Neural network based controllers design for nonlinear quarter car active susp...
Neural network based controllers design for nonlinear quarter car active susp...Mustefa Jibril
 
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...IRJET Journal
 
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...IRJET Journal
 
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdf
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdfSpeed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdf
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdfThienMai14
 
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...IRJET Journal
 
controlling the vibration of automobile suspension system using pid controller
controlling the vibration of automobile suspension system using pid controllercontrolling the vibration of automobile suspension system using pid controller
controlling the vibration of automobile suspension system using pid controllersiva kumar
 
IRJET- Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...
IRJET-  	  Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...IRJET-  	  Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...
IRJET- Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...IRJET Journal
 
Stability Control System for a Two-Wheeler
Stability Control System for a Two-WheelerStability Control System for a Two-Wheeler
Stability Control System for a Two-WheelerIOSRJEEE
 
IRJET- Experimental Analysis of Passive/Active Suspension System
IRJET- Experimental Analysis of Passive/Active Suspension SystemIRJET- Experimental Analysis of Passive/Active Suspension System
IRJET- Experimental Analysis of Passive/Active Suspension SystemIRJET Journal
 

Similar to Best suited suspension system for luxury SUVs (20)

Suspension system
Suspension systemSuspension system
Suspension system
 
D011121524
D011121524D011121524
D011121524
 
Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Model
Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car ModelMathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Model
Mathematical Modeling and Simulation of Two Degree of Freedom Quarter Car Model
 
International Journal of Information Technology, Control and Automation (IJITCA)
International Journal of Information Technology, Control and Automation (IJITCA)International Journal of Information Technology, Control and Automation (IJITCA)
International Journal of Information Technology, Control and Automation (IJITCA)
 
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLES
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLESIMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLES
IMPROVED CONTROL DESIGN FOR AUTONOMOUS VEHICLES
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...
 
The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...The International Journal of Information Technology, Control and Automation (...
The International Journal of Information Technology, Control and Automation (...
 
Improved Control Design for Autonomous Vehicles
Improved Control Design for Autonomous VehiclesImproved Control Design for Autonomous Vehicles
Improved Control Design for Autonomous Vehicles
 
Neural network based controllers design for nonlinear quarter car active susp...
Neural network based controllers design for nonlinear quarter car active susp...Neural network based controllers design for nonlinear quarter car active susp...
Neural network based controllers design for nonlinear quarter car active susp...
 
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
Adaptive Cruise Control System for Vehicle Using Model Predictive Control Alg...
 
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...IRJET- 	  Generation of Alternative Solutions for Differential-Less Drive Sys...
IRJET- Generation of Alternative Solutions for Differential-Less Drive Sys...
 
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdf
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdfSpeed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdf
Speed_Control_of_DC_Motor_Using_Particle_Swarm_Opt.pdf
 
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...
Effect of Rack Friction, Column Friction and Vehicle Speed on Electric Power ...
 
controlling the vibration of automobile suspension system using pid controller
controlling the vibration of automobile suspension system using pid controllercontrolling the vibration of automobile suspension system using pid controller
controlling the vibration of automobile suspension system using pid controller
 
sirishfinalpropsal
sirishfinalpropsalsirishfinalpropsal
sirishfinalpropsal
 
IRJET- Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...
IRJET-  	  Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...IRJET-  	  Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...
IRJET- Hybrid Intelligent Controller for Interior Permanent Magnet Synchr...
 
Stability Control System for a Two-Wheeler
Stability Control System for a Two-WheelerStability Control System for a Two-Wheeler
Stability Control System for a Two-Wheeler
 
publication (ramesh)
publication (ramesh)publication (ramesh)
publication (ramesh)
 
IRJET- Experimental Analysis of Passive/Active Suspension System
IRJET- Experimental Analysis of Passive/Active Suspension SystemIRJET- Experimental Analysis of Passive/Active Suspension System
IRJET- Experimental Analysis of Passive/Active Suspension System
 

More from KristopherKerames

Carbon Fiber Fuselage Research Report
Carbon Fiber Fuselage Research ReportCarbon Fiber Fuselage Research Report
Carbon Fiber Fuselage Research ReportKristopherKerames
 
Research proposal: Thermoelectric cooling in electric vehicles
Research proposal: Thermoelectric cooling in electric vehicles Research proposal: Thermoelectric cooling in electric vehicles
Research proposal: Thermoelectric cooling in electric vehicles KristopherKerames
 
Titan Rover CDR Presentation
Titan Rover CDR PresentationTitan Rover CDR Presentation
Titan Rover CDR PresentationKristopherKerames
 
Titan Rover Senior Design Project Critical Design Review 2021
Titan Rover Senior Design Project Critical Design Review 2021Titan Rover Senior Design Project Critical Design Review 2021
Titan Rover Senior Design Project Critical Design Review 2021KristopherKerames
 
Optimal trajectory to Saturn in ion-thruster powered spacecraft
Optimal trajectory to Saturn in ion-thruster powered spacecraftOptimal trajectory to Saturn in ion-thruster powered spacecraft
Optimal trajectory to Saturn in ion-thruster powered spacecraftKristopherKerames
 

More from KristopherKerames (6)

VEXU Robot Designs
VEXU Robot DesignsVEXU Robot Designs
VEXU Robot Designs
 
Carbon Fiber Fuselage Research Report
Carbon Fiber Fuselage Research ReportCarbon Fiber Fuselage Research Report
Carbon Fiber Fuselage Research Report
 
Research proposal: Thermoelectric cooling in electric vehicles
Research proposal: Thermoelectric cooling in electric vehicles Research proposal: Thermoelectric cooling in electric vehicles
Research proposal: Thermoelectric cooling in electric vehicles
 
Titan Rover CDR Presentation
Titan Rover CDR PresentationTitan Rover CDR Presentation
Titan Rover CDR Presentation
 
Titan Rover Senior Design Project Critical Design Review 2021
Titan Rover Senior Design Project Critical Design Review 2021Titan Rover Senior Design Project Critical Design Review 2021
Titan Rover Senior Design Project Critical Design Review 2021
 
Optimal trajectory to Saturn in ion-thruster powered spacecraft
Optimal trajectory to Saturn in ion-thruster powered spacecraftOptimal trajectory to Saturn in ion-thruster powered spacecraft
Optimal trajectory to Saturn in ion-thruster powered spacecraft
 

Recently uploaded

Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 

Recently uploaded (20)

Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 

Best suited suspension system for luxury SUVs

  • 1. Analysis of Active and Passive Suspension Systems in Luxury SUVs EGME 476A-52 Dynamic Systems and Controls Laboratory California State University Fullerton Kristopher Kerames Due: 7/3/2021 Submitted to: Yong Seok Park, Ph.D.
  • 2. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 2 of 19 Abstract This experiment explores how proportional (P), derivative (D), and integral (I) controllers can be combined to deliver the best driving experience in a luxury, performance sport utility vehicle (SUV). The combinations of controllers used were PD, PI, and PID controllers. These were also compared to a passive suspension system without any form of PID control. Governing equations of motion were developed for a quarter-SUV going over a single bump, and the passive suspension system – without a PID controller – was simulated in SIMULINK. The Zeigler-Nichols Method was used to tune the PID, and simulate all combinations of the PID-controlled system in SIMULINK. In each case, the SUV settled close to a steady-state value of 0 m. The PID controller allowed for the fastest rise time, the lowest peak amplitude of 4.1 mm, and the fastest 2% settling time of 3.85 sec. For comparison, the system with the passive suspension had a peak amplitude of 32.6 mm which was also the largest of all systems tested. Having such a low peak amplitude results in the PID controller offering a much more comfortable ride to the passengers. PID controllers are more expensive than the other options considered in this experiment, but considering the context, they are the best option. In the luxury SUV class, components that are integral to the driving experience are expected by consumers to be factored into the cost. Therefore, cost is likely to be met with demand when including components like the PID controller.
  • 3. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 3 of 19 Table of Contents Abstract................................................................................................................................................. 2 List of Symbols and Units..................................................................................................................... 4 Introduction........................................................................................................................................... 5 Theory................................................................................................................................................... 6 Test Setup and Procedure...................................................................................................................... 8 Sample Calculations............................................................................................................................ 10 Error Analysis ..................................................................................................................................... 11 Results................................................................................................................................................. 12 Discussion and Conclusion................................................................................................................. 14 References........................................................................................................................................... 15 Appendix A......................................................................................................................................... 16 Appendix B......................................................................................................................................... 18
  • 4. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 4 of 19 List of Symbols and Units Name of Factor Symbol Unit Damping Coefficient c 𝑁 ∙ 𝑠/𝑚 Spring Stiffness k 𝑁/𝑚 Ground Height g 𝑚 Initial Height 𝑦𝑖 m Marginal Stability 𝑘∗ N/m Period 𝑇∗ seconds Integral Controller 𝑘𝑖 𝑁/𝑚 Derivative Controller 𝑘𝑑 𝑁/𝑚 Proportional Controller 𝑘𝑝 𝑁/𝑚 Force 𝐹 𝑁 Acceleration 𝑎 𝑚/𝑠2
  • 5. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 5 of 19 Introduction One of the key considerations to make when designing a car is the suspension system. This system affects important characteristics of a car including its handling, level of comfort, and durability. Components that make up the suspension system are the shock absorbers, springs, and mechanical linkages connecting them to the rest of the car. Parameters that can be changed in this system include the damping coefficient, spring constant, and mass of the components it consists of. These are called passive parameters and cannot be actively changed while driving. When left to their own devices, passive components alone cannot always achieve the desired driving characteristics. In the case of a luxury vehicle, a comfortable ride is desirable without compromising on handling. Reducing the spring constant can create a more comfortable ride, but will hinder the car’s handling. In cases like this, an active suspension system can be used to adjust the characteristics of the suspension according to certain inputs. Active suspension systems can use proportional integral derivative controllers (PIDs) which allow stiffer springs to be used for improving handling while the PID controller actively adjusts the suspension response making the ride more comfortable. PIDs apply corrective adjustments to a system in a feedback loop and can mitigate oscillations in the suspension system caused by bumps in the road. P, I, and D controllers can be combined in any order. The P-controller linearly relates the controller output and the system error in order to reduce rise times. The I-controller removes deviations in the output in order to reduce the error in the system’s steady-state value. The D-controller measures the change in error and can allow the PID to control the response rate, minimizing the percent overshoot. This experiment will focus on separately using a PD, PI, and PID controller to optimize the suspension system in a luxury, high-performance (SUV). Luxury SUVs have been increasing in production, and a relatively small amount of research has been dedicated, specifically, to cars in this high-demand class. Simulations in this study will focus on luxury SUVs, as research dedicated to improving these vehicles would benefit many auto manufacturers. The methods used are based on an article on modeling car suspension systems in SIMULINK [1]. However, the article covers different types of controllers and parameters than this experiment does, and it generalizes the simulation to model a typical car. The main objective of this experiment is to compare the three different PID configurations and a passive suspension system in a quarter- car-model to determine which is most effective in the context of a luxury, performance SUV.
  • 6. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 6 of 19 Theory The suspension system can be modeled in a quarter-car going over a bump as in Figure 1, Figure 1. Diagram of a quarter-car going over a bump defined by 𝑔. 𝑚2 is the mass of the car’s frame, and 𝑚1 is the mass of the suspension components, including the wheel. The height of the bump, 𝑔, is defined by the piecewise function, 𝑔 = { 0, 0 ≤ 𝑡 < 1 5𝑡 − 5, 1 ≤ 𝑡 ≤ 1.25 0, 1.25 < 𝑡 (1) 𝑢 is the input of the PID controller. 𝑘2 is the spring stiffness of the suspension system, and 𝑘1 is the spring stiffness. 𝑐2 is the damping coefficient of the dampers in the suspension system, and 𝑐1 is the damping coefficient of the tire. The equations of motion (EOM) can be found from the free body diagrams. The free body diagram of 𝑚2is in Figure 2, and the free body diagram of 𝑚1 is in Figure 3. Figure 2. Free body diagram of the car’s mass.
  • 7. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 7 of 19 Figure 3. Free body diagram of the suspension system’s mass. Using Newton’s 2nd Law of motion, Σ 𝐹 ⃗ = 𝑚𝑎 ⃗ (2) The EOM for 𝑚1 becomes, 𝑚1𝑦̈1 = − 𝑐2(𝑦̇2 − 𝑦̇1) − 𝑐1(𝑦̇1 − 𝑔̇ ) + 𝑘2(𝑦2 − 𝑦1) − 𝑘1(𝑦1 − 𝑔) − 𝑢 ⇒ 𝑦̈1 = 1 𝑚1 [− 𝑐2(𝑦̇2 − 𝑦̇1) − 𝑐1(𝑦̇1 − 𝑔̇ ) + 𝑘2(𝑦2 − 𝑦1) − 𝑘1(𝑦1 − 𝑔) − 𝑢] (3) The EOM for 𝑚2 is, 𝑚2𝑦̈2 = −𝑐2(𝑦̇2 − 𝑦̇1) − 𝑘2(𝑦2 − 𝑦1) + 𝑢 ⇒ 𝑦̈2 = 1 𝑚2 [−𝑐2(𝑦̇2 − 𝑦̇1) − 𝑘2(𝑦2 − 𝑦1) + 𝑢] (4)
  • 8. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 8 of 19 Test Setup and Procedure Define all constants in MATLAB that are used in the SIMULINK models. Run all simulations using a 0.001 sec fixed time-step. 1. Open SIMULINK to set up a system representing the passive suspension components that uses the EOMs defined in Equations (3) and (4). Set 𝑢 = 0. 2. Find 𝑘∗ by adding a feedback loop to the system in step 1 that uses 𝑘𝑝 as a gain value. Adjust the gain value until the response is marginally stable. At that point, 𝑘∗ = 𝑘𝑝. An example of the marginally stable response can be seen in Figure 3. Find 𝑇∗ by using the measuring tool to measure the period of the marginally stable system. The graph with the measuring tool should look as it does in Figure 4. 4. Create a PD-controlled system by adding 𝑘𝑝 and 𝑘𝑑 gains to the loop to form a PD controller. 5. Create a PI-controlled system by adding 𝑘𝑝 and 𝑘𝑖 gains to the loop to form a PI controller. 6. Create a PID-controlled system by adding a built-in PID controller from SIMULINK. 7. Tune the PID controller using the parameters in the “tune” window. These values can be seen in the bottom-right of Figure 5. 8. For all simulations, determine the values of peak response, peak time, percent overshoot, settling time, and steady-state error. The complete set of SIMULINK block diagrams can be found in Appendix A.
  • 9. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 9 of 19 Figure 4. Marginally stable system with measuring tool in use. Figure 5. Control parameters are in the bottom-right of this window.
  • 10. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 10 of 19 Sample Calculations The following constants have values which would typically be seen in a luxury vehicle. These constants are based off of parameters mentioned in a study on ride comfort [2]. • 𝑚1 = 20 𝑘𝑔 • 𝑚2 = 1800 𝑘𝑔 • 𝑘1 = 500000 𝑁/𝑚 • 𝑘2 = 16812 𝑁 𝑚 • 𝑐1 = 2500 𝑁 ∙ 𝑠/𝑚 • 𝑐2 = 1000 𝑁 ∙ 𝑠/𝑚 The following parameters are for the active suspension system responses using the Zeigler-Nichols Method. The value, 𝑘∗ , that makes the P-controlled loop marginally stable is, 𝑘∗ = 7.75 × 103 𝑁/𝑚 The period, 𝑇∗ , is obtained from the plot of the marginally stable system and has a value of, 𝑇∗ = 1.877 𝑠𝑒𝑐 This period was found by using the measuring device in SIMULINK to measure the difference in heights between peaks in the plot of the marginally stable response (Fig. 4). For the system using the PD controller, the proportional response is, 𝑘𝑝 = 0.45𝑘∗ = 0.45(7.75 × 103 𝑁/𝑚) = 3487.5 𝑁/𝑚 The derivative gain for this system is, 𝑘𝑑 = 0.125 ∗ 𝑘∗ ∗ 𝑇∗ = 0.125 (7.75 × 103 𝑁 𝑚 )(1.877 𝑠𝑒𝑐 ) = 1818.34 𝑁/𝑚 For the PI controlled system, the proportional stiffness is the same as it is for the PD controlled system, 𝑘𝑝 = 3487.5 𝑁/𝑚 And the integral gain is, 𝑘𝑖 = 1.2 𝑘∗ 𝑇∗ = 1.2 (7.75 × 103 𝑁 𝑚 ) 1.877 𝑠𝑒𝑐 = 4954.71 𝑁/𝑚 MATLAB script used to calculate the responses can be found in the Appendix B.
  • 11. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 11 of 19 Error Analysis Steady state errors were calculated using 2% settling values. Results obtained in this error analysis can also be found in tables 1 and 2. A. Error analysis of passive system 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100 𝑦𝑚𝑎𝑥 − 𝑦𝑖 𝑦𝑖 = 100 0.0326 − 0 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = |𝑦𝑜𝑢𝑡 − 𝑦𝑖| = | − 6.45 × 10−4 − 0| = 6.45 × 10−4 𝑚 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100 |𝑦𝑜𝑢𝑡 − 𝑦𝑖| 𝑦𝑖 = 100 |6.45 × 10−4 − 0| 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 B. Error analysis of active system PD-controller: 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100 0.0245 − 0 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 4.90 × 10−4 − 0| = 4.90 × 10−4 𝑚 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100 |5.0983 − 0| 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 PI-controller: 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100 0.0293 − 0 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 1.14 × 10−4 − 0| = 1.14 × 10−4 𝑚 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100 |1.14 × 10−4 − 0| 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 PID-controller: 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 𝑂𝑣𝑒𝑟𝑠ℎ𝑜𝑜𝑡 = 100 0.0041 − 0 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 = | − 8.24 × 10−5 − 0| = 8.24 × 10−5 𝑚 𝑆𝑡𝑒𝑎𝑑𝑦 𝑆𝑡𝑎𝑡𝑒 𝐸𝑟𝑟𝑜𝑟 𝑃𝑒𝑟𝑐𝑒𝑛𝑡 = 100 |8.24 × 10−5 − 0| 0 = 𝑢𝑛𝑑𝑒𝑓𝑖𝑛𝑒𝑑
  • 12. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 12 of 19 Results The passive response was stable, but had the highest peak value at 0.0326 (Fig. 6 and Table 1). The PID-controlled response had the lowest peak value by a significant margin (Fig. 6). The PI-controlled system had the longest 2% settling time when compared to all other systems while the PID-controlled system had the smallest 2% settling time (Table 1). The plot of the marginally stable response has a constant amplitude, so it does not reach a steady-state value (Fig. 7). All other curves approached a steady-state value of 0 m. Figure 6. Plot of all responses to passive and active suspension systems. 0 5 10 15 20 25 30 Time (s) -0.03 -0.02 -0.01 0 0.01 0.02 0.03 0.04 Height (m) All Passive and Active Responses Passive Response PD Controlled Response PI Controlled Response PID Controlled Response
  • 13. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 13 of 19 Figure 7. Plot of the marginally stable system operating at k* . Table 1. Closed Loop Step Response Values Passive PD Controller PI Controller PID Controller Rise Time (sec) 0.0022 5.53 × 10−10 0.001 0 Peak Response (m) 0.0326 0.0245 0.0293 0.0041 Peak Time (sec) 1.65 1.58 1.6 1.31 Percent Overshoot (%) 475810 1.4 × 1012 2.18 × 104 5.155 × 1019 Settling Time (sec) 14.90 6.37 25.67 3.8456 Steady-State Error (m) 6.45 × 10−4 4.90 × 10−4 1.14 × 10−4 8.24 × 10−5 Steady-State Error Percentage (%) undefined undefined undefined undefined Note: The percentages on the order of ~104 or higher were calculated in MATLAB, but are in reality undefined values. 0 10 20 30 40 50 60 70 80 90 100 Time (s) -0.04 -0.03 -0.02 -0.01 0 0.01 0.02 0.03 0.04 Height (m) Marginally Stable Response
  • 14. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 14 of 19 Discussion and Conclusion Each configuration for the suspension system offers different strengths and weaknesses. The passive suspension system reached its steady-state value in a similar amount of time as the more expensive PI and PD controlled systems. Although it reached steady-state slower than the PID controlled system did, it can be implemented at a lower cost than the PID can. A key drawback of the passive suspension system is that it has the highest peak value. This means it would cause the passengers of the SUV to move a greater distance up and down as the car goes over bumps. This would not be ideal for the passengers. The PI controller resulted in the longest settling time, and only had the third lowest peak amplitude of the four options. Its best performance measure is its steady- state error value (Table 1), and that was only second best behind the PIDs steady-state error value. Given that it is relatively expensive compared to a passive suspension system, but offers no significant benefit, it is one of the worst solutions for a luxury SUV. The PD controlled system has the second smallest 2% settling time, and the second lowest peak value. Given that it costs less to use in the SUV than the PID does, it is an alternative that strikes a balance between cost and benefit. Nonetheless, the PID controller remains the best option among the four for this application. In the market for luxury, performance SUVs, consumers expect costs to be increased by features that materially improve the driving experience. The simulations in this experiment support that the PID controller offers the best driving experience by a large margin. Given that luxury SUVs are in increasingly high demand, higher costs of using the PID are likely to meet the demand of consumers looking for this class of vehicle. There is a large amount of research simulating quarter-car models, but few focus on the luxury SUV market. As this is an emerging market, auto manufacturers would benefit from this research, as well as future research that improves upon the simulations in this experiment. One area in which there is room for improvement would be the input from the road. The bump in this experiment, expressed by 𝑔, has a triangular shape. As there are many different types of imperfections in road surfaces, future research would benefit from exploring additional road features and how they affect the system.
  • 15. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 15 of 19 References [1] “Suspension: Simulink Controller Design,” Control Tutorials for MATLAB and Simulink - Suspension: Simulink Control, (2021). [Online]. Available: https://ctms.engin.umich.edu/CTMS/index.php?example=Suspension§ion=SimulinkControl. [Accessed: 01- Jul-2021]. [2] A. Tiwari, S. More, and A. Shahane, (2018). “Study of Road Holding and Ride Comfort Analysis With the Help of Quarter Car Model”. International Journal of Scientific Development t and Research. Vol. 3. Available: https://www.ijsdr.org/papers/IJSDR1812050.pdf
  • 16. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 16 of 19 Appendix A SIMULINK Models
  • 17. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 17 of 19
  • 18. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 18 of 19 Appendix B MATLAB Script %EGME 476A Final Lab %Author: Kit Kerames clc; clear; close all %Constants m1=20; m2=1800; k1=500000; k2=16812; c1=2500; c2=1000; % Makes system margnally stable KpStar=7.75e3; Tstar=1.877; KdMS=0; % Makes system PD controlled Kp=0.45*KpStar; Kd=0.125*KpStar*Tstar; % Makes system PI controlled Ki=KpStar*Tstar/1.2; %Runs simulation sim('EGME476AFinalLab') %Plots passive system response figure(1) plot(ans.y2); hold on plot(ans.y2PD); plot(ans.y2PI); plot(ans.y2PID); legend('Passive Response', 'PD Controlled Response',... 'PI Controlled Response', 'PID Controlled Response') grid on title('All Passive and Active Responses'); xlabel('Time (s)') ylabel('Height (m)'); %Plots marginally stable response figure(2) plot(ans.y2MS); grid on title('Marginally Stable Response'); xlabel('Time (s)') ylabel('Height (m)'); %Table information PASsystem=stepinfo(ans.y2.data,ans.y2.time); PDsystem=stepinfo(ans.y2PD.data,ans.y2PD.time);
  • 19. EGME 476A-52 Analysis of Active and Passive Suspension Systems Kristopher Kerames Page 19 of 19 PIsystem=stepinfo(ans.y2PI.data,ans.y2PI.time); PIDsystem=stepinfo(ans.y2PID.data,ans.y2PID.time); %Calculating steady-state values at 2% settling PASss=ans.y2.data(find(ans.y2.time==14.9)); PDss=ans.y2PD.data(find(ans.y2PD.time==6.37)); PIss=ans.y2PI.data(find(ans.y2PI.time==29.97)); PIDss=ans.y2PID.data(find(ans.y2PID.time==3.85));