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

📄 fm_add.m

📁 电力系统的psat
💻 M
字号:
function [nomi,numero] = fm_add(nomi,numero,list_box,edit_text)% FM_ADD add variables and properties when building a%        new component%% [NAMES,NUMBER] = FM_ADD(NAMES,NUMBER,LISTBOX_HDL,EDITTEXT_HDL)%%see also FM_MAKE%%Author:    Federico Milano%Date:      11-Nov-2002%Update:    15-Sep-2003%Version:   1.1.0%%E-mail:    fmilano@thunderbox.uwaterloo.ca%Web-site:  http://thunderbox.uwaterloo.ca/~fmilano%% Copyright (C) 2002-2005 Federico Milano%% 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.%% This toolbox is distributed in the hope that it will be useful, but% WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANDABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU% General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this toolbox; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307,% USA.global Algeb Buses Initl Param Servc State Fighdl = get(Fig.make,'UserData');nome = strtok(get(hdl(2),'String'));addbus = strcmp(list_box,'ListboxBuses');if addbus  nomi{Buses.n+1,1} = ['bus', int2str(Buses.n+1)];  nome = nomi{Buses.n+1,1};end% check variable stringif isempty(nome), return, ends0 = 'exact';s1 = 'The string "';s2 = '" is already used ';s3 = ' variable list.';s4 = 'in the ';if ~isvarname(nome)  fm_disp([s1,nome,'" is not a valid Matlab variable.'])  returnend% check if variable is already usedif strmatch(nome,Algeb.name,s0)  fm_disp([s1,nome,s2,'as an algebraic variable.'])  returnendif strmatch(nome,Buses.name,s0)  fm_disp([s1,nome,s2,'as a bus variable.'])  returnendif strmatch(nome,Initl.name,s0)  fm_disp([s1,nome,s2,'as an initial variable.'])  returnendif strmatch(nome,Param.name,s0)  fm_disp([s1,nome,s2,'as a parameter.'])  returnendif strmatch(nome,Servc.name,s0),  fm_disp([s1,nome,s2,'as a service variable.'])  returnendif strmatch(nome,State.name,s0)  fm_disp([s1,nome,s2,'as a state variable.'])  returnend% check for variable consistencyif strmatch(nome,Servc.idx,s0) & ...      ~strcmp(list_box,'ListboxServiceVar')  fm_disp([s1,nome,s2,s4,'service',s3])  returnendif strmatch(nome,Algeb.idx,s0) & ...      ~strcmp(list_box,'ListboxAlgebraic')  fm_disp([s1,nome,s2,s4,'algebraic',s3])  returnendif strmatch(nome,Initl.idx,s0) & ...      ~strcmp(list_box,'ListboxInitial')  fm_disp([s1,nome,s2,s4,'initial',s3])  returnendif strcmp(nome,'null') | strcmp(nome,'None')  fm_disp([s1,nome,'" is a protected word.'])  returnend% general settingsnumero = numero + 1;nomi{numero,1} = nome;set(findobj(gcf,'Tag',list_box),'String',nomi,'Value',numero)% other settingsswitch list_boxcase 'ListboxBuses'    Algeb.idx = cell(2*numero,1);    for i = 1:numero        Algeb.idx{i,1} = ['V', int2str(i)];        Algeb.idx{numero+i,1} = ['theta', int2str(i)];    end    set(hdl(13),'String',Algeb.idx,'Value',length(Algeb.idx));    Servc.idx = Servc.oldidx;    actualservice = length(Servc.idx);    for i = 1:numero        Servc.idx{actualservice+i,1} = ['P', int2str(i)];        Servc.idx{actualservice+numero+i,1} = ['Q', int2str(i)];    end    set(hdl(14),'String',Servc.idx,'Value',length(Servc.idx));    actualinit = length(Initl.idx);    Initl.idx{actualinit+1,1} = ['V', int2str(i),'_0'];    Initl.idx{actualinit+2,1} = ['theta', int2str(i),'_0'];    Initl.idx{actualinit+3,1} = ['P', int2str(i),'_0'];    Initl.idx{actualinit+4,1} = ['Q', int2str(i),'_0'];    set(hdl(15),'String',Initl.idx,'Value',length(Initl.idx));    Algeb.neq = Algeb.neq + 2;    Algeb.eqidx{Algeb.neq-1,1} = ['P', int2str(numero)];    Algeb.eqidx{Algeb.neq,1}   = ['Q', int2str(numero)];;    Algeb.eq{Algeb.neq-1,1} = 'null';    Algeb.eq{Algeb.neq,1}   = 'null';    set(hdl(11),'String',strcat(Algeb.eqidx,'=',Algeb.eq), ...                'Value',Algeb.neq);case 'ListboxParameter'    Param.type{numero,1} = 'None';    Param.unit{numero,1} = 'None';    Param.descr{numero,1} = 'None';case 'ListboxState'    State.nodyn{numero,1} = 'No';    State.time{numero,1} = 'None';    State.limit{numero,1} = 'None';    State.limit{numero,2} = 'None';    State.init{numero,1} = '0';    State.offset{numero,1} = 'No';    State.un{numero,1} = nome;    State.fn{numero,1} = nome;    State.neq = State.neq + 1;    State.eq{State.neq,1} = 'null';    State.eqidx{State.neq,1} = ['p(', nomi{numero,1}, ')'];    if isempty(Initl.idx),      Initl.idx = {[nome, '_0']};    else      Initl.idx{end+1,1} = [nome, '_0'];    end    set(hdl(10), ...        'String',strcat(State.eqidx,' = (',State.eq,')/',State.time), ...        'Value',State.neq);    set(hdl(15),'String',Initl.idx,'Value',length(Initl.idx));case 'ListboxServiceVar'    a = strmatch(nome,Servc.idx(end-2*Buses.n+1:end-Buses.n),s0);    b = strmatch(nome,Servc.idx(end-Buses.n+1:end),s0);    if isempty(a), a = 0; end    if isempty(b), b = 0; end    if a | b, return, end    Servc.neq = Servc.neq + 1;    numero = Servc.neq;    Servc.limit{numero,1} = 'None';    Servc.limit{numero,2} = 'None';    Servc.type{numero,1} = 'Input';    Servc.init{numero,1} = '0';    Servc.offset{numero,1} = 'No';    Servc.un{numero,1} = nome;    Servc.fn{numero,1} = nome;    Servc.eqidx{Servc.neq,1} = nome;    Servc.eq{Servc.neq,1} = 'null';    if isempty(Initl.idx), Initl.idx = {[nome, '_0']};    else Initl.idx{end+1,1} = [nome, '_0'];    end    set(hdl(12),'String',strcat(Servc.eqidx,'=',Servc.eq), ...                'Value',Servc.neq);    set(hdl(15),'String',Initl.idx,'Value',length(Initl.idx));end

⌨️ 快捷键说明

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