The above 3 pics are for O2, below 3 for CO2 The below one is for N2 AIM : File parsing the NASA thermodynamic data and to plot the variation of parameters like enthalpy,entropy,specific heat against temperature and to determine the molecular masses of individual species mentioned in the data file . THEORY…
Sai Krishna S
updated on 05 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 Sai Krishna S (19)
Week 4 -Breaking Ice with Air cushion Vehicle - Find minimum pressure with Newton-Raphson method
OBJECTIVE : Write a python code to find out the minimum value of pressure at h=0.6ft by using the Newton Raphson method. Write a python code to find the optimal relaxation factor for this problem with the help of a suitable plot. Write a python code to tabulate the results of pressure for h = [0.6,1.2,1.8,2.4,3,3.6,4.2]…
16 Jan 2022 06:06 PM IST
Week 6 - Data analysis
AIM : To write a python script to analyze the data available in the given file. OBJECTIVE : Check the compatibility of the file Calculate the area under the P-V diagram. Calculate the power output of this engine assuming that RPM is 1500 Calculate its specific fuel consumption. THEORY : Parsing means to break it…
14 Jan 2022 06:12 PM IST
Week 5 - Curve fitting
AIM : To write a code in Python to fit a linear and cubic order polynomial for the given Cp data. THEORY : Curve fitting is the process of constructing a curve or mathematical function that has the best fit to a series of data points, possibly subject to constraints or it can be defined as the process of finding…
30 Dec 2021 06:04 PM IST
Week 3 - Solving second order ODEs
AIM: To write a python program that represents the(ODE) equation of motion of a simple pendulum with damping. THEORY: The second-order ODE is simple pendulum's harmonic motion with damper, hence with decreasing amplitude. `(d^2theta)/(dt^2)+(b/m)*((d theta)/(dt))+(g/L)*sin(theta)=0` This system is equivalent…
25 Dec 2021 05:32 PM IST
Week 2 Air standard Cycle
OBJECTIVE: To create the PV diagram of Otto Cycle for the given inputs such as engine dimensions, pressure, and temperature, using Python programming. To obtain the thermal efficiency of the engine. CODE: #otto cycle simulator import math import matplotlib.pyplot as plt def engine_kinematics(bore,stroke,con_rod,cr,start_crank,end_crank):…
24 Dec 2021 10:38 AM IST
Centrifugal pump design and analysis
AIM : To design a 3D model of centrifugal pump ,run a baseline flow simulation where inlet flow takes place and then perform a parametric study for different velocities and then to obtain the relationship between Pressure ratio and mass flow rate. 3D Model Parameters: Internal flow simulationSteady-state studyTemperature:…
16 Jun 2021 06:24 PM IST
Modelling and simulation of flow through a flowbench
AIM: To perform the flow simulation through a flow bench by modeling the geometry and obtaining a lift vs mass flow rate plot. Grid dependence test For three grids run the simulation at a particular valve lift and explain the result. Effect of valve lift on mass flow rate After deciding the best grid, run a parametric…
16 May 2021 06:58 PM IST
Flow over an airfoil
AIM: To model the flow over NACA0017 airfoil and compare the lift and drag force for the angle of attack 0,2,4,6,8,10. THEORY: Airfoil is defined as the cross-section of a body(shape of wing, blade of propeller rotor or turbine or sail) that is placed in an airstream in order to generate useful aerodynamic force.…
08 May 2021 07:26 AM IST
Flow over a cylinder
AIM: To simulate flow over a cylinder at different Reynold's number conditions. Increase Reynold's number by a factor of 20%, 40%, and 100% then run the transient simulation. Create animations for pressure-velocity for all the three Reynolds number. THEORY: The Reynolds number (Re) is an important dimensionless…
05 May 2021 07:45 AM IST
Week 7 - Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method
AIM : Simulation of isentropic flow through a quasi 1D subsonic-supersonic nozzle using MacCormack's technique and to determine the steady-state temperature distribution for the flow-field variables and investigate the difference between the two forms of governing equations(conservative and non-conservative…
02 Mar 2021 08:07 AM IST
Week 12 - Symmetry vs Wedge vs HP equation
AIM : To write a MATLAB code for symmetry boundary conditions of laminar flow through pipe and to obtain the results at 10,25,45 degrees angles of pipe flow.Also to compare it with the results previously obtained for wedge boundary conditions. THEORY : Since this is a continuation of a previous challenge (laminar…
06 Dec 2020 03:00 PM IST
Week 11 - Simulation of Flow through a pipe in OpenFoam
AIM : To simulate the laminar flow of water through a circular pipe with the icoFoam solver and compare the results of simulation with the analytical solutions given by Hagen Poiseuille equations and to write a Matlab program that can generate the computational mesh automatically for any wedge angle and grading schemes.…
04 Dec 2020 08:23 AM IST
Week 8 - BlockMesh Drill down challenge
AIM : To simulate the flow through a backward facing step using the icoFoam solver in OpenFOAM software and to study the effect of mesh grading factor on the velocity and pressure magnitude profile. THEORY : Mesh Specifications: Number of cells along the x direction (longer dimension) = 200 Number of cells along the longer y…
30 Nov 2020 03:40 PM IST
Week 5 - Mid term project - Solving the steady and unsteady 2D heat conduction problem
AIM : To write the code which solves the steady and unsteady 2D heat conduction equation by using the point iterative techniques by implementing the following methods. Jacobi Gauss-Seidel Successive over-relaxation THEORY : Considering general 3D heat condution equation which has both time derivative and…
11 Nov 2020 01:22 PM IST
Week 3 - Taylor table method and Matlab code
AIM : To write a program in Matlab to evaluate the second-order derivative of the analytical function exp(x)*cos(x) and compare it with the 3 numerical approximations that you have derived. DESCRIPTION : Taylor Table is a type of table which contains the data of all the Taylor series expansion of a function that…
05 Nov 2020 08:38 AM IST
Project 2 - Rankine cycle Simulator
AIM: To create a Rankine Cycle Simulator using MATLAB and to calculate the state points of Rankine Cycle based on user inputs, also to calculate the net work output and back work ratio and finally to plot the T-s and h-s diagrams . THEORY: The Rankine cycle is a model used to predict the performance of steam…
08 Oct 2020 12:06 PM IST
Project 1 - Parsing NASA thermodynamic data
The above 3 pics are for O2, below 3 for CO2 The below one is for N2 AIM : File parsing the NASA thermodynamic data and to plot the variation of parameters like enthalpy,entropy,specific heat against temperature and to determine the molecular masses of individual species mentioned in the data file . THEORY…
05 Oct 2020 05:43 PM IST
Week 3 - Solving second order ODEs
AIM : To write a program that represents the(ODE) equation of motion of a simple pendulum with damping THEORY : The second order ODE is simple pendulum's harmonic motion with damper ,hence with decreasing amplitude. `(d^2theta)/(dt^2)+b/m(d theta)/dt+g/Lsin theta=0` This system is equivalent to mass attached…
25 Sep 2020 01:04 PM IST
Week 4 - Genetic Algorithm
AIM : To create and optimize stalagmite function and to find the global maxima of function THEORY : Genetic algorithm is an optimization technique which is used to minimise a certain function,when used in optimization ,generally its purpose to minimise the error of a function.This algorithm is named 'Genetic, because…
24 Sep 2020 03:35 PM IST