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

K G Madhavan

New Product Development Specialist | New Process Development Specialist | Fuel Injection System Development

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • PYTHON-BASICS
  • NUMERICAL-ANALYSIS
  • CFD-BASICS
  • SOLIDWORKS-FLOW-SIMULATION-BASICS

Introduction

The Human brain is a crazy place, and there are two things that fascinate me the most about Product & Engineering. First: The concept and requirement given to you. Second: The challenge in communicating the improved concept in a way that persuades and convinces all the counter parts that this is necessary. I apply the same thinking in product development that i also apply in leadership because whether you're connecting with your customers or with your team, you're connecting with the fun irrationality of their logic - in order to bring ideas together, influence an outcome, and also optimize and scale for future growth. I have developed 15+ new products (Fuel Injection Pump) for 12+ customers ensuring the designs and systems to meet the quality, cost and budget specifications. Worked on 15+ New product implementations either by planning new facilities or deploying projects on existing manufacturing lines achieving huge cost saving. Putting my brain and soul into Research & Analysis of 100+ product failures during the initial sample build stage products and also the field return products. Outside of work, I'm an avid Motorcycle enthusiast and a hardcore gamer. Skills/Interest : New Product Development, Designing using SolidWorks/ Catia, New Product Implementation, New Process Development, Research & Analysis of Product failures

12 Projects

Otto Cycle - PV Diagram Efficiency

Objective:

    % Otto Cycle clear all close all clc % Inputs gamma = 1.4; t3 = 2300;   % State Variables p1 = 101325; t1 = 500;   % Engine Geometric Parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12;   % Calculating the Swept Volume and Clearance Volume v_swept = (pi/4)*bore^2*stroke; v_clearance…

calendar

06 Feb 2018 11:43 AM IST

    Read more

    Otto Cycle - PV Diagram Efficiency

    Objective:

        % Otto Cycle clear all close all clc % Inputs gamma = 1.4; t3 = 2300;   % State Variables p1 = 101325; t1 = 500;   % Engine Geometric Parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12;   % Calculating the Swept Volume and Clearance Volume v_swept = (pi/4)*bore^2*stroke; v_clearance…

    calendar

    06 Feb 2018 11:43 AM IST

      Read more

      Otto Cycle - PV Diagram Efficiency

      Objective:

      % Otto Cycle clear all close all clc % Inputs gamma = 1.4; t3 = 2300;   % State Variables p1 = 101325; t1 = 500;   % Engine Geometric Parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12;   % Calculating the Swept Volume and Clearance Volume v_swept = (pi/4)*bore^2*stroke; v_clearance = v_swept/(cr-1);…

      calendar

      14 Jan 2018 02:19 PM IST

        Read more

        Curve Fitting

        Objective:

        The project is to fit a linear and cubic polynomial for the Cp data.   Program:  close all; clear; clc; data = load('data'); temp = data(:, 1); cp = data(:, 2); %Curve fitting [linear_coeff,linear_sp,linear_mu] = polyfit(temp, cp, 1); [cubic_coeff,cubic_sp,cubic_mu] = polyfit(temp, cp, 3); [linear_pts, delta_linear]…

        calendar

        14 Jun 2018 11:30 AM IST

          Read more

          Generic Algorithm

          Objective:

          Genetic Algorithm is basicallay derived from Theory of Evolution by Charles Drawin. It is a method derived to solve complex problems mimicing the some of the process observed in Natural Evolution.  It first creates an initial population and then computes the score for each member. Like wise…

          calendar

          09 Feb 2018 11:31 AM IST

            Read more

            Simple Pendulum

            Objective:

            Project Files Link: https://drive.google.com/open?id=11wi5K9vYdSIltE1lf4x77ZetCyao2Cz8

            calendar

            30 Jan 2018 12:59 PM IST

              Read more

              Drag Force on Cyclist

              Objective:

              % A) Program to calculate Drag Force on a cyclist (Drag Force Vs Velocity)clear allclose allclc% Defining the Variablesc_d = 0.48;% Frontal Area m2a = 0.1;% Density kg/m3rho = 1.2;% Constant Velocity m/s2v = [1:500]; %calulationdrag_force = rho*a.*c_d*v.^2*0.5; plot(v, drag_force);xlabel('Velocity');ylabel('Drag Force');…

              calendar

              07 Jan 2018 10:05 AM IST

                Read more

                Row Column Vector

                Objective:

                % Defining Rows and Column Vectors row = [1 2 3 4 5] column = [1; 2; 3; 4; 5] % Defining Column Vector by creating a vector in row and then using transpose column = [1 2 3 4 5]' % Defining Row Vector by creating a vector in column and then using transpose row = [1; 2; 3; 4; 5]'

                calendar

                04 Jan 2018 11:05 AM IST

                  Read more

                  Robotic Arm

                  Objective:

                  Objective: To Write a program in Matlab to simulate the forward kinematics of a 2R Robotic Arm. Code: % Forward Kinematics clear all close all clc % Inputs prompt = 'Enter the Length of Arm 1 : '; l1 = input(prompt); prompt = 'Enter the Length of Arm 2 : '; l2 = input(prompt); theta1 = linspace(0,90,20);% Angle…

                  calendar

                  23 Aug 2018 09:00 AM IST

                    Read more

                    Genetic Algorithm

                    Objective:

                    % Main Program clear all close all clc % Defining our Search Space x = linspace(0,0.6,150); y = linspace(0,0.6,150); f = [0,0]; % Creating a 2Dimensional Mesh [xx yy] = meshgrid(x,y); % Evaluating 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,j) =…

                    calendar

                    09 Feb 2018 11:29 AM IST

                      Read more

                      NASA Polynomials - File Parsing

                      Objective:

                      The Project is on Parsing data from a NASA dat file, in order to extract all the polynomials and required data to calculate Specific Heat, Enthalpy, Entropy & to present it graphically using MATLAB   Main Program: % File Parsing - NASA Polynomials - Project 1 clear all close all clc f1=fopen('therm.dat','r');…

                      calendar

                      13 Jun 2018 10:01 AM IST

                      • MATLAB
                      Read more

                      Otto Cycle - PV Diagram Efficiency

                      Objective:

                      ######comments####### You havent attached the function file #####################################     % Otto Cycle clear all close all clc % Inputs gamma = 1.4; t3 = 2300;   % State Variables p1 = 101325; t1 = 500;   % Engine Geometric Parameters bore = 0.1; stroke = 0.1; con_rod = 0.15; cr = 12;  …

                      calendar

                      03 Feb 2018 11:31 AM IST

                        Read more
                        Showing 1 of 12 projects

                        4 Course Certificates

                        certificate

                        MATLAB for Mechanical Engineers

                        CertificateIcon
                        Certificate UID: kcvy4b28ifspgom6
                        View Certificate
                        certificate

                        Ultimate SOLIDWORKS Course

                        CertificateIcon
                        Certificate UID: l2mwuqjceb16a3vy
                        View Certificate
                        certificate

                        Python for Mechanical Engineers

                        CertificateIcon
                        Certificate UID: nmwdgq57hl9k83jt
                        View Certificate
                        certificate

                        Flow Simulation using SolidWorks

                        CertificateIcon
                        Certificate UID: sw673zb4kuxotepg
                        View Certificate
                        Showing 1 of 4 certificates

                        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

                        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