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

📄 fm_snbfig.m

📁 基于PSAT 软件的多目标最优潮流计算用于中小型电力系统的分析和管理
💻 M
字号:
function fig = fm_snbfig(varargin)% FM_SNBFIG create GUI for Saddle-Node Bifurcation Analysis%% HDL = FM_SNBFIG()%%see also FM_SNB%%Author:    Federico Milano%Date:      11-Nov-2002%Version:   1.0.0%%E-mail:    fmilano@thunderbox.uwaterloo.ca%Web-site:  http://thunderbox.uwaterloo.ca/~fmilano%% Copyright (C) 2002-2006 Federico Milanoglobal Settings Varname SNB Theme Fig Pathif nargin  switch varargin{1}   case 'report'    fm_stat(cellstr(strvcat(['lambda = ',num2str(SNB.lambda)],'  ', ...            strcat('dLambda/dP',SNB.bus,' = ',num2str(SNB.dldp)))))   case 'slack'    hdl = findobj(Fig.snb,'Tag','Checkbox');    SNB.slack = ~SNB.slack;    set(hdl,'Value',SNB.slack)    if SNB.slack      set(gcbo,'Checked','on')    else      set(gcbo,'Checked','off')    end   case 'check'    SNB.slack = get(gcbo,'Value');    hdl = findobj(Fig.snb,'Tag','MenuSlack');    if SNB.slack      set(hdl,'Checked','on')    else      set(hdl,'Checked','off')    end  end  returnendif Fig.snb, figure(Fig.snb), return, end%if ~Settings.init,%    fm_disp('Solve power flow before running SNB computations.')%    return%endonoff = {'off','on'};h0 = figure('Color',Theme.color01, ...            'Units', 'normalized', ...            'ColorMap', [], ...            'CreateFcn','Fig.snb = gcf;', ...            'DeleteFcn','Fig.snb = 0;', ...            'FileName','fm_snbfig', ...            'MenuBar','none', ...            'Name','SNB Settings', ...            'NumberTitle','off', ...            'PaperPosition',[18 180 576 432], ...            'PaperType','A4', ...            'PaperUnits','points', ...            'Position',sizefig(0.2,0.3), ...            'RendererMode','manual', ...            'Tag','Settings', ...            'ToolBar','none');% Menu Fileh1 = uimenu('Parent',h0, ...            'Label','File', ...            'Tag','MenuFile');h2 = uimenu('Parent',h1, ...            'Callback','fm_snb', ...            'Label','Run', ...            'Tag','OTV', ...            'Accelerator','z');h2 = uimenu('Parent',h1, ...            'Callback','close(gcf)', ...            'Label','Exit', ...            'Tag','NetSett', ...            'Accelerator','x', ...            'Separator','on');% Menu Settingsh1 = uimenu('Parent',h0, ...            'Label','Settings', ...            'Tag','MenuView');h2 = uimenu('Parent',h1, ...            'Callback','fm_snbfig slack', ...            'Label','Distributed Slack Bus', ...            'Tag','MenuSlack', ...            'Checked',onoff{SNB.slack+1}, ...            'Accelerator','s');% Menu Viewh1 = uimenu('Parent',h0, ...            'Label','View', ...            'Tag','MenuView');h2 = uimenu('Parent',h1, ...            'Callback','fm_snbfig report', ...            'Label','Display results', ...            'Tag','OTV', ...            'Accelerator','d');h2 = uimenu('Parent',h1, ...            'Callback','fm_tviewer', ...            'Label','Select text viewer', ...            'Tag','NetSett', ...            'Accelerator','t', ...            'Separator','on');h1 = uicontrol('Parent',h0, ...               'Units', 'normalized', ...               'BackgroundColor',Theme.color02, ...               'ForegroundColor',Theme.color03, ...               'Position',[0.05 0.05 0.9 0.9], ...               'Style','frame', ...               'Tag','Frame1');h1 = uicontrol('Parent',h0, ...               'Units', 'normalized', ...               'BackgroundColor',Theme.color02, ...               'Callback','fm_snbfig check', ...               'Position',[0.2 0.75 0.6 0.1], ...               'String','Distributed Slack Bus', ...               'Style','checkbox', ...               'Tag','Checkbox', ...               'Value',SNB.slack);h1 = uicontrol('Parent',h0, ...               'Units', 'normalized', ...               'BackgroundColor',Theme.color03, ...               'Callback','fm_snb', ...               'FontWeight','bold', ...               'ForegroundColor',Theme.color09, ...               'Position',[0.2 0.5 0.6 0.125], ...               'String','Run', ...               'Tag','Pushbutton1');h1 = uicontrol('Parent',h0, ...               'Units', 'normalized', ...               'BackgroundColor',Theme.color02, ...               'Callback','close(gcf);', ...               'Position',[0.2 0.1 0.6  0.125], ...               'String','Close', ...               'Tag','Pushbutton2');h1 = uicontrol('Parent',h0, ...               'Units', 'normalized', ...               'BackgroundColor',Theme.color02, ...               'Callback','fm_snbfig report', ...               'Position',[0.2  0.3  0.6  0.125], ...               'String','Display Results', ...               'Tag','Pushbutton3');if nargout > 0, fig = h0; end

⌨️ 快捷键说明

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