2nd Order Differential Equation (Simple Pendulum) In Engineering, ODE is used to describe the transient behavior of a system. A simple example is a pendulum. The way the pendulum moves depends on Newton's second law. When this law is written down, we get a second-order Ordinary Differential Equation that describes the…
Md. Ar Rafi Bin Arif
updated on 24 Jul 2022
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 Md. Ar Rafi Bin Arif (5)
Project 1 - Parsing NASA thermodynamic data
Aim of the project: We are required to write a code to parse the thermodynamic data file and calculate the thermodynamic properties of various gas species. Objective Write a function that extracts the 14 coefficients and calculates the enthalpy, entropy, and specific heats for all the species in the data file. Calculate…
14 Feb 2025 04:26 AM IST
Project 2 - Rankine cycle Simulator
Aim: Creation of a Rankine cycle simulator from a given input and reading the data from a standard thermodynamic library of steam table. Objective: To create a Rankine Cycle simulator in MATLAB. To calculate the state point using function 'XSteam'. To plot the T-S and H-S curve for a given input in Rankine Cycle. To get…
26 Mar 2024 09:05 AM IST
Week 4.1 - Genetic Algorithm
Introduction to Optimization: Optimization is the problem of finding a set of inputs to an objective function that results in a maximum or minimum function evaluation. It can be said to be the process of making something better. In any process, we have a set of inputs and a set of outputs as shown in the…
20 Jan 2024 07:02 PM IST
Week 3 - Solving second order ODEs
2nd Order Differential Equation (Simple Pendulum) In Engineering, ODE is used to describe the transient behavior of a system. A simple example is a pendulum. The way the pendulum moves depends on Newton's second law. When this law is written down, we get a second-order Ordinary Differential Equation that describes the…
24 Jul 2022 03:47 PM IST
Week 2- 2R Robotic Arm Challenge
The Code: Let us first take a look at the code for the forward kinematics of a robotic arm: %Resetting and Clearing Workspace clear all close all clc %Inputs l1 = 1; l2 = 0.5; theta1 = linspace(0, 90, 8); theta2 = linspace(0, 90, 8); ct = 1; for i = 1:length(theta1) THETA1 = theta1(i); for j = 1:length(theta2) THETA2 =…
15 Jul 2022 01:01 PM IST