Contents

Tests the IKWZ_VF_VECSV Algorithm with varyin it_z_n

For benchmark simulation it_z_n = 15 Time first it_param_set = 3, then show show results

close all

ar_it_z_n = [7, 11, 15];
% ar_it_w_n = [25, 50];

for it_z_n = ar_it_z_n

Simulate with current ar_it_w

    disp('xxxxxxxxxxxxxxxxxxxxxxxxxxx');
    disp('xxxxxxxxxxxxxxxxxxxxxxxxxxx');
    disp(['it_z_n = ' num2str(it_z_n)]);
    disp('xxxxxxxxxxxxxxxxxxxxxxxxxxx');
    disp('xxxxxxxxxxxxxxxxxxxxxxxxxxx');
    disp('');
    disp('');
    disp('');
    disp('');

    it_param_set = 4;
    [param_map, support_map] = ffs_akz_set_default_param(it_param_set);

    % Simulation Accuracy
    param_map('it_w_n') = 750;
    param_map('it_ak_n') = param_map('it_w_n');
    param_map('it_z_n') = it_z_n;
    param_map('fl_coh_interp_grid_gap') = 0.0125;
    param_map('it_c_interp_grid_gap') = 10^-4;

    % Display Parameters
    support_map('bl_display') = false;
    support_map('bl_display_final') = false;
    support_map('bl_time') = true;
    support_map('bl_profile') = false;

    % Call Program
    ff_iwkz_vf_vecsv(param_map, support_map);
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
it_z_n = 7
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
Elapsed time is 17.041332 seconds.
Warning: Directory already exists. 
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
it_z_n = 11
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
Elapsed time is 22.139518 seconds.
Warning: Directory already exists. 
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
it_z_n = 15
xxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxx
Elapsed time is 24.900915 seconds.
Warning: Directory already exists. 
end