PROJECT REQUIREMENTS: 1. Create a Rankine Cycle Simulator using MATLAB. 2. Calculate the state points of the Rankine Cycle based on user inputs. 3. Plot the corresponding T-s and h-s Diagram. 4. The working of a rankine cycle simulator. %*. What is rakine cycle? The rakine cycle is the thermodynamic cycle by which heat…
Karan Patel
updated on 02 Mar 2023
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 Karan Patel (6)
Project - Analysis of a practical automotive wiring circuit
1.Identify each of the major elements in the above automotive wiring diagram. Major elements: *.Battery *.Generator *.Breaker *.Current and Voltage Regulator *.Distributor *.Ammeter *.Junction Block *.Starter *.Fuse %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2.Explain the purpose…
21 Apr 2023 07:45 PM IST
Project 2 - Rankine cycle Simulator
PROJECT REQUIREMENTS: 1. Create a Rankine Cycle Simulator using MATLAB. 2. Calculate the state points of the Rankine Cycle based on user inputs. 3. Plot the corresponding T-s and h-s Diagram. 4. The working of a rankine cycle simulator. %*. What is rakine cycle? The rakine cycle is the thermodynamic cycle by which heat…
02 Mar 2023 11:22 PM IST
Project 1 - Parsing NASA thermodynamic data
PROJECT:1- Parsing NASA thermodynamic data %. what is file Parsing ? File parsing is nothing but examining the file and extracting some important data, store them and perform anykind of calculations based on its application. In this project, NASA thermodynamic has been parsed to find out specific heat(Cp), Enthalpy(H)…
07 Feb 2023 11:53 PM IST
Week 5 - Genetic Algorithm
*. what is genetic algorithm (ga)? and also explain the syntax for ga. Genetic Algorithm: It is the one of the method,given by Charles Darwin, to solve the regulated and unregulated optimazation problem that is purely based on natural selection process. At every step, ga automatically selcetion individuals as parents to…
19 Jan 2023 12:23 AM IST
Week 4.1 - Solving second order ODEs
https://youtu.be/U-vX-HCam1Y #1.maincode clear all close all clc %given input in challenge b=0.05; g=9.81; l=1; m=1; %intial condition; theta_0=[0;3]; t_span= linspace(0,20,100); %results %using ode45 solver to execute the condtion [t,results] = ode45(@(t,theta) ode_func(t,theta,b,g,l,m), t_span, theta_0); % creating seperate…
13 Dec 2022 03:18 AM IST
Week 3.2 - 2R Robotic Arm Challenge
close all clear all clc % inputs l1 = 1; l2 = 0.5; x0=0; y0=0; theta1= linspace(0,90,10); theta2 = linspace(0,90,10); ct=1; for i = 1:length(theta1) THETA1=theta1(i); %using second for loop inside a first to access all the values of j for all values of i. for j = 1:length(theta2) THETA2=theta2(j); x0=0; y0=0; x1= l1*cosd(THETA1);…
04 Dec 2022 02:37 AM IST