Simple Rankine Cycle demo
This models the most basic Rankine Cycle. The steam tables need to accessible to this script.
%-------------------------------------------------------------------------- % Copyright (c) 2023 Princeton Satellite Systems, Inc. % All rights reserved. %-------------------------------------------------------------------------- % Since 2023.1 %-------------------------------------------------------------------------- % The Rankine cycle is defined by the maximum and minimum cycle pressures. pressureMin = 0.008; % MPa pressureMax = 6.0; % MPa % Display the block diagram and the temperature entropy diagrams RankineCycle(pressureMax,pressureMin); %-------------------------------------- % $Id: ad771d3d0c3ba866e1f66d7456afc673f17c8826 $

