The program first depicts the processes involved in the rankine cycle. State 1 and 2 pressures, as well as state 1 temperature, are read from the user. The Xsteam library values are extracted, and state values such as pressure, temperature, enthalphy, and entropy are determined. Turbine work, pump work, net work, thermal…
Yogessh BS
updated on 25 Apr 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 Yogessh BS (5)
Project 2 - Rankine cycle Simulator
The program first depicts the processes involved in the rankine cycle. State 1 and 2 pressures, as well as state 1 temperature, are read from the user. The Xsteam library values are extracted, and state values such as pressure, temperature, enthalphy, and entropy are determined. Turbine work, pump work, net work, thermal…
25 Apr 2023 02:17 PM IST
Project 1 - Parsing NASA thermodynamic data
Main Program %Program for Parsing NASA's Thermodynamics Data file clear close all clc %Defining input for universal gas constant R = 8.314; % J/mol K %Opening the thermo.dat file for reading data f1 = fopen('THERMO.dat','r'); l1 = fgetl(f1); %using fgetl cmd to ignore line l2 = fgetl(f1); %using fgetl cmd to store the…
11 Apr 2023 02:00 PM IST
Week 5 - Genetic Algorithm
Genetic Algorithms(GAs) are adaptive heuristic search algorithms that belong to the larger part of evolutionary algorithms. Genetic algorithms are based on the ideas of natural selection and genetics. These are intelligent exploitation of random search provided with historical data to direct the search into the region…
21 Mar 2023 03:34 PM IST
Week 4.1 - Solving second order ODEs
Function for solving the seond order ode The theta_1 and theta_2 values are assigned as theta(1) and theta(2). dtheta1_dt is assigned to be equal to theta_2. dtheta2_dt is equal to -(b/m)*theta2-(g/l)*sin(theta1). function [dtheta_dt] = ode_func(~,theta,b,g,l,m) theta1= theta(1); theta2=theta(2); dtheta1_dt=theta2;…
09 Mar 2023 02:32 PM IST
Week 3.2 - 2R Robotic Arm Challenge
You tube link: https://youtu.be/CoxQb_3jh-I Google Drive link: https://drive.google.com/file/d/1awjdGypbdZPh5YA_-Lk7SkZlqzfJk_29/view?usp=sharing * Note: no error encountered during programming clear close all clc % defining the length of two connecting rods l1=1.5; l2=0.5; % defining the angle sugjected to move…
06 Mar 2023 03:49 PM IST