📄 hhu_pfcp.m
字号:
%% MATPOWER
%% A matlab for power syetem simulation package
% Copyright (C)1997-2007
%
% This toolbox is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2.0 of the License, or
% (at your option) any later version.
% 可以用来计算电力系统潮流IEEE9-300节点
clc
hdl = hhu_enter(pwd, 'HoHai University','e-mail:hhusgq@hhu.edu.cn ');
pause
% the size of the splash window are 346 x 410 pixels
set(hdl,'Visible','off');
%%pause(0.1)
disp(' ')
disp(' <Power Flow Calculation Packages v3.0>')
disp(' ')
disp(' 欢迎使用Power Flow Calculation Packages软件, 此软件是基于MATPOWER修改而成电力系统潮流计算软件包。 ')
disp(' ')
disp(' 可以选择直流法、牛拉法、PQ分解法与高斯赛代尔法进行IEEE 9--300节点潮流计算。 ')
disp(' ')
disp(' 制作:hhusgq 2008.6 ')
disp(' ')
disp(' e-mail:hhusgq@hhu.edu.cn ')
disp(' ')
disp(' ')
disp([' 当前MATLAB的版本(必须大于6.0): Matlab ',version])
disp([' 当前时间: ', datestr(now,0)])
disp(' ')
disp(' ')
disp(' ')
a = version;
a = str2num(a(1:3));
if a < 6.0
disp(' Power Flow Calculation Packages 需要在MATLAB 6.0以上版本运行! ')
end
disp(' ****按任意键继续**** ')
disp(' ')
disp(' ')
pause
hhu_runpf
return
%%disp(' -----请选择进行何种计算---------- ')
%%disp(' ')
%%disp(' 1.潮流计算 ')
%%disp(' ----------------------- ')
%%disp(' 2.最优潮流计算 ')
%%disp(' ------------------------- ')
%%disp(' 3.静态状估计 ')
%%disp(' -------------------------- ')
%%disp(' ')
%%disp(' ')
%%disp(' ')
%%choice = input(' \输入您的选择 : ');
%%switch choice
%% case 1
%% hhu_runpf
%% case 2
%% hhu_runopf
%%case 3
%% hhu_runse
%%otherwise
%% hhu_again;
%%end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -