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

📄 opf_form.m

📁 该程序是计算最优潮流的matlab工具箱。可以很好的求解目标函数不同的最优潮流问题。
💻 M
字号:
function code = opf_form(alg)%OPF_FORM    Which OPF formulation is used by alg.%   code = opf_form(alg) returns a formulation code given an algorithm code.%   The codes are:%       1 - standard, polynomial costs handled in the objective function%       2 - CCV, piece-wise linear costs handled via constrainted cost vars%       5 - generalized, includes both of above and more%   MATPOWER%   $Id: opf_form.m,v 1.4 2004/08/23 20:56:49 ray Exp $%   by Ray Zimmerman, PSERC Cornell%   Copyright (c) 1996-2004 by Power System Engineering Research Center (PSERC)%   See http://www.pserc.cornell.edu/matpower/ for more info.code = fix(alg / 100);return;

⌨️ 快捷键说明

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