fm_svc.m
来自「基于PSAT 软件的多目标最优潮流计算用于中小型电力系统的分析和管理」· M 代码 · 共 49 行
M
49 行
function fm_svc(flag)% FM_SVC define Static Var Systems%% FM_SVC(FLAG)% FLAG = 0 initializations% FLAG = 1 algebraic equations% FLAG = 2 algebraic Jacobians% FLAG = 3 differential equations% FLAG = 4 state matrix% FLAG = 5 non-windup limits%%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 Svcswitch flag case 0 % initialization Svc = setx0(Svc); case 1 % algebraic equations gcall(Svc); case 2 % algebraic Jacobians Gycall(Svc); case 3 % differential equations Svc = fcall(Svc); case 4 % Jacobians of state variables Fxcall(Svc); case 5 % non-windup limiters windup(Svc);end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?