All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Aim : % calculate the Drag force on a bicycle using MATLAB Formula for drag force: Drag force F = 1/2*rho*A*v^2*c_d where rho = density (kg/m^3) A = frontal area (m^2) v = velocity (m/s) c_d = drag cofficent …
Rehaman Khan Pathan
updated on 12 Oct 2020
Aim : % calculate the Drag force on a bicycle using MATLAB
Formula for drag force:
Drag force F = 1/2*rho*A*v^2*c_d
where
rho = density (kg/m^3)
A = frontal area (m^2)
v = velocity (m/s)
c_d = drag cofficent
Software Used = Matlab
Program:
1. Drag_force Calculation:
% calculate the drag force on a bicycle
clear all
close all
clc
% input variables
% 1. A = frontal area
% 2. rho = density
% 3. v = velocity
% 4. c_d = drag cofficent
A = 0.5;
rho = 1.2;
v = [2,5,8,10]
c_d = 0.8;
Drag_force = A*rho*v.^2*c_d*0.5
Output:
v =
2 5 8 10
Drag_force =
0.9600 6.0000 15.3600 24.0000
2.Plot (velocity vs Drag force):
Program:
% calculate the drag force on a bicycle
clear all
close all
clc
% input variables
% 1. A = frontal area
% 2. rho = density
% 3. v = velocity
% 4. c_d = drag cofficent
A = 0.5;
rho = 1.2;
v = [2,5,8,10]
c_d = 0.8;
Drag_force = A*rho*v.^2*c_d*0.5
plot(v,Drag_force)
xlabel('v')
ylabel('Drag_force')
grid on
Output Graph(Velocity vs Drag Force):
3.Drag Coffecient vs Drag force:
Program:
% calculate the drag force on a bicycle
clear all
close all
clc
% input variables
% 1. A = frontal area
% 2. rho = density
% 3. v = velocity
% 4. c_d = drag cofficent
A = 0.5;
rho = 1.2;
v = 5;
c_d = [1.17 1.20 1.16 1.60 1.55 1.96 2.00 2.30 2.20 2.05]
Drag_force = A*rho*v.^2*c_d*0.5
plot(c_d,Drag_force)
xlabel('Drag_ coefficent')
ylabel('Drag_force')
grid on
Output:
c_d =
1.1700 1.2000 1.1600 1.6000 1.5500 1.9600 2.0000 2.3000 2.2000 2.0500
Drag_force =
8.7750 9.0000 8.7000 12.0000 11.6250 14.7000 15.0000 17.2500 16.5000 15.3750
Plot (Drag_coffecient vs Drag_force):
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...
Independent Research Project
Aim: To calculate the estimated force acting on the valve during the different operating conditions. Given Problem Statement: This estimated force should be above the target cracking force (opening force) of the valve which is 300N. The solid geometry will be provided, which can be simplified to extract fluid…
26 Jul 2021 04:13 PM IST
Week 4 Challenge : CFD Meshing for BMW car
Aim: For the given model, check and solve all geometrical errors on half portion and Assign appropriate PIDs. Perform meshing with the given Target length and element Quality criteria. After meshing the half model, Do symmetry to the other side. Software Used: ANSA Pre-processor Given data: Target lengths for the…
11 May 2021 11:42 AM IST
Week 5.1 - Mid term project - Solving the steady and unsteady 2D heat conduction problem
Aim: Solving the 2D heat conduction problem for steady and transient state using various iterative techniques (Jacobi, Gauss seidel and Successive over relaxation methods) using Matlab Given that: Top Boundary = 600 K Bottom Boundary = 900 K Left Boundary = 400 K Right Boundary = 800 K Your absolute error criteria…
02 Apr 2021 04:03 AM IST
Week 3 Challenge : CFD meshing on Turbocharger
Aim: Check the geometrical errors to make appropriate volumes and assign the PID's. Also perform the surface mesh on Turbocharger. Software used: ANSA Pre-processor Theory: A turbocharger is a device fitted to a vehicle’s engine that is designed to improve the overall efficiency and increase performance. This is…
23 Mar 2021 10:47 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.