Rankine cycle : The Rankine cycle is a model used to predict the performance of steam turbine systems. It was also used to study the performance of reciprocating steam engines. The Rankine cycle is an idealized thermodynamic cycle of a heat engine that converts heat into mechanical work while undergoing phase…
Mit Mehta
updated on 25 Jun 2020
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 Mit Mehta (7)
FINAL INDEPENDENT PROJECT
Title : Measuring the Diameter of an Object within an Image Aim : To measure objects within frame or an image for many applications where computer vision is required instead of making physical measurements. Motivation : While scrolling through 'Quora', I came across the questions related to Image…
30 Jun 2020 12:09 PM IST
Project 1 - Parsing NASA thermodynamic data
Parsing : Parsing, syntax analysis, or syntactic analysis is the process of analyzing a string of symbols, either in natural language, computer languages or data structures, conforming to the rules of a formal grammer. Within computational linguistics the term is used to refer to the formal analysis…
26 Jun 2020 12:11 PM IST
Project 2 - Rankine cycle Simulator
Rankine cycle : The Rankine cycle is a model used to predict the performance of steam turbine systems. It was also used to study the performance of reciprocating steam engines. The Rankine cycle is an idealized thermodynamic cycle of a heat engine that converts heat into mechanical work while undergoing phase…
25 Jun 2020 11:31 AM IST
Week 4 - Genetic Algorithm
Genetic Algorithm : Genetic Algorithm (GA) is a search-based optimization technique based on the principles of Genetics and Natural Selection. It is frequently used to find optimal or near-optimal solutions to difficult problems which otherwise would take a lifetime to solve. It is frequently used to solve optimization…
21 Jun 2020 08:33 PM IST
Curve Fitting
Curve fitting is the process of constructing a curve, or mathematical function, that has the best fit to a series of data points. By curve fitting we can mathematically construct the functional relationship between the observed dataset and the parameter values. Assume data points (x1,y1),(x2,y2),....,(xn,yn) and assume…
19 Jun 2020 08:37 PM IST
Week 3 - Solving second order ODEs
clc clear all close all b = 0.05; g = 9.81; l = 1; m = 1; %Initial condition theta_0 = [0;3]; %time points t_span = linspace(0,20,500); %solve ODE [t, results] = ode45(@(t,theta) ode_func(t, theta, b, g, l, m),t_span, theta_0); ct=1; for i = 1:length(results(:,1)) x0 = 0; y0 = 0; x1 = l*sin(results(i,1)); y1 = -l*cos(results(i,1));…
14 Jun 2020 08:44 PM IST
Engine_Kinematics - Otto_Cycle - P-V Plot
13 Jun 2020 10:53 AM IST