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

Aravindh Krishna Thilak Sankarapandian

Mechanical Engineer Specialization in Electric Vehicles, Automation, and Mechatronics

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • CFD
  • NUMERICAL-ANALYSIS
  • MATLAB
  • OPENFOAM
  • HEV
  • SIMULINK-BASICS
  • HEV-FUNDAMENTALS

Introduction

I am confident that I can apply my Mechatronics and Automation education to be greatly successful in this position and how my work and education experience can be utilized to bring value to your Engineering Sectors.

29 Projects

Week 2- 2R Robotic Arm Challenge

Objective:

% A program simulation for a 2R Robotic Arm clear all close all clc % Inputs l1 = 0.8; l2 = 0.5; theta1 = linspace(0,90,8); theta2 = linspace(0,90,8); ct = 1; for i = 1:length(theta1) THETA1 = theta1(i); for j = 1:length(theta2) THETA2 = theta2(j); x0 = 0; y0 = 0; x1 = l1*cosd(THETA1); y1 = l1*sind(THETA1); x2 = x1 + l2*cosd(THETA2);…

calendar

22 Jul 2022 04:15 PM IST

  • MATLAB
Read more

Week 3 - Solving second order ODEs

Objective:

clear all; close all; clc %inputs b=0.05; g=9.81; l=1; m=1; theta_0=[0;3]; t_span=linspace(0,20,200); [t,results]=ode45(@(t,theta) ode_func(t,theta,b,g,l,m),t_span,theta_0); plot(t,results(:,1)) hold on plot(t,result(:,1),'linewidth',1,'color','r'); xlabel('Angular Displacement in Radians'); ylabel('Time in seconds');…

calendar

29 Jul 2022 05:22 PM IST

    Read more

    Week 4.1 - Genetic Algorithm

    Objective:

    AIM: Write a MATLAB code to optimise the stalagmite function and find the function's global maximum. OBJECTIVE:   Explain the idea of a genetic algorithm in your own words, and also describe how to type "ga" in MATLAB. Make sure that your code always produces the same results, even if it is run more than once. Make…

    calendar

    05 Aug 2022 07:10 PM IST

    Read more

    Project 1 - Parsing NASA thermodynamic data

    Objective:

    Aim: Utilize the data's coefficients to evaluate thermodynamic parameters like Cp, H, and S.   Objective: Create a function that takes the 14 coefficients as input and computes the enthalpy, entropy, and specific heats for each species in the data file. Determine each species' molecular weight and show it in the command…

    calendar

    12 Aug 2022 08:31 PM IST

    Read more

    Project 2 - Rankine cycle Simulator

    Objective:

      Aim: To use Matlab to simulate a Rankine cycle. Getting properties of steam and water from XSteam data (IAPWS IF - 97 standard) User inputs are used to figure out all the state points of the cycle. Drawing the T vs. s and H vs. s plots based on the data given.    Rankine Cycle:  The Rankine cycle…

    calendar

    15 Aug 2022 07:43 PM IST

    Read more

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

    Objective:

    Objective: To find the fourth-order approximations of a second-order derivative using the central differencing scheme, skewed right-sided difference, and skewed left-sided difference with the help of the Taylor table method, and to compare the analytical derivative with the values that were found for the given function.…

    calendar

    03 Sep 2022 12:03 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 problem for the steady and unsteady state using Jacobi, gauss seidel, and successive over-relaxation iterative techniques. Theory: Conduction is a way that heat moves from one place to another. It usually happens in solids because of differences in temperature caused…

      calendar

      05 Sep 2022 04:38 PM IST

      Read more

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

      Objective:

      Objective: To apply MacCormack's approach in MATLAB to solve the governing equations and simulate the isentropic flow via a quasi-1-dimensional subsonic nozzle by deriving both the conservation and non-conservation versions of the equations. Statement:  By comparing their solutions with the figures below, it is possible…

      calendar

      14 Sep 2022 06:08 PM IST

      Read more

      Week 8 - Simulation of a backward facing step in OpenFOAM

      Objective:

        Objective: Simulate an incompressible—laminar-viscous flow through the Backward facing step geometry. Perform transient simulation; choose solver based on the described flow physics in the problem statement.  Explain the simulation process and way of setting up the problem Statement in open Foam and also,…

      calendar

      22 Sep 2022 02:57 PM IST

        Read more

        Week 9 - FVM Literature Review

        Objective:

        (FVM) Finite Volume Method:- The Finite Volume Method (FVM) is a way to write partial differential equations as algebraic equations and solve them.In this method, the volume is integrated into a partial differential equation with a divergence term, and the divergence theorem is used to turn the volume integrals into surface…

        calendar

        23 Sep 2022 12:08 PM IST

          Read more

          Week 11 - Simulation of Flow through a pipe in OpenFoam

          Objective:

          Objective:- In this project, we are using the wedge boundary condition to simulate an axisymmetric flow. where there is smooth flow through a pipe with a constant cross-section and an inlet Reynolds number of 2100. And check the results with Hagen-equations Poiseuille's to make sure the flow is fully developed. Description:-…

          calendar

          27 Sep 2022 03:02 PM IST

          Read more

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

          Objective:

          Objective:- To use the symmetry boundary condition to simulate a laminar flow through a pipe with a constant cross-sectional area. To simulate for the angles listed, which are 10, 25, and 45 degrees, using both symmetric and wedge boundary conditions and validate them with HP equations. Length of entrance:-  The length…

          calendar

          27 Sep 2022 04:15 PM IST

          Read more

          Week 1 Understanding Different Battery Chemistry

          Objective:

          Objective:- To conduct research and gain an understanding of the electrochemistry of various kinds of lithium-ion batteries.   Questions:-  Create a table listing the components and chemical processes occurring at the anode and cathode of lithium-ion cells of the LCO, LMO, NCA, NMC, LFP, and LTO types.  …

          calendar

          03 Oct 2022 01:23 PM IST

            Read more

            Week 7 State of charge estimation

            Objective:

              First, we must download the zip file from the task's website; the link is also provided below for your convenience. This will allow us to access the Lithium Ion Battery Management algorithm. https://in.mathworks.com/matlabcentral/fileexchange/72865-design-and-test-lithium-ion-battery-management-algorithms …

            calendar

            14 Nov 2022 12:58 PM IST

              Read more

              Project 1 Mechanical design of battery pack

              Objective:

              Aim:- Battery pack capacity: 18 kWh Cell:ANR26650M1-B Prepare a detailed battery pack drawing along with its enclosure. State your assumptions. THEORY:-     Any number of (ideally similar) batteries or individual battery cells may be combined to form a battery pack. To offer the necessary voltage, capacity, or power density,…

              calendar

              16 Nov 2022 07:17 PM IST

                Read more

                Project 2 Thermal modeling of battery pack

                Objective:

                AIM:- For a 10 cell series lithium ion battery model, simulate the thermal effects and compare life cycle performance at various temperatures, charge & discharge rates using MATLAB. Theory:- The performance of lithium-ion batteries is influenced by both operating voltage and temperature. Lithium-ion batteries perform best…

                calendar

                23 Nov 2022 12:31 PM IST

                Read more

                Project 1

                Objective:

                1. Design a battery pack for a car of roughly 150 kW with 120 V. Use 3500 mAh 3.6V nominal NMC chemistry cell.        a. Design the battery pack configuration.         b. Draw the BMS topology for this battery pack.   Theory :- A battery pack, or battery pack, is an assembly…

                calendar

                10 Jan 2023 12:02 PM IST

                  Read more

                  Project 2

                  Objective:

                  Using MATLAB/simulink and  the drive cycle from the attached excel sheet, find- The max heat generation of the battery Time Time Step Battery Current 00:00.4 0.1 -0.9632 00:00.5 0.2 -0.952 00:00.6 0.3 -0.9072 00:00.7 0.4 -0.9632 00:00.8 0.5 -1.0304 00:00.9 0.6 -0.9632 00:01.0 0.7 -1.0304 00:01.1 0.8 -1.008 00:01.2 0.9…

                  calendar

                  11 Jan 2023 10:30 AM IST

                  Read more

                  Project 1 - 1d modelling of liquid cooling system

                  Objective:

                    A battery thermal management system controls the temperature of the batteries so that they work safely and well. High temperatures can make batteries age faster and pose safety risks, while low temperatures can reduce the battery's capacity and make it less efficient at charging and discharging.   A thermal…

                  calendar

                  12 Jan 2023 04:07 PM IST

                  Read more

                  Project 2 - 3D CFD modelling of Air cooling system and liquid cooling system for battery thermal management

                  Objective:

                  1. Comparative study of thermal performance of air-cooled and liquid-cooled battery modules:-   Air-cooled module:- The temperature distribution over the module surface with the air-cooling system at the end of the discharge process. The flow rate and temperature of the air at the inlet of the cooling system are 3 L/s and…

                  calendar

                  16 Jan 2023 03:19 PM IST

                  Read more

                  Week 1- Mixing Tee

                  Objective:

                  Aim:- To create a two versions of the mixing tee. One of them is longer than the other. Your job is to set up steady-state simulations to compare the mixing effectiveness when hot inlet temperature is 360C & the Cold inlet is at 190C.  Use the k-epsilon and k-omega SST model for the first case and based on your…

                  calendar

                  08 Feb 2023 05:39 PM IST

                  Read more

                  Week 2 - Flow over a Cylinder.

                  Objective:

                  Aim:- To simulate the flow over a cylinder and explain the phenomenon of Karman vortex street.    PART-I Simulate the flow with the steady and unsteady case and calculate the Strouhal Number for Re= 100.  PART-II Calculate the coefficient of drag and lift over a cylinder by setting the Reynolds number to 10,100,1000,10000…

                  calendar

                  09 Feb 2023 01:03 PM IST

                  Read more

                  Week 3 - External flow simulation over an Ahmed body.

                  Objective:

                  Aim:- To external flow simulation over an Ahmed body. Objective:- The objective of this project is to determine the aerodynamic forces on the Ahmed body such as drag and lift coefficient and to perform the grid independence test. The expected results will include 1. Velocity and pressure contours. 2. The drag coefficient…

                  calendar

                  09 Feb 2023 05:57 PM IST

                  Read more

                  Week 4 - CHT Analysis on Exhaust port

                  Objective:

                  Objectives:-   Give a brief description of why and where a CHT analysis is used. Maintain the y+ value according to the turbulence model and justify the results.  Calculate the wall/surface heat transfer coefficient on the internal solid surface & show the velocity & temperature contours in appropriate areas. How would…

                  calendar

                  09 Feb 2023 11:11 PM IST

                  Read more

                  Week 5 - Rayleigh Taylor Instability

                  Objective:

                  Objective:-   What are some practical CFD models that have been based on the mathematical analysis of Rayleigh Taylor waves? In your own words, explain how these mathematical models have been adapted for CFD calculations. Perform the Rayleigh Taylor instability simulation for 2 different mesh sizes with the base mesh being…

                  calendar

                  10 Feb 2023 05:05 PM IST

                  Read more

                  Week 6 - CHT Analysis on a Graphics card

                  Objective:

                  Question:- Perform a steady-state conjugate heat transfer analysis on a model of a graphics card. You can use appropriate materials of your choice for the simulation. Make sure to properly define the correct solid and fluid zones. Refer the video for further clarification and the model is provided below the video. Run…

                  calendar

                  10 Feb 2023 10:36 PM IST

                    Read more

                    Week 8 - Simulating Cyclone separator with Discrete Phase Modelling

                    Objective:

                    Aim:- To perform 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 the cyclone separator efficiency.  To perform an analysis on a given cyclone separator model by varying the particle diameter from 1 μm to  5 μm and…

                    calendar

                    11 Feb 2023 04:47 PM IST

                    Read more

                    Week 9 - Parametric study on Gate valve.

                    Objective:

                    Objective:- For this challenge, you will have to perform a parametric study on the gate valve simulation by setting the opening from 10 % to 80%.  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. Discuss the results of the…

                    calendar

                    12 Feb 2023 12:30 PM IST

                      Read more

                      Week 10 - Simulating Combustion of Natural Gas.

                      Objective:

                      Aim:- To perform a combustion simulation on the combustor model and plot the variation of the mass fraction of the different species’ in the simulation using line probes at different locations of the combustor as shown in Fig. You need to plot for CO2, H2O, CH4, N2, O2, NOx emissions & Soot formation.    You must have…

                      calendar

                      12 Feb 2023 04:21 PM IST

                      Read more
                      Showing 1 of 29 projects

                      10 Course Certificates

                      certificate

                      MATLAB for Mechanical Engineers

                      CertificateIcon
                      Certificate UID: 3d4cw6f20xrvslm7
                      View Certificate
                      certificate

                      Introduction to CFD using MATLAB and OpenFOAM

                      CertificateIcon
                      Certificate UID: c7mwetaf65dl1qoy
                      View Certificate
                      certificate

                      Introduction to Battery Technology for Electric Vehicle

                      CertificateIcon
                      Certificate UID: hy0pu6bx72kn9fc3
                      View Certificate
                      certificate

                      Li-ion Battery System design in EV & ES

                      CertificateIcon
                      Certificate UID: wbfu1ksaoy7xc3de
                      View Certificate
                      certificate

                      Battery Thermal Management using Ansys Fluent and MATLAB

                      CertificateIcon
                      Certificate UID: cpfuyklvqm4g3w6r
                      View Certificate
                      certificate

                      Aptitude

                      CertificateIcon
                      Certificate UID: f9m2kc3zeyaqj6go
                      View Certificate
                      certificate

                      Verbal Ability

                      CertificateIcon
                      Certificate UID: yg9bufnw0th5ja73
                      View Certificate
                      certificate

                      HR Prep

                      CertificateIcon
                      Certificate UID: c2eb0mfzikxuo94y
                      View Certificate
                      certificate

                      Introduction to GUI based CFD using ANSYS Fluent

                      CertificateIcon
                      Certificate UID: o16xw4jylet057sa
                      View Certificate
                      certificate

                      Post Graduate Program in Battery Technology for Mechanical Engineers

                      CertificateIcon
                      Certificate UID: c3z2owaq6tl75y8m
                      View Certificate
                      Showing 1 of 10 certificates

                      Academic Qualification

                      Master of Science

                      University of Strathclyde

                      17 Jan 2022 - 13 Feb 2023

                      B.E

                      Anna University

                      17 Jul 2017 - 01 May 2020

                      Diploma

                      P.A.C.Ramasamy Raja Polytechnic College

                      30 Jun 2014 - 15 Apr 2017

                      10th

                      Nehru High School

                      03 Jun 2013 - 01 May 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.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