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

Week 3 - Solving second order ODEs

A program to solve the following ODE Written Script :- script to produce daming graph:- clear all close all clc b = 0.05; g = 9.81; l = 1; m = 1; % initial conditions theta_0 = [0;3]; % time points t_span = linspace(0,20,100); % solve ODE [t, results] = ode45(@(t,theta) ode_func(t, theta, b,g,l,m),t_span, theta_0); outcome…

    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 Suraj singh (6)

    Week - 4

    Objective:

    Question 1:- Implement control logic of a “washing machine” using Stateflow as per given sequence:  If the power supply is available, the system gets activated  If the Water supply is not available, stop the process & indicate through LED Soaking time should be 200s followed by Washing time of…

    calendar

    13 Jan 2022 05:56 PM IST

      Read more

      Week -2

      Objective:

      Aim:-  To make simulink model using solenoid block. To use a thermistor to sense the temprature of a heater and turn on or turn off the fan. 1. Door Bell:- Parameters:- Amplitude = 1  Period = 4 Pulse Width = 50 Phase Delay = 2   Explanation:- Pulse Generator Switch Battery Solenoid Ideal Translational motor…

      calendar

      09 Jan 2022 02:05 PM IST

        Read more

        Project 2 - Rankine cycle Simulator

        Objective:

        MAIN CODE:- % Rankine Cycle Simulator % points of the rankine cycle clear all close all clc % inputs for calculating Rankine cycle p1 = input('Enter the inlet pressure of turbine: ') p2 = input('Enter the outlet pressure from turbine: ') t1 = input('Enter the steam inlet temperature: ') % pressure of state points p4 =…

        calendar

        27 Oct 2021 03:37 AM IST

          Read more

          Project 1 - Parsing NASA thermodynamic data

          Objective:

          MAIN CODE:- clear all close all clc % Opening of NASA's Thermodynamic data f1 = fopen('THERMO.dat','r'); first_line = fgetl(f1); % Obtaining of global max, min and medium tempratures global_temp = fgetl(f1); temp_range = strsplit(global_temp,' '); temp_min = str2num(temp_range{2}) temp_med = str2num(temp_range{3}) temp_max…

          calendar

          18 Oct 2021 10:59 AM IST

            Read more

            Week 4.1 - Genetic Algorithm

            Objective:

            Theory:- Genetic Algorithm is a method that workson the principal of Darwin's Theory of natural selection i.e- Survival of the fittest. There are five phases that are considered in genetic algorithm:- 1) Initial function 2) Fitness function 3) Selection 4)Crossover 5)Mutation *ga function only gives minimum value. [x,fval]…

            calendar

            08 Oct 2021 04:33 PM IST

              Read more

              Week 3 - Solving second order ODEs

              Objective:

              A program to solve the following ODE Written Script :- script to produce daming graph:- clear all close all clc b = 0.05; g = 9.81; l = 1; m = 1; % initial conditions theta_0 = [0;3]; % time points t_span = linspace(0,20,100); % solve ODE [t, results] = ode45(@(t,theta) ode_func(t, theta, b,g,l,m),t_span, theta_0); outcome…

              calendar

              30 Sep 2021 03:08 AM IST

                Read more
                Showing 1 of 6 projects