Function for 2nd order ODE :- % function for 2nd order ode function [dtheta_dt] = ode_simple_pendulum(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 Program to solve 2nd order ODE taking simple pendulum…
MANAPRAGADA BHANU MURTHY
updated on 11 Dec 2021
Project Details
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.
Other comments...
Read more Projects by MANAPRAGADA BHANU MURTHY (5)
Project 1 - Parsing NASA thermodynamic data
Aim: - Write a Matlab program that extracts 14 co-efficient and to calculate the entropy, enthalpy, and specific heats for all the species in the given NASA Thermodynamic data file data. Also, to calculate the molecular weight of each species. File Parsing: - Parsing, which is the process of identifying…
03 May 2022 06:52 PM IST
FINAL INDEPENDENT PROJECT
Final Independent Project: - Topic: - Multi-objective optimal design of cycloid speed reducer based on genetic algorithm. Platform used to Solve the problem: - Matlab Introduction: - Cycloid speed reducers have found wide applications in the automation field as industry robots, machine tools, automatic machinery and other…
10 Apr 2022 10:32 AM IST
Project 2 - Rankine cycle Simulator
Aim: To create a Rankine Cycle simulator using Matlab. Objective: To calculate the state points of the Rankine cycle. To plot the T-S, H-S Diagrams of Rankine cycle. Theory: The Rankine cycle is an idealized thermodynamic cycle describing the process by which certain heat engines, such as steam turbines…
03 Apr 2022 07:27 PM IST
Week 4.1 - Genetic Algorithm
Genetic Algorithm: - A genetic algorithm is a search heuristic that is inspired by Charles Darwin’s theory of natural evolution. This algorithm reflects the process of natural selection where the fittest individuals are selected for reproduction in order to produce offspring of the next generation. …
23 Jan 2022 07:40 AM IST
Week 3 - Solving second order ODEs
Function for 2nd order ODE :- % function for 2nd order ode function [dtheta_dt] = ode_simple_pendulum(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 Program to solve 2nd order ODE taking simple pendulum…
11 Dec 2021 08:20 AM IST