Create the Switch Bezel 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. Take the Thickness of the component to be 2.5 mm …
Rahul Sule
updated on 12 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 Rahul Sule (19)
Week 10- Assembly Workbench
CV JOINT: SCREENSHOT:- QUICK RETURN ASSLY: SCREENSHOT:- Submit a report explaining the procedure you followed while working on this assignment:- First of all we have created single parts in part workbench with proper dimensions and contraints. Then opened new assembly workbench and imported all single…
28 Nov 2022 03:14 PM IST
Week 9 - Project - A pillar Design with Master Section
Picture of the sketches with Sketch solving status’s geometry tab Picture of the Detailed tree structure. Picture of the 3D CAD Create closed body After getting combined Class A, B and C surface we joined them to form one single closed surface boundary and then with the help of closed body command which is there in…
24 Nov 2022 02:51 PM IST
Week 9 - Project 1 - Door Trim Lower with Engineering Features
Create the Door Trim Lower 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. Create the Heat Stakes and the locators considering the…
19 Nov 2022 02:35 PM IST
Week 9 - Attachment Feature Creation - Challenge 2
Create the Dog House for the Door Trim considering the design rules mentioned in the video. Consider the thickness of the part to be 2.5 mm. "C" is where the doghouse contacts the backside of the surface Doghouse wall thickness at the intersection of the part wall ( C ) should be 40% or less than the main wall stock (…
16 Nov 2022 01:51 PM IST
Week 8 - Challenge 4 - Bumper
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. Take the Thickness of the component to be 3 mm. SOLUTION:-…
11 Oct 2022 02:18 PM IST
Week 8 - Challenge 3 - Coin Holder Design
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. Take the Thickness of the component to be 2.5 mm …
22 Sep 2022 01:37 PM IST
Week 9 - Attachment Feature Creation (Ribs & Screw Boss) - Challenge 1
Create the rib for the Drill Handle considering the design rules mentioned in the video. SOLUTION:- Screenshots of the completed design in various orientations (Isometric, Front, Side, and Top View) ISOMETRIC VIEW FRONT VIEW SIDE VIEW TOP VIEW A detailed report should be done explaining the draft analysis…
18 Sep 2022 02:39 PM IST
Week 8 - Challenge 6 - Core & Cavity Design
Create the Core and cavity blocks for the switch bezel designed in the earlier challenge. SOLUTION:- Screenshots of the Draft analysis report for both the switch bezel plastic component ISOMETRIC VIEW FRONT VIEW SIDE VIEW TOP VIEW A detailed report should be done explaining the draft analysis and the…
16 Sep 2022 06:44 AM IST
Week 8 - Challenge 2 - Switch Bezel Design
Create the Switch Bezel 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. Take the Thickness of the component to be 2.5 mm …
12 Sep 2022 02:34 PM IST
Week 8 - Challenge 1 - Base Bracket Design
Create the Base Bracket 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. SOLUTION:- Screenshots of the Draft analysis report…
12 Sep 2022 02:23 PM IST
Project 2
Description:As discussed in Lecture 11, Project 2 deals with the development of a forward energy-based fuel consumption model of a P1 hybrid vehicle. This model is based on the conventional vehicle model from Project 1. The main goal of this project is to understand the functionality of a P1 hybrid and be able to model…
14 Jul 2022 08:50 AM IST
Project 1
AIM:-To develop a forward energy-based fuel consumption model of a conventional vehicle with a 1.9L engine and a 4- speed automatic transmission using Matlab and Simulink to generate plots and analyze data. MATLAB INITIAL SCRIPT:- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%…
07 Jun 2022 02:31 PM IST
Project
AIM:- Carry out a system-level simulation of an all-terrain vehicle. OBJECTIVES:- To prepare a technical report of the model and comment on the results. To explain the function of the subsystem and also blocks that are used in the model. Study a BAJA ATV model. All-terrain vehicle(ATV):- An all-terrain vehicle is defined…
25 Apr 2022 01:34 PM IST
Week - 4
1) Implement the control logic of a “washing machine” using Stateflow as per the given sequence: If the power supply is available, the system gets activated If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time of 100s. Then rinsing happens…
17 Apr 2022 02:47 PM IST
Week -2
Simulink model of Doorbell :- Explanation:- We used the following blocks in the Simulink model:- Pulse Generator - This is used to create square wave pulses at regular intervals of time Scope - Shows results in the form of graphical representation Switch - It is used with the help of a Simulink PS converter to convert…
01 Apr 2022 08:57 AM IST
Project 1 - Parsing NASA thermodynamic data
Main Program- %Thermo-NASA file reading program clear all; close all;clc %Reading data file f1=fopen('THERMO.dat','r') %Skip header line fgetl(f1) %global temperatures Temp=fgetl(f1); Temp=str2num(Temp); global_low_temp=Temp(1); global_mid_temp=Temp(2); global_high_temp=Temp(3); %Universal Gas Constant R=8.314; %skip next…
21 Mar 2022 05:58 AM IST
Week 4.1 - Genetic Algorithm
1) CODE - %Program to find global maxima of function clear all; close all; clc x = linspace(0,0.6,150); % x Search space y= linspace(0,0.6,150);% y search space num_cases = 50 %50 times for function will run [xx yy] = meshgrid(x,y); for i = 1:length(xx) for j = 1:length(yy) input_vector(1)=xx(i,j) input_vector(2)=yy(i,j)…
05 Mar 2022 02:38 PM IST
Week 3 - Solving second order ODEs
%%Program to simulate motion of simple pendulum clear all; close all; clc; %Inputs b=0.05;%damping coeff g=9.81 %gravity l=1%Length of pendulum m=1%mass of ball %INITIAL CONDITIONS of angular displacemet & Velocity at t=0 Y0 = [0;3]; %TIME SPAN t_span = linspace(0,20,500); %SOLVING ODE [t,Y0] = ode45(@(t,Y0) ode_func(t,Y0,b,g,l,m),…
12 Feb 2022 03:08 PM IST
Week 2- 2R Robotic Arm Challenge
% A program to simulate forward kinematics of 2R Robotic Arm close all clc ct = 1; theta1 = linspace(0,90,10); theta2 = linspace(0,90,10); for i = 1 : length(theta1); THETA1 = theta1(i); for j = 1 : length(theta2); THETA2 = theta2(j) %Inputs L1 = 1; L2 = 0.5; x0 = 0; y0 = 0; x1 = L1*cosd(THETA1); y1 = L1*sind(THETA1);…
24 Jan 2022 02:36 PM IST