diff options
Diffstat (limited to '2441/CH1/EX1.13')
-rwxr-xr-x | 2441/CH1/EX1.13/Ex1_13.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/2441/CH1/EX1.13/Ex1_13.sce b/2441/CH1/EX1.13/Ex1_13.sce new file mode 100755 index 000000000..b73a10cb6 --- /dev/null +++ b/2441/CH1/EX1.13/Ex1_13.sce @@ -0,0 +1,8 @@ +//exa 1.13
+clc;clear;close;
+format('v',7);
+LF=0.825;//Daily Load Factor
+ratio1=0.87;//daily peak load to monthly peak load
+ratio2=0.78;//monthly peak load to annually peak load
+LF_annual=LF*ratio1*ratio2;//Annual Load Factor
+disp(LF_annual,"Annual Load Factor : ");
|