The main purpose of this project is to compare the different numerical schemes such as \"Conservative Form\" and \"Non-Conservative Form\" for 1D Subsonic-Supersonic Nozzle flow simulations. 1. Assumption: Steady State & Isentropic flow Quasi 1D flow Inlet is a reserviour @ `P_{0}, T_{0}` Area of reserviour is `Ararroo`…
Shaik Asif
updated on 21 Jun 2019
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 Shaik Asif (11)
Flow our Backward Facing Step
BlockMesh Drill down challenge: The classical backward facing step is most sought after problem in CFD. The following geometry represents the backward facing steps with boundry conditions. Mesh specification Number of cells along the x direction (longer dimension) = 200 Number of cells along the y direction = 10 Use a…
29 Jul 2019 06:09 AM IST
Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method
The main purpose of this project is to compare the different numerical schemes such as \"Conservative Form\" and \"Non-Conservative Form\" for 1D Subsonic-Supersonic Nozzle flow simulations. 1. Assumption: Steady State & Isentropic flow Quasi 1D flow Inlet is a reserviour @ `P_{0}, T_{0}` Area of reserviour is `Ararroo`…
21 Jun 2019 09:16 AM IST
Steady and Unsteady 2D Heat Conduction by Explicit and Implicit method
Steady and Unsteady 2D Heat Conduction by Explicit and Implicit method: Basically there are 3 types of heat transfer Conduction Convection Radiation Conduction: It is mode of heat transfer genrally occurs in solids due to temperature difference. It occurs due to molecular lattice vibration Energy (30%) By free electron…
03 Mar 2019 01:55 PM IST
Week 3 - Speed Programming in Matlab Octave for non computer science engineers
#commentThe code seems to be an exact representation of the reference code. There is also a glitch % main bodyclose allclear allclct = [0 20]yo = [0 3][t, y] = ode45('ode_pendulum',t,yo)subplot(5,4,[13,14,15,16]);plot(t,y(:,1),'color','r');hold on;plot(t,y(:,2),'color','b');hold off;subplot(5,4,[17,18,19,20]);plot(y(:,1),y(:,2));xlabel('position_Radians')ylabel('Angular_velocity');ct=1;for…
27 Dec 2018 02:19 PM IST
Week 3 - Speed Programming in Matlab Octave for non computer science engineers
#commentThe code seems to be an exact representation of the reference code. There is also a glitch % main bodyclose allclear allclct = [0 20]yo = [0 3][t, y] = ode45('ode_pendulum',t,yo)subplot(5,4,[13,14,15,16]);plot(t,y(:,1),'color','r');hold on;plot(t,y(:,2),'color','b');hold off;subplot(5,4,[17,18,19,20]);plot(y(:,1),y(:,2));xlabel('position_Radians')ylabel('Angular_velocity');ct=1;for…
27 Dec 2018 02:16 PM IST
Week 4 - Linear Convection
Effect of time step size on the solution:Objective:To represent the wave equcation for convection @ t = .4 Second for time step .1. .01. .001, .0001 in single plot.Ploting of simulation time for different time stepThe body of the program (time_step_dt) call for the function time_step_loop for different input values of…
27 Dec 2018 02:11 PM IST
Week 4 - Linear Convection
Effect of time step size on the solution:Objective:To represent the wave equcation for convection @ t = .4 Second for time step .1. .01. .001, .0001 in single plot.Ploting of simulation time for different time stepThe body of the program (time_step_dt) call for the function time_step_loop for different input values of…
27 Dec 2018 02:11 PM IST
Week 4 - Linear Convection
Effect of time step size on the solution:Objective:To represent the wave equcation for convection @ t = .4 Second for time step .1. .01. .001, .0001 in single plot.Ploting of simulation time for different time stepThe body of the program (time_step_dt) call for the function time_step_loop for different input values of…
27 Dec 2018 02:10 PM IST
Week 4 - Linear Convection
Effect of time step size on the solution:Objective:To represent the wave equcation for convection @ t = .4 Second for time step .1. .01. .001, .0001 in single plot.Ploting of simulation time for different time stepThe body of the program (time_step_dt) call for the function time_step_loop for different input values of…
27 Dec 2018 02:10 PM IST
ODE for Pendulum motion
% main body close all clear all clc t = [0 20] yo = [0 3] [t, y] = ode45(\'ode_pendulum\',t,yo) subplot(5,4,[13,14,15,16]); plot(t,y(:,1),\'color\',\'r\'); hold on; plot(t,y(:,2),\'color\',\'b\'); hold off; subplot(5,4,[17,18,19,20]); plot(y(:,1),y(:,2)); xlabel(\'position_Radians\') ylabel(\'Angular_velocity\'); ct=1;…
05 Dec 2018 02:15 PM IST
a new title
% for Alkanes% n Number of moles of Carbon% a Number of moles of CO2% b Number of moles of water% c Number of moles of Nitrogen% 'ar' Stoichiometry ratioclear allclose allclcn = linspace(1,10,10);a = n;b = ((2*n)+2)/2;ar = (2*a+b)/2;c = ar*3.76;plot(n,ar,'linewidth',2)xlabel('Number_of_mole_carbon_dioxide')ylabel('Stoichiometry_ar')%…
30 Nov 2018 03:28 AM IST