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 (Fd) experienced by cyclist while travelling L.H.S to R.H.S at particular Velocity (v) using MATLAB program. GOVERNING EQUATION : FD=12ρv2ACD …
Omkar Kudalkar
updated on 05 Jan 2021
AIM :
To Calculate the Drag Force (Fd) experienced by cyclist while travelling L.H.S to R.H.S at particular Velocity (v) using MATLAB program.
GOVERNING EQUATION :
FD=12ρv2ACD
Where,
FD = Drag force,N
ρ = density of fluid on which object is resisting ,Kg/
A = Frontal area of object (front view ofcyclist along with bicycle),
v = velocity of bicycle travelling forward,m/s
CD= The Drag Co-efficient, non-dimensional
Objectives
1)To write a program to plot Velocity vs Drag Force.(taking Drag C Constant)
2)To write program to plot Drag Co-efficient vs Drag Force.(taking velocity as Constant)
ASSUMED INPUT DATA :
1.Frontal area of cyclist is constant i.e(0.2)
2.Density of fluid against which body is resisting is taken as 1.225 kg/
3. Taking different Drag coefficient (m/s) as follow for constant velocity of 1.2 (m/s)
C_D_diff = [ 0.8 1.28 1.14 0.045 0.295 ]
Matlab program :
clear all
close all
clc
% Task_1
% Inputs
% Drag coefficient
c_d = 0.8;
%Area m^2
A = 0.2;
%Density kg/m^3
rho = 1.225;
% velocity m/s
v = [1:50];
%Drag Force for particular Drag co-efficient at varrying velocities
drag_force = rho*A*v.^2*c_d*0.5;
%plot between Velocity and Drag Force
plot(v,drag_force)
title('Velocity vs Drag Force')
xlabel('velocity')
ylabel('Drag force')
grid on;
% Task_2
% Inputs
% Drag coefficient
c_d = 0.8
%Area m^2
A = 0.2
%Density kg/m^3
rho = 1.225
% taking constant velocity for varrying Drag Coefficient (m/s)
V=1.2;
%Drag Force for particular Velocity at different Drag Coefficient
C_D_diff=[ 0.8 1.28 1.14 0.045 0.295 ];
drag_force_1= rho*A*V.^2*C_D_diff*0.5;
% plot between Drag Force and Drag Coeifficient
plot(C_D_diff,drag_force_1)
title('Drag Coeifficient vs Drag Force')
xlabel('Drag Coeifficient')
ylabel('Drag force_1')
grid on;
Result : Task_1 figure for Velocity vs Drag force
Task_2 figure for Drag coeifficient vs Drag force
Conclusion :
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 1 Understanding Different Battery Chemistry
Abstract: The Lithium-ion battery is one of the most common batteries used in Electric Vehicles (EVs) due to the specific features of high energy density, power density, long life span and environment friendly. With the development of lithium-ion battery technology, different materials have been adopted in the design of…
14 Dec 2021 02:03 AM IST
Week 8 Challenge:Thermal Management
Abstract: Control functionality of modern vehicles is getting more and more complex. Programming complex embedded systems involves reasoning through intricate system interactions along paths between sensors, actuators and control processors. This is a time-consuming and error-prone process. Furthermore, the…
30 Sep 2021 05:06 AM IST
UML (Unified Modeling Language) high-level schematic of a remote controller toy car system.
Abstract: Control functionality of modern vehicles is getting more and more complex. Programming complex embedded systems involves reasoning through intricate system interactions along paths between sensors, actuators and control processors. This is a time-consuming and error-prone process. Furthermore, the resulting…
30 Sep 2021 04:45 AM IST
Explain the cooling technologies of a power converter And Calculation of MOSFET Thermal Resistance and Power Dissipation.
Explain the cooling technologies of a power converter? Abstract: Power electronics devices such as MOSFETs, GTOs, IGBTs, IGCTs etc. are now widely used to efficiently deliver electrical power in home electronics, industrial drives, telecommunication, transport, electric grid and numerous other applications.…
30 Sep 2021 04:41 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.