Home > matpower5.0 > mpoption_info_mips.m

mpoption_info_mips

PURPOSE ^

MPOPTION_INFO_MIPS Returns MATPOWER option info for MIPS (optional fields).

SYNOPSIS ^

function opt = mpoption_info_mips(selector)

DESCRIPTION ^

MPOPTION_INFO_MIPS  Returns MATPOWER option info for MIPS (optional fields).

   DEFAULT_OPTS = MPOPTION_INFO_MIPS('D')
   VALID_OPTS   = MPOPTION_INFO_MIPS('V')
   EXCEPTIONS   = MPOPTION_INFO_MIPS('E')

   Returns a structure for MIPS options for MATPOWER containing ...
   (1) default options,
   (2) valid options, or
   (3) NESTED_STRUCT_COPY exceptions for setting options
   ... depending on the value of the input argument.

   This function is used by MPOPTION to set default options, check validity
   of option names or modify option setting/copying behavior for this
   subset of optional MATPOWER options.

   See also MPOPTION.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function opt = mpoption_info_mips(selector)
0002 %MPOPTION_INFO_MIPS  Returns MATPOWER option info for MIPS (optional fields).
0003 %
0004 %   DEFAULT_OPTS = MPOPTION_INFO_MIPS('D')
0005 %   VALID_OPTS   = MPOPTION_INFO_MIPS('V')
0006 %   EXCEPTIONS   = MPOPTION_INFO_MIPS('E')
0007 %
0008 %   Returns a structure for MIPS options for MATPOWER containing ...
0009 %   (1) default options,
0010 %   (2) valid options, or
0011 %   (3) NESTED_STRUCT_COPY exceptions for setting options
0012 %   ... depending on the value of the input argument.
0013 %
0014 %   This function is used by MPOPTION to set default options, check validity
0015 %   of option names or modify option setting/copying behavior for this
0016 %   subset of optional MATPOWER options.
0017 %
0018 %   See also MPOPTION.
0019 
0020 %   MATPOWER
0021 %   $Id: mpoption_info_mips.m 2433 2014-12-03 14:45:50Z ray $
0022 %   by Ray Zimmerman, PSERC Cornell
0023 %   Copyright (c) 2014 by Power System Engineering Research Center (PSERC)
0024 %
0025 %   This file is part of MATPOWER.
0026 %   See http://www.pserc.cornell.edu/matpower/ for more info.
0027 %
0028 %   MATPOWER is free software: you can redistribute it and/or modify
0029 %   it under the terms of the GNU General Public License as published
0030 %   by the Free Software Foundation, either version 3 of the License,
0031 %   or (at your option) any later version.
0032 %
0033 %   MATPOWER is distributed in the hope that it will be useful,
0034 %   but WITHOUT ANY WARRANTY; without even the implied warranty of
0035 %   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
0036 %   GNU General Public License for more details.
0037 %
0038 %   You should have received a copy of the GNU General Public License
0039 %   along with MATPOWER. If not, see <http://www.gnu.org/licenses/>.
0040 %
0041 %   Additional permission under GNU GPL version 3 section 7
0042 %
0043 %   If you modify MATPOWER, or any covered work, to interface with
0044 %   other modules (such as MATLAB code and MEX-files) available in a
0045 %   MATLAB(R) or comparable environment containing parts covered
0046 %   under other licensing terms, the licensors of MATPOWER grant
0047 %   you additional permission to convey the resulting work.
0048 
0049 if nargin < 1
0050     selector = 'D';
0051 end
0052 switch upper(selector)
0053     case 'D'            %% default options
0054         opt = struct([]);   %% no default options
0055     case 'V'            %% valid options
0056         opt = struct(...
0057             'mips', struct(...
0058                 'xi', 0.99995, ...
0059                 'sigma', 0.1, ...
0060                 'z0', 1, ...
0061                 'alpha_min', 1e-8, ...
0062                 'rho_min', 0.95, ...
0063                 'rho_max', 1.05, ...
0064                 'mu_threshold', 1e-5, ...
0065                 'max_stepsize', 1e10 ...
0066             ) ...
0067         );
0068     case 'E'            %% exceptions used by nested_struct_copy() for applying
0069         opt = struct([]);   %% no exceptions
0070     otherwise
0071         error('mpoption_info_mips: ''%s'' is not a valid input argument', selector);
0072 end

Generated on Mon 26-Jan-2015 15:21:31 by m2html © 2005