Menu

Executive 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

Solving second order ODEs using MATLAB

Objective- To simulate the transient behaviour of a simple pendulum create an animation of it's motion MATLAB Code- function [dtheta_dt] = ode_func(t,theta,b,g,l,m) theta1 = theta(1) theta2 = theta(2) dtheta1_dt = theta2; dtheta2_dt = -(b/m)*theta2 -(g/l)*sin(theta1); dtheta_dt = [dtheta1_dt; dtheta2_dt]; end b = 0.05;…

Project Details

Loading...

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.

Please  login to add a comment

Other comments...

No comments yet!
Be the first to add a comment

Read more Projects by Mihir Barnwal (15)

Tool Test-2

Objective:

ANSA file: https://drive.google.com/file/d/1rWoJVO91tcgRvbpWzmr7w1SQnlSAHDKM/view?usp=sharing Time Taken: 3 hrs 40 mins Procedure: Geometry clean up is done. Defeaturing is done throughtout the model. Note: In this model, there are many curved surfaces, so it will takes much time to do ortho tria in curved surfaces.…

calendar

23 May 2021 09:46 AM IST

  • ANSA
Read more

Week- 5 - Solid meshing

Objective:

Objective:  For the given Rear view mirror component, check for the geometrical errors and mesh the Surfaces with the given 2D element Quality criterias given below.  1 Target/Average length   1 2 Minimum Length  0.5 3 Maximum Length  2 Use tetra elements to mesh the Volumes defined in the…

calendar

21 May 2021 07:33 PM IST

Read more

Tool Test 1

Objective:

https://drive.google.com/drive/folders/1bKF0pvbfZCd-uILrViidva5XTShBLhhT?usp=sharing

calendar

21 Apr 2021 02:23 PM IST

    Read more

    Week - 4 - 2D meshing for Plastic components

    Objective:

    https://drive.google.com/file/d/1N8GzajST0XEdPhckwjtWUPR9Tdl4obiA/view?usp=sharing ANSA file: https://drive.google.com/file/d/1N8GzajST0XEdPhckwjtWUPR9Tdl4obiA/view?usp=sharing Aim- For the given Plastic Bottle Cap model, check for the geometrical errors and take the mid surface by suitable mid surfacing techniques. PID…

    calendar

    14 Apr 2021 09:34 PM IST

    Read more

    Week 3 - 2D meshing for sheet metal

    Objective:

    Aim- Take the mid surface for all the components of the given Hood model and mesh the mid surface with the given element Quality criteria. Introduction- The hood or bonnet is the hinged cover over the engine of motor vechicles. Hoods can open to allow access to the engine compartment, or trunk for maintenance and…

    calendar

    16 Feb 2021 08:35 PM IST

    Read more

    Internal Geneva Mechanism

    Objective:

    Objective- Use the following 2D CAD drawings to create the 3D model of the internal Geneva mechanism (driver and driven wheels) Perform motion analysis by rotating the driver wheel at 10 rpm and 20 rpm. To plot the Contact force (between driving and the driven wheel) as a function of time for both cases.. To plot the Angular…

    calendar

    24 Aug 2020 06:39 PM IST

      Read more

      Modelling and simulation of flow through a flowbench

      Objective:

      Objective- Create a 3D model of a flow bench Run a parametric study on different valve lift Run flow analysis and obtaining a plot a graph between lift and mass flow rate Introduction- A flowbench is a device used for testing the internal aerodynamic qualities of an engine component. It is mainly used for testing the intake…

      calendar

      21 Jun 2020 09:27 AM IST

        Read more

        Flow over an airfoil

        Objective:

        Objective- Model the flow over a NACA0017 airfoil in Solidworks for the angle of attacks 0,2,4,6,8,10 compare the drag forces. Theory- The NACA airfoils are airfoil shapes for aircraft wings. The shape of the NACA airfoils is described using a series of digits following the word "NACA". The parameters in the numerical…

        calendar

        14 Jun 2020 08:13 PM IST

          Read more

          Flow over a cylinder

          Objective:

          Theory- In this challenge we have to run a baseline simulation of a cylinder in which external flow takes place. And also calculate the Reynolds number. Then increase the Reynolds number by a factor of 20%, 40%, and 100% then run the transient flow simulation. Also create animations for pressure-velocity for all the three…

          calendar

          30 May 2020 03:26 PM IST

            Read more

            Frequency Analysis of a rotating shaft

            Objective:

            Objective- In this study, we will do the frequency analysis on the shaft contaning disc. There is most important to find the natural frequency because if the rotating shaft frequency matched with the natural frequency then a large amplitutde displacement will occured and shaft will distorted. So we will find the natural(critical)…

            calendar

            27 Apr 2020 07:51 AM IST

              Read more

              Data analysis using Python

              Objective:

              Objective- Your script should take column numbers as the input and plot the respective columns as separate images Each file should be saved by the name of the column You code should exit gracefully, if a non-compatible file is provided as an input. It should say something like \"File not recognized. Please provide a valid…

              calendar

              26 Mar 2020 12:24 PM IST

                Read more

                Curve fitting using Python

                Objective:

                Objective-code to fit a linear and cubic polynomial for the Cp data pcov is a 2d array with the estimated covariance of the parameters in popt. It can be used to calculate the standard deviation errors of popt. np.array(temperature) is a grid of all temperature values, all of the same type, which basically stores values…

                calendar

                26 Mar 2020 09:33 AM IST

                  Read more

                  Parsing NASA thermodynamic data using MATLAB

                  Objective:

                  Objective- Reading \"NASA thermodynamic data\" file and write a function that extracts the 14 co-efficients and calculates the enthalpy, entropy and specific heats for all the species. Calculate the molecular weight of each species and display it in the command window. Plot the Cp, Enthalpy and Entropy for the local temperature…

                  calendar

                  26 Mar 2020 09:22 AM IST

                  Read more

                  Genetic Algorithm using MATLAB

                  Objective:

                  Objective- To optimise the stalagmite function and find the global maxima of the function Expalin the concept of genetic algorithm in your own words and also explain the syntax for ga in MATLAB Plot graphs for all 3 studies and for F maximum vs no. of iterations MATLAB Code- clear all close all clc x = linspace(0,1,150);…

                  calendar

                  26 Mar 2020 09:20 AM IST

                  Read more

                  Solving second order ODEs using MATLAB

                  Objective:

                  Objective- To simulate the transient behaviour of a simple pendulum create an animation of it's motion MATLAB Code- function [dtheta_dt] = ode_func(t,theta,b,g,l,m) theta1 = theta(1) theta2 = theta(2) dtheta1_dt = theta2; dtheta2_dt = -(b/m)*theta2 -(g/l)*sin(theta1); dtheta_dt = [dtheta1_dt; dtheta2_dt]; end b = 0.05;…

                  calendar

                  26 Mar 2020 09:17 AM IST

                  Read more
                  Showing 1 of 15 projects