All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
AIM: To create a basic 'RANKINE CYCLE SIMULATOR'. THEORY: The Rankine cycle is the fundamental operating cycle of all power plants where an operating fluid is continuously evaporated and condensed. The selection of operating fluid depends mainly on the available temperature range. The above figure shows us the basic rankine…
Shubhranshu Mishra
updated on 03 Jul 2020
AIM:
To create a basic 'RANKINE CYCLE SIMULATOR'.
THEORY:
The Rankine cycle is the fundamental operating cycle of all power plants where an operating fluid is continuously evaporated and condensed. The selection of operating fluid depends mainly on the available temperature range.
The above figure shows us the basic rankine cycle.
Here:
PROCESS 1-2: iSENTROPIC EXPANSION IN TURBINE.
PROCESS 2-3: ISOBARIC HEAT REJECTION BY THE CONDENSOR.
PROCESS 3-4: iSENTROPIC COMPRESSION IN PUMP.
PROCESS 4-1: ISOBARIC HEAT ADDITION BY THE BOILER.
GOVERNING EQUATION:
1)Turbine Work(WT):
WT = H1 - H2
2)Pump Work(WP):
WP = H4 - H3
3)Net Work(WNET):
WNET = WT - WP
4)Thermal Efficiency(ηη):
ηη = WNET/(H1 - H4)
5)Back Work Ratio(BWR):
BWR = WP /WT
6)Specific Steam Conductivity(S.S.C):
S.S.C = 3600/WT
Where,
H1,H2,H3,H4 are the enthalpy at the respective state points.
OBJECTIVE:
The main objective of the program is to obtain all the values of the state point and plot the T-S and H-S curve for the Rankine Cycle.
WORKFLOW OF THE PROJECT:
PROGRAMMING LANGUAGE USED: MATLAB
MATLAB CODE:
%PROGRAM FOR RANKINE CYCLE SIMULATOR
clear all
close all
clc
disp(' RANKINE CYCLE SIMULATOR ');
disp('1-2 is Isentropic Expansion in the Turbine');
disp('2-3 is Constant Pressure Heat Rejection by the Condenser');
disp('3-4 is Isentropic Compression in the Pump');
disp('4-1 is Constant Pressure Heat Addition by the Boiler');
fprintf('n');
%inputs to be specified
P1 = input('Enter the Pressure at the Turbine Inlet(in bar): ');
T1 = input('Enter the Temperature at the Turbine Inlet(in Degree Celcius): ');
P2 = input('Enter the Pressure at the Condenser (in bar): ');
%calculating the value of P,T,H,S at each state points
%At state point 1
H1 = XSteam('h_pT',P1,T1);
S1 = XSteam('s_pT',P1,T1);
H_L1 = XSteam('hL_p',P1);
H_G1 = XSteam('hV_p',P1);
S_L1 = XSteam('sL_p',P1);
S_G1 = XSteam('sV_p',P1);
T_sat1 = XSteam('Tsat_p',P1);
%At state point 2
S2 = S1;
S_L2 = XSteam('sL_p',P2);
S_G2 = XSteam('sV_p',P2);
D = (S2-S_L2)/(S_G2-S_L2); %Calculating the dryness fraction
H_L2 = XSteam('hL_p',P2);
H_G2 = XSteam('hV_p',P2);
H2 = H_L2 + D*(H_G2 - H_L2); %Calculating the enthalpy at point 2
T2 = XSteam('T_ph',P2,H2);
T_sat2 = XSteam('Tsat_p',P2);
%At state point 3
P3 = P2;
T3 = T2;
H3 = H_L2;
S3 = S_L2;
%At state point 4
P4 = P1;
S4 = S3;
T4 = XSteam('T_ps',P4,S4);
H4 = XSteam('H_ps',P4,S4);
%Calculating Work and Efficiency of the Rankine Cycle
%Turbine Work
W_T = H1 - H2;
%Pump Work
W_P = H4 - H3;
%Net Work
W_NET = W_T - W_P;
%Thermal Efficiency of the Rankine Cycle
EFF = (W_NET/(H1 - H4))*100 ;
%Back Work Ratio
BWR = W_P/W_T;
%Specific Steam Conductivity
SSC = 3600/W_T;
%Displaying the results
%Values of state point 1
disp(' RESULTS ');
disp('At State point 1');
fprintf('P1 is : %.2f Bar n',P1);
fprintf('T1 is : %.2f Deg Celcius n',T1);
fprintf('H1 is : %.2f KJ/kg n',H1);
fprintf('S1 is : %.2f KJ/kgK n',S1);
fprintf('n');
%Values of state point 2
disp('At State point 2');
fprintf('P2 is : %.2f Bar n',P2);
fprintf('T2 is : %.2f Deg Celcius n',T2);
fprintf('H2 is : %.2f KJ/kg n',H2);
fprintf('S2 is : %.2f KJ/kgK n',S2);
fprintf('n');
%Values of state point 3
disp('At State point 3');
fprintf('P3 is : %.2f Bar n',P3);
fprintf('T3 is : %.2f Deg Celcius n',T3);
fprintf('H3 is : %.2f KJ/kg n',H3);
fprintf('S3 is : %.2f KJ/kgK n',S3);
fprintf('n');
%Values of state point 4
disp('At State point 4');
fprintf('P4 is : %.2f Bar n',P4);
fprintf('T4 is : %.2f Deg Celcius n',T4);
fprintf('H4 is : %.2f KJ/kg n',H4);
fprintf('S4 is : %.2f KJ/kgK n',S4);
fprintf('n');
%Turbine Work
fprintf('Wt is : %.2f KJ/kg n',W_T);
%Pump Work
fprintf('Wp is : %.2f KJ/kg n',W_P);
%Net Work
fprintf('Wnet is : %.2f KJ/kg n',W_NET);
%Thermal Efficiency
fprintf('Ntherm is : %.2f Percent n',EFF);
%Specific Steam Conductivity
fprintf('S.S.C is : %.2f kg/KWh n',SSC);
%Back Work ratio
fprintf('Back Work Ratio is : %f n',BWR);
%plotting of T-S curve
t = linspace(0,373.5,200);
figure(1)
hold on
for i = 1:length(t)
plot(XSteam('sL_T',t(i)),t(i),'r.')
plot(XSteam('sV_T',t(i)),t(i),'r.')
end
plot([S1 S2],[T1 T2],'linewidth',2,'color','black')
text(S1,T1,'1','FontSize',10)
if D>1
T3 = T_sat2;
plot([S2 S_G2 S3 S4],[T2 T_sat2 T3 T4],'linewidth',2,'color','black')
T2 = T_sat2;
text(S2,T2,'2','FontSize',10)
text(S3,T3,'3','FontSize',10)
else
plot([S2 S3 S4],[T2 T3 T4],'linewidth',2,'color','black')
text(S2,T2,'2','FontSize',10)
text(S3,T3,'3','FontSize',10)
end
n = linspace(T1,T2,500);
for i = 1:length(n)
plot(XSteam('s_pT',P1,n(i)),n(i),'.','linewidth',2,'color','black')
end
plot([S_L1 S_G1],[T_sat1 T_sat1],'linewidth',2,'color','black')
text(S_L1,T_sat1,'4','FontSize',10)
xlabel('Entropy(kJ/kg-K)')
ylabel('Temperature(k)')
title('T-S Graph')
%Plotting of H-S Curve
figure(2)
hold on
for i = 1:length(t)
plot(XSteam('sL_T',t(i)),XSteam('hL_T',t(i)),'r.')
plot(XSteam('sV_T',t(i)),XSteam('hV_T',t(i)),'r.')
end
plot([S1 S2 S3 S4 S1],[H1 H2 H3 H4 H1],'linewidth',2,'color','black')
text(S1,H1,'1','FontSize',10)
text(S2,H2,'2','FontSize',10)
text(S3,H3,'3','FontSize',10)
text(S4,H4,'4','FontSize',10)
xlabel('Entropy(kJ/kg-K)')
ylabel('Enthalpy(kJ/kg)')
title('H-S Graph')
CODE EXPLAINATION:
OUTPUT:
The above figure shows the output in the command window.
The above curve shows the T-S Graph of the Rankine Cycle.
The above curve shows the H-S Graph of the Rankine Cycle.
CONCLUSION:
Thus we have obtained the values of P,T,H and S for different state points and also the work, Efficiency,Back work ratio and Specific steam conductivity was calculated.Also the plot of T-S and H-S of Rankine Cycle was drawn.
ERRORS OBTAINED AND IT'S SOLUTION:
Initially the desired plot for T-S curve was not obtained ,there was some values printed in the plot beyond state point 2 as shown in the figure below by the green circular mark:
To overcome this error i used if else condition in the program for dryness fraction (D) as shown below:
Also a large number of typing errors were obtained that were corrected after observation.
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...
Frequency Analysis of a rotating shaft (Finite Element Analysis using SolidWorks)
Aim- The aim of this project is to perform a frequency analysis on a rotating shaft, from there we need to determine the critical frequencies and the mode shapes. 5 Mode Shapes were simulated and analyzed. Introduction:- Frequency is the number of occurrences of a repeating event per unit of time. The formula…
06 Jul 2020 03:57 PM IST
Project - Rankine cycle Simulator (MATLAB)
AIM: To create a basic 'RANKINE CYCLE SIMULATOR'. THEORY: The Rankine cycle is the fundamental operating cycle of all power plants where an operating fluid is continuously evaporated and condensed. The selection of operating fluid depends mainly on the available temperature range. The above figure shows us the basic rankine…
03 Jul 2020 10:43 AM IST
Curve fitting (MATLAB)
AIM: To write a program to fit a linear and cubic polynomial for the specific heat data set then calculate the goodness of fit using different parameters and different ways to improve the fit in MATLAB THEORY: Curve fitting is the process of constructing a curve or mathematical function that best fits the data points,…
03 Jul 2020 10:24 AM IST
Solving second order ODEs (MATLAB)
Aim: To solves the ODE which represents the equation of motion of a simple pendulum with damping. Objective: To write a program that solves the following ODE which represents the equation of motion of a simple pendulum with damping and create an animated video of output obtains by solving this ODE. Theory:…
03 Jul 2020 10:20 AM IST
Related Courses
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.