All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Calculate Drag force on a bicycle. Aim: - Write a Matlab program to calculate drag force against a cyclist Objective: - Write a program to plot Velocity vs Drag force. Write a program to plot Drag Co-efficient vs Drag force. Formula Fd = 1/2*ρ*V^2*A*Cd Were, Fd = drag force (N) Cd = drag coefficient…
Gaurav Hole
updated on 18 Jan 2022
Calculate Drag force on a bicycle.
Aim: - Write a Matlab program to calculate drag force against a cyclist
Objective: -
Formula
Fd = 1/2*ρ*V^2*A*Cd
Were,
Fd = drag force (N)
Cd = drag coefficient
ρ = density of fluid (1.2 kg/m3 for air at NTP)
v = flow velocity (m/s)
A = characteristic frontal area of the body (m2)
Input
Rho = 1.2
A = 0.1
V = 1 (1:50)
Cd = 0.8 (1:50)
Description
Different position of a cyclist
Here we can see when we are riding bicycle at different velocity the frontal area (A) is constant but the Drag coefficient is different for different frontal area. Drag force is directly depend on frontal area and velocity of cyclist. It means when velocity is increased simultaneously drag force also increase, same as when frontal area is change simultaneously drag coefficient and drag force also changes.
MATLAB program
1. Program to plot a graph for Velocity vs Drag force
% A program to calculate drag force on a bicycle
clearvars
close all
clc
% Input
% Drag coefficient
C_d = 0.8;
% Area m^2
A = 0.1;
% Density Kg/ m^3
rho = 1.2;
% Velocity
V = (1:50);
% Drag force kgm/s^2
Drag_force = rho*A*V.^2*C_d.*0.5;
plot(V, Drag_force,'color','r');
xlabel('Velocity');
ylabel('Drag force');
title('Velocity vs Drag force');
grid on
Command Window results
Graph: - Velocity vs Drag force
Conclusion: -
From the above results, we can conclude that Drag force is directly proportional to velocity square.
2. Program to plot a graph for Drag coefficient vs Drag force
clearvars
close all
clc
% Input
% Drag coefficient
C_d = [0.67 0.62 0.65 0.63 0.65];
label = {'Sprint regular','Sprint low','Back up', 'back horizontal','back down'};
% Area m^2
A = 1;
% Density Kg/ m^3
rho = 1.2;
% Velocity
V = 0.25;
% Drag force kgm/s^2
drag_force = rho*A.*V^2*C_d.*0.5;
plot (C_d, drag_force,'marker','s','markerfacecolor','r');
text(C_d,drag_force,label);
xlabel('C_d');
ylabel('Drag force');
title ('Drag coefficient vs Drag force');
grid on
Command Window
Graph: - Drag coefficient vs Drag force
Conclusion: -
From the above results, we can conclude that the Drag coefficient is directly proportional to the Drag force.
Hence, we can conclude that the drag force is as low as possible so we can get better efficiency.
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...
Project 2-Highway Assistant-Lane Changing Assistant
AIM: - Develop model as per given requirement and generate AUTOsar software compile code. OBJECTIVE: - This model must be developed in MATLAB Simulink per MBD guidelines. Code Generation Profile must be Autosar Coder. Simulink Data Dictionary must be created for the model & must be linked to the model. All the input…
30 Apr 2022 02:11 PM IST
Project 1- Traffic Jam Assistant Feature
Aim: - To Build a Simulink model for Traffic Jam Assistant as per the requirement document and create requirements tagging. To check a model under standard guidelines with help of a model adviser. (MABB guidelines) To build an embedded code for the model. Objective: - Development of MATLAB Simulink model as per requirement.…
12 Apr 2022 07:35 AM IST
Project 2 Adaptive Cruise Control
Aim: - To Build a Simulink model as per the requirement document and create requirements tagging. To check a model under standard guidelines with help of a model adviser. (MABB guidelines) To build an embedded code for the model. Objective: - Developing Adaptive Cruise Control feature as per the Requirement Document using…
04 Apr 2022 08:35 AM IST
Project 1 (Mini Project on Vehicle Direction Detection
Aim: - To Build a Simulink model as per requirement document and create requirements tagging. To check a model under standard guidelines with help of model adviser. (MABB guidelines) To build an embedded code for model. Objective: - Development of MATLAB Simulink model as per requirement. Tag the requirements to the simulink…
01 Apr 2022 11:49 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.