blob: beba70c7fc7e31ec819e32f1d46bc2c7a462a080 (
plain)
1
2
3
4
5
6
7
8
9
|
// Exa 7.3
clc;
clear;
close;
// Given data
H1 = 2940;// in kJ/kg
H2 = 2630;// in kJ/kg
C = sqrt((H1-H2)*1000*2);// in m/sec
disp(C,"Velocity of the steam leaving the nozzle in m/sec is");
|