Home > matpower7.1 > extras > syngrid > lib > sgvm_shuntsopts.m

sgvm_shuntsopts

PURPOSE ^

SGVM_SHUNTSOPTS default options for sgvm_add_shunts procedure

SYNOPSIS ^

function opt = sgvm_shuntsopts()

DESCRIPTION ^

SGVM_SHUNTSOPTS default options for sgvm_add_shunts procedure
   OPT = SGVM_SHUNTSOPTS()

   tmag (0.1) - minimum shunt size (MVAr)
   shunt_max (500) - largest shunt size (MVAr)
   shift_in (0.015) - amount to shift in voltage limits before solving
                      with softlims enabled. This attempts to avoid
                      overly tight voltage constraints when softlims are
                      later removed
   soft_ratea (0) - controls softlimit on line rating
       0 : soft limit not enabled
       1 : soft limit enabled
   verbose (0) - print progress for shunt procedure
       0 : no printing
       1 : some printing
       2 : more printing

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function opt = sgvm_shuntsopts()
0002 %SGVM_SHUNTSOPTS default options for sgvm_add_shunts procedure
0003 %   OPT = SGVM_SHUNTSOPTS()
0004 %
0005 %   tmag (0.1) - minimum shunt size (MVAr)
0006 %   shunt_max (500) - largest shunt size (MVAr)
0007 %   shift_in (0.015) - amount to shift in voltage limits before solving
0008 %                      with softlims enabled. This attempts to avoid
0009 %                      overly tight voltage constraints when softlims are
0010 %                      later removed
0011 %   soft_ratea (0) - controls softlimit on line rating
0012 %       0 : soft limit not enabled
0013 %       1 : soft limit enabled
0014 %   verbose (0) - print progress for shunt procedure
0015 %       0 : no printing
0016 %       1 : some printing
0017 %       2 : more printing
0018 
0019 %   SynGrid
0020 %   Copyright (c) 2018, Power Systems Engineering Research Center (PSERC)
0021 %   by Eran Schweitzer, Arizona State University
0022 %
0023 %   This file is part of SynGrid.
0024 %   Covered by the 3-clause BSD License (see LICENSE file for details).
0025 
0026 opt = struct(   'tmag', 0.1,...
0027                 'shunt_max',500,...
0028                 'shift_in', 0.015,...
0029                 'soft_ratea', 0,...
0030                 'verbose', 0);

Generated on Fri 09-Oct-2020 11:21:31 by m2html © 2005