%drag force calculation clear all close all clc %input %drag coefficient c_d=.8 %area m^2 A=.1 %density kg/m^3 rho=1.2 %velocity v=[1:50] drag_force=.5*rho*A*v.^2*c_d; plot(v,drag_force); xlabel('velocity'); ylabel('drag_force'); grid on %drag force calculation clear all close all clc %input %area m^2 A=.1 %density kg/m^3…
Pavan R Shetty
updated on 06 Jun 2018
Project Details
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...
Read more Projects by Pavan R Shetty (9)
resume
\documentclass[a4paper,10pt]{article} %A Few Useful Packages \usepackage{marvosym} \usepackage{fontspec} %for loading fonts \usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting \RequirePackage{color,graphicx} \usepackage[usenames,dvipsnames]{xcolor} \usepackage[big]{layaureo} %better formatting of the…
28 Jul 2018 11:30 PM IST
PARSING NASA THERMODYNAMIC DATA BY USING MATLAB
MAIN PROGRAM INVOLVING READING DATA FROM therm.txt FILE,DEFINING AND CALLING FUNCTION TO CALCULATE SPECIFIC HEATS,ENTHALPY,ENTROPY,PLOTING THE GRAPH AND CALCULATING THE MOLECULAR MASS/WEIGHTS OF THE REQUIRED SPECIES clear all close all clc %opening file and write operation f=fopen(\'therm.txt\',\'r\'); fgetl(f); fgetl(f);…
22 Jul 2018 01:21 AM IST
GENETIC ALGORITHM
Genetic algorithm: Is search methods based on principles of natural selection and genetics. It\'s based on the principle of natural selection. 2 generations mutate,crossover creating new generations which is assumed to be better. A genetic algorithm (GA) is a method for solving both linear and nonlinear optimization…
19 Jul 2018 11:27 AM IST
CURVE FITTING
25 Jun 2018 09:13 AM IST
ORDINARY DIFFERENTIAL EQAUTION
https://youtu.be/rna5gNSqhbM
23 Jun 2018 01:07 AM IST
FORWARD KINEMATICS
https://youtu.be/SDIhpgRTwP0
20 Jun 2018 04:23 AM IST
air standard cycle
%inputs gamma=1.4 %engine geometric parameters bore=.1 stroke=.1 con_rod=.15 cr=12 %state variables p1=1013.25 t1=500 t3=2300 %calculating swept volume and clearance volume v_swept=(pi/4)*bore^2*stroke v_clearance=v_swept/(cr-1) v1=v_swept+v_clearance v2=v_clearance %state variables at point 2 p2=p1*cr^gamma t2=p2*v2*t1/(p1*v1)…
09 Jun 2018 06:10 AM IST
TO CALCULATE DRAG FORCE WITH RESPECT TO CHANGING VELOCITY AND DRAG COEFFICIENT AND PLOTTING THE GRAPH ACCORDINGLY
%drag force calculation clear all close all clc %input %drag coefficient c_d=.8 %area m^2 A=.1 %density kg/m^3 rho=1.2 %velocity v=[1:50] drag_force=.5*rho*A*v.^2*c_d; plot(v,drag_force); xlabel('velocity'); ylabel('drag_force'); grid on %drag force calculation clear all close all clc %input %area m^2 A=.1 %density kg/m^3…
06 Jun 2018 12:44 AM IST
TO CREATE A ROW AND A COLUMN VECTOR USING MATLAB/OCTAVE
close all clear all clc a=[2 5 6 3] b=[2;5;6;3] output: in the workspace,it generates a row and column vector a and b respectively
05 Jun 2018 11:59 PM IST