diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH4/EX4.2 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3888/CH4/EX4.2')
-rw-r--r-- | 3888/CH4/EX4.2/Ex4_2.JPG | bin | 0 -> 30336 bytes | |||
-rw-r--r-- | 3888/CH4/EX4.2/Ex4_2.sce | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/3888/CH4/EX4.2/Ex4_2.JPG b/3888/CH4/EX4.2/Ex4_2.JPG Binary files differnew file mode 100644 index 000000000..6d614df1b --- /dev/null +++ b/3888/CH4/EX4.2/Ex4_2.JPG diff --git a/3888/CH4/EX4.2/Ex4_2.sce b/3888/CH4/EX4.2/Ex4_2.sce new file mode 100644 index 000000000..4f8266868 --- /dev/null +++ b/3888/CH4/EX4.2/Ex4_2.sce @@ -0,0 +1,28 @@ +//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 4.2
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+max_demand=100; //Maximum demand of generating station in MW
+LF=0.65; //Load factor of generating station in percentage
+PCF=0.50; //Plant capacity factor of generating station in percentage
+PUF=0.80; //Plant use factor of generating station in percentage
+avg_demand=max_demand*LF; //Average demand of generating station in MW
+daily_energy=avg_demand*24; //Daily energy produced by generating station in MWh
+PRC=avg_demand/PCF; //Plant rated capacity of generating station in MW
+RC=PRC-max_demand; //Reserve capacity of generating station in MW
+max_energy=PRC*24; //Maximum energy produced if plant is running all the time in MWh
+FL_max_energy=daily_energy/PUF; //Maximum energy produced if plant is running at full load in MWh
+UF=max_demand/PRC; //Utilization factor of generating station
+
+
+printf("\nDaily energy produced %.f MWh",daily_energy);
+printf("\nInstalled capacity of plant %.f MW",PRC);
+printf("\nReserve capacity of plant %.f MW",RC);
+printf("\nMaximum energy that could be produced if the plant is running all the time %.f MWh",max_energy);
+printf("\nMaximum energy that could be produced if the plant is running at full load %.f MWh",FL_max_energy);
+printf("\nUtilization factor %.3f",UF);
|