Menu

Executive Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

BHARATH KUMAR YAMMANI

MSc Thermal Power - Aerospace Propulsion

Skills Acquired at Skill-Lync :

  • CFD
  • NUMERICAL-ANALYSIS
  • MATLAB
  • OPENFOAM
  • MATLAB-BASICS
  • COMBUSTION
  • IC-ENGINE-CFD
  • PARAVIEW

Introduction

I am a graduate of Cranfield University with a Master of Science in Thermal Power, aerospace propulsion as a specialization and bachelors degree in aeronautical engineering. The skills I have mastered in my studies include Python, Matlab, Autodesk Inventor and hope to apply these in the aeronautical field. My experience in internships has taught me valuable skills in organizing tools, and helped me adapt the organizational behavior.

13 Projects

Deriving 4th order approximation of a 2nd order derivative using Taylor Table method

Objective:

function [y,am] = expr(x) y = exp(x)*cos(x); am = exp(x)* (-2*sin(x)); end function error_c = central(x,dx,P,Q) %N = number of Nodes %P = order of accuracy %Q = order of derivative N = P+Q-1 ; %Number of nodes k = (N-1)/2; %constant A_c = zeros(N); %Defining matrix B_c = zeros(N,1); %Defining matrix B_c(Q+1,1) = 1; %Equating…

calendar

26 Apr 2022 08:08 PM IST

    Read more

    Week 5.1 - Mid term project - Solving the steady and unsteady 2D heat conduction problem

    Objective:

    Objective: To solve the 2D heat conduction equation in a steady and unsteady state with different solving techniques i.e., Jacobi, Gauss-seidel and Successive over relaxation with implicit and explicit equations. Boundary Conditions: Top boundary condition = 600 K Bottom boundary condition = 900 K Right boundary condition…

    calendar

    11 May 2022 11:23 PM IST

      Read more

      Week 7 - Simulation of a 1D Super-sonic nozzle flow simulation using Macormack Method

      Objective:

      Objective: To simulate the isentropic flow through a quasi 1D subsonic-supersonic nozzle. To derive in both the conservative and non-conservative forms of the governing equations by solving using MacCormark's technique. Aim: To plot the steady-state distribution of primitive variables inside the nozzle To plot the time-wise…

      calendar

      20 Jul 2022 04:33 PM IST

        Read more

        Week 9 - FVM Literature Review

        Objective:

        Aim: Differentiate FVM and FDM and describe the need for interpolation schemes and flux limiters in FVM. FVM: Finite Volume Method is a discretization method to evaluate the partial differential equation in the form of algebraic equations. It approximates through the control volumes and calculates the flux of the parameters…

        calendar

        21 Aug 2022 07:53 PM IST

          Read more

          Week 8 - Simulation of a backward facing step in OpenFOAM

          Objective:

          Aim: Simulate an incompressible laminar viscous flow through the backwards facing step geometry Perform transient simulation Explain the simulation setup of the problem in OpenFoam Perform two case studies one without using grading factor and the other with the grading factor of 0.2 Objectives: Copy a similar OpenFoam…

          calendar

          21 Aug 2022 11:01 PM IST

          • CFD
          • HTML
          Read more

          Week 3.2 - 2R Robotic Arm Challenge

          Objective:

          Code: clear all close all clc %Inputs l1 = 1; %Length of one arm l2 = 0.5; %Length of second arm theta1 = linspace(0,90,10); %Creating points for theta1 theta2 = linspace(0,90,10); %Creating points for theta2 ct = 1; %Variable for frames for i = 1:length(theta1) %For loop theta1_1 = theta1(i); for j = 1:length(theta2)…

          calendar

          05 Sep 2022 08:13 PM IST

            Read more

            Week 4.1 - Solving second order ODEs

            Objective:

            FUNCTION: function [dy] = myODE_simple_pendulum(t,y,b,g,m,L) dy = zeros(2,1); % creating the matrix %Converting second order ODE into first order ODE dy(1) = y(2); %y' = y2 dy(2) = ((-b/m)*y(2)) - ((g/L)*(sin(y(1)))); % y" = y2' end CODE: clear all close all clc t = [0,20]; %Simulation time y0 =[0, 3]; %Intial conditions…

            calendar

            29 Sep 2022 02:00 PM IST

              Read more

              Week 5 - Genetic Algorithm

              Objective:

                STALAGMITE FUNCTION: `f(x,y) = -f_(1,x)*f_(1,y)*f_(2,x)*f_(2,y)` where, `f_(1,x) = [sin(5.1*pi*x) + 0.5]^6` `f_(1,y) = [sin(5.1*pi*y) + 0.5]^6` `f_(2,x) = exp[-4*ln(2)*((x-0.0667)^2/0.64)]` `f_(2,y) = exp[-4*ln(2)*((y-0.0667)^2/0.64)]` Negative sign is introduced to find the maximum value   GENETIC ALGORITHM:…

              calendar

              15 Oct 2022 08:38 PM IST

                Read more

                Project 1 - Parsing NASA thermodynamic data

                Objective:

                Aim: To write a code in MATLAB to extract thermodynamic data from the file and calculate the cp, H and S for the species provided in the file and specified species.  Plot the thermodynamic properties with respect to the temperature in the respective folder which should be generated automatically.   Objective:…

                calendar

                19 Oct 2022 01:48 AM IST

                Read more

                Week 1: Channel flow simulation using CONVERGE CFD

                Objective:

                Aim:  To set up the channel flow case in converge environment and post-process the result in the Paraview Introduction: Channel flow is the internal flow over the walls which changes the hydrodynamic structure of the flow. In this project converge studio is used to set up the profile, the solver settings, and the…

                calendar

                26 Oct 2022 04:47 PM IST

                Read more

                Week 3: Flow over a backward facing step

                Objective:

                Aim:  To set up the backward-facing step case in converge environment and post-process the result in the Paraview Introduction: The flow is through the backward-facing step. In this project converge studio is used to set up the profile, the solver settings, and the initial conditions. The flow is driven by the change…

                calendar

                27 Oct 2022 11:42 PM IST

                Read more

                Week 4.1: Project - Steady state simulation of flow over a throttle body

                Objective:

                Aim: The main objective of this project is to set up the case to perform a simulation of steady-state flow over a Throttle valve when it is fully open and post-processing the result using ParaView.   Introduction: The report describes the steady-state flow simulation over a Throttle valve using converge CFD software,…

                calendar

                09 Nov 2022 12:40 PM IST

                Read more

                Week 4.2: Project - Transient simulation of flow over a throttle body

                Objective:

                Aim: To set up and simulate the Transient simulation of flow over the throttle body. Objective:  Setting up Transient state simulation for flow over a throttle body. To generate the mesh that gives more accurate results. Post-processing the obtained results using ParaView and show pressure and velocity contour. …

                calendar

                11 Nov 2022 07:52 PM IST

                Read more
                Showing 1 of 13 projects

                2 Course Certificates

                certificate

                Introduction to CFD using MATLAB and OpenFOAM

                CertificateIcon
                Certificate UID: xk2eqfgy7zrulhwj
                View Certificate
                certificate

                MATLAB for Mechanical Engineers

                CertificateIcon
                Certificate UID: 2430jxbh9lwkqfy7
                View Certificate
                Showing 1 of 2 certificates

                Academic Qualification

                Master of Science

                Cranfield University

                15 Mar 2021 - 25 Feb 2022

                B.Tech

                Hindustan Institute of Technology & Science

                10 Jun 2016 - 18 Apr 2020

                12th

                Sri Chaitanya Junior Kalasala

                10 Jul 2014 - 22 Apr 2016

                10th

                Sri Chaitanya school

                06 Jun 2013 - 22 Apr 2014

                Schedule a counselling session

                Please enter your name
                Please enter a valid email
                Please enter a valid number

                Here are the courses that I have enrolled

                coursecard
                4.8

                13 Hours of Content

                coursecard
                4.7

                5 Hours of Content

                coursecard
                Recently launched

                18 Hours of Content

                coursecard
                Recently launched

                21 Hours of Content

                coursecard
                Recently launched

                10 Hours of Content

                Similar Profiles

                Apoorv Ranjan
                Apoorv Ranjan

                Ladder of success cannot be climbed with hands in pocket.

                Pruthvi Jagadeesh GK
                Pruthvi Jagadeesh GK

                The Future in Motion

                Krantiveer .
                Krantiveer .

                Give more than what you get you will get more than what you gave