# Libraries import math import numpy as np import matplotlib.pyplot as plt from scipy.integrate import odeint #defining Function 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 #…
CHINMAY JANGALE
updated on 29 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 CHINMAY JANGALE (27)
Week 5.1 - Mid term project - Solving the steady and unsteady 2D heat conduction problem
Question: Solve the 2D heat conduction equation by using the point iterative techniques that were taught in the class. The Boundary conditions for the problem are as follows; Top Boundary = 600 K Bottom Boundary = 900 K Left Boundary = 400 K Right Boundary = 800 K Objectives: You will implement the following methods…
01 Nov 2023 09:43 AM IST
Week 8 - Simulation of a backward facing step in OpenFOAM
Question: In this challenge, you are going to simulate an incompressible-laminar-viscous flow through the backward facing step geometry. You should perform a transient simulation. The solver can be chosen based on the described physics of the flow. You need to explain the entire simulation procedure (how you set up the…
21 Sep 2023 11:51 AM IST
Week 7 - Simulation of a 1D Supersonic nozzle flow simulation using Macormack Method
Question: In this challenge you are going to simulate the isentropic flow through a quasi 1D subsonic-supersonic nozzle. You will derive both the conservation and non-conservation forms of the governing equations and solve them using the MacCormack's technique. You need to determine the steady-state temperature distribution…
12 Sep 2023 08:50 AM IST
Week 3.5 - Deriving 4th order approximation of a 2nd order derivative using Taylor Table method
Function Code: function [error_CD] = central_diffrencing(x,dx,x_CD) %anonymous function f=@(x) exp(x).*cos(x) %analytical derrivative analytical_derrivative = -2*exp(x)*sin(x) %central diffrencing central_diffrencing_approx = (x_CD(1).*f(x-2.*dx)+x_CD(2).*f(x-dx)+x_CD(3).*f(x)+x_CD(4).*f(x+dx)+x_CD(5).*f(x+2.*dx))./(dx.^2);…
13 Aug 2023 08:05 AM IST
Project 1 : CFD Meshing for Tesla Cyber Truck
Aim & Objective: For the given model, check and solve all geometrical errors and Assign appropriate PIDs. Perform meshing with the suitable Target length and element Quality criteria Target lengths for the different parts of a model can be decided by your own. Finer mesh will give good results and will compromise with…
18 Jul 2023 09:22 AM IST
Week 5 Challenge : Surface wrap on Automotive Assembly
Aim & Objectives: For the given models, check for the geometrical errors and delete surfaces which are unwanted for Surface wrap as shown in the videos. After clearing geometry, Merge all 3 models and perform surface wrap. Target length for Wrap = 3 mm Write a detailed report on steps followed to finish this challenge.…
14 Jul 2023 07:37 AM IST
Week 4 Challenge : CFD Meshing for BMW car
Aim: For the given model, check and solve all geometrical errors on half portion and Assign appropriate PIDs. Perform meshing with the given Target length and element Quality criteria. After meshing the half model, Do symmetry to the other side. Objective: Target lengths for the different parts of a model are as follow:…
11 Jul 2023 07:40 AM IST
Week 3 Challenge : CFD meshing on Turbocharger
Aim: For the given model, check for the geometrical errors to make appropriate volumes. Create and assign PIDs as shown in the video. Perform surface mesh with the given target lengths as per PIDs Objective : For the given model, check for the geometrical errors to make appropriate volumes. Create and assign PIDs as shown…
28 Jun 2023 09:25 AM IST
Week 2 Challenge : Surface meshing on a Pressure valve
Aim: For the given model, check for the geometrical errors and perform Topology cleanup accordingly. Set three different target lengths as three different cases and mesh the model. Objective : Target length = 1mm, 3 mm and 5 mm (i.e. 3 cases) Element type = Tria Apply any one target length from the above at a time for…
22 Jun 2023 09:06 AM IST
Week 8 - Simulating Cyclone separator with Discrete Phase Modelling
Aim:- To perform analysis on cyclone separator and calculate the separation efficiency and pressure drop. Objective:- To write a few words about any four empirical models used to calculate the cyclone separator efficiency. To perform an analysis on a given cyclone separator model by varying the particle…
04 Mar 2023 11:27 AM IST
Week 9 - Parametric study on Gate valve.
Aim: For this challenge, you will have to perform a parametric study on the gate valve simulation by setting the opening from 10 % to 80%. Objective: Obtain the mass flow rates at the outlet for each design point. Calculate the flow coefficient and flow factor for each opening and plot the graph. Discuss the results of…
04 Mar 2023 11:24 AM IST
Week 6 - CHT Analysis on a Graphics card
AIM: Perform a steady-state conjugate heat transfer analysis on a model of a graphics card. You can use appropriate materials of your choice for the simulation. Make sure to properly define the correct solid and fluid zones. Refer the video for further clarification and the model is provided below the video. Run the simulation…
17 Feb 2023 08:00 AM IST
Week 4 - CHT Analysis on Exhaust port
Objectives : Give a brief description of why and where a CHT analysis is used. Maintain the y+ value according to the turbulence model and justify the results. Calculate the wall/surface heat transfer coefficient on the internal solid surface & show the velocity & temperature contours in appropriate areas. How would you…
13 Feb 2023 02:48 PM IST
Week 3 - External flow simulation over an Ahmed body.
AIM : Run the simulation for the velocity of 25 m/sec with the default air properties in fluent. Questions : Q1. Describe Ahmed's body and its importance. Q2. Explain the reason for the negative pressure in the wake region. Q3. Explain the significance of the point of separation. Objectives : Velocity and pressure contours. …
13 Feb 2023 02:46 PM IST
Week 5 - Rayleigh Taylor Instability
Aim and Objective : What are some practical CFD models that have been based on the mathematical analysis of Rayleigh Taylor waves? In your own words, explain how these mathematical models have been adapted for CFD calculations. Perform the Rayleigh Taylor instability simulation for 2 different mesh sizes with the base…
09 Feb 2023 08:52 AM IST
Week 4 - CHT Analysis on Exhaust port
Objectives : Give a brief description of why and where a CHT analysis is used. Maintain the y+ value according to the turbulence model and justify the results. Calculate the wall/surface heat transfer coefficient on the internal solid surface & show the velocity & temperature contours in appropriate areas. How would you…
06 Feb 2023 07:14 AM IST
Week 3 - External flow simulation over an Ahmed body.
AIM : Run the simulation for the velocity of 25 m/sec with the default air properties in fluent. Questions : Q1. Describe Ahmed's body and its importance. Q2. Explain the reason for the negative pressure in the wake region. Q3. Explain the significance of the point of separation. Objectives : Velocity and…
03 Feb 2023 09:42 AM IST
Week 2 - Flow over a Cylinder.
AIM: Simulate the flow over a cylinder and explain the phenomenon of Karman vortex street. Questions : PART-I Simulate the flow with the steady and unsteady case and calculate the Strouhal Number for Re= 100. PART-II Calculate the coefficient of drag and lift over a cylinder by setting the Reynolds number to 10,100,1000,10000…
19 Jan 2023 12:58 PM IST
Week 1- Mixing Tee
AIM: to set up steady-state simulations to compare the mixing effectiveness when hot inlet temperature is 360C & the Cold inlet is at 190C. Use the k-epsilon and k-omega SST model for the first case and based on your judgment use the more suitable model for further cases. Giving the reason for choosing a suitable…
08 Dec 2022 01:02 PM IST
Week 6 - Data analysis
#python code for Data analysis #importing libraries import math import matplotlib.pyplot as plt import numpy as np from numpy import trapz #opening file file_name = 'engine_data.out' #compatibility check try: data = open(file_name,'r') print('\ndata file is open sucessfully.') except FileNotFoundError: print('\npls enter…
10 Nov 2022 12:42 PM IST
Week 5 - Curve fitting
import math import matplotlib.pyplot as plt import numpy as np from scipy.optimize import curve_fit #linear curve fit function def func(t,a,b): return a*t + b #reading the data file def read_file(): temperature = [] cp = [] for line in open('data','r'): values = line.split(',') temperature.append(float(values[0])) cp.append(float(values[1]))…
10 Nov 2022 07:38 AM IST
Week 3 - Solving second order ODEs
# Libraries import math import numpy as np import matplotlib.pyplot as plt from scipy.integrate import odeint #defining Function 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 #…
29 Sep 2022 03:40 AM IST
Week 2 Air standard Cycle
import math import matplotlib.pyplot as plt def engine_kinematics(bore, stroke, con_rod, cr, start_crank, end_crank): #geometric parameters a = stroke/2 R = con_rod/a # volume parameters V_s = math.pi*(1/4)*pow(bore,2)*stroke V_c = V_s/(cr-1) sc = math.radians(start_crank) ec = math.radians(end_crank) num_values = 50 dtheta…
18 Sep 2022 07:21 AM IST
Project 1 - Parsing NASA thermodynamic data
clear close clc %open the file f=fopen("THERMO.dat"); %using for loop for first 5 lines for i=1:5 %fgetl read line from each file fgetl(f) end for j=1:53 b=fgetl(f); %spliting the string based on delimiter a=strsplit(b,' '); % 1st cell of a represents the species_name species_name=a{1}; %extraction of local temperature…
18 Aug 2022 10:37 AM IST
Week 4.1 - Genetic Algorithm
function script function [f]=stalagmite(v) x=v(1); y=v(2); f1x=(sin((5.1*pi*x)+0.5))^6; f1y=(sin((5.1*pi*y)+0.5))^6; f2x=exp(-4*log(2)*(((x-0.0667)^2)/0.64)); f2y=exp(-4*log(2)*(((y-0.0667)^2)/0.64)); f=-(f1x*f1y*f2x*f2y); end Main script clear close clc %defining search space x=linspace(0,0.6,150); y=linspace(0,0.6,150);…
06 Aug 2022 07:24 AM IST
Week 3 - Solving second order ODEs
Function script function [dtheta_dt] = ode_fun(t,theta,b,g,l,m) theta1 = theta(1) theta2 = theta(2) dtheta1_dt = theta2; dtheta2_dt = -(b/m)*theta2 - (g/l)*sind(theta1); dtheta_dt = [dtheta1_dt;dtheta2_dt]; end main script clear close clc %defining the inputs to variable b=0.05; g=9.81; l=0.75; m=1; %initial ciondition…
01 Aug 2022 06:47 AM IST
Week 2- 2R Robotic Arm Challenge
first of all we will plot simple non moving arms by fixed angle and co,ordinates for which we use following steps ; step 1- we gives the inputs like value of theta and length(l1 , l2) step 2-after giving inputs we wil calculate coordinates (x0,x1,x2) (y0,y1,y2) by using equation x1=l1cosd(theta1) , but we got the error(1.1)…
31 May 2022 10:17 AM IST