Here we are computing Distribution of temperature , velocity , Density, and mass flow rates in quasi 1D isentropic subsonic and super sonic flows using two forms of governing solutions by MacCormack's technique. The two forms of governing equations are 1. Non conservative technique 2. Conservative technique …
PAVAN KALYAN MAJJIGA
updated on 12 Dec 2020
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 KALYAN MAJJIGA (7)
Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation
In this challenge we are going to validate the results we get from simulating the flow for two different boundary conditions 1. Wedge boundary conditions 2. Symmetry bounday conditions The quantities we are going to validate are 1.Hydro dynamic length 2.Fully developed velocity profile …
14 Jul 2021 05:06 PM IST
Week 11 - Simulation of Flow through a pipe in OpenFoam
Hagen-Poiseullie's equation is a physical law used to calculate the pressure drop across a pipe of uniform crossection through which there is laminar flow of a viscous , incompressible, Newtonian fluid Hagen-Poiseullies equation is `Deltap = (32* mu*l*V_(avg))/(d^2)` `nu = mu/rho` `V_(avg) = (Re*mu)/(rho*d)`…
06 Jul 2021 05:48 PM IST
Week 8 - BlockMesh Drill down challenge
First we need to know which problem we are going to solve and we need to identify which tutorial in openfoam is useful to solve our problem. For that we need to grind through all the tutorials available and identify the required one The above problem is to solve incompressible laminar viscous flow through a backward…
27 Dec 2020 11:45 AM IST
Week 9 - FVM Literature Review
Fintite Volume Method : 1. It is one of the descretization methods to solve the partial differential equations in computer . 2.In Finite volume method we descretise using a volume , The volume might be of any shape . 3. In that volume everything is conserved i.e momentum , Energy , Mass are conserved . 4. In Finite volume…
22 Dec 2020 02:52 PM IST
Week 3 - Taylor table method and Matlab code
The matlab code clear all close all clc % matrices to solve variables for skewed right side difference B1 = [ 1 1 1 1 1 1 ; 0 1 2 3 4 5 ; 0 1 4 9 16 25 ; 0 1 8 27 64 125 ;0 1 16 81 256 625 ; 0 1 32 243 1024 3125] A1 = [0 ; 0;2;0;0;0] X1 = inv(B1)*A1; a1 = X1(1); b1 = X1(2); c1 = X1(3); d1 = X1(4); e1 = X1(5); g1…
20 Dec 2020 11:05 AM IST
Week 7 - Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method
Here we are computing Distribution of temperature , velocity , Density, and mass flow rates in quasi 1D isentropic subsonic and super sonic flows using two forms of governing solutions by MacCormack's technique. The two forms of governing equations are 1. Non conservative technique 2. Conservative technique …
12 Dec 2020 03:17 AM IST
Week 5 - Mid term project - Solving the steady and unsteady 2D heat conduction problem
Matlab code for solving the above problem in steady state clear all close all clc %Inital conditions nx1 = 10; nx2 = 10 ; x = linspace(0,1,nx2); y = linspace(0,1,nx1); error = 9e9; error1 = 9e9; error2 = 9e9; tol = 1e-4; dx = x(2)-x(1); dy = y(2)-y(1); [ xx yy ] = meshgrid(x,y); p =1; while(p<4) if(p==1) %Boundary conditions…
17 Nov 2020 05:47 PM IST