资源简介

非常不错的光伏系统输出功率建模matlab代码,压缩包里有一个章节关于光伏建模详细的叙述(word),并且有运行程序所需的数据文档

资源截图

代码片段和文件信息

function pvp=model()
global pvp

N=1;
a=load(‘pv.txt‘);
a=a‘;
Gbt=a;

% figure(1)
% t=1:N*8760;
% plot(tGbt(t));
% axis([0 8760*N 0 1.3]);
Psn=1000;
Gstd=1;
Rc=0.15;
for i=1:8760*N
    if Gbt(i)>=0 && Gbt(i)        P(i)=Psn*(Gbt(i)^2/(Gstd*Rc));
    
    elseif  Gbt(i)>=Rc && Gbt(i)        P(i)=Psn*(Gbt(i)/Gstd);

    elseif  Gbt(i)>=Gstd
        P(i)=Psn;
    end    
end
pvp=P;
% figure(2)
% t=1:N*8760;
% plot(tP(t));
% axis([0 8760*N 0 1600]);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-05-26 17:26  光伏系统输出功率建模\
     文件         493  2015-05-22 21:07  光伏系统输出功率建模\model.m
     文件       87600  2014-04-23 23:20  光伏系统输出功率建模\pv.txt
     文件       65760  2016-05-26 17:24  光伏系统输出功率建模\光伏系统输出功率建模.docx

评论

共有 条评论