diff options
Diffstat (limited to '3733/CH32/EX32.7')
-rw-r--r-- | 3733/CH32/EX32.7/Ex32_7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3733/CH32/EX32.7/Ex32_7.sce b/3733/CH32/EX32.7/Ex32_7.sce new file mode 100644 index 000000000..057d720c9 --- /dev/null +++ b/3733/CH32/EX32.7/Ex32_7.sce @@ -0,0 +1,12 @@ +// Example 32_7
+clc;funcprot(0);
+//Given data
+UF=0.5;// Use factor
+CF=0.4;// Capacity factor
+
+//Calculation
+// Use factor=E/(P_c*t);.... (1)
+// Capacity factor=(average load/P_c)=(E/(P_c*8760));....(2)
+// Dividing euations (1) and (2) we get,
+T=(8760*CF)/(UF);// hours
+printf('\nThe number of hours of its operation during the year=%0.0f hours',T);
|