Meghraj Patil
Never tell me the odds.
Skills Acquired at Skill-Lync :
Introduction
19 Projects
Week 2- 2R Robotic Arm Challenge
% 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);…
15 Jan 2022 06:30 AM IST
Week 3 - Solving second order ODEs
%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];…
04 Mar 2022 03:04 PM IST
Week 4.1 - Genetic Algorithm
% 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);…
26 Mar 2022 01:05 PM IST
Project 1 - Parsing NASA thermodynamic data
% 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});…
02 May 2022 12:50 PM IST
Wiring harness design in CATIA V5 - 3D modeling Week 2 Challenge
% 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…
14 Jun 2022 04:58 AM IST
Wiring harness routing & packaging Rules Week 3 Challenge
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…
14 Jun 2022 05:42 PM IST
Wiring harness design in CATIA V5 - 3D modeling Week 4 Challenge
% 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…
16 Jun 2022 07:14 PM IST
Wiring harness design in CATIA V5 - 3D modeling Week 5 & 6 Challenge
% 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…
18 Jun 2022 08:50 PM IST
Wiring harness design in CATIA V5 - 3D modeling Week 7 Challenge
% 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…
20 Jun 2022 01:51 PM IST
Project 1
% 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,…
26 Jun 2022 07:09 PM IST
Project 2
% 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…
29 Jun 2022 04:42 AM IST
Week 8 - Challenge 1 - Base Bracket Design
% 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…
26 Jul 2022 12:17 PM IST
Week 8 - Challenge 2 - Switch Bezel Design
% 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…
27 Jul 2022 02:49 PM IST
Week 8 - Challenge 3 - Coin Holder Design
% 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…
28 Jul 2022 07:05 PM IST
Week 8 - Challenge 4 - Bumper
% 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…
31 Jul 2022 07:33 PM IST
Week 9 - Attachment Feature Creation (Ribs & Screw Boss) - Challenge 1
% 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…
01 Aug 2022 07:05 PM IST
Week 9 - Project 1 - Door Trim Lower with Engineering Features
% 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…
05 Aug 2022 11:01 AM IST
Week 10- Assembly Workbench
% 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
06 Aug 2022 08:17 PM IST
Week 9 - Project - A pillar Design with Master Section
% 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…
07 Aug 2022 05:27 PM IST
3 Course 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
Here are the courses that I have enrolled
Similar Profiles
Ladder of success cannot be climbed with hands in pocket.
The Future in Motion
Give more than what you get you will get more than what you gave
Avid learner