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

Meghraj Patil

Never tell me the odds.

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • CATIA
  • WIRING-HARNESS-DESIGN
  • NX-CAD
  • SHEET-METAL-DESIGN
  • BIW-DESIGN

Introduction

A highly motivated well qualified Mechanical Engineer with thorough knowledge of Automotive Wire harnessing and Automotive Plastic design in CATIA V5. Good analytical comprehensive, and problem-solving skills.

19 Projects

Week 2- 2R Robotic Arm Challenge

Objective:

% A program to simulate the forward kinematics of a 2R Robotic arm % A program to plot forward kinematics of a 2R robotic arm manipulator % Forward kinematics of a 2R robotic arm manipulator clear all close all clc % Inputs l1 = 1; l2 = 0.5; theta1 = 45; theta2 = 30; % Coordinates x0 = 0; y0 = 0; x1 = l1*cosd(theta1);…

calendar

15 Jan 2022 06:30 AM IST

    Read more

    Week 3 - Solving second order ODEs

    Objective:

    %A program that solves the following ODE of Simple Pendulum. `(d^2 θ)/(dt^2 )+b/m dθ/dt+g/L sin⁡θ=0`   %Programs %Function Program function [dtheta_dt] = ode_func(t,theta,b,g,l,m) theta1 = theta(1) theta2 = theta(2) dtheta1_dt = theta2; dtheta2_dt = -(b/m)*theta2-(g/l)*sin(theta1); dtheta_dt = [dtheta1_dt;dtheta2_dt];…

    calendar

    04 Mar 2022 03:04 PM IST

      Read more

      Week 4.1 - Genetic Algorithm

      Objective:

      % A code to optimize stalagmite function using Genetic Algorithm. % Function program function [f] = stalagmite(input_vector) x = input_vector(1); y = input_vector(2); %function formulas for genetic algorithm f1 = [sin(5.1.*pi.*x+0.5)].^6; f2 = [sin(5.1.*pi.*y+0.5)].^6; f3 = exp(-4*log(2)*((x-0.0667).^2)./0.64); f4 = exp(-4*log(2)*((y-0.0667).^2)./0.64);…

      calendar

      26 Mar 2022 01:05 PM IST

      • MATLAB
      Read more

      Project 1 - Parsing NASA thermodynamic data

      Objective:

      % Project 1 - Parsing NASA thermodynamic data % Main code % Parsing NASA thermodynamic data clear all close all clc % Opening the data file f1 = fopen('THERMO.dat','r'); fgetl(f1); % Reading the header information tline = fgetl(f1) A = strsplit(tline,' '); global_low_temp = str2num(A{2}); global_mid_temp = str2num(A{3});…

      calendar

      02 May 2022 12:50 PM IST

        Read more

        Wiring harness design in CATIA V5 - 3D modeling Week 2 Challenge

        Objective:

        % Defining connectors and connector clip as an electric connector using electric part design workbench. % Steps to open the CAD data in CATIA V5 First we download cad data (stp or igs) of the connectors and connector clip from the given links. Then unzip the compressed cad data files. So that we can open the respective…

        calendar

        14 Jun 2022 04:58 AM IST

        Read more

        Wiring harness routing & packaging Rules Week 3 Challenge

        Objective:

        1] Defining the p clamp as electric support using electric part design workbench First download the P clamp cad file and open it in CATIA V5. Next in part design create points and planes at the centre, two points and two planes at the entry point and exit point. And one plane 2mm offset from the surface where the wires…

        calendar

        14 Jun 2022 05:42 PM IST

        Read more

        Wiring harness design in CATIA V5 - 3D modeling Week 4 Challenge

        Objective:

        %  Routing the following harness layout in the Electrical workbench using the following connectors DT06-2S, DT06-4S, DT06-6S and DT06-08SA. And adding protective covering on all branches connected to DT06-2S and DT06-4S connectors. % Downloading and defining the connectors First we download the four connectors shown…

        calendar

        16 Jun 2022 07:14 PM IST

        Read more

        Wiring harness design in CATIA V5 - 3D modeling Week 5 & 6 Challenge

        Objective:

        % Routing the following harness layout in electrical workbench. % Downloading and defining the connectors First we download the cad data from the link provided. After extracting all the files we have cad files of 10 connectors and layout diagrams. Next in part design workbench, we add point and axis on the bundle connection…

        calendar

        18 Jun 2022 08:50 PM IST

          Read more

          Wiring harness design in CATIA V5 - 3D modeling Week 7 Challenge

          Objective:

          % Flattening the harness assembly and placing the flattened view on the drawing sheet. % Steps for the challenge First we define the mechanical connectors electrically. Next we route the bundle. Next we add protective covering to the required branches. Next we flatten the harness assembly. Then we place the flattened view…

          calendar

          20 Jun 2022 01:51 PM IST

          Read more

          Project 1

          Objective:

          % Routing the wiring harness on the given engine and preparing flatten view drawing in CATIA V5. % Downloading the engine file and CAD files and defining the necessary connectors and clamps. First we download the engine file and all the CAD files from the links provided in the challenge. Next we define all the connectors,…

          calendar

          26 Jun 2022 07:09 PM IST

          Read more

          Project 2

          Objective:

          % Routing the wiring harness on the given Backdoor and preparing flatten view drawing in CATIA V5. % Downloading the backdoor CAD file and defining the necessary connectors and clamps. First we download the backdoor file and all the CAD files from the links provided in the challenge. Next we define the connector and p…

          calendar

          29 Jun 2022 04:42 AM IST

          Read more

          Week 8 - Challenge 1 - Base Bracket Design

          Objective:

          % Week 8  Challenge 1  Base Bracket Design Creating the Base Bracket Plastic component through the given Class-A surface.  1] A detailed report on draft analysis and the tooling axis creation.  DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the…

          calendar

          26 Jul 2022 12:17 PM IST

            Read more

            Week 8 - Challenge 2 - Switch Bezel Design

            Objective:

            % Creating the Switch Bezel Plastic component through the given Class-A surface. 1] DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the parting line. It is measurable in degrees. Because plastic shrinks and sticks on molding surfaces as it cools, we draft the walls of the…

            calendar

            27 Jul 2022 02:49 PM IST

              Read more

              Week 8 - Challenge 3 - Coin Holder Design

              Objective:

              % Creating the Coin Holder Plastic component through the given Class-A surface.  1] DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the parting line. It is measurable in degrees. Because plastic shrinks and sticks on molding surfaces as it cools, we draft the walls…

              calendar

              28 Jul 2022 07:05 PM IST

                Read more

                Week 8 - Challenge 4 - Bumper

                Objective:

                % Creating the Bumper Plastic component through the given Class-A surface.  1] DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the parting line. It is measurable in degrees. Because plastic shrinks and sticks on molding surfaces as it cools, we draft the walls…

                calendar

                31 Jul 2022 07:33 PM IST

                  Read more

                  Week 9 - Attachment Feature Creation (Ribs & Screw Boss) - Challenge 1

                  Objective:

                  % Creating the rib for the Drill Handle considering the design rules. 1] DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the parting line. It is measurable in degrees. Because plastic shrinks and sticks on molding surfaces as it cools, we draft the walls of the plastic…

                  calendar

                  01 Aug 2022 07:05 PM IST

                    Read more

                    Week 9 - Project 1 - Door Trim Lower with Engineering Features

                    Objective:

                    % Creating the Door Trim Lower Plastic component through the given Class-A surface.  1] DRAFT ANALYSIS For molded or cast parts, the draft angle is the amount of taper perpendicular to the parting line. It is measurable in degrees. Because plastic shrinks and sticks on molding surfaces as it cools, we draft the…

                    calendar

                    05 Aug 2022 11:01 AM IST

                      Read more

                      Week 10- Assembly Workbench

                      Objective:

                      % Week 10- Assembly Workbench 1] ASSEMBLY 1 Parts Body 1 Drawing  Body 2 Drawing Body 3 Drawing Body 4 Drawing Body 5 Drawing Final Assembly  Drawing 2] ASSEMBLY 2 Parts Body 1 Drawing  Body 2 Drawing Body 3 Drawing Final Assembly  Drawing

                      calendar

                      06 Aug 2022 08:17 PM IST

                        Read more

                        Week 9 - Project - A pillar Design with Master Section

                        Objective:

                        % Week 9 - Project - A pillar Design with Master Section 1] Master Section Master sections are the guides for design requirements that decide the component packaging after technical (Styling, Concept, or Class-A) surfaces. Creating this master section should need 5 to 6 years of experience. This helps you to decide the…

                        calendar

                        07 Aug 2022 05:27 PM IST

                          Read more
                          Showing 1 of 19 projects

                          3 Course Certificates

                          certificate

                          Automotive Wiring Harness using CATIA V5

                          CertificateIcon
                          Certificate UID: zlna6if5j7wgh9k3
                          View Certificate
                          certificate

                          Automotive Plastic Design using CATIA V5

                          CertificateIcon
                          Certificate UID: gftq7nvosa0w2dip
                          View Certificate
                          certificate

                          MATLAB for Mechanical Engineers

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

                          Academic Qualification

                          B.E

                          Sinhgad College of Engineering, Pune

                          17 Aug 2016 - 05 Jul 2021

                          12th

                          Shri Havagiswami College

                          14 Mar 2015 - 15 Feb 2016

                          10th

                          Times Public School Udgir

                          15 Jul 2013 - 15 Mar 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