⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 growth.m

📁 电力系统分析计算程序
💻 M
字号:
function growth(a,type)global Bus PQ PV SW Demand Supplyrr = a.con(:,6)/100;if sum(abs(rr)) < 1e-5  fm_disp('Likely no annual growth has been defined.',2)  returnendswitch type case 'area'  idx = a.int(getarea(Bus,0,0)); case 'region'  idx = a.int(getregion(Bus,0,0));end    ddata = growth(PQ,rr,idx);sdata = growth(PV,rr,idx);sdata = [sdata; growth(SW,rr,idx)];Demand = remove(Demand,[1:Demand.n]);Demand  = add(Demand,ddata);Supply = remove(Supply,[1:Supply.n]);Supply = add(Supply,sdata);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -