The following is the simulation of a laminar flow of an incompressible fluid through the pipe in OpenFoam. The following figure depicts the physical situation of the flow. For a laminar flow, the hydrodynamic length, `L_h=0.06*D*Re_D`, where `D` is pipe diameter, and `Re_D` is Reynolds number…
Jaswanth Kalyan Kumar Alapati
updated on 07 Jan 2022
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 Jaswanth Kalyan Kumar Alapati (8)
Week 1- Mixing Tee
This assignment aims to evaluate the mixing effectiveness of a Tee joint with two different outlet pipe lengths, namely small and long. The required Tee geometry is provided, and the interior volume for CFD analysis is extracted as shown below. Tee geometry with shorter outlet pipe: Extracted…
03 Sep 2022 08:13 PM IST
Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation
Unlike in the previous assignment, where the simulation is performed using a transient solver icoFoam, the simulation is carried out using a steady-state solver simpleFoam since the emphasis is on the steady-state flow field. This assignment aims to compare the boundary conditions of Wedge and Symmetry…
11 Jan 2022 11:09 AM IST
Week 11 - Simulation of Flow through a pipe in OpenFoam
The following is the simulation of a laminar flow of an incompressible fluid through the pipe in OpenFoam. The following figure depicts the physical situation of the flow. For a laminar flow, the hydrodynamic length, `L_h=0.06*D*Re_D`, where `D` is pipe diameter, and `Re_D` is Reynolds number…
07 Jan 2022 10:13 AM IST
Week 9 - FVM Literature Review
Finite Volume Method (FVM) is a numerical technique for solving partial differential equations governing the phenomena. The method involves discretizing the domain into smaller volumes. These control volumes are connected by common faces. The governing equation in integral form is applied for all the control volumes followed…
26 Dec 2021 07:15 AM IST
Week 8 - Simulation of a backward facing step in OpenFOAM
The appropriate solver for the given flow condition is icoFoam. From the tutorials folder of the OpenFoam, the cavity tutorial which uses icoFoam solver is copied to the run folder. The blockMeshDict file is edited as below according to the following configuration. blockMeshDict file /*--------------------------------*-…
16 Dec 2021 09:57 PM IST
Week 7 - Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method
In this assignment, unsteady flow through the 1-D convergent-divergent nozzle is explored using MacCormak's technique. The transient flow is solved using finite difference methods on the non-dimensionalized governing equation's conservative and non-conservative forms. Separate functions are created for conservative and…
21 Sep 2021 05:11 PM IST
Week 5.1 - Mid term project - Solving the steady and unsteady 2D heat conduction problem
2-D steady state is solved first using the three methods. The three methods are formulated in MATLAB as follows. close all clear all clc % Solving steady state 2D heat conduction equation % Domain is a square of length equal to one n=20; % Number of nodes in x and y direction % Discretization of domain x=linspace(0,1,n);…
22 Jul 2021 08:01 AM IST
Week 3.5 - Deriving 4th order approximation of a 2nd order derivative using Taylor Table method
Derive the `4^(th)` order approximation of the second-order derivative using central difference scheme let f be the function whose second derivative is approximated at `i^(th)` point using function values at (i-2), (i-1), i, (i+1), (i+2) points. let h be the distance between the consecutive points. let `(d^2f)/dx^2=a*f_(i-2)+b*f_(i-1)+c*f_i+d*f_(i+1)+e*f_(i+2)+O(h^n)`…
13 Jul 2021 04:43 PM IST