rsl=0;rsc=0;vs=0; rdata=load(\'data\'); %Reading the data file x=rdata(:,1); %assigning temperature data y=rdata(:,2); %assigning C_p data l=polyfit(x,y,1); %determining and assigning linear coefficients c=polyfit(x,y,3); %determining and assigning cubic coefficients pl=polyval(l,x); %assigning linear C_p data to pl pc=polyval(c,x);…
MOHAMMAD SHAREY
updated on 09 Aug 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 MOHAMMAD SHAREY (11)
Centrifugal pump design and analysis
Centrifugal pumps are used to transport fluids by the conversion of rotational kinetic energy to the hydrodynamic energy of the fluid. The pressure rises in three stages: 1. Fluid enters axially through eye of the casing, is caught up in the impeller blades, and is whirled tangentially and radially outward until it leaves…
25 Sep 2018 05:05 PM IST
Modelling and simulation of flow through a Flowbench
A flow bench is a device used for testing the internal aerodynamic qualities of a component of an engine, primarily for testing the intake and exhaust ports of cylinder heads of IC engines. For this project, a 3D model of a flowbench was created and flow analysis was performed for three grids. On deciding…
22 Sep 2018 01:16 PM IST
External flow over a cylinder
Re = ρ*U_inlet*D/μ D = cylinder diameter = 0.1 μ = dynamic viscosity=1.8205 ρ = Fluid density=1.2047 For initial inlet velocity of 1m/s Re=1.2047*1*0.1/1.8205=0.06617 Length of domain = 2.3 m Simulation end time is a little over 2 times the flow thorugh time. Velocity: Pressure: for 20% increment…
17 Sep 2018 06:21 PM IST
External flow over a NACA airfoil
Airfoil shapes developed by the National Advisory Committee for Aeronautics (NACA) are called the NACA airfoils. An airfoil is the cross-sectional shape of a wing, blade, or a sail. The lift coefficient, CL = 2*FL/(ρ*u*u*A) FL=lift force; ρ= fluid density; u= relative fluid incoming speed; A= relevant…
15 Sep 2018 04:57 PM IST
Rankine Cycle Simulator
The rankine cycle is a model used for steam turbine systems commonly found in thermal power generation plants. The processes in boiler and condenser are isobaric. The processes in turbine and pump are assumed to be isentropic (this is not the case in reality). Standard Xsteam library was used to get the steam table data…
06 Sep 2018 03:52 PM IST
Pipe Flow Simulation
To normalize the plots, the graphs were exported to excel and all the velocities were didvided by their respective inlet velocities. Reynolds number (RN) = fluid velocity (u)* Inside diameter of pipe / kinematic viscosity (v) v = 1.5111*10^-5, at 293 K from http://theengineeringmindset.com/properties-of-air-at-atmospheric-pressure/…
05 Sep 2018 05:37 AM IST
NASA Parsing Project
The code firsts reads the file. When the pointer reaches the first data row, the code will start the main extraction work and will arrange the parameters in a 112*7 matrix, with odd rows containing high temperature coeffs and even rows containing low temperature coefficients. It stores parameters in the matrix and adds…
31 Aug 2018 04:36 PM IST
Genetic Algorithm
1.) Genetic Algorithm is an optimization technique to find the minimum of the solution. It is more suited to solve non smooth functions, since there are other solvers which take less time than GA to solve smooth or relatively less complex problems. One major advantage with GA is that it canbe used for all types of problems…
13 Aug 2018 06:40 AM IST
Curve fitting
rsl=0;rsc=0;vs=0; rdata=load(\'data\'); %Reading the data file x=rdata(:,1); %assigning temperature data y=rdata(:,2); %assigning C_p data l=polyfit(x,y,1); %determining and assigning linear coefficients c=polyfit(x,y,3); %determining and assigning cubic coefficients pl=polyval(l,x); %assigning linear C_p data to pl pc=polyval(c,x);…
09 Aug 2018 05:30 AM IST
Solving second order ODEs Damped Pendulum
Main script clear all close all clc L=1; %Length of string f=1; %frame number m=1; %Mass of the ball b=0.05; %Damping coefficient g=9.81; %Acceleration due to gravity x_0=[0;3]; %Initial Conditions t_l=0:0.05:20; %Time limits [t, r]=ode45(@(t,x) ode(t,x,b,L,g,m),t_l,x_0); %Graph of Angular Displacement(rad) and Velocity(rad/s)…
01 Aug 2018 07:58 AM IST
Otto Cycle
bore=0.3; %bore diameter stroke=0.3; %stroke length made by piston or diameter made by crank conrod=1; %connnecting rod length cr=15; %compression ratio g=1.4; %gamma of air p1=101325; %pressure at BDC during intake stroke t1=500; %temperature in kelvin at BDC during intake stroke t3=2300; %temperature in kelvin at TDC…
31 Jul 2018 12:13 PM IST