Aim: The main objective of this project was to simulate and study the velocity, pressure, mass flow rate, and total cell count for all 3 base mesh sizes of the Rectangular Channel using CONVERGE Studio and observe the difference between the contours and line plots generated by running the 3 case study. Introduction Consider…
Kashif Mohiuddin .
updated on 04 Oct 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 Kashif Mohiuddin . (13)
Modeling and Simulation of flow around an Ahmed Body
Aim: The major objective of this project was to model and set up the simulation of flow around an Ahmed Body using Converge CFD and Comparing the simulation result with the experimental data provided. Geometry creation of an Ahmed body using Solidworks Isometric View Front View and Side View Geometry Creation The Virtual…
18 Nov 2020 11:48 AM IST
Week 7 - Mini project - Flow over an Airfoil
Aim The major objective of this simulation was to set a simulation over the NACA 2412 aerofoil with different angles of attack(AOA) using Converge CFD and estimating its coefficient of lift and drag. Aerofoil: Terminology and Definitions Aerofoil sketch is shown in Figure, which illustrates terminology: 1. Mean camber…
11 Nov 2020 07:28 AM IST
Literature review RANS derivation and analysis
Aim: The major Objective was to apply Reynolds decomposition to the Naviour Strokes equations and come up with Reynold's Stress. Understand the term, Reynolds Stress, and study the difference between turbulent viscosity and molecular viscosity. Theory: Turbulence Turbulence is the state of chaotic and unstable…
09 Nov 2020 08:14 AM IST
Shock tube simulation project
Aim: The major objective of this project was to set up Transient Simulation in a Shock Tube using Converge CFD. A shock tube that has a diaphragm in between and the tube is one side filled with high-pressure Nitrogen where the other side is filled with low-pressure Oxygen. Introduction The report contains a detailed description…
03 Nov 2020 08:05 AM IST
Conjugate Heat Transfer Simulation
Aim: The major objective of this project was to Simulate an Aluminium cylindrical tube for the Conjugate Heat Transfer problem using Converge CFD and Post-processing the result using ParaView to study the change of result when the major parameter is changed like grid size. Introduction The report contains a detailed…
31 Oct 2020 07:17 AM IST
Prandtl Meyer Shock problem
Shock Flow Boundary Conditions: For solving the steady state flow appropriate boundary conditions are needed. It is one of the required components of the mathematical model. On the other hand, for solving transient flow, appropriate initial condition is also required. Boundary conditions are generally three types.…
23 Oct 2020 08:13 AM IST
Project Transient simulation of flow over a throttle body
Aim: The major objective of this project was to perform a transient simulation for the flow of air over a throttle body when the throttle is moving at some angle in Converge Studio and post-process the results using ParaView. Introduction: The report contains a detailed description of the transient simulation over…
20 Oct 2020 08:13 AM IST
Project Steady state simulation of flow over a throttle body
Aim: The main objective of this project is to set up the case to perform simulation of steady-state flow over a Throttle valve when it is fully open and post-processing the result using ParaView. Introduction: The report contains a detailed description of the steady-state flow simulation over a Throttle valve using…
17 Oct 2020 06:38 AM IST
Flow over a backward facing step
The case setup : The model was designed and imported to the converge studio and the bondary flagging was done. the simulation done was a time-based, steady-state simulation. Normal vectors were alligned in such a way that the flow was made to visualize inside the backward facing step body. An inlet pressure of…
10 Oct 2020 05:29 AM IST
Channel flow simulation using CONVERGE CFD
Aim: The main objective of this project was to simulate and study the velocity, pressure, mass flow rate, and total cell count for all 3 base mesh sizes of the Rectangular Channel using CONVERGE Studio and observe the difference between the contours and line plots generated by running the 3 case study. Introduction Consider…
04 Oct 2020 08:35 AM IST
Project 1 - Parsing NASA thermodynamic data
AIM- File Parsing using NASA Thermodynamics data THEORY- File Parsing : File parsing is a method that helps us in decoding that data or in other words help us reading that data and use it in calculation of several parameters that defines the state of that environment. And analyse behaviour of different species changing…
23 Sep 2020 07:01 PM IST
Week 4 - Genetic Algorithm
clear all close all clc %Defining search space x= linspace(0,0.6,150); y= linspace(0,0.6,150); %Creating a 2D mesh [xx yy] = meshgrid(x,y); %Evaluation of stalagmite function for i=1:length(xx) for j=1:length(yy) input_vector(1) = xx(i,j); input_vector(2) = yy(i,j); F(i,j) = stalagmite(input_vector); end end % Number of…
18 Sep 2020 11:59 AM IST
Week 3 - Solving second order ODEs
% solving ODE of motion of a simple pendulum with damping clear all close all clc %inputs %length of pendulum(m) l=1; %damping coefficient b=0.05; %gravity in m/s2 g=9.81; %mass of the ball in kg m=1; %initial condition theta_0=[0;3]; %time span t_span = linspace(0,20,400); %solve ODE [t,results] = ode45(@(t,theta)ode_fun(t,theta,b,g,l,m),t_span,theta_0);…
17 Sep 2020 12:10 PM IST