load curve daily power consumption

10 visualizzazioni (ultimi 30 giorni)
syazwan sabri
syazwan sabri il 10 Lug 2020
Modificato: KSSV il 10 Lug 2020
i have problem that line..i have no idea how to solve it..can anybody help
  2 Commenti
KSSV
KSSV il 10 Lug 2020
time interval ..? There is space between them check...
syazwan sabri
syazwan sabri il 10 Lug 2020
Yeah.. Sorry for mistaken.. But it still an error

Accedi per commentare.

Risposta accettata

KSSV
KSSV il 10 Lug 2020
Modificato: KSSV il 10 Lug 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')

Più risposte (0)

Categorie

Scopri di più su Language Fundamentals in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by