From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2441/CH1/EX1.12/Ex1_12.sce | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 2441/CH1/EX1.12/Ex1_12.sce (limited to '2441/CH1/EX1.12/Ex1_12.sce') diff --git a/2441/CH1/EX1.12/Ex1_12.sce b/2441/CH1/EX1.12/Ex1_12.sce new file mode 100755 index 000000000..fe5bbf220 --- /dev/null +++ b/2441/CH1/EX1.12/Ex1_12.sce @@ -0,0 +1,28 @@ +//exa 1.12 +clc;clear;close; +format('v',5); +//Arranging data for Load Duration Curve +//week days 5-9pm load +L1=350;//MW +t1=4*5;//hours +//week days 8-12am & 1-5pm load +L2=250;//MW +t2=t1+8*5;//hours +//saturday & sunday 5-9pm load +L3=200;//MW +t3=t2+4*2;//hours +//All days 150MW load +L4=150;//MW +t4=t3+6*5+15*2;//hours +//All days 100MW load +L5=100;//MW +t5=t4+6*5+5*2;//hours +A=31600;//Total Load Curve Area +LF=A/L1/24/7*100;//%//Weekly load factor +disp(LF,"Weekly Load factor(%)"); +disp("Load Duration Curve is shown in figure."); +//Load Duration Curve +L=[L1 L2 L3 L4 L5];//MW +T=[t1 t2 t3 t4 t5];//hours +plot2d2(T,L); +xtitle('Load Duration Curve','Time(Hours)','Load(MW)'); -- cgit