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

Raghav Mundhra

Aero Enthusiast

Skills Acquired at Skill-Lync :

  • CFD
  • AERODYNAMICS
  • CONVERGE-CFD
  • MATLAB-BASICS
  • PYTHON-BASICS
  • NUMERICAL-ANALYSIS
  • CFD-BASICS
  • SOLIDWORKS-FLOW-SIMULATION-BASICS

Introduction

A mechanical engineering graduate passionate about Aerospace Engineering

23 Projects

a new title

Objective:

https://projects.skill-lync.com/projects/Parsing-NASA-Thermodynamic-Data-File-40140 

calendar

14 Dec 2018 01:51 AM IST

    Read more

    Calculation of Drag Force Python

    Objective:

    # Program to calculate the drag force import matplotlib.pyplot as plt # Drag force nd velocity \"\"\" Inputs \"\"\"c_d = 0.8A = 0.1rho = 1.2velocities = [5,10,15,20,25]F_d = []# Calculationsfor velocity in velocities: F_d.append((0.5*c_d*rho*A*velocity*velocity))#PLottingplt.plot(velocities,F_d)plt.xlabel(\'velocity\')plt.ylabel(\'Drag…

    calendar

    01 May 2018 11:30 AM IST

      Read more

      Otto Cycle Simulator

      Objective:

      https://drive.google.com/open?id=12IZepes07vJPxQwKd4h8Mv3ZaChGN0qK

      calendar

      20 May 2018 03:12 PM IST

        Read more

        Otto Cycle

        Objective:

        clear allclose allclc%Inputs gamma = 1.4; % Engine Geometric Parameters:bore = 0.1;stroke = 0.1;r = 12;con_rod = 0.15; % Calculating the swept volume and clearance volumev_s = (pi/4)*bore^2*stroke;v_c = v_s/(r-1); % State Variable at point 1display(\'Input state variables for point 1:\');p1 = input(\'Pressure:\');t1 =…

        calendar

        20 Jan 2018 03:29 AM IST

          Read more

          a new title

          Objective:

          https://projects.skill-lync.com/projects/Parsing-NASA-Thermodynamic-Data-File-40140 

          calendar

          14 Dec 2018 01:51 AM IST

            Read more

            Forward Kinematics Simulation of a 2R Robotic Arm

            Objective:

            Code: https://drive.google.com/open?id=1-q_GHG1Y846VIdfsx24CM0R838Sx6rDR Animation: https://drive.google.com/open?id=1wVRtw-zCApnSLfnLd4nra6IUg1C8GhYz

            calendar

            19 Jun 2018 10:56 PM IST

              Read more

              Simulating Damped Pendulum Motion

              Objective:

              https://drive.google.com/open?id=1nKZirzSCYHg-5l2Ph6T2XCzI9G6gVivw

              calendar

              22 May 2018 09:42 AM IST

                Read more

                Code to calculate drag force against a cyclist

                Objective:

                % Drag Forceclear allclose allclc % Inputsdrag_coefficient = input('Enter the value of drag co-efficient:');rho = input('Enter the density of the medium(kg m^-3):');A = input('Enter the value of the frontal area(m^2):');v1 = input('Enter minimum veloity(ms^-1):');v2 = input('Enter maximum velocity(ms^-1):');v = [v1:v2];…

                calendar

                10 Feb 2018 11:19 PM IST

                  Read more

                  Parametric Analysis of Drag Force

                  Objective:

                  https://drive.google.com/open?id=1recTSx6IS2fyp7-26HjQskfui2RSDb78

                  calendar

                  20 May 2018 01:47 PM IST

                    Read more

                    Numerical vs Exact derivative

                    Objective:

                    https://drive.google.com/open?id=1-28PCT5HRlQSoPoEFY121-gaWV4sLUqp

                    calendar

                    23 Jul 2018 12:04 PM IST

                      Read more

                      Accuracy of fourth order finite difference schemes

                      Objective:

                      Using the Taylor Table method, the fourth order approximate finite difference scheme for the second order derivative has been derived for 3 different stencils. 1. CENTRAL DIFFERENCE SCHEME To derive the fourth order approximate central difference scheme for the second order derivative, we use the following formula: `n…

                      calendar

                      20 Apr 2020 03:04 AM IST

                      • MATLAB
                      Read more

                      a new title

                      Objective:

                      https://projects.skill-lync.com/projects/Parsing-NASA-Thermodynamic-Data-File-40140 

                      calendar

                      14 Dec 2018 01:51 AM IST

                        Read more

                        Curve Fit for Specific Heat v/s Temperature Data

                        Objective:

                        Linear Fit: https://drive.google.com/open?id=10caV0tPqrpUk3mSv5YTUHq1uFNBbtLXx Cubic Fit: https://drive.google.com/open?id=14Ol6VVrc_GtuS_k2sQKVXZqAEHzXKbYp

                        calendar

                        21 May 2018 12:04 PM IST

                          Read more

                          Undamped Pendulum

                          Objective:

                          ODE Code: https://drive.google.com/open?id=13TiJg6xBHlESyC3l2ZoiSshhfGiCEr9Y ODE Function: https://drive.google.com/open?id=1StlMkK5oVNlIEl5go_DETbUnafO3rxDD   VIDEO: https://drive.google.com/open?id=1H1SpZY1UZ4YvtPLkV_F-7tL3MzCgJ3Tz  

                          calendar

                          10 Feb 2018 11:21 PM IST

                            Read more

                            Curve Fitting

                            Objective:

                            1. What does popt and pcov mean? popt stores the values of the co-efficients of the polynomial passed to the function curve_fit. The      function curve_fit calculates these co-efficients and popt stores them. pcov : It is a 2D array which gives the estimated co-variance of popt. The diagonals provide…

                            calendar

                            21 May 2018 10:44 AM IST

                              Read more

                              a new title

                              Objective:

                              https://projects.skill-lync.com/projects/Parsing-NASA-Thermodynamic-Data-File-40140 

                              calendar

                              14 Dec 2018 01:51 AM IST

                                Read more

                                Stoichiometric Air

                                Objective:

                                https://drive.google.com/open?id=1AVNVASkt5cdHHGyaoCko79m1IBf6aVNg

                                calendar

                                21 May 2018 10:30 PM IST

                                  Read more

                                  Code to plot drag force as a function of velocity for different drag co-efficients

                                  Objective:

                                  % Drag Forceclear allclose allclc % Inputsdrag_coefficient = input('Enter the value of drag co-efficient:');rho = input('Enter the density of the medium(kg m^-3):');A = input('Enter the value of the frontal area(m^2):');v1 = input('Enter minimum veloity(ms^-1):');v2 = input('Enter maximum velocity(ms^-1):');v = [v1:v2];…

                                  calendar

                                  03 Jan 2018 11:19 AM IST

                                    Read more

                                    Parsing NASA Thermodynamic Data File

                                    Objective:

                                    https://drive.google.com/open?id=1wf9ziXVN5D-HurOkp28qrbXU38p1CXWf

                                    calendar

                                    21 Apr 2018 03:05 AM IST

                                      Read more

                                      Effect of Reynolds Number on Flow through a Pipe

                                      Objective:

                                      Introduction In this project, the effect of Reynolds Number on the flow through a pipe is studied through numerical simulations using Flow Simulations add-in of Solidworks. Simulations are carried out for flow of water through a pipe of internal radius 2.5cm and length 20cm. The boundary conditions are as follows:1. Inlet…

                                      calendar

                                      11 Jun 2021 06:01 PM IST

                                        Read more

                                        Numerical Analysis of Transient Flow Over a Cylinder

                                        Objective:

                                        In this project, transient 3D simulation of flow of air over a cylinder of diameter 0.02m and length 0.2m is performed using Flow Simulations add in of Solidworks. The cross-section of the cylinder is in the XY plane, while its length is in the z direction. The free stream velocity is in the X direction.Initial studies…

                                        calendar

                                        20 Jun 2021 06:15 AM IST

                                          Read more

                                          CFD analysis of flow over NACA 0017 airfoil at different angles of attack

                                          Objective:

                                          In this project, simulation of flow over NACA 0017 airfoil is performed using Flow Simulations add in of Solidworks. To generate the co-ordinates of NACA 0017, the following data was fed into NACA 4 digit generator of airfoiltools.com These co-ordinates were copied into a text file, a column with all rows zero was added…

                                          calendar

                                          29 Jun 2021 04:27 AM IST

                                            Read more

                                            Flow over an airfoil

                                            Objective:

                                            https://skill-lync.com/student-projects/cfd-analysis-of-flow-over-naca-0017-airfoil-at-different-angles-of-attack

                                            calendar

                                            29 Jun 2021 04:31 AM IST

                                              Read more
                                              Showing 1 of 23 projects

                                              1 Course Certificates

                                              certificate

                                              MATLAB for Mechanical Engineers

                                              CertificateIcon
                                              Certificate UID: 6vn08xopqilu42ds
                                              View Certificate
                                              Showing 1 of 1 certificates

                                              Academic Qualification

                                              B.E

                                              Jadavpur University

                                              28 Jul 2015 - 25 May 2019

                                              12th

                                              Birla High School

                                              01 May 2012 - 01 May 2014

                                              10th

                                              St. Aloysius' High School

                                              01 Apr 2002 - 01 May 2012

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

                                              13 Hours of Content

                                              coursecard
                                              4.7

                                              5 Hours of Content

                                              coursecard
                                              4.7

                                              4 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