summaryrefslogtreecommitdiff
path: root/3472/CH2/EX2.1/Example2_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3472/CH2/EX2.1/Example2_1.sce')
-rw-r--r--3472/CH2/EX2.1/Example2_1.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/3472/CH2/EX2.1/Example2_1.sce b/3472/CH2/EX2.1/Example2_1.sce
new file mode 100644
index 000000000..641f5335a
--- /dev/null
+++ b/3472/CH2/EX2.1/Example2_1.sce
@@ -0,0 +1,31 @@
+// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART I : GENERATION
+// CHAPTER 2: THERMAL STATIONS
+
+// EXAMPLE : 2.1 :
+// Page number 25-26
+clear ; clc ; close ; // Clear the work space and console
+
+//Given data
+M = 15000.0+10.0 // Water evaporated(kg)
+C = 5000.0+5.0 // Coal consumption(kg)
+time = 8.0 // Generation shift time(hours)
+
+//Calculations
+//Case(a)
+M1 = M-15000.0
+C1 = C-5000.0
+M_C = M1/C1 // Limiting value of water evaporation(kg)
+//Case(b)
+kWh = 0 // Station output at no load
+consumption_noload = 5000+5*kWh // Coal consumption at no load(kg)
+consumption_noload_hr = consumption_noload/time // Coal consumption per hour(kg)
+
+//Results
+disp("PART I - EXAMPLE : 2.1 : SOLUTION :-")
+printf("\nCase(a): Limiting value of water evaporation per kg of coal consumed, M/C = %.f kg", M_C)
+printf("\nCase(b): Coal per hour for running station at no load = %.f kg\n", consumption_noload_hr)