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

Minam Tungekar

Design Engineer

Skills Acquired at Skill-Lync :

  • CFD
  • ANSYS-FLUENT
  • NUMERICAL-ANALYSIS
  • MATLAB
  • OPENFOAM
  • CANTERA
  • PYTHON
  • COMBUSTION

Introduction

Hi! I am a Mechanical Design Engineer with 3+ years of work experience seeking for new opportunities in the field of computational fluid dynamics. Prior to this, I have worked as a design engineer of static equipments.

20 Projects

Deriving 4th order approximations of 2nd order derivatives using taylor table for central skewed right skewed left differences and MATLAB code for the same

Objective:

clear all close all clc x=pi/4; dx=linspace(pi/40,pi/60); % f(x)=exp(x)*cos(x); % exact_derivative_second_order = -2*exp(x)*sin(x); exact_derivative = -2*exp(x)*sin(x); % calculating the coefficients of the equation in forward differencing % scheme % obtaining 6 equations for 6 unknowns from the taylor table, we use matrix…

calendar

05 Aug 2019 06:11 AM IST

  • MATLAB
Read more

Week 3 - Solving second order ODEs

Objective:

clear all close all clc b = 0.05; g = 9.81; L = 1; m = 1; % time span t_span = linspace(0,20,500); % initial conditions theta_0 = [0;3]; % [ displacement ; velocity ] [t, results] = ode45(@(t,theta) ode_func(t,theta,b,g,L,m),t_span,theta_0); displacement = results(:,1); velocity = results(:,2); figure('windowstate','maximized','Name','Second…

calendar

01 May 2021 08:15 AM IST

    Read more

    Week 4.1 - Genetic Algorithm

    Objective:

    clear all close all clc %% Determining minima values for the stalactites % Creating an array of 1D xi = linspace(0,1,200); yi = linspace(0,1,150); % Creating a mesh of x and y [X,Y] = meshgrid(xi,yi); % Creating a dummy matrix of length(yi)*length(xi) f =nan(size([length(yi) length(xi)])); % Specifying co-ordinates within…

    calendar

    19 May 2021 08:38 AM IST

      Read more

      Project 1 - Parsing NASA thermodynamic data

      Objective:

        clear all close all clc % open THERM data in the read mode t1 = fopen('THERMO.dat','r'); % Reading header, won't be assigning to anything, will clear off at program end fgetl(t1); % Reading next temperature line gl_temp = fgetl(t1); % Splitting the string global_temp_split = strsplit(gl_temp); % Converting to number,segregating…

      calendar

      27 May 2021 03:29 AM IST

      Read more

      Project 2 - Rankine cycle Simulator

      Objective:

      clear all close all clc diary Rankine_Cycle_Results.txt fprintf('\t\t RANKINE CYCLE SIMULATOR\n\n') fprintf('1-2 : Isentropic Expansion in Turbine\n') fprintf('2-3 : Constant pressure Heat Rejection by the Condensor\n') fprintf('3-4 : Isentropic Compression in Compressor\n') fprintf('4-1 : Constant Pressure Heat Addition…

      calendar

      03 Jun 2021 04:51 AM IST

        Read more

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

        Objective:

        clear all close all clc %% Define dimensions of the domain L = 1; % Nodes on each axis, only n is enough as uniform mesh is considered n = 50; % Define x and y array x = linspace(0,1,n); y = linspace(0,1,n); % Size of mesh grid dx = L/(n-1); dy = dx; % Define K as mesh grid in constant and does'nt change K = ((2*(dx^2+dy^2))…

        calendar

        18 Jun 2021 04:08 AM IST

          Read more

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

          Objective:

          Main Script calling non conservative and conservative functions. clear all close all clc %% Defining the common parameters L = 3; n = [61,31]; gamma = 1.4; C = 0.5; nt = 1:1400; %% The subsonic-supersonic isentropic nozzle solution: Non-Conservation Form [drho_dt,x,A,rho,V,T_throat,p,M,rho_throat,mfr,p_throat,M_throat]…

          calendar

          08 Jul 2021 05:10 AM IST

          Read more

          Week 9 - FVM Literature Review

          Objective:

          Finite Volume Method: A Literature Review The finite volume method (FVM) is a discretization technique for partial differential equations, especially those that arise from physical conservation laws. FVM uses a volume integral formulation of the problem with a finite partitioning set of volumes to discretize the equations.…

          calendar

          12 Jul 2021 10:00 PM IST

            Read more

            Week 8 - Simulation of a backward facing step in OpenFOAM

            Objective:

            In this challenge we are asked to simulate a flow of fluid through a Backward facing step, in which the fluid is Incompressible, Laminar and viscous in nature. The simulation shall be Transient in nature; thus, we shall have to discretize an unsteady Reynolds scalar transport equation for a fluid flow. Based on the above…

            calendar

            25 Aug 2021 06:50 PM IST

              Read more

              Week 11 - Simulation of Flow through a pipe in OpenFoam

              Objective:

              Week 11 - Simulation of Flow through a pipe in OpenFoam In this challenge, we shall simulate an axi-symmetric flow by applying a wedge boundary condition. Problem Statement: The flow is axi-symmetric. Wedge Boundary condition is used. Flow is laminar and flows through a constant cross section pipe. Reynolds number is 2100.…

              calendar

              16 Sep 2021 12:10 PM IST

              Read more

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

              Objective:

              Week 12 - Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation In this project, we shall not be performing analysis on the complete circular cross section of a pipe, rather we shall be considering different sizes of the section of circular cross section of pipe for analysis and simulation.…

              calendar

              26 Sep 2021 05:20 PM IST

              Read more

              Week 1- Mixing Tee

              Objective:

              Aim     To set up steady state simulations in order to compare mixing of hot and cold fluid through outlet of a geometric tee model. Given 2 cases, were in two versions of a mixing tee have been modelled. Need to use k-epsilon and k-omega SST model for case 1 and based on the judgement, use only one method accordingly…

              calendar

              01 Mar 2022 09:10 AM IST

              Read more

              Week 2 - Flow over a Cylinder.

              Objective:

              Aim: To study vortex shedding over a cylinder Objective: Simulation of steady and unsteady state Calculate lift and drag coefficient Calculate Strouhal number for Reynolds number 100 in both steady and unsteady case Perform steady state simulation for various cases of Reynolds number. Introduction: Flow over cylinder in…

              calendar

              07 Mar 2022 08:51 AM IST

                Read more

                Week 3 - External flow simulation over an Ahmed body.

                Objective:

                The aim, Introduction, Theory The Ahmed body, even though it does not replicate the exact shape of a vehicle body used in the current industry, the shape of the rear of the vehicle is imperative in capturing the forces, pressure and velocity in the wake region of any generic vehicle. The airflow around the body captures…

                calendar

                10 Mar 2022 11:42 AM IST

                  Read more

                  Week 4 - CHT Analysis on Exhaust port

                  Objective:

                  Introduction, aim and objective Conjugate heat transfer (CHT) analysis is used were there is a temperature variation during heating or cooling of a material as a result of interaction between solid and fluid phases. It is a transfer of heat in solids to fluids and vice versa Some of the examples include HVAC, Heat Exchangers,…

                  calendar

                  15 Mar 2022 09:43 PM IST

                  Read more

                  Week 5 - Rayleigh Taylor Instability

                  Objective:

                  OBJECTIVE: The objective of this challenge is to simulate a two-dimensional Rayleigh-Taylor instability problem. INTRODUCTION: In Multiphase flows, the dynamic variables like velocity, pressure, viscosity, density etc are the driving members for movement of fluids under gravitational field. One such example is of Rayleigh-Taylor…

                  calendar

                  30 Mar 2022 09:29 PM IST

                  Read more

                  Week 6 - CHT Analysis on a Graphics card

                  Objective:

                  In this simulation, we shall be performing a study of conjugate heat transfer using steady state conditions on a CAD model of a graphics card. The various steps involved shall include performing necessary steps in CFD SpaceClaim, to make the geometry complacent for further analysis, meshing individual components according…

                  calendar

                  19 Apr 2022 11:47 AM IST

                  Read more

                  Week 8 - Simulating Cyclone separator with Discrete Phase Modelling

                  Objective:

                  SIMULATING CYCLONE SEPARATOR Aim: To perform an analysis on cyclone separator and calculate the separation efficiency and pressure drop. Objective: To write a few words about any four empirical models used to calculate cyclone separator efficiency. To perform an analysis on a given cyclone separator model by varying particle…

                  calendar

                  16 Jun 2022 09:39 AM IST

                    Read more

                    Week 9 - Parametric study on Gate valve.

                    Objective:

                    Week 9 – Parametric Study on Gate Valve   AIM: To perform a parametric study on the gate valve simulation by setting the opening from 10% to 80%.   Objective: Obtain the mass flow rates at the outlet for each design point. Calculate the flow coefficient and flow factor for each opening and plot the graph.…

                    calendar

                    24 Jun 2022 09:45 PM IST

                    Read more

                    Week 10 - Simulating Combustion of Natural Gas.

                    Objective:

                    In this simulation, we have performed a combustion simulation on the combustor model and plotted the variation of the mass fraction of the different species in the simulation using line probes at different locations of the combustor. Plots for CO2, H2O, CH4, N2, O2, NOx emissions & Soot formation have been attached.…

                    calendar

                    06 Jul 2022 12:28 AM IST

                    Read more
                    Showing 1 of 20 projects

                    3 Course Certificates

                    certificate

                    MATLAB for Mechanical Engineers

                    CertificateIcon
                    Certificate UID: dl87tpqgik6f49r1
                    View Certificate
                    certificate

                    Introduction to CFD using MATLAB and OpenFOAM

                    CertificateIcon
                    Certificate UID: swx5ltfun70bjhpc
                    View Certificate
                    certificate

                    Introduction to GUI based CFD using ANSYS Fluent

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

                    15 Workshop Certificates

                    certificate

                    Advance Gas Turbine

                    CertificateIcon
                    Certificate UID: wvz9c15a78
                    View Certificate
                    certificate

                    CATIA Customization & Automation

                    CertificateIcon
                    Certificate UID: 05mx9swndq
                    View Certificate
                    certificate

                    BIW Paints & Anti-corrosion

                    CertificateIcon
                    Certificate UID: jif54s7voe
                    View Certificate
                    certificate

                    BIW Paints & Anti-corrosion

                    CertificateIcon
                    Certificate UID: p4z9e5s0iw
                    View Certificate
                    certificate

                    Numerical Methods for Solving Differential Equations

                    CertificateIcon
                    Certificate UID: px2gvie6ay
                    View Certificate
                    certificate

                    Numerical Methods for Solving Differential Equations

                    CertificateIcon
                    Certificate UID: cyeia57hz1
                    View Certificate
                    certificate

                    Programming in Python

                    CertificateIcon
                    Certificate UID: voxstigyf3
                    View Certificate
                    certificate

                    Programming in Python

                    CertificateIcon
                    Certificate UID: hwrx8bfqco
                    View Certificate
                    certificate

                    FEA using ANSA as a pre-processor and METAPOST as post-processor

                    CertificateIcon
                    Certificate UID: 2dyc3kb1jn
                    View Certificate
                    certificate

                    Welcome to the world of CRASH simulations

                    CertificateIcon
                    Certificate UID: bwg58stake
                    View Certificate
                    certificate

                    Welcome to the world of CRASH simulations

                    CertificateIcon
                    Certificate UID: s9rda04jbe
                    View Certificate
                    certificate

                    Fundamentals of Thermodynamics and it's Industrial Applications

                    CertificateIcon
                    Certificate UID: koanms91xu
                    View Certificate
                    certificate

                    Computational Fluid Dynamics (Aerospace Applications)

                    CertificateIcon
                    Certificate UID: pi2wy4ek3n
                    View Certificate
                    certificate

                    Introduction to Heat Treatment

                    CertificateIcon
                    Certificate UID: 8zv5cygfed
                    View Certificate
                    certificate

                    FVM Coding for CFD using C++

                    CertificateIcon
                    Certificate UID: 1t3yfphugj
                    View Certificate
                    Showing 1 of 15 certificates

                    Academic Qualification

                    B.E

                    G H RAISONI College OF ENGINEERING AND Management, PUNE

                    10 Jun 2008 - 10 Feb 2013

                    12th

                    Oxford Degree College of BCA

                    16 Jul 2008 - 15 Jul 2009

                    10th

                    St Antony public School

                    15 Jun 2007 - 15 Apr 2008

                    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

                    16 Hours of Content

                    coursecard
                    4.7

                    5 Hours of Content

                    coursecard
                    4.7

                    4 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