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. Governing Equations:- Drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment, such as air or water. It is used in the drag quation in which a lower drag coefficient…
MD TAUFIQUE SAMDAANI
updated on 16 May 2020
Aim- To write a Matlab program to calculate drag force against a cyclist.
Governing Equations:-
Drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment, such as air or water. It is used in the drag quation in which a lower drag coefficient indicates the object will have less aerodynamic or hydrodynamic drag.
Drag force is a force acting opposite to the relative motion of any object moving with respect to a surrounding fluid.This can exist between two fluid layers (or surfaces) or a fluid and a solid surface.
Frontal Area physically represents the area as projected right along the velocity vector
(Drag Equation)
where:
I have written both the program in one program.
Program to plot Velocity vs Drag force and Drag Co-efficient vs Drag force.
clear all
close all
clc
%Inputs
close all
clc
%program to plot velocity vs Dragforce
%Inputs
%Drag_coefficient is constant
C_d1=0.8
%Area m^2
A1=0.1
%Density kg/m^3
rho1=1.2
%Velocity
V1=[1:12]
drag_force1=rho1*A1*V1.^2*C_d1*0.5;
%Drag coefficient for different shape of an object
%All objects have the same frontal area
%velocity is constant
C_d2=[0.045 0.5 0.295 1.14 1.28]
%Area m^2
A2=0.1
%Density kg/m^3
rho2=1.2
% velocity
V2=2
drag_force2=V2.^2*C_d2*0.5*rho2*A2;
figure (1)
%subplot function is used here to plot two curves in one graph
subplot(2,1,1)
% To plot velocity vs Drag force
plot(V1,drag_force1,'color','r')
ylabel('drag_force')
xlabel('Velocity')
% To provide title
title('Velocity vs Drag force')
subplot (2,1,2)
% To plot Drag coefficient vs Drag force
plot(C_d2,drag_force2,'linewidth',3,'color','b')
ylabel('Drag force')
xlabel('Drag coefficient')
title ('Drag coefficient vs Velocity')
grid on
Output-
Graph-
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...
Planetary Gear
AIM:- To generate 3D models To assemble The generated models to from the planetary gear To do Motion Analysis on the Planetary Gear on the cases given INTRODUCTION:- Planetary Gear or Epicyclic gear is a gear system consisting of one or more outer, or planet, gears or pinions, revolving about a central sun…
18 Jul 2020 03:32 PM IST
MBD Simulation on IC Engine Valve Train
AIM:- To Model the parts To Assemble the parts created To run simulation on IC Engine Valve under the given conditions INTRODUCTION:- A valvetrain or valve train is a mechanical system that controls operation of the intake and exhaust valves in an internal combustion engine. The intake valves…
18 Jul 2020 03:29 PM IST
MBD Simulation on a Piston Assembly
AIM:- To design the different parts of the Piston Assembly. To Assemble the parts created To do Motion Analysis on the Piston Assembly and , rotary motion is provided to the crankshaft INTRODUCTION:- Piston Assembly motion analysis is study of the reciprocating motion of the piston in the cyclinder and the motion…
18 Jul 2020 03:22 PM IST
Internal Geneva Mechanism
AIM:- To create 3D models for Driver and Driven Wheels To create assemble the driver an driven wheel in order to show Internal Geneva Mechanism To do motion Study of internal geneva mechanism ( with and without Precise Contact) To make a plot of the driven wheel's angular displacement and discuss the results in different…
18 Jul 2020 03:13 PM 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.