diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3733/CH32/EX32.6/Ex32_6.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3733/CH32/EX32.6/Ex32_6.sce')
-rw-r--r-- | 3733/CH32/EX32.6/Ex32_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3733/CH32/EX32.6/Ex32_6.sce b/3733/CH32/EX32.6/Ex32_6.sce new file mode 100644 index 000000000..3b159a3a0 --- /dev/null +++ b/3733/CH32/EX32.6/Ex32_6.sce @@ -0,0 +1,16 @@ +// Example 32_6
+clc;funcprot(0);
+//Given data
+MD_1=40;// MW
+MD_2=50;// MW
+MD_3=30;// MW
+F_l=60;// Load factor in percentage
+DF=1.2;// Diversity factor
+
+// Calculation
+MD_s=MD_1+MD_2+MD_3;// Sum of individual maximum demands in MW
+SMD=MD_s/DF;// Simultaneous maximum demand in MW
+P=MD_s;// The capacity of the plant in MW
+L_a=(F_l/100)*SMD;// Average load in MW
+E=L_a*10^3*8760;// Energy supplied per year in kWh
+printf('\n(a)The maximum load on the power plant=%0.0f MW \n(bThe capacity of the power plant=%0.0f MW \n(c)Annual energy supplied per year=%0.3e kWh',SMD,P,E );
|