All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim: To 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. Factors involved: Velocity: It is defined as displacement over time. Drag coefficient: It is a dimensionless quantity that is used…
Palukury Bereshith Jacob Alapan
updated on 18 Apr 2020
Aim: To write a Matlab program to calculate drag force against a cyclist.
Objective:
Factors involved:
- The expression for Drag Force:
- Different positions of cyclist:
MATLAB Program:
1) Program to plot Velocity vs Drag force:
Here the values of the 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.
Program:
%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:
Result:
2) Program to plot Drag Co-efficient vs Drag force:
Here velocity is considered as constant whereas the values of Frontal Area and Drag Co-efficient are taken from the following table
Program:
%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:
Result:
Conclusion:
Thus, the Matlab program is written to calculate drag force against a cyclist.
References:
- Aerodynamic analysis of different cyclist hill descent positions.
https://www.sciencedirect.com/science/article/pii/S0167610518305762?via%3Dihub
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...
Powertrain for aircraft in runways
1) Search and list out the total weight of various types of aircraft. Weight is the force generated by the gravitational attraction of the earth on the airplane. Each part of the aircraft has a unique weight and mass, and for some problems, it is important to know the distribution.…
18 Feb 2021 11:35 AM IST
Braking
1) For a defined driving cycle, calculate the energy required for braking. We have to create a drive cycle excel file with random data of velocity concerning that time and plotted them to see the drive cycle Then import that file into Matlab. Then to create an array into the command window by entering code braking_energy…
15 Feb 2021 02:33 PM IST
Duty Cycle
1) Why power electronics circuits are efficient? In practice, which types of losses occur in power electronics circuits? Power Electronics: Power electronics involves the study of electronic circuits intended to control the flow of electrical energy. These circuits handle power flow at levels much higher than the individual…
14 Feb 2021 01:28 PM IST
Induction Motor Characteristics - II
1) Discuss the equivalent circuit network of the induction motor MATLAB model. Equivalent circuit of an Induction motor: In the equivalent circuit, R1 represents the resistance of the stator winding and X1 the stator leakage reactance (flux that does not link with the air gap and rotor). Magnetizing reactance required…
14 Feb 2021 09:26 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.