load curve daily power consumption

10 ビュー (過去 30 日間)
syazwan sabri
syazwan sabri 2020 年 7 月 10 日
編集済み: KSSV 2020 年 7 月 10 日
i have problem that line..i have no idea how to solve it..can anybody help
  2 件のコメント
KSSV
KSSV 2020 年 7 月 10 日
time interval ..? There is space between them check...
syazwan sabri
syazwan sabri 2020 年 7 月 10 日
Yeah.. Sorry for mistaken.. But it still an error

サインインしてコメントする。

採用された回答

KSSV
KSSV 2020 年 7 月 10 日
編集済み: KSSV 2020 年 7 月 10 日
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')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLanguage Fundamentals についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by