summaryrefslogtreecommitdiff
path: root/3872/CH12/EX12.6
diff options
context:
space:
mode:
Diffstat (limited to '3872/CH12/EX12.6')
-rw-r--r--3872/CH12/EX12.6/Ex12_6.JPGbin0 -> 44869 bytes
-rw-r--r--3872/CH12/EX12.6/Ex12_6.sce24
2 files changed, 24 insertions, 0 deletions
diff --git a/3872/CH12/EX12.6/Ex12_6.JPG b/3872/CH12/EX12.6/Ex12_6.JPG
new file mode 100644
index 000000000..7956950a9
--- /dev/null
+++ b/3872/CH12/EX12.6/Ex12_6.JPG
Binary files differ
diff --git a/3872/CH12/EX12.6/Ex12_6.sce b/3872/CH12/EX12.6/Ex12_6.sce
new file mode 100644
index 000000000..19fe7085a
--- /dev/null
+++ b/3872/CH12/EX12.6/Ex12_6.sce
@@ -0,0 +1,24 @@
+//Book - Power System: Analysis & Design 5th Edition
+//Authors - J. Duncan Glover, Mulukutla S. Sarma, and Thomas J. Overbye
+//Chapter - 12 ; Example 12.6
+//Scilab Version - 6.0.0 ; OS - Windows
+
+clc;
+clear;
+
+C1=[8e-3 10 0] //Coefficients of cost equation for unit 1
+C2=[9e-3 8 0] //Coefficients of cost equation for unit 2
+
+dC1=[2*C1(1) C1(2)] //Coefficients of incremental cost equation for unit 1
+dC2=[2*C2(1) C2(2)] //Coefficients of incremental cost equation for unit 2
+result=[];
+for PT=500:100:1500
+ P1=(dC2(1)*PT+(dC2(2)-dC1(2)))/(dC2(1)+dC1(1));
+ P2=PT-P1;
+ dC1value=dC1(1)*P1+dC1(2);
+ dC2value=dC2(1)*P2+dC2(2);
+ CT=C1(1)*P1^2+C1(2)*P1+C1(3)+C2(1)*P2^2+C2(2)*P2+C2(3);
+ result=[result;PT P1 P2 dC1value CT]
+end
+
+disp(result,' PT(MW) P1(MW) P2(MW) dC1=dC2($/MWhr) CT($/hr)');