All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
A program to calculate Aerodynamic Drag Force for Study of Flow over Bicycle using Matlab. Aim : To write a Matlab program to calculate Aerodynamic Drag Force against a bicycle and study the relation between – Velocity and Drag Force Drag Co-efficient and Drag Force Objective : To calculate the drag force on…
Vinit Velekar
updated on 11 Apr 2020
A program to calculate Aerodynamic Drag Force for Study of Flow over Bicycle using Matlab.
Aim : To write a Matlab program to calculate Aerodynamic Drag Force against a bicycle and study the relation between –
Objective :
Keywords : Frontal Area, Drag Force, Drag Co-efficient, Velocity.
Introduction :
The rider along with the bicycle contributes a majority of the aerodynamic drag of the entire bicycle and rider system. In fact, a rider’s body typically contributes 70% of the total aerodynamic drag of the system. The general shape of a rider along with the bicycle is not streamlined and there are many pockets where air can be trapped and increase the drag. A simple study of drag force on a cyclist can be illustrated using Matlab.
Theory :
The expression of Drag force FD is :
FD=12ρAV2Cd
Where,
ρ = Density of fluid;
A = Frontal Area;
V = Velocity of object;
Cd = Drag Co-efficient;
Fig. 1] Frontal Area for different positions of cyclist
Matlab Program :
1] Program to calculate Drag Force on bicycle and study relation between Velocity and Drag Force by plotting graph :
Here the values of Frontal Area and Co-efficient of drag are considered to be constant and the value of Velocity is considered to be in the range of 1 m/s to 35 m/s.
Editor Window -
%Program to calculate the drag force of a bicycle and plot Velocity vs Drag Force
close all
clear all
clc
%Inputs
%Drag coefficient
C_d = 0.6;
%Frontal Area (m^2)
A = 0.4;
%Density (kg/m^2)
rho = 1.2;
%Velocity (m/s)
v = linspace(1,35,10);
%Drag force (N)
F_d = 0.5*rho*A*v.^2*C_d
%Plotting: Velocity vs Drag Force
plot(v,F_d,'linewidth',2);
xlabel('Velocity (m/s)');
ylabel('Drag Force (N)');
title('Velocity vs Drag Force')
grid on;
Output –
Graph of Velocity vs Drag Force –
Result based on graph –
As the velocity increases, the drag force increases with V2. At higher velocities, the drag coefficient increases upto 4 times.
2] Program to calculate Drag Force on bicycle and study relation between Drag Co-efficient and Drag Force by plotting graph :
Here velocity is considered as constant whereas the values of Frontal Area and Drag Co-efficient are taken from the following table (for positions mentioned in Fig 1.) –
Fig. 2] Drag Co-efficient(Cd) Values
Editor Window –
%Program to calculate the drag force of a bicycle and plot Drag Coefficient vs Drag Force.
close all
clear all
clc
%Inputs
%Drag coefficient
C_d = [0.626 0.638 0.655 0.655 0.670];
%Frontal Area (m^2)
A = [0.374 0.370 0.339 0.423 0.460];
%Density (kg/m^2)
rho = 1.2;
%Velocity (m/s)
v = 7;
%Drag force (N)
F_d = 0.5*rho*A.*C_d*v^2
%Plotting: Drag Co-efficient(with respect to area) vs Drag Force
plot(A.*C_d,F_d,'color','r','linewidth',2);
xlabel('Drag Co-efficient w.r.t Area');
ylabel('Drag Force (N)');
title('Drag Co-efficient w.r.t Area vs Drag Force')
grid on;
Output –
Graph of Drag Co-efficient vs Drag Force –
Result based on graph –
Drag Force increases linearly with Drag Co-efficient. Every value of Drag Co-efficient is associated with a particular value of Frontal Area.
Conclusion :
References :
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...
Week - 5 - Modelling Spotwelds
AIM : To model spotwelds for the given assembly of parts and run a crash test in LS-DYNA. OBJECTIVES: To create a rigidwall in LS-Dyna on which the spotweld model can impact. To apply initial velocity of 50 kmph to the model. To run the simulation of model using two different types of spotweld i.e. beam spotweld and solid…
02 Jun 2021 05:56 AM IST
Meshing of Vehicle Side Door Plastic Model | HyperMesh
AIM : To mesh the plastic component of a passenger vehicle side door as shown below with the given quality criteria. Quality Criteria – Target Element Length = 4 mm PROCEDURE : At first we will open Hypermesh and choose our User Profile as RADIOSS. Then we will import the model using Import Tab. After importing…
29 May 2021 06:45 AM IST
Meshing of plastic component of the Vehicle Floor panel | HyperMesh
AIM : To mesh the plastic component of the vehicle Floor panel model as shown below with the given quality criteria. Quality Criteria – Target Element Length = 5 mm PROCEDURE : At first we will open Hypermesh and choose our User Profile as RADIOSS. Then we will import the model using Import Tab. After importing…
29 May 2021 06:45 AM IST
Side Pole Crash Simulation Challenge | HyperMesh
OBJECTIVE : To perform side crash analysis of a vehicle against a rigid cylindrical wall or a Pole in Hypermesh. To simulate the crash behavior of the vehicle in HyperView and discuss the results. To plot the sectional forces at cross members and discuss the results. To obtain intrusion results at B-pillar, hinge pillar…
29 May 2021 06:43 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.