summaryrefslogtreecommitdiff
path: root/2441/CH1/EX1.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2441/CH1/EX1.16
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2441/CH1/EX1.16')
-rwxr-xr-x2441/CH1/EX1.16/Ex1_16.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2441/CH1/EX1.16/Ex1_16.sce b/2441/CH1/EX1.16/Ex1_16.sce
new file mode 100755
index 000000000..061f416d8
--- /dev/null
+++ b/2441/CH1/EX1.16/Ex1_16.sce
@@ -0,0 +1,16 @@
+//exa 1.16
+clc;clear;close;
+format('v',8);
+L=[20 25 30 25 35 20];//MW
+T=[6 4 2 4 4 4];//Hours
+Lmax=max(L);//MW
+disp(Lmax,"(a) Maximum demand(MW)");
+E=L(1)*sum(T)+(L(2)-L(1))*T(2)+(L(3)-L(1))*T(3)+(L(4)-L(1))*T(4)+(L(5)-L(1))*T(5)+(L(6)-L(1))*T(6);//MWh
+E=E*1000;//kWh
+disp(E,"(b) Units generated per day(kWh)");
+Lavg=E/sum(T);///kWh
+Lavg=Lavg/1000;///MW
+disp(Lavg,"(c) Average Load(MW)");
+format('v',6);
+LF=Lavg/Lmax*100;//%
+disp(LF,"(d) Load Factor(%)");