OBJECTIVE: - Perform stress analysis on sheet metal bending setup for three different material and test following cases. Case 1: Apply Aluminium Alloy 1199, Copper Alloy NL and Magnesium Alloy NL to the sheet. Find out the Equivalent stress, Equivalent elastic strain and Total Deformation in the Y direction and…
Rajiv Ranjan
updated on 06 Apr 2021
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 Rajiv Ranjan (36)
Week 3 - Solving second order ODEs
import numpy as np from scipy.integrate import odeint import matplotlib.pyplot as plt import math # function that returns dz/dt def model(theta,t,b,g,l,m): theta1 = theta [0] theta2 = theta [1] dtheta1_dt = theta2 dtheta2_dt = -(b/m)*theta2 - (g/l)* math.sin(theta1) dtheta_dt = [dtheta1_dt,dtheta2_dt] return dtheta_dt…
01 Jul 2021 03:33 AM IST
Week 6 - Data analysis
import matplotlib.pyplot as plt import numpy as np from numpy import trapz fname = input("Enter the filename: ") if fname == 'engine_data.out': print('file is valid') else: print('file is invalid') exit() def compatibility_check(a): if 'CONVERGE' not in a: print('please provide converge output file to process') exit()…
30 Jun 2021 12:37 PM IST
Week 5 - Curve fitting
1. What does popt and pcov mean? The curve_fit function returns two items, which we call popt and pcov.The popt argument are the best fit for 'a' and 'b'. The pcov variable contains the covariance matrix which indicates the uncertainties and corelation between parameters. This is mostly useful when the data has uncertainties.…
30 Jun 2021 12:31 PM IST
Week 2 Air standard Cycle
INTRODUCTION: - The Otto cycle is the theoretical cycle of interest when one is considering reciprocating SI engines. The four-stroke Otto cycle is made up of the following four internally reversible processes: 1–2, isentropic compression; 2–3, constant-volume heat addition; 3–4, isentropic…
19 May 2021 10:07 AM IST
Week 8 Worm Gear Challenge
OBJECTIVE- As we are working with the academic version,we need to cut the gear by half so as to bring the model within limits. For the challenge,we have to rotate the worm so as to get to almost end of the half cut and get results for Equivalent stress, Equivalent elastic strain and the total deformation in the model.…
20 Apr 2021 11:58 AM IST
Week 11 Car Crash simulation
CAR CRASH SIMULATION Car Crash Simulation has become an integral part for the Auto and passengers safety over the decade. Software lets engineers run crash tests inside computers rather than on roads. It also allows them to compare the performance of different designs early in the process while cars are still on the drawing…
20 Apr 2021 10:45 AM IST
Week 10 Bullet penetrating a Bucket Challenge
INTRODUCTION- The Ansys explicit dynamics analyis system enables us to capture the physics of short duration events for the products that undergo highly nonlinear, transient dynamic forces. OBJECTIVE- The objective for this simulation is to use three different non linear materials for the bucket and analyse their behaviour…
19 Apr 2021 01:10 PM IST
Week 8 - Universal Joint
DOUBLE UNIVERSAL JOINT WITH SPRING Double Universal joint (also known as Hooke's joint) connects driving shaft A and driven shaft B which are parallel but lie in different axis through an intermediate shaft C.The yokes of shaft A and B lie in the same plane and the two yokes of shaft C also lie in another plane. The correct…
19 Apr 2021 11:28 AM IST
Week 7-Long Piston With Cam
LONG PISTON WITH CAM WHY ANALYSIS OF A LONG PISTON WITH CAM?? A cam is a rotating element that gives oscillating or reciprocating motion to the follower which is another element of this machine by direct contact. Cams generally do the opposite job to cranks, they turn rotary motion into reciprocating motion. Whatever…
17 Apr 2021 01:09 PM IST
Week 5 Bending of iPhone
iPHONE 6S BENDING SIMULATION Why bending of an iPhone?? Internal Apple documents (revealed by Judge Lucy Koh as part of an ongoing lawsuit against Apple regarding touchscreen failure due to bending) have revealed that Apple knew that the iPhone 6 and 6 Plus phones were more likely to bend than previous models. Apple…
16 Apr 2021 01:10 PM IST
Week 9 Machining with Planer Challenge
MACHINING WITH PLANER A planer is a type of metalworking machine tool that uses linear relative motion between the workpiece and a single point cutting tool to cut the work piece. A planer is similar to a shaper, but larger, and with the workpiece moving, whereas in a shaper the cutting tool moves.…
12 Apr 2021 07:11 AM IST
Week 9 Tension and Torsion test challenge
TENSILE AND TORSION TEST ON A STEEL SPECIMEN Tensile test- Tensile tests are used to determine how materials will behave under tension load. In a simple tensile test, a sample is typically pulled to its breaking point to determine the ultimate tensile strength of the material. The amount of force (F) applied…
10 Apr 2021 09:58 AM IST
Week 3 Sheet metal Bending challenge
OBJECTIVE: - Perform stress analysis on sheet metal bending setup for three different material and test following cases. Case 1: Apply Aluminium Alloy 1199, Copper Alloy NL and Magnesium Alloy NL to the sheet. Find out the Equivalent stress, Equivalent elastic strain and Total Deformation in the Y direction and…
06 Apr 2021 01:08 PM IST
Week 5 Sphere pressing on a plate
SPHERE PRESSING ON A PLATE Objective: - Perform the analysis to simulate a sphere pressing on a plate. We have to use Structural steel for both sphere and plate but the material of the plate must be Non Linear. Press the sphere onto plate 4mm downwards and retract it. The plastic deformation must be…
26 Mar 2021 12:28 PM IST
Week 4 -Wire Bending Challenge
WIRE BENDING CHALLENGE Objective: - We will have to perform an analysis to simulate the bending of a wire in ANSYS.We will assign non linear materials for the wire- Copper Alloy NL Aluminium Alloy NL Magnesium Alloy NL ii. Find out the equivalent stress and equivalent strain on the wire. Procedure:…
25 Mar 2021 01:27 PM IST
Week 1 Stress Concentration on a Plate with hole
ANALYSIS OF STRESS CONCENTRATION ON A PLATE WITH HOLE Objective: - Compare the deformation and maximum stress developed on a structural steel model for the 2 cases. From an analysis standpoint, select which of the two…
24 Mar 2021 09:44 AM IST
Week 4- Rolling operation
ROLLING OPERATION ON A COPPER WORKPIECE Objective: - Equivalent stress for the whole setup Equivalent Plastic strain for the workpiece Directional Deformation in the Z axis for the workpiece Ensure that the edge of the workpiece is displaced by 90mm. Procedure: - Drag and drop the static structural analysis system and…
23 Mar 2021 11:08 AM IST
Week 3 Verification of Weld Joints
VERIFICATIONS OF WELD JOINTS Objective: - Simulate three different types of welding using three different weld materials- Weld Material used: Case 1. Stainless Steel: In this case, the material of the plates must also be the same. Use Stainless steel for both weldments and plates. Case 2. Aluminium Alloy:The material…
22 Mar 2021 04:48 AM IST
Week 2 Railwheel and Track
STATIC STRUCTURAL ANALYSIS ON THE RAILWHEEL AND TRACK Objective: - The objective of the project is to perform a static structural analysis on railwheel and track and compare total Deformation, Equivalent Stress, and life under different loading condition. Also, implement the user-defined result and compare the total deformation.…
18 Mar 2021 12:07 PM IST
Week 2 Bevel Gear Challenge
GRID DEPENDENCY TEST ON BEVEL GEAR SIMULATION GRID DEPENDENCY TEST Grid dependency test is done to find out how the solution depends on the grid size by running the simulation with refined mesh. Generating a finer mesh, results in higher accuracy of the analysis but with the additional cost on computation time and computational…
17 Mar 2021 12:43 PM IST
Week 1 Spur Gear Challenge
STATIC STRUCTURAL ANALYSIS ON SPUR GEARS USING DIFFERENT MATERIALS Objective: - 1.Perform static structural analysis on spur gears and find out the Equivalent stress, Total deformation and Stress intensity using- Cast Steel Cast Bronze Cast Iron 2.Which material will we choose for manufacturing of spur gears based…
16 Mar 2021 12:23 PM IST
Week - 1 - Consistency of units
There is no default system of units in LS dyna and also, LS dyna doesn't understand what units the model uses so units must be compatible. The users has to be conversant with converting quantities from one system of units to another. This allow us to use LS dyna in different scenarios. Different industries use different…
04 Nov 2020 02:44 AM IST
Project 2
MESHING AND CONNECTION OF REAR SUSPENSION ASSEMBLY IN ANSA The suspension system of a vehicle refers to the group of mechanical components that connect the wheels to the frame or body. One of the most popular suspension system used in passenger car is the independent suspension with coil springs. It is both cheap and considerably…
27 Oct 2020 04:50 AM IST
Project 1
MESHING OF AN AUTOMOTIVE IP SUBSTRATE BY USING ANSA The instrument panel is one of the most complex system in automotive interior, both from functionality and appearance viewpoints. A plastic Ip-substrate typically houses the structure underneath, climate comfort ductwork, modules such as radio, airbags etc. The CAE tools…
16 Oct 2020 06:40 AM IST
Week 8
MORPHING IN ANSA Morphing is an advanced CAE modeling technique used to modify the shape of mechanical parts and assemblies without returning in the CAD system, which is time consuming and generates unexpected modeling preparation stages.The procedure is simple and fast, keeps the desired mesh pattern unchanged. Mesh morphing…
01 Oct 2020 09:31 AM IST
Week 6
CONNECTIONS FOR NVH ANALYSIS IN ANSA All connection types are characterized by their type, id, location in space and some additional information concerning geometric features, such as diameter, width or height. There are three types of connections based on the order of the connection's shape: - connection_0d are…
19 Sep 2020 02:52 AM IST
Tool Test-2
Below is the meshed model of Intake mainfold: - It took me 4 hours and 25 minutes to mesh the model with shell elements and later convert it to tetra mesh.
12 Sep 2020 09:50 AM IST
Week 5
TETRAMESHING OF REARVIEW MIRROR ANSA consists of two modes for generation of solid elements. The unstructured mesh creation algorithms like tetras and hexa interior mesh and the structured mesh algorithms like Map, Extrude, Layers, HexBlock etc. AIM: - 1. Check for…
11 Sep 2020 09:16 PM IST
Tool Test 1
Meshed model: -
08 Sep 2020 10:40 AM IST
Week 4
TOPOLOGY CLEANUP AND MESHING OF BOTTLE CAP AIM: - Check for geometrical errors and fix them to extract a proper mid-surface. Perform geometry cleanup, close gaps, modify or create new faces etc. Mesh the part with a uniform mesh and an average element length of 1mm. Improve the mesh by manually optimizing…
04 Sep 2020 06:38 AM IST
Week 3
MID-SURFACING AND MESHING OF HOOD COMPONENT Hood is an essential part of the vehicle. It protects the engine and avoid any kind of impacts. In order to meet these requirements, analysis of hood rises as a compulsory step. So the quality of meshing needs to be good and meet the given criteria for an accurate analysis. AIM:…
28 Aug 2020 01:52 PM IST
GENERATION OF ONE DIMENSIONAL ELEMENTS ON THE PARALLEL BRACKET
OBJECTIVE: How to create different types of one dimensional elements. Getting familiar with the one dimensional menu bar. PROCEDURE: Creating a Rod element with only translational degree of freedom and RBE2 link - Import the IGES file using the import geometry option under import solver deck tool. To represent the enitre…
27 Aug 2020 10:57 AM IST
Week 12 - Project-1
GENERATING MESH ON PLASTIC COMPONENT OF A PASSENGER VEHICLE SIDE DOOR Computer-aided engineering (CAE) software has been used for many years in the plastic industry, identifying the most appropriate mesh geometry and density remains a challenge. It can affect the accuracy of the simulation, the time and the costs. …
11 Jul 2020 05:55 PM IST
Week 9-Challenge
CONNECTORS Connectors are simply a database of information defining specific requests for connections at specific locations. They are a medium to create both solver independent or solver dependent connections between geometric and FE entities. Connectors are primarily used to create spot and seam welds, but also used to…
22 Jun 2020 01:09 AM IST
Week 8-Challenge
CREATING TETRAHEDRAL ELEMENTS USING HYPERMESH Tetramesh for housing and hub assembly: - Tetrahedral elements are solid elements which have been extracted from 2-D tria elements. HyperMesh builds 4 and 10-noded tetras. HyperMesh provides two methods of generating a tetrahedral element mesh. The volume…
18 Jun 2020 03:51 AM IST
Week 6- Challenge
TWO DIMENSIONAL ELEMENTS MESHING OF THE HOOD Hood is an essential part of the vehicle. It protects the engine and avoid any kind of impacts. In order to meet these requirements, analysis of hood rises as a compulsory step. So the quality of meshing needs to be good and meet the given criteria for an accurate analysis.…
20 May 2020 08:33 AM IST