load curve daily power consumption

62 views (last 30 days)
syazwan sabri
syazwan sabri on 10 Jul 2020
Edited: KSSV on 10 Jul 2020
i have problem that line..i have no idea how to solve it..can anybody help
  2 Comments
KSSV
KSSV on 10 Jul 2020
time interval ..? There is space between them check...
syazwan sabri
syazwan sabri on 10 Jul 2020
Yeah.. Sorry for mistaken.. But it still an error

Sign in to comment.

Accepted Answer

KSSV
KSSV on 10 Jul 2020
Edited: KSSV on 10 Jul 2020
data=[0 2 17;
2 6 12;
6 9 3;
9 12 15; 12 14 12;
14 16 14; 16 18 16; 18 20 18; 20 22 16;
22 23 12; 23 24 6];
power=data(:, 3)
Dt=data(:,2) - data(:,1)
Power_Generated=power.*Dt
Total_power1=sum(Power_Generated)
Total_power2=power.*Dt;
DATA=[data(:,1) data(:,2) power];
Average_load=Total_power2/sum(Dt);
peak_load=max(power);
Daily_LF=Average_load/peak_load*100;
Results=[Average_load peak_load*ones(size(Daily_LF)) Daily_LF];
L=length(data);
timeinterval=data(:,1:2) ;
t = sort(reshape(timeinterval,1,2*L));
for n = 1:L
P(2*n-1) = power(n);
P(2*n) = power(n);
end
plot(t,P)
xlabel(['Timer, Hr'])
ylabel(['Power, MW'])
title('Generation Power, MW versus time, hour')

More Answers (0)

Categories

Find more on Language Fundamentals in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!