All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: To calculate the drag force against the cyclist and observe how same frontal area for a cyclist with different position shapes affect the drag. GOVERNING EQUATIONS: The physics behind a cyclist while riding is purely aerodynamics. Aerodynamics is the study of the properties of moving…
Udaya Jyothi K
updated on 01 Jan 2021
AIM: To calculate the drag force against the cyclist and observe how same frontal area for a cyclist with different position shapes affect the drag.
GOVERNING EQUATIONS:
The physics behind a cyclist while riding is purely aerodynamics. Aerodynamics is the study of the properties of moving air and the interaction between air and solids moving through it.
Cyclist will apply more force through the pedals and try and counteract the wind with force, as opposed to changing body position or equipment. When the cyclist hit about 30mph, 90% of his power goes into overcoming air resistance called aerodynamic drag. While riding, the air particles hit the cyclist, gets compressed and spaced out when they flow over him. The difference in air pressure between his front and back creates drag force.
In cycling, among total resistive forces on the level ground, aerodynamic drag or force is the main resistance opposed to the motion. The optimisation of the aerodynamic drag could be determinant to enhance the cyclist's performance for the same mechanical power output.
Aerodynamic shapes reduce this pressure drag or drag force by minimizing that difference in pressure and allowing the air to flow move smoothly over his front and reduces the low pressure behind his back.
Aerodynamics use a number called Coefficient of drag to model all the complex items that affect drag like shape of an object, size and the angle at which the object meets the air. The effective frontal area represents the position of the cyclist on the bicycle and the aerodynamics of the cyclist-bicycle system in this position
Frontal Area of a Cyclist and Bicycle Experiencing Drag Force
Formula:
The major performance parameter in cycling is the displacement velocity of both cyclist and bicycle (υ, in m/s). At constant velocity, the ratio of the mechanical power output generated by the cyclist (P, in W) to the total resistive force (F, in N)
v=PF
The power output is the quantity of energy output per unit time. At constant speed, the mechanical power output can be assumed to be the sum of the energy used to overcome the total resistive forces. So the aerodynamic drag Force Fd,(N), is directly proportional to the combined projected frontal area of the cyclist and bicycle(Af, in m2), the drag coefficient(Cd , dimensionless), air density(ρ , in kg/m2 ) and the square of the velocity relative to the fluid (υf, in m/s ).
Fd=Af×ρ×υ2f×Cd2
Where ρ=1.293kg/m3
Co-efficient of drag varies for different shapes. The values taken here were determined experimentally by placing models in a wind tunnel and measure the amount of drag and the tunnel conditions of velocity and density of air. Drag equation was used to calculate Coefficient of drag,
Cd=2×FdAf×ρ×υ2f
OBJECTIVE:
For a Flat plate, =1.28
For a Prism, =1.14
For a sphere, =0.7 to 0.8
For a bullet, =0.295
For an air foil, =0.045
Body Of The Content:
Software used for coding is MathLab.
% program to claculate the drag force against cyclist
clear all
close all
clc
%Inputs
%drag coefficient dimentionless
c_d=0.8;
% Frontal Area m^2
A_f=0.4;
%Density of Air kg/m^3
rho=1.2;
%velocity m/s
Vf=2;
%Drag force, Fd
Fd=rho*A_f*Vf^2*c_d*0.5
%plot velocity VS drag force
Vf=[1 2 3 4 5]
Fd=rho*A_f*Vf.*Vf*c_d*0.5
plot(Vf,Fd)
xlabel('Drag Force, Fd (N)')
ylabel('velocity, Vf (m/s)')
grid on
% program to Plot between Drag Force against Coefficient of Drag
clear all
close all
clc
%Inputs
%drag coefficient
c_d=0.8;
% Frontal Area m^2
A_f=0.4;
%Density of Air kg/m^3
rho=1.2;
%velocity m/s
Vf=2;
%Drag force, Fd
Fd=rho*A_f*Vf^2*c_d*0.5;
% plot Drag Force Vs Coefficient of drag
c_d=[1.28 1.14 0.7 0.295 0.045]
Fd=rho*A_f*Vf.^2*c_d*0.5
plot(Fd,c_d)
xlabel('Drag Force, Fd(N)')
ylabel('Coefficient of Drag, c_d')
grid on
Results for Drag Force Calculation:
Result for Drag Force and Coefficient of Drag:
Plot for Drag Force Vs Velocity:
Plot for Drag force Vs Coefficient of Drag:
Conclusion:
The plot for velocity against drag force is a parabola and the function is exponential which explains as the cyclist rides faster, more the drag force he will observe. To overcome the air resistance drag force, he need to use more power which will be a tough time to a rider.
The plot for coefficient of drag against drag force is a straight line and the function is linear equation, explains drag force is proportional to Drag. As the shape of the frontal area decreases the drag force also decreases even though the frontal area is same. By this we can say drag force can be reduced by changing frontal position shape of a cyclist. It can be done by changing body position on the bicycle by updating equipment design like providing aerodynamic handlebars, wearing skin tight aero clothing,aero helmets, wheels, frames etc. Dropping handlebars a few cm, can make a big difference in improving aerodynamics because frontal position incurs the biggest aerodynamic drag.
The basic road cycling positions suggestions to ride faster, more efficiently and safer are
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...
Final Project: Design of an Electric Vehicle
Q. Create a MATLAB model of an electric car that uses a battery and a DC motor. Choose suitable blocks from the powertrain block set. prepare a report about your model including following Objectives 1. System-level configuration 2. Model parameters 3. results $.conclusion A: The Electric Vehicle…
18 Nov 2021 07:10 PM IST
Week-11 Challenge: Braking
The most important feature of electric vehicles and hybrid vehicles is their ability to absorb, store and reuse the braking energy. A successfully designed braking system for a vehicle must always meet two distinct demands. While applying the sudden brake, the vehicle must come to rest in the shortest possible distance…
03 Nov 2021 01:51 PM IST
Week-7 Challenge: DC Motor Control
Q1 A. Explain the MATLAB demo model named ‘Speed control of a DC motor using BJT H- bridge. Comment on the armature current shoot-up from the scope results Transistors have been used as amplification devices, where control of the base currents used to make the transistor conducive to a greater or lesser…
30 Aug 2021 08:25 AM IST
Week-6 Challenge: EV Drivetrain
which types of power converter circuits are employed in an electric and hybrid electric vehicle? The control inputs given by the vehicle brake and accelerate pedals are received by the electronic controllers produces control signals to the power source system through power devices. These…
09 Aug 2021 07:55 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.