All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
https://drive.google.com/file/d/1aX1pZMvvYGigJV2dYjFepRHc6lyjZ60o/view?usp=sharing Data Available : Aim : To calculate the damping force vs Velocity curve of a corner mass of a vehicle Software used : Excel for preliminary calculations Octave for creating the force vs velocity…
Prateek K srivastava
updated on 24 Nov 2020
https://drive.google.com/file/d/1aX1pZMvvYGigJV2dYjFepRHc6lyjZ60o/view?usp=sharing
Data Available :
Aim : To calculate the damping force vs Velocity curve of a corner mass of a vehicle
Software used :
Flow of the calculation :
Formula used :
Below Knee Speed (<=50mm/sec)
Above Knee Speed
Theory
Concept used to create the code :
clear all
close all
clc
#Force_vs_velocity_curve
cdamp_low_front=2023.54232 # N/m/sec
cdamp_low_rear=1971.021339 # N/m/sec
cdamp_high_front=695.6093731 # N/m/sec
cdamp_high_rear=570.972854 # N/m/sec
rdamp_low_front=6070.62696 # N/m/sec
rdamp_low_rear= 5913.064016 # N/m/sec
rdamp_high_front=2086.828119 # N/m/sec
rdamp_high_rear=1712.918562 # N/m/sec
vel=(0:5:500);
t=1;
for i=1:101
if i==1
cforce_front(t)=0;
cforce_rear(t)=0;
rforce_front(t)=0;
rforce_rear(t)=0;
elseif i<=10
cforce_front(t) = cdamp_low_front*vel(i) ;
rforce_front(t) = -rdamp_low_front*vel(i) ;
cforce_rear(t) = cdamp_low_rear*vel(i);
rforce_rear(t) = -rdamp_low_rear*vel(i);
else i>10
cforce_front(t) =cforce_front(t-1)+(vel(i)-vel(i-1))*cdamp_high_front;
rforce_front(t) =rforce_front(t-1)-(vel(i)-vel(i-1))*rdamp_high_front;
cforce_rear(t) =cforce_rear(t-1)+(vel(i)-vel(i-1))*cdamp_high_rear;
rforce_rear(t) = rforce_rear(t-1)-(vel(i)-vel(i-1))*rdamp_high_rear;
end
t+=1;
end
figure(1);
plot(vel,cforce_front);
hold on
plot(vel,rforce_front);
hold off
box on
grid on
title('FRONT : Damping force vs velocity');
xlabel('velocity(mm/sec)');
ylabel('Force Magnitude');
legend('compression','rebound');
figure(2);
plot(vel,cforce_rear);
hold on
plot(vel,rforce_rear);
hold off
box on
grid on
title('REAR : Damping force vs velocity');
xlabel('velocity(mm/sec)');
ylabel('Force Magnitude');
legend('compression','rebound');
Observation & Conclusion
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Finding the contribution of roll stiffness toward the front of the vehicle using Excel
https://drive.google.com/file/d/12gDwnCz4-JApIYwOGUXBdmRLbY_nGmHp/view?usp=sharing Aim To calculate the roll stiffness of anti roll bar and its contribution toward the front system of car Software Used Excel Given Data Flow of Calculation Note : …
15 Dec 2020 11:30 AM IST
Determining the damping force vs Velocity curve of a corner mass of a vehicle using Octave and Excel
https://drive.google.com/file/d/1aX1pZMvvYGigJV2dYjFepRHc6lyjZ60o/view?usp=sharing Data Available : Aim : To calculate the damping force vs Velocity curve of a corner mass of a vehicle Software used : Excel for preliminary calculations Octave for creating the force vs velocity…
24 Nov 2020 10:52 AM IST
Making the ride comfortable by analysing & increasing the pitch compensation using Excel
https://drive.google.com/file/d/10recHUYKZvkoV1FhfjXVZbAFdU9k2yND/view?usp=sharing Aim To calculate pitch compensation and reduce the pitch angle to zero To calculate the updated anti characteristics and verify the pitch angle is actually zero . Software Used Excel Flow…
02 Nov 2020 09:20 AM IST
Plotting the Bump Oscillation profile of various load conditions by determining the natural frequencies & making the front -rear frequencies in phase to achieve Flat ride
https://drive.google.com/file/d/15WymqKfXLtfjrMiTEQW_vIIQhwjuyMKU/view?usp=sharing Aim Plotting the Bump Oscillation profile of various load conditions by determining the natural frequencies & making the front -rear frequencies in phase to achieve Flat ride Software Used Octave , Excel …
28 Oct 2020 08:06 AM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.