Menu

IIT Certification 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

Raghavendra Kadage

Seeking a career in globally growing organization where I can utilize my knowledge and skills.

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • CFD
  • NUMERICAL-ANALYSIS
  • MATLAB
  • OPENFOAM
  • BASIC-PROGRAMMING

Introduction

I am an engineer graduated in the stream of Mechanical Engineering with a CGPA of 9.29 in the year 2020. I have qualified GATE-2020 examination with a score of 369. I am pursuing master's degree in Turbomachines from SVNIT, Surat. I am working in the domain of computational fluid dynamics and I have passion of developing CFD solvers by programming. I am working in the field of combustion during my M.Tech final year dissertation.

16 Projects

Week 3 - Solving second order ODEs

Objective:

Damped Oscillations of Pendulum: The general differential equation which governs the behaviour of system is given as: d^2 (θ)/d(t^2)+ (b/m)*(dθ/dt)+ (g/l)*sinθ=0 In above equaton, b is daming coefficient, m is the mass of pendulum and l is length of string while θ is angular dispalcement. It…

calendar

21 Jul 2021 06:41 PM IST

    Read more

    Week 4.1 - Genetic Algorithm

    Objective:

      Optimization Process:                                                      The first step is to identify need for optimization. In mechanical engineering, optimization means reducing…

    calendar

    24 Jul 2021 08:48 AM IST

    • MATLAB
    Read more

    Project 1 - Parsing NASA thermodynamic data

    Objective:

    Title: Nasa Thermodynamic Data file parsing using MATLAB Logic:  The screenshot of the given data file is attached below. Let's understand the structure of data given in this file. Reading data from a particular Block: So, in this file, there are total 53 species blocks are given. Each species block contain 4 lines…

    calendar

    28 Jul 2021 06:50 AM IST

    Read more

    Project 2 - Rankine cycle Simulator

    Objective:

    Title: Simulation of Rankine Cycle In rankine cycle the following processes occur 1-2: Isentropic compression in Turbine 2-3: Constant pressure heat rejection in Condenser 3-4: Isentropic compression using Pump 4-1: Constant pressure heat addition in Boiler The conditions of steam at inlet of turbine (state point 1) is…

    calendar

    31 Jul 2021 10:52 AM IST

      Read more

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

      Objective:

      ** Taylor Table: The general concept of Taylor table comes from the Numerical differentiation. We know that, f(x+h)=f(x)+h*f'(x)+h^2*f''(x)/2!+h^3*f'''(x)/3!+h^4*f''''(x)/4!+h^5*f'''''(x)/5!.... Now to find f'(x), we can modify above series f'(x)=f(x+h)-f(x)/h - h*f''(x)/2! - h^2*f'''(x)/3!..... In case of finding differentiation…

      calendar

      15 Sep 2021 05:14 PM IST

      Read more

      Week 8 - Simulation of a backward facing step in OpenFOAM

      Objective:

      Assignment : Flow over backward step Tutorial : incompressible >> cavity >> cavity Solver : icoFoam Meshing : blockMesh General Steps:  1. Copy the tutorial file into run folder by command: cp -r cavity/ $FOAM_RUN/backward_step 2. Acess the system folder inside backward_step folder by command: cd system/…

      calendar

      04 Feb 2022 06:46 PM IST

        Read more

        Week 9 - FVM Literature Review

        Objective:

        ** Finite Volume Method: 1. Finite volume method is one of the methods in numerical computation in which the computational domain is divided into a        number of infinitisimal volume (cells). Each cell has 1 cell centroid and 6 control surfaces which are also known as faces. 2. The centroid of each…

        calendar

        06 Feb 2022 03:12 PM IST

          Read more

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

          Objective:

          ** 2D Steady Heat Conduction *Main code: clear all close all clc %% Define domain nx=21; % Number of points in x direction ny=21; % Number of points in y direction L=1; H=1; x=linspace(0,L,nx); y=linspace(0,H,ny); dx=L/(nx-1); dy=H/(ny-1); M=(dy^2)/(2*(dx^2+dy^2)); N=(dx^2)/(2*(dx^2+dy^2)); omega=1.5; %% Define Boundary…

          calendar

          08 Feb 2022 05:02 PM IST

            Read more

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

            Objective:

            ** Code of Non-Conservative  clc clear all close all %% Create 1D domain n=31; L=3; x=linspace(0,L,n); dx=x(2)-x(1); th=(n-1)/2; % Location of throat %% Constants gama=1.4; %% Time steps nt=1800; dt=0.01; %% initial values of properties rho=1-0.3146*x; % Density t=1-0.2314*x; % Temperature v=(0.1+1.09*x).*t.^0.5;…

            calendar

            16 Feb 2022 09:03 AM IST

              Read more

              Week 11 - Simulation of Flow through a pipe in OpenFoam

              Objective:

              ** Hagen Poiseuille Flow: MATLAB Code to Generate BlockMesh file: f1=fopen ('blockMeshDict','w') % Create a text file with name "blockMeshDict" fprintf(f1,'\nFoamFile') fprintf(f1,'\n{') fprintf(f1,'\n\tversion 2.0;') fprintf(f1,'\n\tformat ascii;') fprintf(f1,'\n\tclass dictionary;') fprintf(f1,'\n\tobject blockMeshDict;')…

              calendar

              21 Feb 2022 10:15 AM IST

              Read more

              Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation

              Objective:

              ** Laminar Flow Through Pipe A) For angle 10     pipe radius= 2cm, Raynold's number= 2100 # Generating blockMeshDict file using MATLAB FoamFile { version 2.0; format ascii; class dictionary; object blockMeshDict; } //******************************// scale 1; vertices ( (0 0 0) (0 0.019924 0.001743) (0 0.019924…

              calendar

              23 Feb 2022 08:50 AM IST

              Read more

              Week 2 Challenge : Surface meshing on a Pressure valve

              Objective:

              ** Meshing Steps 1. Geometry cleanup. Serach for single, double, triple cons. Double cons means a surface is adjacent to another 2 surfaces.          Single cons are to be eliminated. Triple cons means overlapped surfaces. 2. Go to tools> checks>Geometry>execute. By doing this, the number…

              calendar

              26 Feb 2022 10:01 AM IST

                Read more

                Week 3 Challenge : CFD meshing on Turbocharger

                Objective:

                ## Report Step A: Geometry Cleanup 1. This CAD file is modelled in the way such that the assembled components are manufactured. This means that there are different types of contacts between the two components. The components may share a common surface. Or if 2 components were press fitted then their surfaces are overlapping. …

                calendar

                01 Mar 2022 06:59 AM IST

                Read more

                Week 4 Challenge : CFD Meshing for BMW car

                Objective:

                ** Meshing of BMW Model 6: Step A: Geometric Cleanup 1. The BMW car is symmetric about a plane. Hence to reduce the efforts of geometry cleanup, delete the other half of car. The symmetric plane passes through front hood, roof, rear hood. 2. The front grills have too many openings for the purpose of air circulations. So…

                calendar

                06 Mar 2022 10:26 AM IST

                Read more

                Week 5 Challenge : Surface wrap on Automotive Assembly

                Objective:

                ## Steps for developing surface wrap: # Step A: 1. The model of engine has too many ring shaped objects which are created to give a fillet like edge. These rings are inwanted items in the model. So the first step involve is identifying the rings and deleting them. The air filter pipes and the belt of the belt drive is…

                calendar

                07 Mar 2022 06:29 PM IST

                  Read more

                  Project 1 : CFD Meshing for Tesla Cyber Truck

                  Objective:

                  ## Objective: External aerodynamic analysis of Tesla Cyber Truck Design ## Procedure: **Step A: Geometry Cleanup    1. When the file is loaded into ANSA, there are too many single cons. Hence select all of them and perform TOPO                       operation.…

                  calendar

                  08 Mar 2022 01:31 PM IST

                  Read more
                  Showing 1 of 16 projects

                  3 Course Certificates

                  certificate

                  MATLAB for Mechanical Engineers

                  CertificateIcon
                  Certificate UID: xh9g2inqmptk5are
                  View Certificate
                  certificate

                  Introduction to CFD using MATLAB and OpenFOAM

                  CertificateIcon
                  Certificate UID: z2r87dai5e3p1xvw
                  View Certificate
                  certificate

                  Advanced CFD Meshing using ANSA

                  CertificateIcon
                  Certificate UID: m5q7yoprnijx1bgl
                  View Certificate
                  Showing 1 of 3 certificates

                  Academic Qualification

                  B.E

                  Walchand Institute Of Technology ( W.I.T )

                  28 Jul 2016 - 15 May 2020

                  12th

                  Walchand College of Arts

                  15 Jun 2013 - 31 Mar 2015

                  10th

                  Suyash Vidyalaya

                  15 Jun 2007 - 30 Mar 2013

                  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.7

                  5 Hours of Content

                  coursecard
                  4.9

                  12 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