diff options
Diffstat (limited to '3733/CH32/EX32.16')
-rw-r--r-- | 3733/CH32/EX32.16/Ex32_16.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3733/CH32/EX32.16/Ex32_16.sce b/3733/CH32/EX32.16/Ex32_16.sce new file mode 100644 index 000000000..ce420bd75 --- /dev/null +++ b/3733/CH32/EX32.16/Ex32_16.sce @@ -0,0 +1,12 @@ +// Example 32_16
+clc;funcprot(0);
+//Given data
+MD=500;// Maximum demand in MW
+F_l=0.5;// Load factor
+F_c=0.4;// Capacity factor
+
+// Calculation
+E=MD*F_l*8760;// Energy generated per year in MWh
+Pc=E/(F_c*8760);// Plant capacity in MW
+Rc=Pc-MD;// Reserve capacity of the plant in MW
+printf('\nReserve capacity of the plant=%0.0f MW',Rc);
|