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

Aatas A G

.

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • HEV
  • SIMULINK-BASICS
  • HEV-FUNDAMENTALS
  • BATTERY-TECHNOLOGY
  • HYPER-MESH
  • STRUCTURAL-MESHING
  • SHEET-METAL-MESHING

Introduction

.

50 Projects

Week 3 - Solving second order ODEs

Objective:

https://drive.google.com/drive/folders/1cgFnguKAojQSi_nITflq-E1BRFg4iTj8 clear all close all clc b = 0.05; g = 9.81; l = 1; m = 1; % initial condition theta_0 = [0 3]; % time points t_span = linspace(0,20,500); % solve ODE [t, results] = ode45(@(t,theta) ode_func(t, theta, b, g, l, m), t_span, theta_0); plot(t,results(:,1))…

calendar

06 Nov 2021 08:19 AM IST

    Read more

    Week 4.1 - Genetic Algorithm

    Objective:

    Main code clear all close all clc % Input variables x = linspace(0, 0.6, 150); y = linspace(0, 0.6, 150); num_case = 250; % creating an arraay [xx, yy] = meshgrid(x,y); % loop for passing the stalagmite function for i = 1 : length(xx) for j = 1 : length(yy) input_vector(1) = xx(i , j); input_vector(2) = yy(i , j); f(i…

    calendar

    10 Nov 2021 05:49 AM IST

      Read more

      Project 1 - Parsing NASA thermodynamic data

      Objective:

      close all clear all clc %Opening the file that is stored in the file Thermo = fopen('THERMO.dat','r') %Getting the first line from the opened file fgetl(Thermo); f1 = fgetl(Thermo); A = strsplit(f1, ' '); Global_low_temperature = str2num(A{2}); Global_mid_temperature = str2num(A{3}); Global_high_temperature = str2num(A{4});…

      calendar

      11 Nov 2021 03:07 PM IST

      • HEV
      Read more

      Project 2 - Rankine cycle Simulator

      Objective:

      clear all; close all; clc disp(' RANKINE CYCLE SIMULATOR') disp('1-2 Isentropic Expansion in the Turbine') disp('2-3 Constant Pressure Heat Rejection by the Condenser') disp('3-2 Isentropic Compression in the Pump') disp('4-1 Constant Pressure Heat Addition by the Boiler') % Required Inputs P1 = 30 T1 = 400 P2 = 0.5 disp…

      calendar

      13 Nov 2021 05:02 AM IST

        Read more

        FINAL INDEPENDENT PROJECT

        Objective:

        clear all close all clc %inputs r = 0.3; N = 250; n = 0.6/r; omega = (2*pi*N)/60; for d = 1:360 theta = ((pi*d)/180); fi = 250*omega^2*r*(cos(theta)+((cos(2*theta))/n)); fp = 68730-fi; phi = asin((sin(theta))/n); fq = fp/cos(phi); ft = fq*sin(theta+phi); t = ft*r; torque(:,d) = t; end plot(1:360,torque); xlabel('crank…

        calendar

        16 Nov 2021 05:02 PM IST

          Read more

          Week 1 Understanding Different Battery Chemistry

          Objective:

          Lithium Ion batteries it's type and comparison table blow on pdf.

          calendar

          06 Dec 2021 07:07 AM IST

            Read more

            Week 7 State of charge estimation

            Objective:

            State of charge estimation Coulomb counting  SOC is a measure of how much charge is available for use in the battery. For the application of rechargeable batteries in H/EVs, SOC is a crucial parameter and thus needs to be measured accurately though electronic and electric systems. It cannot be measured directly because…

            calendar

            09 Jan 2022 11:41 AM IST

              Read more

              Project 1 Mechanical design of battery pack

              Objective:

              Mechanical Design of Battery Pack Introduction As we know that the electric vehicle market is gradually increasing. With the growth of an electric vehicle, the growth and interest in Lithium-ion cell are also increasing. The energy source for an electric vehicle is stored in cylindrical cells. Lithium-ion cells are capable…

              calendar

              11 Jan 2022 05:46 AM IST

                Read more

                Project 2 Thermal modeling of battery pack

                Objective:

                Thermal modelling of battery pack The Lithium-ion batteries are widely used as energy sources in different hybrid and electric vehicle, however, the operation characteristics of the battery in such vehicle are strongly dependent on the operation temperature and therefore, with purpose to improve these characteristics a…

                calendar

                14 Jan 2022 04:29 PM IST

                Read more

                Week -2

                Objective:

                WEEK 2 AIM: To make a Simulink model of doorbell using a solenoid block. To build a model using a thermistor to sense the temperature. OBJECTIVE: To make a Simulink doorbell model using a solenoid block with a situation of 2-sec halt & then continued further to observe the physical movement of the plunger. To build…

                calendar

                20 Jan 2022 04:08 PM IST

                  Read more

                  Week - 4

                  Objective:

                  AIM: To implement control logic of a washing machine using Stateflow in Simulink. To make a Simulink chart for the “Gear shift” logic'. FOR Q1: To implement control logic of a washing machine using Stateflow in Simulink. OBJECTIVE: To implement the control logic of a washing machine using stateflow as per given…

                  calendar

                  27 Jan 2022 03:35 PM IST

                    Read more

                    Project

                    Objective:

                    PROJECT 1 AIM : To study and analyze the BAJA All Terrain Vehicle (ATV) model using Simulink and compare between different models. OBJECTIVES : To Prepare a technical report explaining the functions of the subsystems & blocks used for preparing the model To Explain in detail all the differences between all the five models…

                    calendar

                    30 Jan 2022 01:47 PM IST

                      Read more

                      Week 2 Air standard Cycle

                      Objective:

                      AIR STANDARD CYCLE OBJECTIVE write code that can solve an otto cycle and make plots for it. Here are the requirements Your code should create a PV diagram You should output the thermal efficiency of the engine. STEP BY STEP Entering the Title. Defining a function for input parameters (bore, stroke, con_rod, cr, start_crank,…

                      calendar

                      25 Mar 2022 01:45 PM IST

                        Read more

                        Week 3 - Solving second order ODEs

                        Objective:

                        Solving second order ODE OBJECTIVE: To write a program to simulate the transient behaviour of a simple pendulum and to create an animation of it is motion.    In the above equation, g = gravity in m/s2, L = length of the pendulum in m, m = mass of the ball in kg, b=damping coefficient. Now for solving the second…

                        calendar

                        26 Mar 2022 10:01 AM IST

                          Read more

                          Week 5 - Curve fitting

                          Objective:

                          CURVE FITTING Introduction: curve_fit is a process of construction of curve, or mathematical function that has a best fit to series of data points possibly subject to constraints. Curve fitting can involve either interpolations where an exact fit to the data is required. In this challenge we will try to fit the linear…

                          calendar

                          31 Mar 2022 10:17 AM IST

                            Read more

                            Week 6 - Data analysis

                            Objective:

                            DATA ANALYSIS OBJECTIVE: Read data from file. Checking for file compatibility Plotting data column wise and saving them using file header Plotting data from one column against data from another, labelling them using header data Calculating area under a curve (pv diagram) Calculating power output of the engine using the…

                            calendar

                            01 Apr 2022 03:25 PM IST

                            Read more

                            Independent Research Project

                            Objective:

                            BRAYTON CYCLE AIM : To solve an Air Standard Brayton Cycle (Joule cycle). OBJECTIVES : To solve an ideal air standard Brayton cycle based on user's input. To plot it's T-s diagram THEORY : The Brayton cycle is a thermodynamic cycle named after George Brayton that describes the workings of a constant-pressure heat engine.…

                            calendar

                            01 Apr 2022 03:41 PM IST

                              Read more

                              Week 3 - 2D meshing for sheet metal

                              Objective:

                              2D meshing for sheet metal Aim: For the given Hood model, Take the mid surface for all the components after checking the geometrical errors and mesh the mid surface with the given element Quality criteria. S.No Quality Criteria Value 1 Target/Average length 5 2 Minimum Length 2 3 Maximum Length 7 4 Aspect 3 5 Warpage 15…

                              calendar

                              27 Apr 2022 08:06 AM IST

                              Read more

                              Week - 4 - 2D meshing for Plastic components

                              Objective:

                              2D Meshing of Plastic Bottle Cap Aim: To extract the middle-surface of the plastic bottle cap and mesh the same with, given element quality criteria as mentioned below and also assign a proper thickness to it. S.No Quality Criteria Value 1 Target/Average length 1 2 Minimum Length 0.5 3 Maximum Length 3 4 Aspect 3 5 Warpage…

                              calendar

                              04 May 2022 12:28 PM IST

                              Read more

                              Tool Test 1

                              Objective:

                              Tool test 1 Objectives: The objective of this project is to performing meshing for Tool test 1 for component1 & Component 2 using the ANSA tool. From the given Component, Checking geometrical errors and mesh with given element quality criteria Extracting the mid surface from the component. After meshing the component…

                              calendar

                              12 May 2022 04:26 PM IST

                              Read more

                              Tool Test-2

                              Objective:

                              Tool test 2 Objective: Import the CAD geometry of Intake Manifold. Clean up the geometry until no topological error is found. Mesh geometry with target/average length of 3mm with no errors. Assign closed volume and generate unstructured volumetric mesh using the given quality criteria. Quality Criteria Feature: S.NO QUALITY…

                              calendar

                              12 May 2022 04:44 PM IST

                                Read more

                                Week- 5 - Solid meshing

                                Objective:

                                Week- 5 - Solid meshing Objective: To clear the geometrical errors and perform 3D mesh using tetra elements for the given component by satisfying the given element quality criteria using ANSA. Quality Criteria Feature: S. No Quality Criteria Value 1 Target Length 1 2 Minimum Length 0.5 3 Maximum Length 2 4 Tet collapse…

                                calendar

                                14 May 2022 08:10 AM IST

                                Read more

                                Week 6 - Creating connection for Rear door

                                Objective:

                                Week 6 - Creating connections on rear door Aim: To create and apply different PID’s and deploy FE connections to the given rear door FE model. Procedure: The given FE model of rear door was imported modal. The model was evaluated for necessary connections. To make rigid connections at the holes, RBE2 many node option…

                                calendar

                                18 May 2022 05:30 AM IST

                                Read more

                                Week - 8 - Morphing

                                Objective:

                                Week – 8 Morphing Aim: To perform different morphing techniques for the given sheet metal component and mention its industrial applications. Procedure: The model is imported to ANSA Geometrical cleanup: The given model is checked for geometrical errors and it is fixed by using necessary options under topo module.…

                                calendar

                                22 May 2022 10:23 AM IST

                                Read more

                                Project 1 - 2D meshing on the instrumental Panel

                                Objective:

                                Mid Surface Extraction and Meshing of IP Substrate using ANSA. Aim: To extract the mid surface and generate 2D mesh for the given model according to the given element quality criteria using ANSA. Quality criteria features: S. No Quality Criteria Value 1 Target Length 4 2 Minimum Length 2 3 Maximum Length 6 4 Aspect Ratio…

                                calendar

                                27 May 2022 12:27 PM IST

                                Read more

                                Project - 2 - Meshing on the suspension Assembly

                                Objective:

                                Pre-processing Rear Suspension Assembly using ANSA. Aim: For the given assembly check for the geometrical errors and mesh with given element quality criteria. Assemble the components by deploying necessary connections. Quality criteria feature: Generate 3D mesh for tyre and rim by satisfying below mentioned quality criteria.…

                                calendar

                                28 May 2022 05:46 AM IST

                                Read more

                                Week 4-1D Element Creation Challenge

                                Objective:

                                Week 4-1D Element Creation Challenge AIM: To create 1D elements on the given component with given cross-section and DOF using Hypermesh SPECIFICATION: Rod element: with only translational DOF and RBE2 link Cross-Section: BOX- Dimension a = 12 mm                                    …

                                calendar

                                20 Jun 2022 10:49 AM IST

                                  Read more

                                  Week 6-Meshing of Hood Challenge

                                  Objective:

                                  Week 6-Meshing of Hood Challenge Aim: To extract mid-surface and generate mesh on Hood using Hyper mesh. Procedure: Step 1: Importing geometry and cleanup: To import the geometry, go to file >> Import >> select the file >> Import. After importing the geometry, the geometry is checked for any missing surfaces…

                                  calendar

                                  25 Jun 2022 05:36 AM IST

                                    Read more

                                    Week 9-Creation of 1D Connectors Challenge

                                    Objective:

                                    Week 9 - Creation of 1D Connectors Challenge AIM: Meshing of the given geometry. Provided below are the quality parameters that you have to follow. Create connector and Attach the various parts of the given model: Right_Rail_2 & Front_truss_1: (Seam-Quad(angled + capped + L)) Left_Rail_2 & Front_truss_1: (Quad…

                                    calendar

                                    30 Jun 2022 03:16 PM IST

                                      Read more

                                      Week 8-3D Tetra Meshing Challenge

                                      Objective:

                                      Week 8-3D Tetra Meshing Challenge Aim: To create tetra mesh for the given models with in the given quality criteria. Procedure: Importing Geometry and cleanup: To import the geometry, go to file >> Import >> select the file >> Import. After importing the geometry, the geometry is checked for any missing surfaces or triple…

                                      calendar

                                      30 Jun 2022 03:19 PM IST

                                        Read more

                                        Week 12:Project-1-Meshing of Door Inner Panel Challenge

                                        Objective:

                                        Week 12: Project-1-Meshing of Door Inner Panel Challenge OBJECTIVE: The Side door component is given for extracting the midsurface manually or automatic and then follow the quality parameters to get quality mesh and then assign the thickness to assign the component. PROCEDURE: Meshing: First, import the side door inner…

                                        calendar

                                        01 Jul 2022 07:17 PM IST

                                          Read more

                                          Week 12:Project 2-Meshing of Rear Wheel Holder challenge

                                          Objective:

                                          Week 12: Project 2-Meshing of Rear Wheel Holder challenge OBJECTIVE: A back wheel panel (floor panel) component is given for mesh and to get the quality output as per given quality parameters and then assign them the thickness. PROCEDURE: Import the geometry into hypermesh. Check the thickness and extract the midsurface…

                                          calendar

                                          01 Jul 2022 07:17 PM IST

                                            Read more

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

                                            Objective:

                                            Given function: f = exp(x)*cos(x) 2nd order derivative of the function f'' = -2*exp(x)*sin(x) 1) Developing Taylor Table for the Forward Differencing Scheme Approximation method For FDS, f = (af(x) + bf(x+dx) + cf(x+2dx) + df(x+3dx) + ef(x+4dx))/(dx^2) Table: 2) Developing Taylor Table for the Backward Differencing…

                                            calendar

                                            26 Jul 2022 04:27 PM IST

                                            Read more

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

                                            Objective:

                                            AIM: To solve the 2D heat conduction equation by using the point iterative technique using the methods like Jacobi, Gauss-Seidel, Successive over relaxation for both implicit and explicit schemes. Inputs and Boundary conditions: Domain is assumed to be a shape of a square of length 1m. of nodes in x and y direction be…

                                            calendar

                                            28 Jul 2022 09:29 AM IST

                                            Read more

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

                                            Objective:

                                            SIMULATION OF A 1D SUPERSONIC NOZZLE FLOW USING MACORMACK METHOD: The flow at the inlet to the nozzle arrives from the reservoir where the pressure and temperature are denoted by Po and Co. The cross-sectional area of the reservoir is very large and hence the fluid velocity is very low. The flow expands from subsonic to…

                                            calendar

                                            02 Aug 2022 03:23 PM IST

                                            Read more

                                            Week 8 - Simulation of a backward facing step in OpenFOAM

                                            Objective:

                                            OBJECTIVE: To simulate an incompressible-laminar-viscous flow through the backwards-facing step geometry and perform a transient simulation. Case 1 - To Simulate the flow without using any grading factor (i.e., GF = 1) Case 2 - To Simulate the flow with a grading factor of 0.2. The cells should be finer…

                                            calendar

                                            09 Aug 2022 05:40 AM IST

                                            Read more

                                            Week 9 - FVM Literature Review

                                            Objective:

                                            Aim: What is Finite Volume Method(FVM), write down the major differences between FDM & FVM. Also, describe the need for interpolation schemes and flux limiters in FVM. You can use the 1D linear heat conduction equation as an example. Answer: Finite volume method:  In this, entire domain is divided into a finite…

                                            calendar

                                            09 Aug 2022 06:41 AM IST

                                              Read more

                                              Week 11 - Simulation of Flow through a pipe in OpenFoam

                                              Objective:

                                              Simulation of Flow through a pipe in OpenFoam Aim: In this project we are simulating an axi-symmetric flow by applying the wedge boundary condition. where the flow is laminar and flows through a constant cross-section pipe at an inlet Reynold's number of 2100. And validate results with the Hagen- Poiseuille's equations…

                                              calendar

                                              09 Aug 2022 04:36 PM IST

                                              Read more

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

                                              Objective:

                                              Validation studies of Symmetry BC vs Wedge BC in OpenFOAM vs Analytical H.P equation Aim: Simulate for the below mentioned angles using both symmetry and wedge boundary conditions and validate them with HP equations. 10∘ 25∘ 45∘ DESCRIPTION: The project simulates the various angles of symmety and wedge boundary conditions.…

                                              calendar

                                              09 Aug 2022 05:23 PM IST

                                              Read more

                                              Week 1- Mixing Tee

                                              Objective:

                                              Mixing Tee Aim: To conduct a mixing Tee simulation through following cases Case 1  Short mixing tee with a hot inlet velocity of 3m/s. Momentum ratio of 2, 4.  Case 2  Long mixing tee with a hot inlet velocity of 3m/s. Momentum ratio of 2, 4. Momentum ratio = velocity at cold inlet / velocity at hot inlet Further comparison…

                                              calendar

                                              28 Aug 2022 06:35 AM IST

                                              Read more

                                              Week 2 - Flow over a Cylinder.

                                              Objective:

                                              Aim:  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

                                              01 Sep 2022 03:40 PM IST

                                                Read more

                                                Week 3 - External flow simulation over an Ahmed body.

                                                Objective:

                                                Aim: Run the simulation for the velocity of 25 m/sec with the default air properties in fluent. Objectives: Describe Ahmed's body and its importance. Explain the reason for the negative pressure in the wake region.  Explain the significance of the point of separation.  Expected Results: Velocity and pressure…

                                                calendar

                                                05 Sep 2022 09:50 AM IST

                                                Read more

                                                Week 6 - CHT Analysis on a Graphics card

                                                Objective:

                                                AIM: Perform a steady-state conjugate heat transfer analysis on a model of a graphics card.  OBJECTIVE: Simulate by varying the velocity from 1m/sec to 5m/sec for at least 3 velocities and discuss the results. Find out the maximum temperature and heat transfer coefficient attained by the processor. Prove that the…

                                                calendar

                                                07 Oct 2022 05:25 PM IST

                                                  Read more

                                                  Week 5 - Rayleigh Taylor Instability

                                                  Objective:

                                                  Aim:  To study the concept of Rayleigh Taylor Instability and some practical CFD models that have been based on the mathematical analysis of Rayleigh Taylor waves. To study the Rayleigh Taylor Instability simulation for 2 different mesh sizes in addition to baseline and compare the results. To study the the effect of Atwood…

                                                  calendar

                                                  10 Oct 2022 09:28 AM 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…

                                                  calendar

                                                  16 Oct 2022 02:27 PM IST

                                                    Read more

                                                    Project 1

                                                    Objective:

                                                    AIM: To determine the development of a forward energy-based fuel consumption model of a conventional vehicle. OBJECTIVE: To build a Simulink model using blocks and complete the vehicle To Writing scripts in MATLAB to load all the variables required for running the Simulink To Tabulate the fuel economy numbers (kmpl) for…

                                                    calendar

                                                    25 Oct 2022 10:09 AM IST

                                                    Read more

                                                    Project 2

                                                    Objective:

                                                    AIM: To deal with the development of a forward energy-based fuel consumption model of a P1 hybrid vehicle. OBJECTIVE: Load the Project2 folder as the Current Folder in Matlab. Run the “Project2_InitFile.m” Matlab script. Copy the Conventional vehicle Simulink model created for Project 1 in this folder. Figure…

                                                    calendar

                                                    25 Oct 2022 01:11 PM IST

                                                    Read more

                                                    Week 9 - Parametric study on Gate valve.

                                                    Objective:

                                                    Aim:  To perform a parametric study on Gate valve. Objective: Simulate the flow of fluid through a gate valve. Perform the parametric study on the gate valve by setting design points corresponding to the positions of the lift of the spindle. Calculate the mass flow rate corresponding to all the design points Gate…

                                                    calendar

                                                    07 Dec 2022 10:12 AM IST

                                                      Read more

                                                      Week 10 - Simulating Combustion of Natural Gas.

                                                      Objective:

                                                      AIM To perform a combustion simulation on the combustor model. Objective Part I 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…

                                                      calendar

                                                      07 Dec 2022 11:26 AM IST

                                                        Read more

                                                        Week 4 - CHT Analysis on Exhaust port

                                                        Objective:

                                                        AIM: To perform the simulation of Conjugate heat transfer analysis on given exhaust port geometry by using ANSYS FLUENT. OBJECTIVE: To study the importance of Conjugate heat transfer analysis and importance of y+ value during meshing of the components. To perform the simulation of Conjugate heat transfer analysis on given…

                                                        calendar

                                                        12 Dec 2022 08:19 AM IST

                                                          Read more
                                                          Showing 1 of 50 projects

                                                          8 Course Certificates

                                                          certificate

                                                          MATLAB for Mechanical Engineers

                                                          CertificateIcon
                                                          Certificate UID: ynrqzc1kgt049dvj
                                                          View Certificate
                                                          certificate

                                                          Introduction to Battery Technology for Electric Vehicle

                                                          CertificateIcon
                                                          Certificate UID: 10htgjs3fcbd7qvp
                                                          View Certificate
                                                          certificate

                                                          Introduction to Physical Modeling using Simscape

                                                          CertificateIcon
                                                          Certificate UID: 4m3lsfx8jkr9ov70
                                                          View Certificate
                                                          certificate

                                                          Python for Mechanical Engineers

                                                          CertificateIcon
                                                          Certificate UID: 4zkrcyn56b1toxhe
                                                          View Certificate
                                                          certificate

                                                          Preprocessor for Structural Analysis using ANSA

                                                          CertificateIcon
                                                          Certificate UID: ej3zlpsq18mkxida
                                                          View Certificate
                                                          certificate

                                                          HyperMesh for FEA Plastic and Sheet Metal Applications

                                                          CertificateIcon
                                                          Certificate UID: xq2pedyfj73vm8ot
                                                          View Certificate
                                                          certificate

                                                          Introduction to CFD using MATLAB and OpenFOAM

                                                          CertificateIcon
                                                          Certificate UID: lzc9awisvfq4ro8d
                                                          View Certificate
                                                          certificate

                                                          Development of Hybrid Drives using MATLAB & Simulink

                                                          CertificateIcon
                                                          Certificate UID: bj3wxgc5soef9vma
                                                          View Certificate
                                                          Showing 1 of 8 certificates

                                                          12 Workshop Certificates

                                                          certificate

                                                          Engineering Drawing : An Overview

                                                          CertificateIcon
                                                          Certificate UID: 258gnho7q3
                                                          View Certificate
                                                          certificate

                                                          Analysis of composite shells

                                                          CertificateIcon
                                                          Certificate UID: mkryba4hgs
                                                          View Certificate
                                                          certificate

                                                          Theory of Elasticity & Plasticity

                                                          CertificateIcon
                                                          Certificate UID: w7jq6f3bdc
                                                          View Certificate
                                                          certificate

                                                          Automotive Systems & Controls Using MATLAB & Simulink

                                                          CertificateIcon
                                                          Certificate UID: wdgl08eizj
                                                          View Certificate
                                                          certificate

                                                          Impact of Power Supply Noise on High-Speed System

                                                          CertificateIcon
                                                          Certificate UID: 6xta58fkic
                                                          View Certificate
                                                          certificate

                                                          Battery Technology - A Birds eye view

                                                          CertificateIcon
                                                          Certificate UID: g5dqpahkrb
                                                          View Certificate
                                                          certificate

                                                          VEHICLE DURABILITY CAE

                                                          CertificateIcon
                                                          Certificate UID: 7419uqyckb
                                                          View Certificate
                                                          certificate

                                                          Rise of collaborative Robots

                                                          CertificateIcon
                                                          Certificate UID: 8j975ozktg
                                                          View Certificate
                                                          certificate

                                                          CFD- An innovative way to solve flow problems using computers

                                                          CertificateIcon
                                                          Certificate UID: u5dxl7ak4s
                                                          View Certificate
                                                          certificate

                                                          Wind to Power

                                                          CertificateIcon
                                                          Certificate UID: 3f8jtupy0n
                                                          View Certificate
                                                          certificate

                                                          Hydrodynamics and Convective Heat Transfer studies of air and Water jet impingement

                                                          CertificateIcon
                                                          Certificate UID: 1r6s9nlvky
                                                          View Certificate
                                                          certificate

                                                          Production Part Approval Process (PPAP)

                                                          CertificateIcon
                                                          Certificate UID: xmr8b96ohs
                                                          View Certificate
                                                          Showing 1 of 12 certificates

                                                          Academic Qualification

                                                          B.E

                                                          Mahendra Institute of Engineering and Technology

                                                          01 Aug 2017 - 30 Apr 2021

                                                          12th

                                                          Vaigai Matriculation Higher Secondary School

                                                          01 Jun 2016 - 30 Apr 2017

                                                          10th

                                                          St.Mary's Higher Secondary School

                                                          01 Jun 2014 - 31 Mar 2015

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

                                                          4 Hours of Content

                                                          coursecard
                                                          Recently launched

                                                          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

                                                          coursecard
                                                          Recently launched

                                                          14 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