MPOPTION_INFO_SDP_PF Returns MATPOWER option info for SDP_PF. DEFAULT_OPTS = MPOPTION_INFO_SDP_PF('D') VALID_OPTS = MPOPTION_INFO_SDP_PF('V') EXCEPTIONS = MPOPTION_INFO_SDP_PF('E') Returns a structure for SDP_PF 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.
0001 function opt = mpoption_info_sdp_pf(selector) 0002 %MPOPTION_INFO_SDP_PF Returns MATPOWER option info for SDP_PF. 0003 % 0004 % DEFAULT_OPTS = MPOPTION_INFO_SDP_PF('D') 0005 % VALID_OPTS = MPOPTION_INFO_SDP_PF('V') 0006 % EXCEPTIONS = MPOPTION_INFO_SDP_PF('E') 0007 % 0008 % Returns a structure for SDP_PF 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_sdp_pf.m 2272 2014-01-17 14:15:47Z 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 0050 0051 if nargin < 1 0052 selector = 'D'; 0053 end 0054 if have_fcn('sdp_pf') 0055 switch upper(selector) 0056 case {'D', 'V'} %% default and valid options 0057 opt = struct(... 0058 'sdp_pf', struct(... 0059 'max_number_of_cliques', 0.1, ... 0060 'eps_r', 1e-4, ... 0061 'recover_voltage', 4, ... 0062 'recover_injections', 2, ... 0063 'min_Pgen_diff', 1, ... 0064 'min_Qgen_diff', 1, ... 0065 'max_line_limit', 9900, ... 0066 'max_gen_limit', 99998, ... 0067 'ndisplay', 100, ... 0068 'choldense', 10, ... 0069 'cholaggressive', 1, ... 0070 'bind_lagrange', 1e-3, ... 0071 'zeroeval_tol', 1e-4, ... 0072 'mineigratio_tol', 1e5, ... 0073 'opts', [], ... 0074 'opt_fname', '' ... 0075 ) ... 0076 ); 0077 case 'E' %% exceptions used by nested_struct_copy() for applying 0078 opt = struct([]); %% no exceptions 0079 otherwise 0080 error('mpoption_info_sdp_pf: ''%s'' is not a valid input argument', selector); 0081 end 0082 else 0083 opt = struct([]); %% SDP_PF is not available 0084 end