t_cpf_cb1
PURPOSE
T_CPF_CB1 User callback function 1 for continuation power flow testing.
SYNOPSIS
function [nx, cx, done, rollback, evnts, cb_data, results] = t_cpf_cb1(k, nx, cx, px, done, rollback, evnts, cb_data, cb_args, results)
DESCRIPTION
CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function [nx, cx, done, rollback, evnts, cb_data, results] = t_cpf_cb1(...
0002 k, nx, cx, px, done, rollback, evnts, cb_data, cb_args, results)
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 if k == 0
0015 cxx = struct( 'initial', 1, ...
0016 'iteration', 0, ...
0017 'final', 0 );
0018 nxx = cxx;
0019 cx.cb.cb1 = cxx;
0020 nx.cb.cb1 = nxx;
0021 if ~isfield(cx.cb, 'shared')
0022 cx.cb.shared = '';
0023 nx.cb.shared = '';
0024 end
0025 cx.cb.shared = [cx.cb.shared '1'];
0026 nx.cb.shared = [nx.cb.shared '1'];
0027 else
0028 nxx = nx.cb.cb1;
0029
0030 if k > 0
0031 nxx.iteration = nxx.iteration + 1;
0032 nx.cb.cb1 = nxx;
0033 nx.cb.shared = [nx.cb.shared '1'];
0034
0035 else
0036 results.cb1.initial = nxx.initial;
0037 results.cb1.iteration = nxx.iteration;
0038 results.cb1.final = 1;
0039 results.shared = nx.cb.shared;
0040 end
0041 end
Generated on Fri 16-Dec-2016 12:45:37 by m2html © 2005