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

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

function [y,am] = expr(x) y = exp(x)*cos(x); am = exp(x)* (-2*sin(x)); end function error_c = central(x,dx,P,Q) %N = number of Nodes %P = order of accuracy %Q = order of derivative N = P+Q-1 ; %Number of nodes k = (N-1)/2; %constant A_c = zeros(N); %Defining matrix B_c = zeros(N,1); %Defining matrix B_c(Q+1,1) = 1; %Equating…

    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 BHARATH KUMAR YAMMANI (13)

    Week 4.2: Project - Transient simulation of flow over a throttle body

    Objective:

    Aim: To set up and simulate the Transient simulation of flow over the throttle body. Objective:  Setting up Transient state simulation for flow over a throttle body. To generate the mesh that gives more accurate results. Post-processing the obtained results using ParaView and show pressure and velocity contour. …

    calendar

    11 Nov 2022 07:52 PM IST

    • HTML
    Read more

    Week 4.1: Project - Steady state simulation of flow over a throttle body

    Objective:

    Aim: The main objective of this project is to set up the case to perform a simulation of steady-state flow over a Throttle valve when it is fully open and post-processing the result using ParaView.   Introduction: The report describes the steady-state flow simulation over a Throttle valve using converge CFD software,…

    calendar

    09 Nov 2022 12:40 PM IST

    Read more

    Week 3: Flow over a backward facing step

    Objective:

    Aim:  To set up the backward-facing step case in converge environment and post-process the result in the Paraview Introduction: The flow is through the backward-facing step. In this project converge studio is used to set up the profile, the solver settings, and the initial conditions. The flow is driven by the change…

    calendar

    27 Oct 2022 11:42 PM IST

    Read more

    Week 1: Channel flow simulation using CONVERGE CFD

    Objective:

    Aim:  To set up the channel flow case in converge environment and post-process the result in the Paraview Introduction: Channel flow is the internal flow over the walls which changes the hydrodynamic structure of the flow. In this project converge studio is used to set up the profile, the solver settings, and the…

    calendar

    26 Oct 2022 04:47 PM IST

    Read more

    Project 1 - Parsing NASA thermodynamic data

    Objective:

    Aim: To write a code in MATLAB to extract thermodynamic data from the file and calculate the cp, H and S for the species provided in the file and specified species.  Plot the thermodynamic properties with respect to the temperature in the respective folder which should be generated automatically.   Objective:…

    calendar

    19 Oct 2022 01:48 AM IST

    Read more

    Week 5 - Genetic Algorithm

    Objective:

      STALAGMITE FUNCTION: `f(x,y) = -f_(1,x)*f_(1,y)*f_(2,x)*f_(2,y)` where, `f_(1,x) = [sin(5.1*pi*x) + 0.5]^6` `f_(1,y) = [sin(5.1*pi*y) + 0.5]^6` `f_(2,x) = exp[-4*ln(2)*((x-0.0667)^2/0.64)]` `f_(2,y) = exp[-4*ln(2)*((y-0.0667)^2/0.64)]` Negative sign is introduced to find the maximum value   GENETIC ALGORITHM:…

    calendar

    15 Oct 2022 08:38 PM IST

      Read more

      Week 4.1 - Solving second order ODEs

      Objective:

      FUNCTION: function [dy] = myODE_simple_pendulum(t,y,b,g,m,L) dy = zeros(2,1); % creating the matrix %Converting second order ODE into first order ODE dy(1) = y(2); %y' = y2 dy(2) = ((-b/m)*y(2)) - ((g/L)*(sin(y(1)))); % y" = y2' end CODE: clear all close all clc t = [0,20]; %Simulation time y0 =[0, 3]; %Intial conditions…

      calendar

      29 Sep 2022 02:00 PM IST

        Read more

        Week 3.2 - 2R Robotic Arm Challenge

        Objective:

        Code: clear all close all clc %Inputs l1 = 1; %Length of one arm l2 = 0.5; %Length of second arm theta1 = linspace(0,90,10); %Creating points for theta1 theta2 = linspace(0,90,10); %Creating points for theta2 ct = 1; %Variable for frames for i = 1:length(theta1) %For loop theta1_1 = theta1(i); for j = 1:length(theta2)…

        calendar

        05 Sep 2022 08:13 PM IST

          Read more

          Week 8 - Simulation of a backward facing step in OpenFOAM

          Objective:

          Aim: Simulate an incompressible laminar viscous flow through the backwards facing step geometry Perform transient simulation Explain the simulation setup of the problem in OpenFoam Perform two case studies one without using grading factor and the other with the grading factor of 0.2 Objectives: Copy a similar OpenFoam…

          calendar

          21 Aug 2022 11:01 PM IST

          Read more

          Week 9 - FVM Literature Review

          Objective:

          Aim: Differentiate FVM and FDM and describe the need for interpolation schemes and flux limiters in FVM. FVM: Finite Volume Method is a discretization method to evaluate the partial differential equation in the form of algebraic equations. It approximates through the control volumes and calculates the flux of the parameters…

          calendar

          21 Aug 2022 07:53 PM IST

            Read more

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

            Objective:

            Objective: To simulate the isentropic flow through a quasi 1D subsonic-supersonic nozzle. To derive in both the conservative and non-conservative forms of the governing equations by solving using MacCormark's technique. Aim: To plot the steady-state distribution of primitive variables inside the nozzle To plot the time-wise…

            calendar

            20 Jul 2022 04:33 PM IST

              Read more

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

              Objective:

              Objective: To solve the 2D heat conduction equation in a steady and unsteady state with different solving techniques i.e., Jacobi, Gauss-seidel and Successive over relaxation with implicit and explicit equations. Boundary Conditions: Top boundary condition = 600 K Bottom boundary condition = 900 K Right boundary condition…

              calendar

              11 May 2022 11:23 PM IST

                Read more

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

                Objective:

                function [y,am] = expr(x) y = exp(x)*cos(x); am = exp(x)* (-2*sin(x)); end function error_c = central(x,dx,P,Q) %N = number of Nodes %P = order of accuracy %Q = order of derivative N = P+Q-1 ; %Number of nodes k = (N-1)/2; %constant A_c = zeros(N); %Defining matrix B_c = zeros(N,1); %Defining matrix B_c(Q+1,1) = 1; %Equating…

                calendar

                26 Apr 2022 08:08 PM IST

                  Read more
                  Showing 1 of 13 projects