diff options
Diffstat (limited to '3821/CH9/EX9.7')
-rw-r--r-- | 3821/CH9/EX9.7/Example9_7.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3821/CH9/EX9.7/Example9_7.sce b/3821/CH9/EX9.7/Example9_7.sce new file mode 100644 index 000000000..48409f141 --- /dev/null +++ b/3821/CH9/EX9.7/Example9_7.sce @@ -0,0 +1,17 @@ +///Chapter 9 Law Of Thermodynamics
+////Example 9.7 Page No:169
+///Find Steam flow rate
+///Input data
+clc;
+clear;
+W1=800; //Power of turbine shaft Kw
+W2=-5; //Work pump to feed in Kw
+Q1=2700; //Heat for steam generation KJ/Kg
+Q2=-1800; //Condenser rejected heat KJ/Kg
+
+//Calculation
+m=((W1+W2)/(Q1+Q2)); //Steam flow rate in Kg/h
+
+
+//Output
+printf('Steam flow rate= %f Kg/s \n",m);
|