AIM Create the Bumper Plastic component through the given Class-A surface. To begin with, the tooling axis for the given Class-A Surface should be created meeting the requirements of the draft angle and at the end perform the Draft analysis on the model. INTRODUCTION A bumper is a structure attached to or integrated with…
Mukesh Kanna S
updated on 23 Sep 2022
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Mukesh Kanna S (17)
Underbody Coating
Underbody Coating is a sprayable coating, which protects the under surface of the vehicle from corrosion. Underbody coating provides long term protection from corrosion to car's underbody. It also protects parts like internal body panels, frame rails and other inner cavities that are not physically accessible…
13 Jan 2023 02:52 PM IST
Benchmarking
Aim: To expain about Benchmarking and finding a good car for Mr.D.S.Pughazhyendhii by comparing the cars. Benchmarking :- Benchmarking is a process of measuring the performance of a company’s products, services, or processes…
13 Jan 2023 07:25 AM IST
Project - Analysis of a practical automotive wiring circuit
1) a) Genarator b) Battery c) Starter d) Ignition coil e) Ammeter f) Foot selector switch g) Breaker i) Fuse j) Current and voltage regulator k) Distributor 2) Genarator: A generator is a device that transforms mechanical energy into electrical energy, typically by electromagnetic induction via Faraday's Law.An electric…
28 Nov 2022 01:22 PM IST
Week 10- Assembly Workbench
AIM :- To create assemblies of Quick return mechanism and CV joint and to also create 2D drawing of the given assemblies in CATIA. ASSEMBLY :- Assembly modeling is a technology and method used by computer-aided design and product visualization computer software systems to handle multiple files that represent components…
30 Sep 2022 05:10 AM IST
Week 9 - Project 1 - Door Trim Lower with Engineering Features
Objective: The main aim of this challenge is to create a solid body of 'Door Trim Lower' with the help of the closed surface method by using the 'Generative shape design' workbench in CATIA V5. Performing the 'Draft Analysis' on the solid part body of the Door trim. Overview:Initially, we need to offset the given…
25 Sep 2022 05:33 PM IST
Week 9 - Attachment Feature Creation - Challenge 2
OBJECTIVES: To create the class B and class C surfaces from the given class A surface To form a solid geometry by combining all the surfaces To create a dog house for the solid part whilst following the design rules To perform draft analysis on the class A surface and the solid part model DRAFT ANALYSIS OF CLASS…
25 Sep 2022 09:51 AM IST
Week 8 - Challenge 6 - Core & Cavity Design
Aim/Objectives: Create the Core and cavity blocks for the switch bezel designed in the earlier challenge. Steps Followed: Tooling Axis creation Checking Draft analysis for created tooling Axis Creating parting Surface Creating Core Side Creating cavity side. 1). Tooling Axis: Tooling axis is the axis in which core…
24 Sep 2022 10:33 AM IST
Week 9 - Project - A pillar Design with Master Section
OBJECTIVES To improvise the Class A surface by resolving bad patches and adding flanges to it. To create A pillar solid model with the help of improvised class A surface. To create B side features for the A Pillar using the master section given to us as an input. To create main and side core tooling axis for…
24 Sep 2022 06:57 AM IST
Week 8 - Challenge 4 - Bumper
AIM Create the Bumper Plastic component through the given Class-A surface. To begin with, the tooling axis for the given Class-A Surface should be created meeting the requirements of the draft angle and at the end perform the Draft analysis on the model. INTRODUCTION A bumper is a structure attached to or integrated with…
23 Sep 2022 03:03 PM IST
Week 9 - Attachment Feature Creation (Ribs & Screw Boss) - Challenge 1
AIM: To Create the Door Handle Component from the given Class-A surface. To Create the tooling axis for the given Class-A Surface To Attach B side Features in the component. To perform the Draft analysis on the model. TOOLS USED: Boundary Join Sweep Extract Multiple extract Extrapolate Bisecting line Trim Surface…
23 Sep 2022 02:09 PM IST
Week 8 - Challenge 3 - Coin Holder Design
Aim - Create the Coin Holder Plastic component through the given Class-A surface. To begin with, the tooling axis for the given Class-A Surface should be created meeting the requirements of the draft angle and at the end perform the Draft analysis on the model. INTRODUCTION: CLASS-A SURFACE: a surface…
22 Sep 2022 06:05 PM IST
Week 8 - Challenge 2 - Switch Bezel Design
OBJECTIVE: The objective of the project is to design the swith bezel and to do a draft analysis for it by creating the required tooling direction with the help of bisecting method. INTRODUCTION: The control panel bezel is the frame part of the window switch that holds its switch covers and buttons into place.Moulding is…
18 Sep 2022 12:18 PM IST
Week 8 - Challenge 1 - Base Bracket Design
AIM: Create the Base Bracket Plastic component through the given Class-A surface. And perform the Draft analysis on the model. OBJECTIVES: To model a base bracket and perform draft analysis on the model. THEORY: Draft Analysis: Draft analysis helps to detect if your drafted part is easily removable from the mold…
14 Aug 2022 02:18 PM IST
Project 1 - Parsing NASA thermodynamic data
AIM: To write a code in MATLAB to parse the NASA thermodynamic data file and then calculate thermodynamic properties of various gas species. Objective: * To write a function that extract 14 coefficients and calculate Enthalpy, Entropy, Specific heat & molecular weight for all the species in the data file. * To plot…
11 Jul 2022 06:36 AM IST
Week 4.1 - Genetic Algorithm
clear all close all clc %Defining our search space x=linspace(0,0.6,150); %Creating one dimensional array of X & Y y=linspace(0,0.6,150); [xx, yy]=meshgrid(x,y); % Based on one dimensional array, creating two dimensional array %Evaluating the stalagmite function for i = 1:length(xx) for j=1:length(yy) input_vector(1)=xx(i,j);…
02 Jul 2022 01:32 PM IST
Week 3 - Solving second order ODEs
https://youtu.be/VAj9JdQIUbw Aim To write a program that solves an equation of motion of simple pendulum with damping. Explanation The above equation is second order, To solve an ODE we are breaking into two first order equations dtheta1_dt=theta2 dtheta2_dt= -(b/m)*theta2-(g/l)*sin(theta1) clear…
03 Jun 2022 01:05 PM IST
Week 2- 2R Robotic Arm Challenge
https://drive.google.com/file/d/1-GcCwFRvbTAoJwIGBa2n4gyboFUC35D9/view?usp=sharing clc close all l1=1; l2=0.5; theta1=linspace(0,75,10); theta2=linspace(0,75,10); 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);…
29 Apr 2022 06:46 AM IST