Menu

IIT Certification Programs

Workshops

Projects

Blogs

Careers

Student Reviews



More

Academic Training

Informative Articles

Find Jobs

We are Hiring!


All Courses

Choose a category

Loading...

All Courses

All Courses

logo

CHINMAY JANGALE

am here for raising my skills

Skills Acquired at Skill-Lync :

  • MATLAB-BASICS
  • PYTHON-BASICS
  • NUMERICAL-ANALYSIS
  • CFD
  • ANSYS-FLUENT
  • MATLAB
  • OPENFOAM

Introduction

before doing B.tech I completed diploma in mechanical engineering at padmashree Dr. Vitthal rao vikhe patil polytechnic, loni and then I completed my bachelors in Automobile engineering at D. Y. Patil school of engineering, ambi, pune. as a sports person i gained many soft skills like leadership, team work, and never give up attitude etc.

27 Projects

Week 2- 2R Robotic Arm Challenge

Objective:

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)…

calendar

31 May 2022 10:17 AM IST

    Read more

    Week 3 - Solving second order ODEs

    Objective:

    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…

    calendar

    01 Aug 2022 06:47 AM IST

      Read more

      Week 4.1 - Genetic Algorithm

      Objective:

      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);…

      calendar

      06 Aug 2022 07:24 AM IST

        Read more

        Project 1 - Parsing NASA thermodynamic data

        Objective:

        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…

        calendar

        18 Aug 2022 10:37 AM IST

        • MATLAB
        Read more

        Week 2 Air standard Cycle

        Objective:

        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…

        calendar

        18 Sep 2022 07:21 AM IST

          Read more

          Week 3 - Solving second order ODEs

          Objective:

          # 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 #…

          calendar

          29 Sep 2022 03:40 AM IST

            Read more

            Week 5 - Curve fitting

            Objective:

            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]))…

            calendar

            10 Nov 2022 07:38 AM IST

              Read more

              Week 6 - Data analysis

              Objective:

              #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…

              calendar

              10 Nov 2022 12:42 PM IST

                Read more

                Week 1- Mixing Tee

                Objective:

                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…

                calendar

                08 Dec 2022 01:02 PM IST

                Read more

                Week 2 - Flow over a Cylinder.

                Objective:

                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…

                calendar

                19 Jan 2023 12:58 PM IST

                  Read more

                  Week 3 - External flow simulation over an Ahmed body.

                  Objective:

                  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…

                  calendar

                  03 Feb 2023 09:42 AM IST

                    Read more

                    Week 4 - CHT Analysis on Exhaust port

                    Objective:

                    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…

                    calendar

                    06 Feb 2023 07:14 AM IST

                      Read more

                      Week 5 - Rayleigh Taylor Instability

                      Objective:

                      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…

                      calendar

                      09 Feb 2023 08:52 AM IST

                      Read more

                      Week 3 - External flow simulation over an Ahmed body.

                      Objective:

                      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. …

                      calendar

                      13 Feb 2023 02:46 PM IST

                        Read more

                        Week 4 - CHT Analysis on Exhaust port

                        Objective:

                        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…

                        calendar

                        13 Feb 2023 02:48 PM IST

                          Read more

                          Week 6 - CHT Analysis on a Graphics card

                          Objective:

                          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…

                          calendar

                          17 Feb 2023 08:00 AM IST

                            Read more

                            Week 9 - Parametric study on Gate valve.

                            Objective:

                            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…

                            calendar

                            04 Mar 2023 11:24 AM IST

                              Read more

                              Week 8 - Simulating Cyclone separator with Discrete Phase Modelling

                              Objective:

                              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…

                              calendar

                              04 Mar 2023 11:27 AM IST

                                Read more

                                Week 2 Challenge : Surface meshing on a Pressure valve

                                Objective:

                                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…

                                calendar

                                22 Jun 2023 09:06 AM IST

                                  Read more

                                  Week 3 Challenge : CFD meshing on Turbocharger

                                  Objective:

                                  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…

                                  calendar

                                  28 Jun 2023 09:25 AM IST

                                    Read more

                                    Week 4 Challenge : CFD Meshing for BMW car

                                    Objective:

                                    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:…

                                    calendar

                                    11 Jul 2023 07:40 AM IST

                                    Read more

                                    Week 5 Challenge : Surface wrap on Automotive Assembly

                                    Objective:

                                    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.…

                                    calendar

                                    14 Jul 2023 07:37 AM IST

                                    Read more

                                    Project 1 : CFD Meshing for Tesla Cyber Truck

                                    Objective:

                                    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…

                                    calendar

                                    18 Jul 2023 09:22 AM IST

                                      Read more

                                      Week 3.5 - Deriving 4th order approximation of a 2nd order derivative using Taylor Table method

                                      Objective:

                                      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);…

                                      calendar

                                      13 Aug 2023 08:05 AM IST

                                      Read more

                                      Week 5.1 - Mid term project - Solving the steady and unsteady 2D heat conduction problem

                                      Objective:

                                      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…

                                      calendar

                                      01 Nov 2023 09:43 AM IST

                                        Read more

                                        Week 7 - Simulation of a 1D Supersonic nozzle flow simulation using Macormack Method

                                        Objective:

                                          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…

                                        calendar

                                        12 Sep 2023 08:50 AM IST

                                        Read more

                                        Week 8 - Simulation of a backward facing step in OpenFOAM

                                        Objective:

                                        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…

                                        calendar

                                        21 Sep 2023 11:51 AM IST

                                        Read more
                                        Showing 1 of 27 projects

                                        5 Course Certificates

                                        certificate

                                        MATLAB for Mechanical Engineers

                                        CertificateIcon
                                        Certificate UID: 1nyrksxogum8d4bz
                                        View Certificate
                                        certificate

                                        Python for Mechanical Engineers

                                        CertificateIcon
                                        Certificate UID: q2cwpejb4zy0d5o8
                                        View Certificate
                                        certificate

                                        Introduction to GUI based CFD using ANSYS Fluent

                                        CertificateIcon
                                        Certificate UID: xm0cqr6ifuv75e9p
                                        View Certificate
                                        certificate

                                        Advanced CFD Meshing using ANSA

                                        CertificateIcon
                                        Certificate UID: p8ocb0eszg7hu41d
                                        View Certificate
                                        certificate

                                        Introduction to CFD using MATLAB and OpenFOAM

                                        CertificateIcon
                                        Certificate UID: tojylasb41qnmz5g
                                        View Certificate
                                        Showing 1 of 5 certificates

                                        Academic Qualification

                                        B.E

                                        Dr. D Y Patil School of Engineering

                                        19 May 2020 - 01 Jun 2023

                                        Diploma

                                        Dr.Vithalrao Vikhe Patil College Of Engineering, Ahmednagar,

                                        01 Jun 2016 - 18 May 2019

                                        10th

                                        Dr. Ulhas Patil English Medium School

                                        12 May 2015 - 17 May 2016

                                        Schedule a counselling session

                                        Please enter your name
                                        Please enter a valid email
                                        Please enter a valid number

                                        Here are the courses that I have enrolled

                                        coursecard
                                        4.7

                                        5 Hours of Content

                                        coursecard
                                        4.7

                                        4 Hours of Content

                                        coursecard
                                        Recently launched

                                        18 Hours of Content

                                        coursecard
                                        Recently launched

                                        21 Hours of Content

                                        coursecard
                                        Recently launched

                                        10 Hours of Content

                                        coursecard
                                        4.9

                                        12 Hours of Content

                                        Similar Profiles

                                        Apoorv Ranjan
                                        Apoorv Ranjan

                                        Ladder of success cannot be climbed with hands in pocket.

                                        Pruthvi Jagadeesh GK
                                        Pruthvi Jagadeesh GK

                                        The Future in Motion

                                        Krantiveer .
                                        Krantiveer .

                                        Give more than what you get you will get more than what you gave