(%i1) batch(diffeq.max) read and interpret file: /home/dennis/mastersource/mine/omnisode/diffeq.max (%i2) load(stringproc) (%o2) /usr/local/share/maxima/5.26.0/share/contrib/stringproc/stringproc.mac (%i3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%o3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%i4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), if not glob_reached_optimal_h then (glob_reached_optimal_h : true, glob_curr_iter_when_opt : glob_current_iter, glob_optimal_clock_start_sec : elapsed_time_seconds(), glob_optimal_start : array_x ), hnew : sz2) 1 (%o4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), if not glob_reached_optimal_h then (glob_reached_optimal_h : true, glob_curr_iter_when_opt : glob_current_iter, glob_optimal_clock_start_sec : elapsed_time_seconds(), glob_optimal_start : array_x ), hnew : sz2) 1 (%i5) prog_report(x_start, x_end) := (clock_sec1 : elapsed_time_seconds(), total_clock_sec : convfloat(clock_sec1) - convfloat(glob_orig_start_sec), glob_clock_sec : convfloat(clock_sec1) - convfloat(glob_clock_start_sec), left_sec : - convfloat(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(clock_sec1) - convfloat(glob_orig_start_sec)), opt_clock_sec : convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec), glob_optimal_expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 omniout_str_noeol(INFO, "Total Elapsed Time "), omniout_timestr(convfloat(total_clock_sec)), omniout_str_noeol(INFO, "Elapsed Time(since restart) "), omniout_timestr(convfloat(glob_clock_sec)), if convfloat(percent_done) < convfloat(100.0) then (omniout_str_noeol(INFO, "Expected Time Remaining "), omniout_timestr(convfloat(expect_sec)), omniout_str_noeol(INFO, "Optimized Time Remaining "), omniout_timestr(convfloat(glob_optimal_expect_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%o5) prog_report(x_start, x_end) := (clock_sec1 : elapsed_time_seconds(), total_clock_sec : convfloat(clock_sec1) - convfloat(glob_orig_start_sec), glob_clock_sec : convfloat(clock_sec1) - convfloat(glob_clock_start_sec), left_sec : - convfloat(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(clock_sec1) - convfloat(glob_orig_start_sec)), opt_clock_sec : convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec), glob_optimal_expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 omniout_str_noeol(INFO, "Total Elapsed Time "), omniout_timestr(convfloat(total_clock_sec)), omniout_str_noeol(INFO, "Elapsed Time(since restart) "), omniout_timestr(convfloat(glob_clock_sec)), if convfloat(percent_done) < convfloat(100.0) then (omniout_str_noeol(INFO, "Expected Time Remaining "), omniout_timestr(convfloat(expect_sec)), omniout_str_noeol(INFO, "Optimized Time Remaining "), omniout_timestr(convfloat(glob_optimal_expect_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%i6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%o6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%i7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%o7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%i8) atomall() := (array_tmp1 : array_x array_x , 1 1 1 array_const_1D0 1 array_tmp2 : array_const_1D0 + array_tmp1 , array_tmp3 : ----------------, 1 1 1 1 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp4 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_x, array_x, 1), 2 array_tmp2 : array_const_1D0 + array_tmp1 , 2 2 2 array_const_1D0 - ats(2, array_tmp2, array_tmp3, 2) 2 array_tmp3 : ----------------------------------------------------, 2 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp4 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_x, array_x, 1), 3 array_tmp2 : array_const_1D0 + array_tmp1 , 3 3 3 array_const_1D0 - ats(3, array_tmp2, array_tmp3, 2) 3 array_tmp3 : ----------------------------------------------------, 3 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp4 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_x, array_x, 1), 4 array_tmp2 : array_const_1D0 + array_tmp1 , 4 4 4 array_const_1D0 - ats(4, array_tmp2, array_tmp3, 2) 4 array_tmp3 : ----------------------------------------------------, 4 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp4 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_x, array_x, 1), 5 array_tmp2 : array_const_1D0 + array_tmp1 , 5 5 5 array_const_1D0 - ats(5, array_tmp2, array_tmp3, 2) 5 array_tmp3 : ----------------------------------------------------, 5 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp4 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_x, array_x, 1), array_tmp2 : kkk array_const_1D0 + array_tmp1 , array_tmp3 : kkk kkk kkk array_const_1D0 - ats(kkk, array_tmp2, array_tmp3, 2) kkk --------------------------------------------------------, array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp4 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) (%o8) atomall() := (array_tmp1 : array_x array_x , 1 1 1 array_const_1D0 1 array_tmp2 : array_const_1D0 + array_tmp1 , array_tmp3 : ----------------, 1 1 1 1 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp4 glob_h factorial_3(0, 1), 1 array_y : temporary, array_y_higher : temporary, 2 1, 2 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 2, glob_h 2, 1 array_tmp1 : ats(2, array_x, array_x, 1), 2 array_tmp2 : array_const_1D0 + array_tmp1 , 2 2 2 array_const_1D0 - ats(2, array_tmp2, array_tmp3, 2) 2 array_tmp3 : ----------------------------------------------------, 2 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp4 glob_h factorial_3(1, 2), 2 array_y : temporary, array_y_higher : temporary, 3 1, 3 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 3, glob_h 2, 2 array_tmp1 : ats(3, array_x, array_x, 1), 3 array_tmp2 : array_const_1D0 + array_tmp1 , 3 3 3 array_const_1D0 - ats(3, array_tmp2, array_tmp3, 2) 3 array_tmp3 : ----------------------------------------------------, 3 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp4 glob_h factorial_3(2, 3), 3 array_y : temporary, array_y_higher : temporary, 4 1, 4 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 4, glob_h 2, 3 array_tmp1 : ats(4, array_x, array_x, 1), 4 array_tmp2 : array_const_1D0 + array_tmp1 , 4 4 4 array_const_1D0 - ats(4, array_tmp2, array_tmp3, 2) 4 array_tmp3 : ----------------------------------------------------, 4 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp4 glob_h factorial_3(3, 4), 4 array_y : temporary, array_y_higher : temporary, 5 1, 5 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 5, glob_h 2, 4 array_tmp1 : ats(5, array_x, array_x, 1), 5 array_tmp2 : array_const_1D0 + array_tmp1 , 5 5 5 array_const_1D0 - ats(5, array_tmp2, array_tmp3, 2) 5 array_tmp3 : ----------------------------------------------------, 5 array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp4 glob_h factorial_3(4, 5), 5 array_y : temporary, array_y_higher : temporary, 6 1, 6 temporary 2.0 temporary : -------------, array_y_higher : temporary)), kkk : 6, glob_h 2, 5 while kkk <= glob_max_terms do (array_tmp1 : kkk ats(kkk, array_x, array_x, 1), array_tmp2 : kkk array_const_1D0 + array_tmp1 , array_tmp3 : kkk kkk kkk array_const_1D0 - ats(kkk, array_tmp2, array_tmp3, 2) kkk --------------------------------------------------------, array_tmp2 1 array_tmp4 : array_tmp3 + array_const_0D0 , order_d : 1, kkk kkk kkk if 1 + order_d + kkk <= glob_max_terms then (if not array_y_set_initial 1, order_d + kkk order_d array_tmp4 glob_h kkk then (temporary : -----------------------------------------, factorial_3(kkk - 1, - 1 + order_d + kkk) array_y : temporary, array_y_higher : temporary, order_d + kkk 1, order_d + kkk term : - 1 + order_d + kkk, adj2 : 2, while (adj2 <= 1 + order_d) temporary convfp(adj2) and (term >= 1) do (temporary : ----------------------, glob_h array_y_higher : temporary, adj2 : 1 + adj2, term : term - 1))), adj2, term kkk : 1 + kkk)) log(x) (%i9) log10(x) := --------- log(10.0) log(x) (%o9) log10(x) := --------- log(10.0) (%i10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%o10) omniout_str(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a~%", string(str)) (%i11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%o11) omniout_str_noeol(iolevel, str) := if glob_iolevel >= iolevel then printf(true, "~a", string(str)) (%i12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%o12) omniout_labstr(iolevel, label, str) := if glob_iolevel >= iolevel then printf(true, "~a = ~a~%", string(label), string(str)) (%i13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%o13) omniout_float(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (if vallen = 4 then printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel) else printf(true, "~a = ~g ~s ~%", prelabel, value, postlabel)) (%i14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%o14) omniout_int(iolevel, prelabel, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (printf(true, "~a = ~d ~a~%", prelabel, value, postlabel), newline()) (%i15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%o15) omniout_float_arr(iolevel, prelabel, elemnt, prelen, value, vallen, postlabel) := if glob_iolevel >= iolevel then (sprint(prelabel, "[", elemnt, "]=", value, postlabel), newline()) (%i16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%o16) dump_series(iolevel, dump_label, series_name, array_series, numb) := if glob_iolevel >= iolevel then (i : 1, while i <= numb do (sprint(dump_label, series_name, "i = ", i, "series = ", array_series ), newline(), i : 1 + i)) i (%i17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%o17) dump_series_2(iolevel, dump_label, series_name, array_series2, numb, subnum) := if glob_iolevel >= iolevel then (sub : 1, while sub <= subnum do (i : 1, while i <= num do (sprint(dump_label, series_name, "sub = ", sub, "i = ", i, "series2 = ", array_series2 ), i : 1 + i), sub : 1 + sub)) sub, i (%i18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%o18) cs_info(iolevel, str) := if glob_iolevel >= iolevel then sprint(concat("cs_info ", str, " glob_correct_start_flag = ", glob_correct_start_flag, "glob_h := ", glob_h, "glob_reached_optimal_h := ", glob_reached_optimal_h)) (%i19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%o19) logitem_time(fd, secs_in) := (secs : secs_in, printf(fd, ""), if secs >= 0.0 then (sec_in_millinium : sec_in_min min_in_hour hours_in_day days_in_year years_in_century secs centuries_in_millinium, milliniums : ----------------, sec_in_millinium millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) centuries_in_millinium, cent_int : floor(centuries), years : (centuries - cent_int) years_in_century, years_int : floor(years), days : (years - years_int) days_in_year, days_int : floor(days), hours : (days - days_int) hours_in_day, hours_int : floor(hours), minutes : (hours - hours_int) min_in_hour, minutes_int : floor(minutes), seconds : (minutes - minutes_int) sec_in_min, sec_int : floor(seconds), if millinium_int > 0 then printf(fd, "~d Millinia ~d\ Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(fd, "~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(fd, "~d Years ~d Days ~d Hours ~d Minutes ~d Seconds", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(fd, "~d Days ~d Hours ~d Minutes ~d Seconds", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(fd, "~d Hours ~d Minutes ~d Seconds", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(fd, "~d Minutes ~d Seconds", minutes_int, sec_int) else printf(fd, "~d Seconds", sec_int)) else printf(fd, "Unknown"), printf(fd, "")) (%i20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%o20) omniout_timestr(secs_in) := (secs : convfloat(secs_in), if secs >= convfloat(0.0) then (sec_in_millinium : convfloat(sec_in_min) convfloat(min_in_hour) convfloat(hours_in_day) convfloat(days_in_year) convfloat(years_in_century) secs convfloat(centuries_in_millinium), milliniums : ---------------------------, convfloat(sec_in_millinium) millinium_int : floor(milliniums), centuries : (milliniums - millinium_int) convfloat(centuries_in_millinium), cent_int : floor(centuries), years : (centuries - cent_int) convfloat(years_in_century), years_int : floor(years), days : (years - years_int) convfloat(days_in_year), days_int : floor(days), hours : (days - days_int) convfloat(hours_in_day), hours_int : floor(hours), minutes : (hours - hours_int) convfloat(min_in_hour), minutes_int : floor(minutes), seconds : (minutes - minutes_int) convfloat(sec_in_min), sec_int : floor(seconds), if millinium_int > 0 then printf(true, "= ~d Millinia ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", millinium_int, cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif cent_int > 0 then printf(true, "= ~d Centuries ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", cent_int, years_int, days_int, hours_int, minutes_int, sec_int) elseif years_int > 0 then printf(true, "= ~d Years ~d Days ~d Hours ~d Minutes ~d Seconds~%", years_int, days_int, hours_int, minutes_int, sec_int) elseif days_int > 0 then printf(true, "= ~d Days ~d Hours ~d Minutes ~d Seconds~%", days_int, hours_int, minutes_int, sec_int) elseif hours_int > 0 then printf(true, "= ~d Hours ~d Minutes ~d Seconds~%", hours_int, minutes_int, sec_int) elseif minutes_int > 0 then printf(true, "= ~d Minutes ~d Seconds~%", minutes_int, sec_int) else printf(true, "= ~d Seconds~%", sec_int)) else printf(true, " Unknown~%")) (%i21) mode_declare(ats, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o21) [ats] (%i22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%o22) ats(mmm_ats, array_a, array_b, jjj_ats) := (ret_ats : 0.0, if jjj_ats <= mmm_ats then (ma_ats : 1 + mmm_ats, iii_ats : jjj_ats, while iii_ats <= mmm_ats do (lll_ats : ma_ats - iii_ats, ret_ats : array_a array_b + ret_ats, iii_ats : 1 + iii_ats)), iii_ats lll_ats ret_ats) (%i23) mode_declare(att, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o23) [att] (%i24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, iii_att : jjj_att, while iii_att <= mmm_att do (lll_att : ma_att - iii_att, al_att : lll_att - 1, if lll_att <= glob_max_terms then ret_att : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%o24) att(mmm_att, array_aa, array_bb, jjj_att) := (ret_att : 0.0, if jjj_att <= mmm_att then (ma_att : 2 + mmm_att, iii_att : jjj_att, while iii_att <= mmm_att do (lll_att : ma_att - iii_att, al_att : lll_att - 1, if lll_att <= glob_max_terms then ret_att : array_aa array_bb convfp(al_att) + ret_att, iii_att lll_att ret_att iii_att : 1 + iii_att), ret_att : ---------------), ret_att) convfp(mmm_att) (%i25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%o25) display_pole() := if (array_pole # glob_large_float) 1 and (array_pole > 0.0) and (array_pole # glob_large_float) 1 2 and (array_pole > 0.0) and glob_display_flag 2 then (omniout_float(ALWAYS, "Radius of convergence ", 4, array_pole , 4, " "), omniout_float(ALWAYS, 1 "Order of pole ", 4, array_pole , 4, " ")) 2 (%i26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%o26) logditto(file) := (printf(file, ""), printf(file, "ditto"), printf(file, "")) (%i27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%o27) logitem_integer(file, n) := (printf(file, ""), printf(file, "~d", n), printf(file, "")) (%i28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%o28) logitem_str(file, str) := (printf(file, ""), printf(file, str), printf(file, "")) (%i29) log_revs(file, revs) := printf(file, revs) (%o29) log_revs(file, revs) := printf(file, revs) (%i30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%o30) logitem_float(file, x) := (printf(file, ""), printf(file, "~g", x), printf(file, "")) (%i31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%o31) logitem_pole(file, pole) := (printf(file, ""), if pole = 0 then printf(file, "NA") elseif pole = 1 then printf(file, "Real") elseif pole = 2 then printf(file, "Complex") else printf(file, "No Pole"), printf(file, "")) (%i32) logstart(file) := printf(file, "") (%o32) logstart(file) := printf(file, "") (%i33) logend(file) := printf(file, "~%") (%o33) logend(file) := printf(file, "~%") (%i34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%o34) chk_data() := (errflag : false, if (glob_max_terms < 15) or (glob_max_terms > 512) then (omniout_str(ALWAYS, "Illegal max_terms = -- Using 30"), glob_max_terms : 30), if glob_max_iter < 2 then (omniout_str(ALWAYS, "Illegal max_iter"), errflag : true), if errflag then quit()) (%i35) mode_declare(comp_expect_sec, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o35) [comp_expect_sec] (%i36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%o36) comp_expect_sec(t_end2, t_start2, t2, clock_sec) := (ms2 : clock_sec, sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, if sub1 = 0.0 then sec_left : 0.0 else (if abs(sub2) > 0.0 sub1 then (rrr : ----, sec_left : rrr ms2 - ms2) else sec_left : 0.0), sec_left) sub2 (%i37) mode_declare(comp_percent, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o37) [comp_percent] (%i38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%o38) comp_percent(t_end2, t_start2, t2) := (sub1 : t_end2 - t_start2, sub2 : t2 - t_start2, 100.0 sub2 if abs(sub2) > glob_small_float then rrr : ---------- else rrr : 0.0, rrr) sub1 (%i39) factorial_1(nnn) := (if nnn <= glob_max_terms then (if array_fact_1 = 0 then (ret : nnn!, array_fact_1 : ret) nnn nnn else ret : array_fact_1 ) else ret : nnn!, ret) nnn (%o39) factorial_1(nnn) := (if nnn <= glob_max_terms then (if array_fact_1 = 0 then (ret : nnn!, array_fact_1 : ret) nnn nnn else ret : array_fact_1 ) else ret : nnn!, ret) nnn (%i40) factorial_3(mmm, nnn) := (if (nnn <= glob_max_terms) and (mmm <= glob_max_terms) then (if array_fact_2 = 0 mmm, nnn factorial_1(mmm) then (ret : ----------------, array_fact_2 : ret) factorial_1(nnn) mmm, nnn mmm! else ret : array_fact_2 ) else ret : ----, ret) mmm, nnn nnn! (%o40) factorial_3(mmm, nnn) := (if (nnn <= glob_max_terms) and (mmm <= glob_max_terms) then (if array_fact_2 = 0 mmm, nnn factorial_1(mmm) then (ret : ----------------, array_fact_2 : ret) factorial_1(nnn) mmm, nnn mmm! else ret : array_fact_2 ) else ret : ----, ret) mmm, nnn nnn! (%i41) convfp(mmm) := mmm (%o41) convfp(mmm) := mmm (%i42) convfloat(mmm) := mmm (%o42) convfloat(mmm) := mmm (%i43) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%o43) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%i44) arcsin(x) := asin(x) (%o44) arcsin(x) := asin(x) (%i45) arccos(x) := acos(x) (%o45) arccos(x) := acos(x) (%i46) arctan(x) := atan(x) (%o46) arctan(x) := atan(x) (%i47) exact_soln_y(x) := arctan(x) (%o47) exact_soln_y(x) := arctan(x) (%i48) mainprog() := (define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(INFO, 2, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_start, 0, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_initial_pass, true, boolean), define_variable(years_in_century, 100.0, float), define_variable(glob_warned, false, boolean), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_h, 0.1, float), define_variable(days_in_year, 365.0, float), define_variable(glob_warned2, false, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(hours_in_day, 24.0, float), define_variable(djd_debug, true, boolean), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(min_in_hour, 60.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_dump, false, boolean), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_almost_1, 0.999, float), define_variable(sec_in_min, 60.0, float), define_variable(glob_percent_done, 0.0, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, glob_orig_start_sec : elapsed_time_seconds(), MAX_UNCHANGED : 10, glob_curr_iter_when_opt : 0, glob_display_flag : true, glob_no_eqs : 1, glob_iter : - 1, opt_iter : - 1, glob_max_iter : 50000, glob_max_hours : 0.0, glob_max_minutes : 15.0, omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"), omniout_str(ALWAYS, "##############temp/sing2postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : -2.0,"), omniout_str(ALWAYS, "x_end : 1.0,"), omniout_str(ALWAYS, "glob_h : 0.00001,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_adjust_h : false,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "arctan(x) "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_type_pole, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_fact_1, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_fact_2, 1 + max_terms, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_type_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp3 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp4 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_fact_1 : 0.0, term : 1 + term), ord : 1, term while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= max_terms do (term : 1, while term <= max_terms do (array_fact_2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term term : 1 + term), array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_0D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, iiif : 0, while iiif <= glob_max_terms do (jjjf : 0, 1 while jjjf <= glob_max_terms do (array_fact_1 : 0, iiif array_fact_2 : 0, jjjf : 1 + jjjf), iiif : 1 + iiif), iiif, jjjf x_start : - 2.0, x_end : 1.0, glob_h : 1.0E-5, array_y_init : exact_soln_y(x_start), glob_look_poles : true, 1 + 0 glob_adjust_h : false, glob_max_iter : 100, glob_h : 0.001, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), display_alot(current_iter), glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 0, glob_iter : 0, omniout_str(DEBUGL, " "), glob_reached_optimal_h : true, glob_optimal_clock_start_sec : elapsed_time_seconds(), while (glob_current_iter < glob_max_iter) and (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, factorial_1(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, factorial_1(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, factorial_1(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2012-06-18T00:49:19-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing2"), logitem_str(html_log_file, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), logitem_integer(html_log_file, glob_max_terms), logitem_float(html_log_file, array_1st_rel_error ), 1 logitem_float(html_log_file, array_last_rel_error ), 1 logitem_integer(html_log_file, glob_iter), logitem_pole(html_log_file, array_type_pole ), 1 if (array_type_pole = 1) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 092 "), logitem_str(html_log_file, "sing2 diffeq.max"), logitem_str(html_log_file, "sing2 maxima results"), logitem_str(html_log_file, "Mostly affecting speed of factorials"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%o48) mainprog() := (define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(INFO, 2, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_start, 0, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_initial_pass, true, boolean), define_variable(years_in_century, 100.0, float), define_variable(glob_warned, false, boolean), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_h, 0.1, float), define_variable(days_in_year, 365.0, float), define_variable(glob_warned2, false, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_orig_start_sec, 0.0, float), define_variable(hours_in_day, 24.0, float), define_variable(djd_debug, true, boolean), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(min_in_hour, 60.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(djd_debug2, true, boolean), define_variable(glob_dump, false, boolean), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_almost_1, 0.999, float), define_variable(sec_in_min, 60.0, float), define_variable(glob_percent_done, 0.0, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, glob_orig_start_sec : elapsed_time_seconds(), MAX_UNCHANGED : 10, glob_curr_iter_when_opt : 0, glob_display_flag : true, glob_no_eqs : 1, glob_iter : - 1, opt_iter : - 1, glob_max_iter : 50000, glob_max_hours : 0.0, glob_max_minutes : 15.0, omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"), omniout_str(ALWAYS, "##############temp/sing2postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : -2.0,"), omniout_str(ALWAYS, "x_end : 1.0,"), omniout_str(ALWAYS, "glob_h : 0.00001,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_adjust_h : false,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 1000,"), omniout_str(ALWAYS, "glob_max_minutes : 15,"), omniout_str(ALWAYS, "/* END OVERRIDE BLOCK */"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN USER DEF BLOCK */"), omniout_str(ALWAYS, "exact_soln_y (x) := ("), omniout_str(ALWAYS, "arctan(x) "), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_type_pole, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_tmp3, 1 + max_terms), array(array_tmp4, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_fact_1, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_fact_2, 1 + max_terms, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_type_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp3 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp4 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_y_init : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_fact_1 : 0.0, term : 1 + term), ord : 1, term while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= max_terms do (term : 1, while term <= max_terms do (array_fact_2 : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work2 : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term term : 1 + term), array(array_tmp3, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp3 : 0.0, term : 1 + term), term array(array_tmp2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp2 : 0.0, term : 1 + term), term array(array_tmp1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1 : 0.0, term : 1 + term), term array(array_tmp0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp0 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_0D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, iiif : 0, while iiif <= glob_max_terms do (jjjf : 0, 1 while jjjf <= glob_max_terms do (array_fact_1 : 0, iiif array_fact_2 : 0, jjjf : 1 + jjjf), iiif : 1 + iiif), iiif, jjjf x_start : - 2.0, x_end : 1.0, glob_h : 1.0E-5, array_y_init : exact_soln_y(x_start), glob_look_poles : true, 1 + 0 glob_adjust_h : false, glob_max_iter : 100, glob_h : 0.001, glob_look_poles : true, glob_max_iter : 1000, glob_max_minutes : 15, glob_last_good_h : glob_h, glob_max_terms : max_terms, glob_max_sec : convfloat(3600.0) convfloat(glob_max_hours) + convfloat(60.0) convfloat(glob_max_minutes), glob_log10_abserr glob_log10_relerr glob_abserr : 10.0 , glob_relerr : 10.0 , chk_data(), array_y_set_initial : true, array_y_set_initial : false, 1, 1 1, 2 array_y_set_initial : false, array_y_set_initial : false, 1, 3 1, 4 array_y_set_initial : false, array_y_set_initial : false, 1, 5 1, 6 array_y_set_initial : false, array_y_set_initial : false, 1, 7 1, 8 array_y_set_initial : false, array_y_set_initial : false, 1, 9 1, 10 array_y_set_initial : false, array_y_set_initial : false, 1, 11 1, 12 array_y_set_initial : false, array_y_set_initial : false, 1, 13 1, 14 array_y_set_initial : false, array_y_set_initial : false, 1, 15 1, 16 array_y_set_initial : false, array_y_set_initial : false, 1, 17 1, 18 array_y_set_initial : false, array_y_set_initial : false, 1, 19 1, 20 array_y_set_initial : false, array_y_set_initial : false, 1, 21 1, 22 array_y_set_initial : false, array_y_set_initial : false, 1, 23 1, 24 array_y_set_initial : false, array_y_set_initial : false, 1, 25 1, 26 array_y_set_initial : false, array_y_set_initial : false, 1, 27 1, 28 array_y_set_initial : false, array_y_set_initial : false, 1, 29 1, 30 if glob_html_log then html_log_file : openw("html/entry.html"), omniout_str(ALWAYS, "START of Soultion"), array_x : x_start, 1 array_x : glob_h, order_diff : 1, term_no : 1, 2 while term_no <= order_diff do (array_y : term_no term_no - 1 array_y_init glob_h term_no -------------------------------------, term_no : 1 + term_no), factorial_1(term_no - 1) rows : order_diff, r_order : 1, while r_order <= rows do (term_no : 1, while term_no <= 1 - r_order + rows do (it : - 1 + r_order + term_no, term_no - 1 array_y_init glob_h it array_y_higher : --------------------------------, r_order, term_no factorial_1(term_no - 1) term_no : 1 + term_no), r_order : 1 + r_order), current_iter : 1, glob_clock_start_sec : elapsed_time_seconds(), start_array_y(), if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, log10norm : log10(tmp), ! 1, 1! if log10norm < glob_log10normmin then glob_log10normmin : log10norm), display_alot(current_iter), glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 0, glob_iter : 0, omniout_str(DEBUGL, " "), glob_reached_optimal_h : true, glob_optimal_clock_start_sec : elapsed_time_seconds(), while (glob_current_iter < glob_max_iter) and (array_x <= x_end) and (convfloat(glob_clock_sec) - convfloat(glob_orig_start_sec) < 1 convfloat(glob_max_sec)) do (omniout_str (INFO, " "), omniout_str(INFO, "TOP MAIN SOLVE Loop"), glob_iter : 1 + glob_iter, glob_clock_sec : elapsed_time_seconds(), glob_current_iter : 1 + glob_current_iter, atomall(), if glob_look_poles then check_for_pole(), array_x : glob_h + array_x , 1 1 array_x : glob_h, order_diff : 1, ord : 2, calc_term : 1, 2 iii : glob_max_terms, while iii >= calc_term do (array_y_higher_work : 2, iii array_y_higher 2, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 2, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 2, iii : glob_max_terms, factorial_1(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 2, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, ord : 1, calc_term : 1, iii : glob_max_terms, factorial_1(calc_term - 1)! while iii >= calc_term do (array_y_higher_work : 1, iii array_y_higher 1, iii -------------------- calc_term - 1 glob_h -------------------------------------, iii : iii - 1), temp_sum : 0.0, factorial_3(iii - calc_term, iii - 1) ord : 1, calc_term : 1, iii : glob_max_terms, while iii >= calc_term do (temp_sum : array_y_higher_work + temp_sum, ord, iii iii : iii - 1), array_y_higher_work2 : ord, calc_term calc_term - 1 temp_sum glob_h ----------------------------, term_no : glob_max_terms, factorial_1(calc_term - 1)! while term_no >= 1 do (array_y : array_y_higher_work2 , term_no 1, term_no ord : 1, while ord <= order_diff do (array_y_higher : ord, term_no array_y_higher_work2 , ord : 1 + ord), term_no : term_no - 1), ord, term_no display_alot(current_iter)), omniout_str(ALWAYS, "Finished!"), if glob_iter >= glob_max_iter then omniout_str(ALWAYS, "Maximum Iterations Reached before Solution Completed!"), if elapsed_time_seconds() - convfloat(glob_orig_start_sec) >= convfloat(glob_max_sec) then omniout_str(ALWAYS, "Maximum Time Reached before Solution Completed!"), glob_clock_sec : elapsed_time_seconds(), omniout_str(INFO, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2012-06-18T00:49:19-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing2"), logitem_str(html_log_file, "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), logitem_integer(html_log_file, glob_max_terms), logitem_float(html_log_file, array_1st_rel_error ), 1 logitem_float(html_log_file, array_last_rel_error ), 1 logitem_integer(html_log_file, glob_iter), logitem_pole(html_log_file, array_type_pole ), 1 if (array_type_pole = 1) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 092 "), logitem_str(html_log_file, "sing2 diffeq.max"), logitem_str(html_log_file, "sing2 maxima results"), logitem_str(html_log_file, "Mostly affecting speed of factorials"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%i49) mainprog() "##############ECHO OF PROBLEM#################" "##############temp/sing2postode.ode#################" "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 32," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : -2.0," "x_end : 1.0," "glob_h : 0.00001," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_look_poles : true," "glob_adjust_h : false," "glob_max_iter : 100," "/* END SECOND INPUT BLOCK */" "/* BEGIN OVERRIDE BLOCK */" "glob_h : 0.001 ," "glob_look_poles : true," "glob_max_iter : 1000," "glob_max_minutes : 15," "/* END OVERRIDE BLOCK */" "!" "/* BEGIN USER DEF BLOCK */" "exact_soln_y (x) := (" "arctan(x) " ");" "" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = -2. " " y[1] (analytic) = -1.1071487177940906 " " y[1] (numeric) = -1.1071487177940906 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.243797808043561 " " Order of pole = 2.1818134489421936 " " x[1] = -1.999 " " y[1] (analytic) = -1.1069486377647475 " " y[1] (numeric) = -1.1069486377647477 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.00591605924376220000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2428999321539482 " " Order of pole = 2.1817931899862693 " " x[1] = -1.9980000000000002 " " y[1] (analytic) = -1.1067483975592705 " " y[1] (numeric) = -1.1067483975592702 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.006278982781540300000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.24200204397892 " " Order of pole = 2.1817716888804277 " " x[1] = -1.9970000000000003 " " y[1] (analytic) = -1.1065479970013126 " " y[1] (numeric) = -1.1065479970013123 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.00664232845534600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2411041438369925 " " Order of pole = 2.1817489480425714 " " x[1] = -1.9960000000000004 " " y[1] (analytic) = -1.106347435914297 " " y[1] (numeric) = -1.1063474359142969 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.007006096972885600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.240206232056638 " " Order of pole = 2.181724970013658 " " x[1] = -1.9950000000000006 " " y[1] (analytic) = -1.1061467141214156 " " y[1] (numeric) = -1.1061467141214156 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.239308308976153 " " Order of pole = 2.1816997574559913 " " x[1] = -1.9940000000000007 " " y[1] (analytic) = -1.1059458314456285 " " y[1] (numeric) = -1.1059458314456285 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.238410374943555 " " Order of pole = 2.1816733131515598 " " x[1] = -1.9930000000000008 " " y[1] (analytic) = -1.1057447877096636 " " y[1] (numeric) = -1.1057447877096636 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.237512430316653 " " Order of pole = 2.181645640003694 " " x[1] = -1.9920000000000009 " " y[1] (analytic) = -1.1055435827360163 " " y[1] (numeric) = -1.1055435827360163 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2366144754638766 " " Order of pole = 2.1816167410483303 " " x[1] = -1.991000000000001 " " y[1] (analytic) = -1.1053422163469497 " " y[1] (numeric) = -1.10534221634695 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.008831307093901500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2357165107623467 " " Order of pole = 2.1815866194270868 " " x[1] = -1.990000000000001 " " y[1] (analytic) = -1.1051406883644945 " " y[1] (numeric) = -1.1051406883644945 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.234818536600195 " " Order of pole = 2.18155527842028 " " x[1] = -1.9890000000000012 " " y[1] (analytic) = -1.104938998610447 " " y[1] (numeric) = -1.104938998610447 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2339205533747784 " " Order of pole = 2.181522721421441 " " x[1] = -1.9880000000000013 " " y[1] (analytic) = -1.1047371469063707 " " y[1] (numeric) = -1.1047371469063707 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2330225614937187 " " Order of pole = 2.1814889519524776 " " x[1] = -1.9870000000000014 " " y[1] (analytic) = -1.1045351330735953 " " y[1] (numeric) = -1.104535133073595 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.010299159132645500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2321245613740164 " " Order of pole = 2.181453973651017 " " x[1] = -1.9860000000000015 " " y[1] (analytic) = -1.1043329569332156 " " y[1] (numeric) = -1.1043329569332154 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.010667195350753500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.231226553442698 " " Order of pole = 2.1814177902798946 " " x[1] = -1.9850000000000017 " " y[1] (analytic) = -1.1041306183060926 " " y[1] (numeric) = -1.1041306183060926 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.230328538137466 " " Order of pole = 2.18138040573605 " " x[1] = -1.9840000000000018 " " y[1] (analytic) = -1.1039281170128525 " " y[1] (numeric) = -1.1039281170128523 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.011404560705161700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2294305159047108 " " Order of pole = 2.181341824023118 " " x[1] = -1.9830000000000019 " " y[1] (analytic) = -1.1037254528738856 " " y[1] (numeric) = -1.1037254528738853 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.011773891295797500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2285324872015693 " " Order of pole = 2.1813020492801165 " " x[1] = -1.982000000000002 " " y[1] (analytic) = -1.1035226257093471 " " y[1] (numeric) = -1.103522625709347 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.012143654800919700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2276344524942244 " " Order of pole = 2.1812610857578747 " " x[1] = -1.981000000000002 " " y[1] (analytic) = -1.1033196353391566 " " y[1] (numeric) = -1.1033196353391563 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.012513851951665500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.226736412259509 " " Order of pole = 2.1812189378415496 " " x[1] = -1.9800000000000022 " " y[1] (analytic) = -1.1031164815829972 " " y[1] (numeric) = -1.1031164815829972 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2258383669838566 " " Order of pole = 2.181175610036238 " " x[1] = -1.9790000000000023 " " y[1] (analytic) = -1.1029131642603165 " " y[1] (numeric) = -1.1029131642603163 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.013255550122556600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2249403171630853 " " Order of pole = 2.181131106963811 " " x[1] = -1.9780000000000024 " " y[1] (analytic) = -1.1027096831903238 " " y[1] (numeric) = -1.1027096831903236 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.013627052612969600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.224042263303468 " " Order of pole = 2.181085433378133 " " x[1] = -1.9770000000000025 " " y[1] (analytic) = -1.1025060381919922 " " y[1] (numeric) = -1.1025060381919922 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2231442059207382 " " Order of pole = 2.1810385941514454 " " x[1] = -1.9760000000000026 " " y[1] (analytic) = -1.1023022290840578 " " y[1] (numeric) = -1.1023022290840578 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.222246145540586 " " Order of pole = 2.1809905942811447 " " x[1] = -1.9750000000000028 " " y[1] (analytic) = -1.1020982556850183 " " y[1] (numeric) = -1.1020982556850183 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.221348082698077 " " Order of pole = 2.180941438881888 " " x[1] = -1.9740000000000029 " " y[1] (analytic) = -1.1018941178131336 " " y[1] (numeric) = -1.1018941178131334 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.015117435835945500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.220450017938579 " " Order of pole = 2.180891133198834 " " x[1] = -1.973000000000003 " " y[1] (analytic) = -1.1016898152864247 " " y[1] (numeric) = -1.1016898152864245 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.01549112866494700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2195519518169045 " " Order of pole = 2.180839682595561 " " x[1] = -1.972000000000003 " " y[1] (analytic) = -1.1014853479226747 " " y[1] (numeric) = -1.1014853479226745 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.015865261792107200000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2186538848978263 " " Order of pole = 2.180787092561598 " " x[1] = -1.9710000000000032 " " y[1] (analytic) = -1.1012807155394273 " " y[1] (numeric) = -1.101280715539427 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.016239835964710000000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2177558177555015 " " Order of pole = 2.1807333687043524 " " x[1] = -1.9700000000000033 " " y[1] (analytic) = -1.101075917953987 " " y[1] (numeric) = -1.1010759179539866 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.033229703863350000000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2168577509739085 " " Order of pole = 2.1806785167554636 " " x[1] = -1.9690000000000034 " " y[1] (analytic) = -1.1008709549834184 " " y[1] (numeric) = -1.100870954983418 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.033980620887137600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.21595968514704 " " Order of pole = 2.180622542573598 " " x[1] = -1.9680000000000035 " " y[1] (analytic) = -1.1006658264445461 " " y[1] (numeric) = -1.1006658264445457 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.034732424505202400000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.215061620877884 " " Order of pole = 2.1805654521304163 " " x[1] = -1.9670000000000036 " " y[1] (analytic) = -1.1004605321539547 " " y[1] (numeric) = -1.1004605321539542 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.03548511622527200000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.214163558779621 " " Order of pole = 2.180507251527228 " " x[1] = -1.9660000000000037 " " y[1] (analytic) = -1.1002550719279875 " " y[1] (numeric) = -1.1002550719279873 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 2.01811934877919180000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2132654994747565 " " Order of pole = 2.1804479469833 " " x[1] = -1.9650000000000039 " " y[1] (analytic) = -1.100049445582748 " " y[1] (numeric) = -1.1000494455827476 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.036993170018895500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2123674435953036 " " Order of pole = 2.1803875448384034 " " x[1] = -1.964000000000004 " " y[1] (analytic) = -1.0998436529340971 " " y[1] (numeric) = -1.0998436529340967 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.03774853512449700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2114693917832127 " " Order of pole = 2.180326051558957 " " x[1] = -1.963000000000004 " " y[1] (analytic) = -1.0996376937976549 " " y[1] (numeric) = -1.0996376937976544 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.03850479439621500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.21057134468917 " " Order of pole = 2.180263473721446 " " x[1] = -1.9620000000000042 " " y[1] (analytic) = -1.0994315679887992 " " y[1] (numeric) = -1.0994315679887987 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 4.03926194935842500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2096733029744846 " " Order of pole = 2.1801998180388082 " " x[1] = -1.9610000000000043 " " y[1] (analytic) = -1.099225275322666 " " y[1] (numeric) = -1.0992252753226652 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.06003000230828400000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2087752673091203 " " Order of pole = 2.1801350913332485 " " x[1] = -1.9600000000000044 " " y[1] (analytic) = -1.0990188156141474 " " y[1] (numeric) = -1.0990188156141467 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.06116842870291400000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2078772383723084 " " Order of pole = 2.1800693005449183 " " x[1] = -1.9590000000000045 " " y[1] (analytic) = -1.0988121886778943 " " y[1] (numeric) = -1.0988121886778934 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 8.08307760736430700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2069792168538473 " " Order of pole = 2.1800024527500277 " " x[1] = -1.9580000000000046 " " y[1] (analytic) = -1.098605394328313 " " y[1] (numeric) = -1.0986053943283123 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.0634493350760210000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2060812034512596 " " Order of pole = 2.179934555121662 " " x[1] = -1.9570000000000047 " " y[1] (analytic) = -1.098398432379567 " " y[1] (numeric) = -1.0983984323795664 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.06459181967315500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2051831988727395 " " Order of pole = 2.179865614970705 " " x[1] = -1.9560000000000048 " " y[1] (analytic) = -1.0981913026455756 " " y[1] (numeric) = -1.098191302645575 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 6.06573566163160800000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2042852038349787 " " Order of pole = 2.179795639715916 " " x[1] = -1.955000000000005 " " y[1] (analytic) = -1.0979840049400142 " " y[1] (numeric) = -1.0979840049400131 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01114681054557900000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2033872190645423 " " Order of pole = 2.17972463690311 " " x[1] = -1.954000000000005 " " y[1] (analytic) = -1.0977765390763126 " " y[1] (numeric) = -1.0977765390763115 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01133790448766250000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.202489245296733 " " Order of pole = 2.1796526141896067 " " x[1] = -1.9530000000000052 " " y[1] (analytic) = -1.0975689048676565 " " y[1] (numeric) = -1.0975689048676553 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01152922582024670000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2015912832762 " " Order of pole = 2.179579579352808 " " x[1] = -1.9520000000000053 " " y[1] (analytic) = -1.0973611021269865 " " y[1] (numeric) = -1.0973611021269853 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01172077493291880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.200693333756553 " " Order of pole = 2.179505540285014 " " x[1] = -1.9510000000000054 " " y[1] (analytic) = -1.097153130666997 " " y[1] (numeric) = -1.097153130666996 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01191255221612860000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.199795397501121 " " Order of pole = 2.179430505004028 " " x[1] = -1.9500000000000055 " " y[1] (analytic) = -1.0969449903001374 " " y[1] (numeric) = -1.0969449903001363 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01210455806118970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.198897475281599 " " Order of pole = 2.1793544816347037 " " x[1] = -1.9490000000000056 " " y[1] (analytic) = -1.0967366808386099 " " y[1] (numeric) = -1.0967366808386088 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.0122967928602830000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.197999567879003 " " Order of pole = 2.1792774784221614 " " x[1] = -1.9480000000000057 " " y[1] (analytic) = -1.0965282020943707 " " y[1] (numeric) = -1.0965282020943696 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01248925700645800000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.197101676083373 " " Order of pole = 2.1791995037279754 " " x[1] = -1.9470000000000058 " " y[1] (analytic) = -1.096319553879129 " " y[1] (numeric) = -1.096319553879128 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01268195089363550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1962038006933327 " " Order of pole = 2.179120566024203 " " x[1] = -1.946000000000006 " " y[1] (analytic) = -1.0961107360043472 " " y[1] (numeric) = -1.0961107360043458 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.21544984989993220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1953059425168293 " " Order of pole = 2.1790406739036854 " " x[1] = -1.945000000000006 " " y[1] (analytic) = -1.0959017482812388 " " y[1] (numeric) = -1.0959017482812377 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.0130680294710530000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1944081023705366 " " Order of pole = 2.1789598360720923 " " x[1] = -1.9440000000000062 " " y[1] (analytic) = -1.095692590520771 " " y[1] (numeric) = -1.0956925905207697 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.21591369794421550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1935102810800173 " " Order of pole = 2.178878061350172 " " x[1] = -1.9430000000000063 " " y[1] (analytic) = -1.0954832625336617 " " y[1] (numeric) = -1.0954832625336606 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01345503176142030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1926124794787833 " " Order of pole = 2.1787953586611515 " " x[1] = -1.9420000000000064 " " y[1] (analytic) = -1.095273764130381 " " y[1] (numeric) = -1.0952737641303798 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.01364888029308820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1917146984102995 " " Order of pole = 2.178711737058318 " " x[1] = -1.9410000000000065 " " y[1] (analytic) = -1.0950640951211499 " " y[1] (numeric) = -1.0950640951211483 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.41938014532680070000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.190816938725589 " " Order of pole = 2.178627205692294 " " x[1] = -1.9400000000000066 " " y[1] (analytic) = -1.0948542553159393 " " y[1] (numeric) = -1.094854255315938 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.21684472895046550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.189919201284855 " " Order of pole = 2.178541773833498 " " x[1] = -1.9390000000000067 " " y[1] (analytic) = -1.094644244524472 " " y[1] (numeric) = -1.0946442445244706 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.2170781842725009000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.189021486956641 " " Order of pole = 2.1784554508607954 " " x[1] = -1.9380000000000068 " " y[1] (analytic) = -1.09443406255622 " " y[1] (numeric) = -1.0944340625562186 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.4201972395165430000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1881237966181493 " " Order of pole = 2.1783682462658938 " " x[1] = -1.937000000000007 " " y[1] (analytic) = -1.0942237092204048 " " y[1] (numeric) = -1.0942237092204037 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 1.0146216128109220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.187226131154364 " " Order of pole = 2.178280169641681 " " x[1] = -1.936000000000007 " " y[1] (analytic) = -1.0940131843259988 " " y[1] (numeric) = -1.0940131843259975 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 1.217780232119390100000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1863284914592582 " " Order of pole = 2.178191230698797 " " x[1] = -1.9350000000000072 " " y[1] (analytic) = -1.0938024876817218 " " y[1] (numeric) = -1.0938024876817203 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42101727869492460000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.185430878435276 " " Order of pole = 2.178101439258672 " " x[1] = -1.9340000000000073 " " y[1] (analytic) = -1.0935916190960433 " " y[1] (numeric) = -1.0935916190960415 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.62433289390840170000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.184533292992477 " " Order of pole = 2.17801080524206 " " x[1] = -1.9330000000000074 " " y[1] (analytic) = -1.0933805783771806 " " y[1] (numeric) = -1.093380578377179 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42156561513298800000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1836357360492604 " " Order of pole = 2.177919338679036 " " x[1] = -1.9320000000000075 " " y[1] (analytic) = -1.0931693653331 " " y[1] (numeric) = -1.0931693653330985 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42184027815452400000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1827382085325158 " " Order of pole = 2.1778270497112935 " " x[1] = -1.9310000000000076 " " y[1] (analytic) = -1.0929579797715152 " " y[1] (numeric) = -1.0929579797715137 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42211527180592130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1818407113766347 " " Order of pole = 2.177733948578691 " " x[1] = -1.9300000000000077 " " y[1] (analytic) = -1.0927464214998868 " " y[1] (numeric) = -1.0927464214998852 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42239059665992260000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.18094324552487 " " Order of pole = 2.177640045638043 " " x[1] = -1.9290000000000078 " " y[1] (analytic) = -1.0925346903254232 " " y[1] (numeric) = -1.0925346903254216 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42266625329054820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1800458119276027 " " Order of pole = 2.177545351339642 " " x[1] = -1.928000000000008 " " y[1] (analytic) = -1.0923227860550795 " " y[1] (numeric) = -1.0923227860550775 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.82949716863684830000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1791484115428563 " " Order of pole = 2.1774498762342986 " " x[1] = -1.927000000000008 " " y[1] (analytic) = -1.092110708495556 " " y[1] (numeric) = -1.0921107084955541 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.6265355019247840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.178251045337146 " " Order of pole = 2.17735363098528 " " x[1] = -1.9260000000000081 " " y[1] (analytic) = -1.0918984574533006 " " y[1] (numeric) = -1.091898457453299 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42349521960167760000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1773537142849424 " " Order of pole = 2.177256626360972 " " x[1] = -1.9250000000000083 " " y[1] (analytic) = -1.091686032734507 " " y[1] (numeric) = -1.091686032734505 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83056426884897570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1764564193675295 " " Order of pole = 2.177158873219593 " " x[1] = -1.9240000000000084 " " y[1] (analytic) = -1.0914734341451127 " " y[1] (numeric) = -1.0914734341451107 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83092082849502680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1755591615740246 " " Order of pole = 2.1770603825231376 " " x[1] = -1.9230000000000085 " " y[1] (analytic) = -1.0912606614908014 " " y[1] (numeric) = -1.0912606614907996 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.6278025059324690000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.174661941901704 " " Order of pole = 2.1769611653420817 " " x[1] = -1.9220000000000086 " " y[1] (analytic) = -1.0910477145770017 " " y[1] (numeric) = -1.091047714577 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.6281202147872540000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1737647613543314 " " Order of pole = 2.1768612328326746 " " x[1] = -1.9210000000000087 " " y[1] (analytic) = -1.0908345932088863 " " y[1] (numeric) = -1.0908345932088843 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83199309663129060000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.172867620943583 " " Order of pole = 2.1767605962565533 " " x[1] = -1.9200000000000088 " " y[1] (analytic) = -1.0906212971913716 " " y[1] (numeric) = -1.0906212971913696 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83235138491397140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1719705216886465 " " Order of pole = 2.176659266975438 " " x[1] = -1.919000000000009 " " y[1] (analytic) = -1.0904078263291181 " " y[1] (numeric) = -1.090407826329116 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.03634456359827630000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1710734646153793 " " Order of pole = 2.1765572564397786 " " x[1] = -1.918000000000009 " " y[1] (analytic) = -1.0901941804265292 " " y[1] (numeric) = -1.0901941804265272 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83306926436116570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1701764507572636 " " Order of pole = 2.176454576201941 " " x[1] = -1.9170000000000091 " " y[1] (analytic) = -1.089980359287752 " " y[1] (numeric) = -1.08998035928775 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8334288570402660000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1692794811544944 " " Order of pole = 2.176351237903969 " " x[1] = -1.9160000000000093 " " y[1] (analytic) = -1.0897663627166758 " " y[1] (numeric) = -1.0897663627166738 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8337888860356010000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.168382556854532 " " Order of pole = 2.1762472532851795 " " x[1] = -1.9150000000000094 " " y[1] (analytic) = -1.0895521905169323 " " y[1] (numeric) = -1.0895521905169303 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83414935210873240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1674856789114143 " " Order of pole = 2.1761426341730505 " " x[1] = -1.9140000000000095 " " y[1] (analytic) = -1.0893378424918954 " " y[1] (numeric) = -1.0893378424918934 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8345102560229380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.166588848386827 " " Order of pole = 2.1760373924978857 " " x[1] = -1.9130000000000096 " " y[1] (analytic) = -1.0891233184446807 " " y[1] (numeric) = -1.0891233184446785 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.03874622060357170000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.165692066348068 " " Order of pole = 2.1759315402652213 " " x[1] = -1.9120000000000097 " " y[1] (analytic) = -1.0889086181781442 " " y[1] (numeric) = -1.0889086181781422 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8352333804362870000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.164795333869751 " " Order of pole = 2.1758250895792735 " " x[1] = -1.9110000000000098 " " y[1] (analytic) = -1.088693741494884 " " y[1] (numeric) = -1.0886937414948823 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.6316405355294292000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1638986520332253 " " Order of pole = 2.1757180526350552 " " x[1] = -1.91000000000001 " " y[1] (analytic) = -1.0884786881972386 " " y[1] (numeric) = -1.0884786881972368 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.6319629025923238000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1630020219261645 " " Order of pole = 2.175610441713072 " " x[1] = -1.90900000000001 " " y[1] (analytic) = -1.0882634580872865 " " y[1] (numeric) = -1.0882634580872848 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63228566226265220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.162105444642434 " " Order of pole = 2.1755022691775174 " " x[1] = -1.9080000000000101 " " y[1] (analytic) = -1.0880480509668462 " " y[1] (numeric) = -1.0880480509668444 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63260881522812230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.161208921282822 " " Order of pole = 2.1753935474865003 " " x[1] = -1.9070000000000102 " " y[1] (analytic) = -1.0878324666374757 " " y[1] (numeric) = -1.087832466637474 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63293236217799730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1603124529536912 " " Order of pole = 2.1752842891737743 " " x[1] = -1.9060000000000104 " " y[1] (analytic) = -1.0876167049004724 " " y[1] (numeric) = -1.0876167049004706 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63325630380309840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.159416040767828 " " Order of pole = 2.1751745068604187 " " x[1] = -1.9050000000000105 " " y[1] (analytic) = -1.0874007655568727 " " y[1] (numeric) = -1.0874007655568707 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83777822089528610000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1585196858442592 " " Order of pole = 2.1750642132525932 " " x[1] = -1.9040000000000106 " " y[1] (analytic) = -1.0871846484074512 " " y[1] (numeric) = -1.0871846484074492 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83814354558134630000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1576233893080206 " " Order of pole = 2.174953421138408 " " x[1] = -1.9030000000000107 " " y[1] (analytic) = -1.0869683532527208 " " y[1] (numeric) = -1.0869683532527192 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 1.42995169070376850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1567271522897022 " " Order of pole = 2.17484214338198 " " x[1] = -1.9020000000000108 " " y[1] (analytic) = -1.0867518798929332 " " y[1] (numeric) = -1.0867518798929314 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63455603092700160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.155830975926202 " " Order of pole = 2.1747303929337605 " " x[1] = -1.901000000000011 " " y[1] (analytic) = -1.0865352281280762 " " y[1] (numeric) = -1.0865352281280745 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63488195634542370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1549348613593438 " " Order of pole = 2.1746181828119404 " " x[1] = -1.900000000000011 " " y[1] (analytic) = -1.0863183977578759 " " y[1] (numeric) = -1.0863183977578739 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83960931569410430000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1540388097377625 " " Order of pole = 2.1745055261281827 " " x[1] = -1.8990000000000111 " " y[1] (analytic) = -1.086101388581794 " " y[1] (numeric) = -1.086101388581792 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.83997687999897320000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.153142822214421 " " Order of pole = 2.1743924360539992 " " x[1] = -1.8980000000000112 " " y[1] (analytic) = -1.08588420039903 " " y[1] (numeric) = -1.085884200399028 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8403448945945880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1522468999487123 " " Order of pole = 2.17427892584951 " " x[1] = -1.8970000000000113 " " y[1] (analytic) = -1.085666833008519 " " y[1] (numeric) = -1.085666833008517 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8407133602741280000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.151351044104358 " " Order of pole = 2.1741650088350006 " " x[1] = -1.8960000000000115 " " y[1] (analytic) = -1.0854492862089318 " " y[1] (numeric) = -1.0854492862089298 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8410822778325740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.150455255851428 " " Order of pole = 2.174050698418494 " " x[1] = -1.8950000000000116 " " y[1] (analytic) = -1.0852315597986748 " " y[1] (numeric) = -1.0852315597986726 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.04605738674079470000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.149559536364223 " " Order of pole = 2.1739360080670913 " " x[1] = -1.8940000000000117 " " y[1] (analytic) = -1.085013653575889 " " y[1] (numeric) = -1.085013653575887 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8418214717751550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1486638868225945 " " Order of pole = 2.1738209513251086 " " x[1] = -1.8930000000000118 " " y[1] (analytic) = -1.084795567338451 " " y[1] (numeric) = -1.084795567338449 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.8421917497583120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1477683084110915 " " Order of pole = 2.173705541802555 " " x[1] = -1.892000000000012 " " y[1] (analytic) = -1.0845773008839714 " " y[1] (numeric) = -1.0845773008839694 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.842562482818430000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1468728023195927 " " Order of pole = 2.173589793183883 " " x[1] = -1.891000000000012 " " y[1] (analytic) = -1.0843588540097948 " " y[1] (numeric) = -1.0843588540097928 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 1.84293367175958040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1459773697418156 " " Order of pole = 2.1734737192078875 " " x[1] = -1.8900000000000121 " " y[1] (analytic) = -1.0841402265129991 " " y[1] (numeric) = -1.0841402265129974 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63849361545570450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.145082011877076 " " Order of pole = 2.17335733369168 " " x[1] = -1.8890000000000122 " " y[1] (analytic) = -1.0839214181903971 " " y[1] (numeric) = -1.083921418190395 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.04853046723381450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1441867299290167 " " Order of pole = 2.1732406505135984 " " x[1] = -1.8880000000000123 " " y[1] (analytic) = -1.083702428838532 " " y[1] (numeric) = -1.0837024288385302 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 1.63915553949996880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.143291525104997 " " Order of pole = 2.173123683605013 " " x[1] = -1.8870000000000124 " " y[1] (analytic) = -1.0834832582536826 " " y[1] (numeric) = -1.0834832582536804 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.0493588916446610000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1423963986177896 " " Order of pole = 2.173006446973556 " " x[1] = -1.8860000000000126 " " y[1] (analytic) = -1.0832639062318576 " " y[1] (numeric) = -1.0832639062318554 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.049773869946570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1415013516836217 " " Order of pole = 2.1728889546765586 " " x[1] = -1.8850000000000127 " " y[1] (analytic) = -1.083044372568799 " " y[1] (numeric) = -1.0830443725687968 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.05018936018640550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1406063855233946 " " Order of pole = 2.172771220837795 " " x[1] = -1.8840000000000128 " " y[1] (analytic) = -1.08282465705998 " " y[1] (numeric) = -1.0828246570599778 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 2.05060536327195730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1397115013618278 " " Order of pole = 2.172653259635979 " " x[1] = -1.8830000000000129 " " y[1] (analytic) = -1.0826047595006052 " " y[1] (numeric) = -1.0826047595006028 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25612406812440100000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.138816700426945 " " Order of pole = 2.172535085297884 " " x[1] = -1.882000000000013 " " y[1] (analytic) = -1.0823846796856098 " " y[1] (numeric) = -1.0823846796856074 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25658280278393440000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1379219839519235 " " Order of pole = 2.1724167121235887 " " x[1] = -1.881000000000013 " " y[1] (analytic) = -1.0821644174096599 " " y[1] (numeric) = -1.0821644174096574 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25704210458319370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1370273531724173 " " Order of pole = 2.172298154450271 " " x[1] = -1.8800000000000132 " " y[1] (analytic) = -1.0819439724671516 " " y[1] (numeric) = -1.0819439724671491 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25750197452992380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1361328093284193 " " Order of pole = 2.172179426677552 " " x[1] = -1.8790000000000133 " " y[1] (analytic) = -1.081723344652211 " " y[1] (numeric) = -1.0817233446522085 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25796241363418030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1352383536624777 " " Order of pole = 2.172060543243454 " " x[1] = -1.8780000000000134 " " y[1] (analytic) = -1.0815025337586937 " " y[1] (numeric) = -1.0815025337586912 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25842342290833360000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1343439874223185 " " Order of pole = 2.1719415186600983 " " x[1] = -1.8770000000000135 " " y[1] (analytic) = -1.0812815395801842 " " y[1] (numeric) = -1.0812815395801818 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25888500336707850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1334497118568256 " " Order of pole = 2.1718223674592316 " " x[1] = -1.8760000000000137 " " y[1] (analytic) = -1.081060361909996 " " y[1] (numeric) = -1.0810603619099937 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25934715602743970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.132555528219575 " " Order of pole = 2.1717031042403114 " " x[1] = -1.8750000000000138 " " y[1] (analytic) = -1.0808390005411712 " " y[1] (numeric) = -1.0808390005411688 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 2.25980988190877670000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1316614377663052 " " Order of pole = 2.1715837436363365 " " x[1] = -1.8740000000000139 " " y[1] (analytic) = -1.08061745526648 " " y[1] (numeric) = -1.0806174552664771 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.67123194240238950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.130767441756242 " " Order of pole = 2.1714643003318415 " " x[1] = -1.873000000000014 " " y[1] (analytic) = -1.0803957258784191 " " y[1] (numeric) = -1.0803957258784165 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.46625860809840450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129873541451049 " " Order of pole = 2.1713447890488666 " " x[1] = -1.872000000000014 " " y[1] (analytic) = -1.0801738121692148 " " y[1] (numeric) = -1.080173812169212 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.6723290562178610000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1289797381155986 " " Order of pole = 2.1712252245574106 " " x[1] = -1.8710000000000142 " " y[1] (analytic) = -1.0799517139308186 " " y[1] (numeric) = -1.079951713930816 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.4672725870325950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1280860330161557 " " Order of pole = 2.1711056216509768 " " x[1] = -1.8700000000000143 " " y[1] (analytic) = -1.0797294309549095 " " y[1] (numeric) = -1.0797294309549068 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 2.46778052233314480000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1271924274231364 " " Order of pole = 2.1709859951840897 " " x[1] = -1.8690000000000144 " " y[1] (analytic) = -1.079506963032893 " " y[1] (numeric) = -1.0795069630328902 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.6739798471660730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1262989226083753 " " Order of pole = 2.1708663600352764 " " x[1] = -1.8680000000000145 " " y[1] (analytic) = -1.0792843099559 " " y[1] (numeric) = -1.0792843099558969 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 2.88026467194492800000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1254055198456943 " " Order of pole = 2.170746731114921 " " x[1] = -1.8670000000000146 " " y[1] (analytic) = -1.0790614715147866 " " y[1] (numeric) = -1.0790614715147837 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 2.67508380219824370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.124512220411515 " " Order of pole = 2.1706271233736487 " " x[1] = -1.8660000000000148 " " y[1] (analytic) = -1.0788384475001358 " " y[1] (numeric) = -1.0788384475001327 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 2.88145502800135100000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1236190255842717 " " Order of pole = 2.1705075517944685 " " x[1] = -1.8650000000000149 " " y[1] (analytic) = -1.0786152377022542 " " y[1] (numeric) = -1.0786152377022509 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.08791212793424530000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12272593664428 " " Order of pole = 2.170388031391081 " " x[1] = -1.864000000000015 " " y[1] (analytic) = -1.0783918419111727 " " y[1] (numeric) = -1.0783918419111695 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 2.88264835483287740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1218329548731196 " " Order of pole = 2.170268577199572 " " x[1] = -1.863000000000015 " " y[1] (analytic) = -1.0781682599166476 " " y[1] (numeric) = -1.0781682599166444 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 2.8832461356177970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1209400815545623 " " Order of pole = 2.170149204291139 " " x[1] = -1.8620000000000152 " " y[1] (analytic) = -1.0779444915081582 " " y[1] (numeric) = -1.0779444915081549 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.08983356760375700000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1200473179738895 " " Order of pole = 2.1700299277628687 " " x[1] = -1.8610000000000153 " " y[1] (analytic) = -1.0777205364749074 " " y[1] (numeric) = -1.0777205364749038 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.2965073584112950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.119154665417648 " " Order of pole = 2.1699107627345455 " " x[1] = -1.8600000000000154 " " y[1] (analytic) = -1.077496394605821 " " y[1] (numeric) = -1.0774963946058176 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.091118532321330000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1182621251736173 " " Order of pole = 2.169791724348247 " " x[1] = -1.8590000000000155 " " y[1] (analytic) = -1.0772720656895485 " " y[1] (numeric) = -1.077272065689545 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.29787970184342750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.117369698530654 " " Order of pole = 2.169672827766359 " " x[1] = -1.8580000000000156 " " y[1] (analytic) = -1.0770475495144605 " " y[1] (numeric) = -1.077047549514457 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.2985671620552740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.116477386778874 " " Order of pole = 2.169554088174138 " " x[1] = -1.8570000000000157 " " y[1] (analytic) = -1.0768228458686504 " " y[1] (numeric) = -1.076822845868647 " " absolute error = 3.3306690738754696000000000000000E-15 " " relative error = 3.0930520156160773000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.115585191209324 " " Order of pole = 2.1694355207752594 " " x[1] = -1.8560000000000159 " " y[1] (analytic) = -1.0765979545399338 " " y[1] (numeric) = -1.0765979545399302 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.29994466719815970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1146931131134963 " " Order of pole = 2.1693171407853598 " " x[1] = -1.855000000000016 " " y[1] (analytic) = -1.0763728753158466 " " y[1] (numeric) = -1.0763728753158428 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.50692438493294700000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.11380115378419 " " Order of pole = 2.1691989634438116 " " x[1] = -1.854000000000016 " " y[1] (analytic) = -1.076147607983646 " " y[1] (numeric) = -1.0761476079836423 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 3.50765848078983640000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1129093145139612 " " Order of pole = 2.1690810039927158 " " x[1] = -1.8530000000000162 " " y[1] (analytic) = -1.0759221523303104 " " y[1] (numeric) = -1.0759221523303064 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7147695862511960000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1120175965965227 " " Order of pole = 2.168963277695987 " " x[1] = -1.8520000000000163 " " y[1] (analytic) = -1.075696508142537 " " y[1] (numeric) = -1.0756965081425334 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 3.3027100598617380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1111260013250965 " " Order of pole = 2.1688457998171096 " " x[1] = -1.8510000000000164 " " y[1] (analytic) = -1.0754706752067453 " " y[1] (numeric) = -1.0754706752067413 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.71632902764385500000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.110234529994111 " " Order of pole = 2.168728585642107 " " x[1] = -1.8500000000000165 " " y[1] (analytic) = -1.0752446533090718 " " y[1] (numeric) = -1.0752446533090678 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7171102189165780000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1093431838969767 " " Order of pole = 2.1686116504496056 " " x[1] = -1.8490000000000166 " " y[1] (analytic) = -1.075018442235374 " " y[1] (numeric) = -1.07501844223537 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.71789239293391470000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1084519643276267 " " Order of pole = 2.1684950095316005 " " x[1] = -1.8480000000000167 " " y[1] (analytic) = -1.0747920417712271 " " y[1] (numeric) = -1.0747920417712231 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.71867555147128200000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.107560872579595 " " Order of pole = 2.1683786781811705 " " x[1] = -1.8470000000000169 " " y[1] (analytic) = -1.0745654517019256 " " y[1] (numeric) = -1.0745654517019216 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7194596963082327000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.106669909946372 " " Order of pole = 2.1682626716972635 " " x[1] = -1.846000000000017 " " y[1] (analytic) = -1.0743386718124814 " " y[1] (numeric) = -1.0743386718124774 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.72024482922846730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1057790777203174 " " Order of pole = 2.1681470053700203 " " x[1] = -1.845000000000017 " " y[1] (analytic) = -1.0741117018876247 " " y[1] (numeric) = -1.0741117018876207 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7210309520198440000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.104888377193988 " " Order of pole = 2.1680316944988753 " " x[1] = -1.8440000000000172 " " y[1] (analytic) = -1.0738845417118028 " " y[1] (numeric) = -1.0738845417117988 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7218180664743950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1039978096584218 " " Order of pole = 2.1679167543692444 " " x[1] = -1.8430000000000173 " " y[1] (analytic) = -1.0736571910691801 " " y[1] (numeric) = -1.0736571910691761 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.72260617438833200000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1031073764047123 " " Order of pole = 2.16780220027405 " " x[1] = -1.8420000000000174 " " y[1] (analytic) = -1.073429649743638 " " y[1] (numeric) = -1.0734296497436338 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 3.9302505707599580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.10221707872194 " " Order of pole = 2.167688047485573 " " x[1] = -1.8410000000000175 " " y[1] (analytic) = -1.073201917518773 " " y[1] (numeric) = -1.073201917518769 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 3.7241853778002120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1013269178987986 " " Order of pole = 2.167574311277651 " " x[1] = -1.8400000000000176 " " y[1] (analytic) = -1.0729739941778993 " " y[1] (numeric) = -1.072973994177895 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 3.93191961451780400000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.100436895222217 " " Order of pole = 2.1674610069069793 " " x[1] = -1.8390000000000177 " " y[1] (analytic) = -1.0727458795040454 " " y[1] (numeric) = -1.072745879504041 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.13974286301034400000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.099547011978643 " " Order of pole = 2.167348149630577 " " x[1] = -1.8380000000000178 " " y[1] (analytic) = -1.072517573279955 " " y[1] (numeric) = -1.0725175732799508 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 3.93359288340011770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.098657269452052 " " Order of pole = 2.1672357546788064 " " x[1] = -1.837000000000018 " " y[1] (analytic) = -1.0722890752880878 " " y[1] (numeric) = -1.0722890752880834 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.14150642848572200000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0977676689250617 " " Order of pole = 2.167123837270509 " " x[1] = -1.836000000000018 " " y[1] (analytic) = -1.0720603853106168 " " y[1] (numeric) = -1.0720603853106123 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.1423898871274220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0968782116787845 " " Order of pole = 2.1670124126110473 " " x[1] = -1.8350000000000182 " " y[1] (analytic) = -1.0718315031294297 " " y[1] (numeric) = -1.0718315031294252 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.1432744657481520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.095988898992075 " " Order of pole = 2.16690149588214 " " x[1] = -1.8340000000000183 " " y[1] (analytic) = -1.0716024285261276 " " y[1] (numeric) = -1.0716024285261232 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.14416016638613770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0950997321419678 " " Order of pole = 2.1667911022477746 " " x[1] = -1.8330000000000184 " " y[1] (analytic) = -1.0713731612820259 " " y[1] (numeric) = -1.0713731612820212 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.35229934063860350000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.094210712403294 " " Order of pole = 2.166681246849116 " " x[1] = -1.8320000000000185 " " y[1] (analytic) = -1.0711437011781517 " " y[1] (numeric) = -1.071143701178147 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.35323168898523200000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0933218410484726 " " Order of pole = 2.166571944801561 " " x[1] = -1.8310000000000186 " " y[1] (analytic) = -1.0709140479952457 " " y[1] (numeric) = -1.0709140479952413 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 4.14682402085768700000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.092433119347347 " " Order of pole = 2.1664632111926814 " " x[1] = -1.8300000000000187 " " y[1] (analytic) = -1.0706842015137612 " " y[1] (numeric) = -1.0706842015137565 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.3550999415449260000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.091544548567878 " " Order of pole = 2.1663550610915436 " " x[1] = -1.8290000000000188 " " y[1] (analytic) = -1.0704541615138623 " " y[1] (numeric) = -1.0704541615138576 " " absolute error = 4.6629367034256575000000000000000E-15 " " relative error = 4.3560358500836870000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0906561299742528 " " Order of pole = 2.166247509523078 " " x[1] = -1.828000000000019 " " y[1] (analytic) = -1.0702239277754257 " " y[1] (numeric) = -1.0702239277754209 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.5644478520533943000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0897678648290863 " " Order of pole = 2.166140571498026 " " x[1] = -1.827000000000019 " " y[1] (analytic) = -1.0699935000780387 " " y[1] (numeric) = -1.0699935000780338 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.5654308255091340000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0888797543905255 " " Order of pole = 2.1660342619735253 " " x[1] = -1.8260000000000192 " " y[1] (analytic) = -1.0697628782010002 " " y[1] (numeric) = -1.0697628782009951 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.7739793718250045000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.087991799914745 " " Order of pole = 2.1659285958871095 " " x[1] = -1.8250000000000193 " " y[1] (analytic) = -1.0695320619233186 " " y[1] (numeric) = -1.0695320619233135 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.775009646828030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0871040026549217 " " Order of pole = 2.16582358814275 " " x[1] = -1.8240000000000194 " " y[1] (analytic) = -1.069301051023713 " " y[1] (numeric) = -1.0693010510237082 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 4.5683872691174960000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0862163638593287 " " Order of pole = 2.165719253584914 " " x[1] = -1.8230000000000195 " " y[1] (analytic) = -1.069069845280613 " " y[1] (numeric) = -1.069069845280608 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.777074141432929300000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0853288847738534 " " Order of pole = 2.165615607032823 " " x[1] = -1.8220000000000196 " " y[1] (analytic) = -1.0688384444721564 " " y[1] (numeric) = -1.068838444472151 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9858522078446580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.08444156664088 " " Order of pole = 2.1655126632652824 " " x[1] = -1.8210000000000197 " " y[1] (analytic) = -1.0686068483761901 " " y[1] (numeric) = -1.0686068483761848 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9869327772871580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.083554410699594 " " Order of pole = 2.1654104370247893 " " x[1] = -1.8200000000000198 " " y[1] (analytic) = -1.0683750567702703 " " y[1] (numeric) = -1.068375056770265 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9880147280026270000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.082667418181302 " " Order of pole = 2.1653089429538355 " " x[1] = -1.81900000000002 " " y[1] (analytic) = -1.0681430694316616 " " y[1] (numeric) = -1.068143069431656 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.196977148463290000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0817805905121434 " " Order of pole = 2.1652081983535645 " " x[1] = -1.81800000000002 " " y[1] (analytic) = -1.0679108861373359 " " y[1] (numeric) = -1.0679108861373303 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.1981070660346240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0808939283390013 " " Order of pole = 2.165108209927606 " " x[1] = -1.8170000000000202 " " y[1] (analytic) = -1.067678506663973 " " y[1] (numeric) = -1.0676785066639674 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.1992384303685050000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.080007433459328 " " Order of pole = 2.165009000044588 " " x[1] = -1.8160000000000203 " " y[1] (analytic) = -1.0674459307879596 " " y[1] (numeric) = -1.0674459307879542 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9923563943580507000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.079121106901208 " " Order of pole = 2.1649105806101545 " " x[1] = -1.8150000000000204 " " y[1] (analytic) = -1.0672131582853899 " " y[1] (numeric) = -1.0672131582853848 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.7853850691653665000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.078234949876994 " " Order of pole = 2.164812966044792 " " x[1] = -1.8140000000000205 " " y[1] (analytic) = -1.0669801889320647 " " y[1] (numeric) = -1.0669801889320591 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2026412305573040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.077348963591736 " " Order of pole = 2.164716170676691 " " x[1] = -1.8130000000000206 " " y[1] (analytic) = -1.0667470225034892 " " y[1] (numeric) = -1.0667470225034839 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9956272722414097000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0764631492516203 " " Order of pole = 2.1646202088566042 " " x[1] = -1.8120000000000207 " " y[1] (analytic) = -1.0665136587748765 " " y[1] (numeric) = -1.0665136587748711 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9967203648590414000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.075577508052319 " " Order of pole = 2.1645250947992523 " " x[1] = -1.8110000000000208 " " y[1] (analytic) = -1.066280097521144 " " y[1] (numeric) = -1.0662800975211386 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9978148617700124000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0746920411880585 " " Order of pole = 2.1644308427067607 " " x[1] = -1.810000000000021 " " y[1] (analytic) = -1.0660463385169139 " " y[1] (numeric) = -1.0660463385169086 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 4.9989107655625614000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0738067498466135 " " Order of pole = 2.1643374667003883 " " x[1] = -1.809000000000021 " " y[1] (analytic) = -1.0658123815365137 " " y[1] (numeric) = -1.0658123815365084 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.000008078831070000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.07292163520892 " " Order of pole = 2.1642449808153152 " " x[1] = -1.8080000000000211 " " y[1] (analytic) = -1.065578226353975 " " y[1] (numeric) = -1.0655782263539695 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2094862543500910000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0720366984520324 " " Order of pole = 2.164153399040792 " " x[1] = -1.8070000000000213 " " y[1] (analytic) = -1.0653438727430329 " " y[1] (numeric) = -1.0653438727430273 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2106322335461950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.071151940746907 " " Order of pole = 2.164062735289974 " " x[1] = -1.8060000000000214 " " y[1] (analytic) = -1.065109320477126 " " y[1] (numeric) = -1.0651093204771207 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0033085015287850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0702673632591013 " " Order of pole = 2.163973003409371 " " x[1] = -1.8050000000000215 " " y[1] (analytic) = -1.064874569329397 " " y[1] (numeric) = -1.0648745693293917 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0044114787685500000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0693829671467845 " " Order of pole = 2.1638842171516757 " " x[1] = -1.8040000000000216 " " y[1] (analytic) = -1.0646396190726906 " " y[1] (numeric) = -1.0646396190726852 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0055158785490370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.068498753563358 " " Order of pole = 2.16379639021147 " " x[1] = -1.8030000000000217 " " y[1] (analytic) = -1.064404469479554 " " y[1] (numeric) = -1.0644044694795485 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2152309411478040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.067614723655534 " " Order of pole = 2.163709536198919 " " x[1] = -1.8020000000000218 " " y[1] (analytic) = -1.0641691203222365 " " y[1] (numeric) = -1.064169120322231 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2163843294427410000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0667308785633427 " " Order of pole = 2.163623668639879 " " x[1] = -1.801000000000022 " " y[1] (analytic) = -1.0639335713726892 " " y[1] (numeric) = -1.0639335713726839 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0088376394826740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.065847219421033 " " Order of pole = 2.163538800988057 " " x[1] = -1.800000000000022 " " y[1] (analytic) = -1.0636978224025646 " " y[1] (numeric) = -1.0636978224025593 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0099477558053350000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0649637473555917 " " Order of pole = 2.1634549466048263 " " x[1] = -1.7990000000000221 " " y[1] (analytic) = -1.0634618731832164 " " y[1] (numeric) = -1.0634618731832108 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2198534457186130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0640804634870533 " " Order of pole = 2.163372118763334 " " x[1] = -1.7980000000000222 " " y[1] (analytic) = -1.063225723485698 " " y[1] (numeric) = -1.0632257234856923 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4298533232660930000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.063197368929422 " " Order of pole = 2.1632903306610025 " " x[1] = -1.7970000000000224 " " y[1] (analytic) = -1.0629893730807636 " " y[1] (numeric) = -1.062989373080758 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2221736770871940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0623144647881038 " " Order of pole = 2.163209595384483 " " x[1] = -1.7960000000000225 " " y[1] (analytic) = -1.0627528217388675 " " y[1] (numeric) = -1.062752821738862 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2233360472692910000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0614317521632044 " " Order of pole = 2.163129925954536 " " x[1] = -1.7950000000000226 " " y[1] (analytic) = -1.062516069230163 " " y[1] (numeric) = -1.0625160692301576 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0155199272062630000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.060549232145954 " " Order of pole = 2.1630513352771636 " " x[1] = -1.7940000000000227 " " y[1] (analytic) = -1.062279115324503 " " y[1] (numeric) = -1.0622791153244975 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.225665310599690000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.059666905820963 " " Order of pole = 2.1629738361743414 " " x[1] = -1.7930000000000228 " " y[1] (analytic) = -1.0620419597914383 " " y[1] (numeric) = -1.062041959791433 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0177589209820520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0587847742645926 " " Order of pole = 2.1628974413616966 " " x[1] = -1.792000000000023 " " y[1] (analytic) = -1.061804602400219 " " y[1] (numeric) = -1.061804602400214 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.8097605733966886000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0579028385461755 " " Order of pole = 2.162822163465055 " " x[1] = -1.791000000000023 " " y[1] (analytic) = -1.0615670429197932 " " y[1] (numeric) = -1.0615670429197877 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2291705551235710000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.05702109972673 " " Order of pole = 2.1627480150028404 " " x[1] = -1.7900000000000231 " " y[1] (analytic) = -1.0613292811188053 " " y[1] (numeric) = -1.0613292811188 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0211283274716460000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0561395588588347 " " Order of pole = 2.162675008384273 " " x[1] = -1.7890000000000232 " " y[1] (analytic) = -1.0610913167655984 " " y[1] (numeric) = -1.0610913167655933 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 4.812993785344390000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.05525821698819 " " Order of pole = 2.1626031559305154 " " x[1] = -1.7880000000000233 " " y[1] (analytic) = -1.0608531496282123 " " y[1] (numeric) = -1.060853149628207 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0233819073529470000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0543770751509673 " " Order of pole = 2.16253246983851 " " x[1] = -1.7870000000000235 " " y[1] (analytic) = -1.0606147794743825 " " y[1] (numeric) = -1.0606147794743772 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0245108981431710000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0534961343749747 " " Order of pole = 2.162462962196738 " " x[1] = -1.7860000000000236 " " y[1] (analytic) = -1.0603762060715414 " " y[1] (numeric) = -1.060376206071536 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 5.0256413598186770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0526153956807245 " " Order of pole = 2.1623946449995834 " " x[1] = -1.7850000000000237 " " y[1] (analytic) = -1.060137429186817 " " y[1] (numeric) = -1.0601374291868115 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2362221824238300000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.051734860078607 " " Order of pole = 2.1623275301088825 " " x[1] = -1.7840000000000238 " " y[1] (analytic) = -1.0598984485870324 " " y[1] (numeric) = -1.0598984485870269 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2374028196060320000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0508545285707878 " " Order of pole = 2.1622616292794703 " " x[1] = -1.783000000000024 " " y[1] (analytic) = -1.0596592640387064 " " y[1] (numeric) = -1.0596592640387006 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4481283974694120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0499744021506023 " " Order of pole = 2.1621969541509607 " " x[1] = -1.782000000000024 " " y[1] (analytic) = -1.059419875308051 " " y[1] (numeric) = -1.0594198753080455 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2397687191885710000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.04909448180193 " " Order of pole = 2.1621335162390416 " " x[1] = -1.7810000000000241 " " y[1] (analytic) = -1.0591802821609748 " " y[1] (numeric) = -1.059180282160969 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4505921468555120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0482147684997694 " " Order of pole = 2.162071326943181 " " x[1] = -1.7800000000000242 " " y[1] (analytic) = -1.0589404843630783 " " y[1] (numeric) = -1.0589404843630725 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.451826437179990000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.047335263209518 " " Order of pole = 2.162010397536733 " " x[1] = -1.7790000000000243 " " y[1] (analytic) = -1.0587004816796561 " " y[1] (numeric) = -1.0587004816796506 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 5.2433291749511570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.046455966887428 " " Order of pole = 2.161950739172937 " " x[1] = -1.7780000000000244 " " y[1] (analytic) = -1.058460273875697 " " y[1] (numeric) = -1.0584602738756912 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4542998641900840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.045576880479762 " " Order of pole = 2.161892362873406 " " x[1] = -1.7770000000000246 " " y[1] (analytic) = -1.0582198607158808 " " y[1] (numeric) = -1.058219860715875 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4555390069368940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0446980049228367 " " Order of pole = 2.161835279528475 " " x[1] = -1.7760000000000247 " " y[1] (analytic) = -1.0579792419645813 " " y[1] (numeric) = -1.0579792419645755 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4567797732312080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0438193411440118 " " Order of pole = 2.161779499910576 " " x[1] = -1.7750000000000248 " " y[1] (analytic) = -1.0577384173858637 " " y[1] (numeric) = -1.0577384173858577 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6679460955881980000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0429408900593717 " " Order of pole = 2.1617250346425614 " " x[1] = -1.774000000000025 " " y[1] (analytic) = -1.0574973867434845 " " y[1] (numeric) = -1.0574973867434785 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.669237965152620000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0420626525763734 " " Order of pole = 2.1616718942335353 " " x[1] = -1.773000000000025 " " y[1] (analytic) = -1.057256149800892 " " y[1] (numeric) = -1.0572561498008863 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 5.4605118439254720000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.041184629590509 " " Order of pole = 2.161620089033331 " " x[1] = -1.772000000000025 " " y[1] (analytic) = -1.057014706321226 " " y[1] (numeric) = -1.05701470632122 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6718267940104770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0403068219884006 " " Order of pole = 2.161569629274492 " " x[1] = -1.7710000000000252 " " y[1] (analytic) = -1.0567730560673159 " " y[1] (numeric) = -1.0567730560673096 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8832394544934740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0394292306451787 " " Order of pole = 2.161520525036366 " " x[1] = -1.7700000000000253 " " y[1] (analytic) = -1.056531198801681 " " y[1] (numeric) = -1.056531198801675 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.6744224304740020000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0385518564254235 " " Order of pole = 2.161472786257839 " " x[1] = -1.7690000000000254 " " y[1] (analytic) = -1.0562891342865321 " " y[1] (numeric) = -1.056289134286526 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8859347654847380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0376747001833175 " " Order of pole = 2.1614264227392184 " " x[1] = -1.7680000000000256 " " y[1] (analytic) = -1.0560468622837675 " " y[1] (numeric) = -1.0560468622837613 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8872850817014750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.036797762762111 " " Order of pole = 2.161381444134772 " " x[1] = -1.7670000000000257 " " y[1] (analytic) = -1.0558043825549759 " " y[1] (numeric) = -1.0558043825549697 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8886371761931420000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.035921044993489 " " Order of pole = 2.1613378599439983 " " x[1] = -1.7660000000000258 " " y[1] (analytic) = -1.0555616948614344 " " y[1] (numeric) = -1.0555616948614281 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8899910523155420000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.035044547698753 " " Order of pole = 2.1612956795274805 " " x[1] = -1.7650000000000259 " " y[1] (analytic) = -1.055318798964108 " " y[1] (numeric) = -1.0553187989641017 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8913467134326380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0341682716871223 " " Order of pole = 2.161254912083642 " " x[1] = -1.764000000000026 " " y[1] (analytic) = -1.0550756946236501 " " y[1] (numeric) = -1.055075694623644 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8927041629165720000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.033292217757102 " " Order of pole = 2.1612155666671597 " " x[1] = -1.763000000000026 " " y[1] (analytic) = -1.0548323816004015 " " y[1] (numeric) = -1.0548323816003953 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8940634041476890000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0324163866950906 " " Order of pole = 2.1611776521698687 " " x[1] = -1.7620000000000262 " " y[1] (analytic) = -1.0545888596543902 " " y[1] (numeric) = -1.054588859654384 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8954244405145650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.031540779276108 " " Order of pole = 2.161141177330446 " " x[1] = -1.7610000000000263 " " y[1] (analytic) = -1.0543451285453311 " " y[1] (numeric) = -1.054345128545325 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8967872754140280000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.030665396263495 " " Order of pole = 2.1611061507301628 " " x[1] = -1.7600000000000264 " " y[1] (analytic) = -1.0541011880326256 " " y[1] (numeric) = -1.0541011880326194 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.8981519122511850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0297902384085225 " " Order of pole = 2.1610725807873976 " " x[1] = -1.7590000000000265 " " y[1] (analytic) = -1.0538570378753613 " " y[1] (numeric) = -1.053857037875355 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1102154385265650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0289153064505547 " " Order of pole = 2.161040475759595 " " x[1] = -1.7580000000000267 " " y[1] (analytic) = -1.053612677832311 " " y[1] (numeric) = -1.0536126778323045 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1116325555934150000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0280406011166208 " " Order of pole = 2.1610098437373324 " " x[1] = -1.7570000000000268 " " y[1] (analytic) = -1.0533681076619332 " " y[1] (numeric) = -1.0533681076619268 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1130515495847230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.027166123121565 " " Order of pole = 2.1609806926461097 " " x[1] = -1.7560000000000269 " " y[1] (analytic) = -1.0531233271223712 " " y[1] (numeric) = -1.053123327122365 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9036285473699720000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.026291873168295 " " Order of pole = 2.160953030249548 " " x[1] = -1.755000000000027 " " y[1] (analytic) = -1.0528783359714537 " " y[1] (numeric) = -1.0528783359714473 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1158951825944810000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0254178519464547 " " Order of pole = 2.160926864131124 " " x[1] = -1.754000000000027 " " y[1] (analytic) = -1.0526331339666921 " " y[1] (numeric) = -1.052633133966686 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9063777657008520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0245440601333238 " " Order of pole = 2.1609022017062003 " " x[1] = -1.7530000000000272 " " y[1] (analytic) = -1.0523877208652832 " " y[1] (numeric) = -1.0523877208652768 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1187463661505470000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0236704983940346 " " Order of pole = 2.160879050224782 " " x[1] = -1.7520000000000273 " " y[1] (analytic) = -1.052142096424106 " " y[1] (numeric) = -1.0521420964240995 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1201747983575640000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0227971673803036 " " Order of pole = 2.160857416754048 " " x[1] = -1.7510000000000274 " " y[1] (analytic) = -1.0518962603997233 " " y[1] (numeric) = -1.0518962603997168 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1216051289876820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0219240677304864 " " Order of pole = 2.1608373081788734 " " x[1] = -1.7500000000000275 " " y[1] (analytic) = -1.0516502125483804 " " y[1] (numeric) = -1.051650212548374 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1230373616547650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0210512000711054 " " Order of pole = 2.160818731222392 " " x[1] = -1.7490000000000276 " " y[1] (analytic) = -1.0514039526260053 " " y[1] (numeric) = -1.0514039526259988 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1244714999815380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.020178565014201 " " Order of pole = 2.1608016924097306 " " x[1] = -1.7480000000000278 " " y[1] (analytic) = -1.051157480388207 " " y[1] (numeric) = -1.051157480388201 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9146693563030720000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0193061631593427 " " Order of pole = 2.160786198095238 " " x[1] = -1.7470000000000279 " " y[1] (analytic) = -1.0509107955902777 " " y[1] (numeric) = -1.0509107955902715 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9160577320064170000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0184339950921517 " " Order of pole = 2.1607722544420085 " " x[1] = -1.746000000000028 " " y[1] (analytic) = -1.0506638979871892 " " y[1] (numeric) = -1.050663897987183 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9174479582020290000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.017562061385609 " " Order of pole = 2.1607598674396087 " " x[1] = -1.745000000000028 " " y[1] (analytic) = -1.050416787333595 " " y[1] (numeric) = -1.0504167873335888 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9188400384221780000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0166903625979167 " " Order of pole = 2.1607490428746168 " " x[1] = -1.7440000000000282 " " y[1] (analytic) = -1.050169463383829 " " y[1] (numeric) = -1.0501694633838228 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9202339762078180000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0158188992741537 " " Order of pole = 2.1607397863530124 " " x[1] = -1.7430000000000283 " " y[1] (analytic) = -1.0499219258919048 " " y[1] (numeric) = -1.0499219258918986 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9216297751086080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0149476719457327 " " Order of pole = 2.1607321032925064 " " x[1] = -1.7420000000000284 " " y[1] (analytic) = -1.0496741746115164 " " y[1] (numeric) = -1.0496741746115101 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9230274386829370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.01407668112935 " " Order of pole = 2.1607259989080383 " " x[1] = -1.7410000000000285 " " y[1] (analytic) = -1.0494262092960365 " " y[1] (numeric) = -1.0494262092960303 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9244269704979610000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0132059273289054 " " Order of pole = 2.160721478237633 " " x[1] = -1.7400000000000286 " " y[1] (analytic) = -1.049178029698517 " " y[1] (numeric) = -1.049178029698511 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.714191646482130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0123354110328555 " " Order of pole = 2.160718546106189 " " x[1] = -1.7390000000000287 " " y[1] (analytic) = -1.0489296355716888 " " y[1] (numeric) = -1.0489296355716826 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.927231653162650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0114651327158373 " " Order of pole = 2.1607172071472682 " " x[1] = -1.7380000000000289 " " y[1] (analytic) = -1.04868102666796 " " y[1] (numeric) = -1.048681026667954 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.716899782219560000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0105950928391554 " " Order of pole = 2.1607174658095545 " " x[1] = -1.737000000000029 " " y[1] (analytic) = -1.0484322027394177 " " y[1] (numeric) = -1.0484322027394117 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.718256571394080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0097252918469115 " " Order of pole = 2.16071932630382 " " x[1] = -1.736000000000029 " " y[1] (analytic) = -1.0481831635378258 " " y[1] (numeric) = -1.0481831635378198 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.7196151794127680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0088557301724697 " " Order of pole = 2.16072279269083 " " x[1] = -1.7350000000000292 " " y[1] (analytic) = -1.0479339088146256 " " y[1] (numeric) = -1.0479339088146196 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.7209756097665960000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.007986408230638 " " Order of pole = 2.1607278687745044 " " x[1] = -1.7340000000000293 " " y[1] (analytic) = -1.047684438320935 " " y[1] (numeric) = -1.0476844383209287 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9342763054349770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0071173264258357 " " Order of pole = 2.1607345582129547 " " x[1] = -1.7330000000000294 " " y[1] (analytic) = -1.0474347518075477 " " y[1] (numeric) = -1.0474347518075415 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.9356909126528710000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0062484851416995 " " Order of pole = 2.160742864376669 " " x[1] = -1.7320000000000295 " " y[1] (analytic) = -1.0471848490249347 " " y[1] (numeric) = -1.0471848490249283 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1491469713505950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.005379884759757 " " Order of pole = 2.1607527906025723 " " x[1] = -1.7310000000000296 " " y[1] (analytic) = -1.0469347297232408 " " y[1] (numeric) = -1.0469347297232348 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 5.726435624655120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.004511525618667 " " Order of pole = 2.160764339638554 " " x[1] = -1.7300000000000297 " " y[1] (analytic) = -1.046684393652288 " " y[1] (numeric) = -1.0466843936522818 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 5.939946153402060000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.003643408076445 " " Order of pole = 2.160777514490867 " " x[1] = -1.7290000000000298 " " y[1] (analytic) = -1.0464338405615718 " " y[1] (numeric) = -1.0464338405615654 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1535601136238500000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.002775532455071 " " Order of pole = 2.1607923176693156 " " x[1] = -1.72800000000003 " " y[1] (analytic) = -1.0461830702002626 " " y[1] (numeric) = -1.046183070200256 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3672777140962630000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0019078990650976 " " Order of pole = 2.1608087515221257 " " x[1] = -1.72700000000003 " " y[1] (analytic) = -1.0459320823172042 " " y[1] (numeric) = -1.0459320823171978 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1565121212842160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0010405082038476 " " Order of pole = 2.1608268182112127 " " x[1] = -1.7260000000000302 " " y[1] (analytic) = -1.0456808766609156 " " y[1] (numeric) = -1.0456808766609091 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1579911104312820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.000173360151549 " " Order of pole = 2.160846519659227 " " x[1] = -1.7250000000000303 " " y[1] (analytic) = -1.045429452979588 " " y[1] (numeric) = -1.0454294529795816 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 6.1594720949110620000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9993064551729718 " " Order of pole = 2.1608678575715423 " " x[1] = -1.7240000000000304 " " y[1] (analytic) = -1.0451778110210859 " " y[1] (numeric) = -1.0451778110210792 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3734018054240440000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9984397935176643 " " Order of pole = 2.1608908334392893 " " x[1] = -1.7230000000000305 " " y[1] (analytic) = -1.0449259505329462 " " y[1] (numeric) = -1.0449259505329396 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3749379985763010000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9975733754193945 " " Order of pole = 2.1609154485313695 " " x[1] = -1.7220000000000306 " " y[1] (analytic) = -1.0446738712623782 " " y[1] (numeric) = -1.0446738712623715 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3764762678532530000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9967072010957923 " " Order of pole = 2.1609417038893746 " " x[1] = -1.7210000000000307 " " y[1] (analytic) = -1.0444215729562631 " " y[1] (numeric) = -1.0444215729562565 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 6.3780166172705950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9958412707489759 " " Order of pole = 2.160969600335818 " " x[1] = -1.7200000000000308 " " y[1] (analytic) = -1.0441690553611538 " " y[1] (numeric) = -1.044169055361147 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5922110192158190000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9949755845648074 " " Order of pole = 2.160999138463712 " " x[1] = -1.719000000000031 " " y[1] (analytic) = -1.0439163182232736 " " y[1] (numeric) = -1.0439163182232667 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5938070250605540000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.994110142713379 " " Order of pole = 2.1610303186428936 " " x[1] = -1.718000000000031 " " y[1] (analytic) = -1.043663361288517 " " y[1] (numeric) = -1.0436633612885102 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5954051928944580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9932449453486556 " " Order of pole = 2.1610631410149175 " " x[1] = -1.7170000000000312 " " y[1] (analytic) = -1.043410184302449 " " y[1] (numeric) = -1.0434101843024421 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5970055269085940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9923799926082366 " " Order of pole = 2.161097605489477 " " x[1] = -1.7160000000000313 " " y[1] (analytic) = -1.043156787010304 " " y[1] (numeric) = -1.0431567870102971 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.5986080313044810000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9915152846136164 " " Order of pole = 2.161133711747709 " " x[1] = -1.7150000000000314 " " y[1] (analytic) = -1.0429031691569866 " " y[1] (numeric) = -1.0429031691569797 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.6002127102941290000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9906508214699263 " " Order of pole = 2.1611714592383393 " " x[1] = -1.7140000000000315 " " y[1] (analytic) = -1.0426493304870705 " " y[1] (numeric) = -1.0426493304870634 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8147814896516770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9897866032659297 " " Order of pole = 2.1612108471773688 " " x[1] = -1.7130000000000316 " " y[1] (analytic) = -1.0423952707447974 " " y[1] (numeric) = -1.0423952707447905 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.6034286089553670000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9889226300740919 " " Order of pole = 2.1612518745487463 " " x[1] = -1.7120000000000317 " " y[1] (analytic) = -1.0421409896740794 " " y[1] (numeric) = -1.042140989674072 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0311714394974880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9880589019499473 " " Order of pole = 2.1612945400954082 " " x[1] = -1.7110000000000318 " " y[1] (analytic) = -1.0418864870184943 " " y[1] (numeric) = -1.0418864870184872 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8197711037928790000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9871954189332668 " " Order of pole = 2.161338842334942 " " x[1] = -1.710000000000032 " " y[1] (analytic) = -1.0416317625212894 " " y[1] (numeric) = -1.0416317625212823 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.821438835930060000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9863321810459058 " " Order of pole = 2.161384779529918 " " x[1] = -1.709000000000032 " " y[1] (analytic) = -1.041376815925379 " " y[1] (numeric) = -1.0413768159253716 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0363309903483510000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9854691882944357 " " Order of pole = 2.1614323497234977 " " x[1] = -1.7080000000000322 " " y[1] (analytic) = -1.0411216469733433 " " y[1] (numeric) = -1.0411216469733362 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8247811178043140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9846064406677972 " " Order of pole = 2.1614815507071583 " " x[1] = -1.7070000000000323 " " y[1] (analytic) = -1.0408662554074306 " " y[1] (numeric) = -1.0408662554074237 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.6131289365141150000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9837439381386526 " " Order of pole = 2.1615323800388033 " " x[1] = -1.7060000000000324 " " y[1] (analytic) = -1.0406106409695548 " " y[1] (numeric) = -1.040610640969548 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.6147533781344040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9828816806622112 " " Order of pole = 2.161584835026453 " " x[1] = -1.7050000000000325 " " y[1] (analytic) = -1.0403548034012955 " " y[1] (numeric) = -1.0403548034012886 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 6.6163800370524630000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9820196681773132 " " Order of pole = 2.16163891274277 " " x[1] = -1.7040000000000326 " " y[1] (analytic) = -1.040098742443898 " " y[1] (numeric) = -1.040098742443891 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8314930762299820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9811579006059483 " " Order of pole = 2.161694610018152 " " x[1] = -1.7030000000000327 " " y[1] (analytic) = -1.0398424578382723 " " y[1] (numeric) = -1.0398424578382652 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8331767990821120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9802963778527134 " " Order of pole = 2.161751923433055 " " x[1] = -1.7020000000000328 " " y[1] (analytic) = -1.0395859493249937 " " y[1] (numeric) = -1.0395859493249866 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8348628241989770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9794350998054286 " " Order of pole = 2.161810849326109 " " x[1] = -1.701000000000033 " " y[1] (analytic) = -1.039329216644302 " " y[1] (numeric) = -1.0393292166442945 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.263835603338760000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.978574066334628 " " Order of pole = 2.1618713837868313 " " x[1] = -1.700000000000033 " " y[1] (analytic) = -1.0390722595360993 " " y[1] (numeric) = -1.0390722595360922 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 6.8382417992501000000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9777132772943409 " " Order of pole = 2.1619335226660716 " " x[1] = -1.6990000000000332 " " y[1] (analytic) = -1.038815077739954 " " y[1] (numeric) = -1.0388150777399467 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0536827194188210000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9768527325204082 " " Order of pole = 2.1619972615526493 " " x[1] = -1.6980000000000333 " " y[1] (analytic) = -1.0385576709950957 " " y[1] (numeric) = -1.0385576709950883 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0554309762164710000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9759924318326763 " " Order of pole = 2.1620625958030395 " " x[1] = -1.6970000000000334 " " y[1] (analytic) = -1.0383000390404176 " " y[1] (numeric) = -1.03830003904041 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2710356193651140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9751323750331158 " " Order of pole = 2.1621295205154 " " x[1] = -1.6960000000000335 " " y[1] (analytic) = -1.038042181614475 " " y[1] (numeric) = -1.0380421816144676 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0589346871526550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9742725619063315 " " Order of pole = 2.162198030536242 " " x[1] = -1.6950000000000336 " " y[1] (analytic) = -1.0377840984554862 " " y[1] (numeric) = -1.0377840984554787 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2746504583052120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.973412992220467 " " Order of pole = 2.1622681204724366 " " x[1] = -1.6940000000000337 " " y[1] (analytic) = -1.03752578930133 " " y[1] (numeric) = -1.0375257893013228 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0624480259525440000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.97255366572547 " " Order of pole = 2.1623397846672887 " " x[1] = -1.6930000000000338 " " y[1] (analytic) = -1.037267253889548 " " y[1] (numeric) = -1.0372672538895404 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2782752363403580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9716945821544278 " " Order of pole = 2.162413017218448 " " x[1] = -1.692000000000034 " " y[1] (analytic) = -1.0370084919573412 " " y[1] (numeric) = -1.037008491957334 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 7.0659710304739320000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9708357412233488 " " Order of pole = 2.1624878119746107 " " x[1] = -1.691000000000034 " " y[1] (analytic) = -1.0367495032415728 " " y[1] (numeric) = -1.0367495032415652 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2819099925741200000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9699771426303394 " " Order of pole = 2.162564162524024 " " x[1] = -1.6900000000000341 " " y[1] (analytic) = -1.0364902874787651 " " y[1] (numeric) = -1.0364902874787574 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.4979585108126870000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9691187860567734 " " Order of pole = 2.162642062210139 " " x[1] = -1.6890000000000343 " " y[1] (analytic) = -1.0362308444051007 " " y[1] (numeric) = -1.036230844405093 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.4998357888465890000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9682606711659019 " " Order of pole = 2.16272150411233 " " x[1] = -1.6880000000000344 " " y[1] (analytic) = -1.0359711737564214 " " y[1] (numeric) = -1.035971173756414 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2873809220739130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.967402797604388 " " Order of pole = 2.162802481066535 " " x[1] = -1.6870000000000345 " " y[1] (analytic) = -1.0357112752682291 " " y[1] (numeric) = -1.0357112752682216 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2892095970432360000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9665451650012282 " " Order of pole = 2.1628849856503045 " " x[1] = -1.6860000000000346 " " y[1] (analytic) = -1.0354511486756834 " " y[1] (numeric) = -1.035451148675676 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2910407961850350000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.965687772967704 " " Order of pole = 2.162969010181758 " " x[1] = -1.6850000000000347 " " y[1] (analytic) = -1.035190793713603 " " y[1] (numeric) = -1.0351907937135953 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2928745244808680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9648306210982884 " " Order of pole = 2.1630545467317397 " " x[1] = -1.6840000000000348 " " y[1] (analytic) = -1.034930210116464 " " y[1] (numeric) = -1.0349302101164561 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5092611041874390000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9639737089696772 " " Order of pole = 2.1631415871102604 " " x[1] = -1.683000000000035 " " y[1] (analytic) = -1.0346693976184 " " y[1] (numeric) = -1.0346693976183925 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 7.2965495885241480000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.963117036141461 " " Order of pole = 2.1632301228754187 " " x[1] = -1.682000000000035 " " y[1] (analytic) = -1.0344083559532036 " " y[1] (numeric) = -1.0344083559531958 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5130494911892220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9622606021554672 " " Order of pole = 2.1633201453240716 " " x[1] = -1.6810000000000351 " " y[1] (analytic) = -1.034147084854322 " " y[1] (numeric) = -1.0341470848543142 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5149476183756380000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.961404406536447 " " Order of pole = 2.1634116455010037 " " x[1] = -1.6800000000000352 " " y[1] (analytic) = -1.0338855840548602 " " y[1] (numeric) = -1.0338855840548524 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5168483749394470000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9605484487919882 " " Order of pole = 2.163504614197379 " " x[1] = -1.6790000000000354 " " y[1] (analytic) = -1.0336238532875792 " " y[1] (numeric) = -1.0336238532875714 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5187517660874450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.959692728411967 " " Order of pole = 2.163599041943037 " " x[1] = -1.6780000000000355 " " y[1] (analytic) = -1.033361892284896 " " y[1] (numeric) = -1.0333618922848882 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 7.5206577970396950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9588372448690878 " " Order of pole = 2.1636949190135013 " " x[1] = -1.6770000000000356 " " y[1] (analytic) = -1.0330997007788825 " " y[1] (numeric) = -1.0330997007788745 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.7374969436875520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9579819976189083 " " Order of pole = 2.1637922354301686 " " x[1] = -1.6760000000000357 " " y[1] (analytic) = -1.0328372785012656 " " y[1] (numeric) = -1.0328372785012576 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.7394628792838750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.957126986099633 " " Order of pole = 2.163890980957042 " " x[1] = -1.6750000000000358 " " y[1] (analytic) = -1.0325746251834276 " " y[1] (numeric) = -1.0325746251834196 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.741431546297330000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.956272209732151 " " Order of pole = 2.1639911451011393 " " x[1] = -1.674000000000036 " " y[1] (analytic) = -1.0323117405564046 " " y[1] (numeric) = -1.0323117405563966 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.7434029501521140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9554176679202668 " " Order of pole = 2.164092717115235 " " x[1] = -1.673000000000036 " " y[1] (analytic) = -1.0320486243508868 " " y[1] (numeric) = -1.0320486243508789 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 7.7453770962862860000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9545633600504457 " " Order of pole = 2.1641956859942084 " " x[1] = -1.6720000000000361 " " y[1] (analytic) = -1.0317852762972182 " " y[1] (numeric) = -1.03178527629721 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.9625582676560140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9537092854921656 " " Order of pole = 2.1643000404795245 " " x[1] = -1.6710000000000362 " " y[1] (analytic) = -1.0315216961253952 " " y[1] (numeric) = -1.0315216961253868 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1798521726153540000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9528554435976107 " " Order of pole = 2.1644057690548024 " " x[1] = -1.6700000000000363 " " y[1] (analytic) = -1.0312578835650674 " " y[1] (numeric) = -1.0312578835650592 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.966630377480930000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9520018337023055 " " Order of pole = 2.164512859954197 " " x[1] = -1.6690000000000365 " " y[1] (analytic) = -1.0309938383455377 " " y[1] (numeric) = -1.0309938383455293 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1840401691356130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.951148455124169 " " Order of pole = 2.1646213011492463 " " x[1] = -1.6680000000000366 " " y[1] (analytic) = -1.03072956019576 " " y[1] (numeric) = -1.0307295601957516 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1861385498138530000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9502953071650801 " " Order of pole = 2.164731080369986 " " x[1] = -1.6670000000000367 " " y[1] (analytic) = -1.03046504884434 " " y[1] (numeric) = -1.0304650488443319 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 7.9727598635586490000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9494423891088082 " " Order of pole = 2.164842185076388 " " x[1] = -1.6660000000000368 " " y[1] (analytic) = -1.030200304019536 " " y[1] (numeric) = -1.0302003040195276 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1903441051510150000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9485897002233021 " " Order of pole = 2.1649546024894164 " " x[1] = -1.665000000000037 " " y[1] (analytic) = -1.0299353254492556 " " y[1] (numeric) = -1.0299353254492472 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1924512915125860000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9477372397589883 " " Order of pole = 2.165068319567524 " " x[1] = -1.664000000000037 " " y[1] (analytic) = -1.0296701128610581 " " y[1] (numeric) = -1.0296701128610497 " " absolute error = 8.43769498715119000000000000000E-15 " " relative error = 8.1945614248296220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9468850069500665 " " Order of pole = 2.165183323024113 " " x[1] = -1.6630000000000371 " " y[1] (analytic) = -1.029404665982153 " " y[1] (numeric) = -1.0294046659821443 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4123764718066240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9460330010140068 " " Order of pole = 2.1652995993203668 " " x[1] = -1.6620000000000372 " " y[1] (analytic) = -1.0291389845393988 " " y[1] (numeric) = -1.0291389845393901 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4145482021089420000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9451812211512107 " " Order of pole = 2.1654171346604656 " " x[1] = -1.6610000000000373 " " y[1] (analytic) = -1.0288730682593046 " " y[1] (numeric) = -1.028873068259296 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.41672297509660000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9443296665462695 " " Order of pole = 2.1655359150084585 " " x[1] = -1.6600000000000374 " " y[1] (analytic) = -1.028606916868028 " " y[1] (numeric) = -1.0286069168680194 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4189007968602650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.943478336366549 " " Order of pole = 2.165655926068773 " " x[1] = -1.6590000000000376 " " y[1] (analytic) = -1.0283405300913757 " " y[1] (numeric) = -1.028340530091367 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4210816735062840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9426272297636382 " " Order of pole = 2.165777153305708 " " x[1] = -1.6580000000000377 " " y[1] (analytic) = -1.0280739076548029 " " y[1] (numeric) = -1.028073907654794 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.639246780673570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9417763458728974 " " Order of pole = 2.165899581937083 " " x[1] = -1.6570000000000378 " " y[1] (analytic) = -1.0278070492834122 " " y[1] (numeric) = -1.0278070492834035 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.425452615949460000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9409256838126596 " " Order of pole = 2.1660231969230814 " " x[1] = -1.6560000000000379 " " y[1] (analytic) = -1.0275399547019548 " " y[1] (numeric) = -1.027539954701946 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6437360964493850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.940075242685947 " " Order of pole = 2.166147982989493 " " x[1] = -1.655000000000038 " " y[1] (analytic) = -1.0272726236348284 " " y[1] (numeric) = -1.0272726236348195 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6459854888126760000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.939225021579628 " " Order of pole = 2.1662739246160108 " " x[1] = -1.654000000000038 " " y[1] (analytic) = -1.0270050558060784 " " y[1] (numeric) = -1.0270050558060695 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6482380459462240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9383750195642966 " " Order of pole = 2.1664010060343237 " " x[1] = -1.6530000000000382 " " y[1] (analytic) = -1.0267372509393962 " " y[1] (numeric) = -1.0267372509393873 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6504937742105010000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9375252356951997 " " Order of pole = 2.166529211240629 " " x[1] = -1.6520000000000383 " " y[1] (analytic) = -1.0264692087581193 " " y[1] (numeric) = -1.0264692087581107 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4364338629828610000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.936675669011231 " " Order of pole = 2.1666585239816527 " " x[1] = -1.6510000000000384 " " y[1] (analytic) = -1.026200928985232 " " y[1] (numeric) = -1.0262009289852232 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6550147696553770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9358263185362645 " " Order of pole = 2.1667889277727177 " " x[1] = -1.6500000000000385 " " y[1] (analytic) = -1.025932411343363 " " y[1] (numeric) = -1.0259324113433543 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 8.4408480483983330000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9349771832786105 " " Order of pole = 2.1669204058900675 " " x[1] = -1.6490000000000387 " " y[1] (analytic) = -1.0256636555547871 " " y[1] (numeric) = -1.0256636555547782 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6595485263607650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.93412826223052 " " Order of pole = 2.1670529413639663 " " x[1] = -1.6480000000000388 " " y[1] (analytic) = -1.0253946613414229 " " y[1] (numeric) = -1.025394661341414 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6618202062629120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.933279554369857 " " Order of pole = 2.1671865170013405 " " x[1] = -1.6470000000000389 " " y[1] (analytic) = -1.0251254284248341 " " y[1] (numeric) = -1.025125428424825 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8806974732007730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9324310586586886 " " Order of pole = 2.1673211153663487 " " x[1] = -1.646000000000039 " " y[1] (analytic) = -1.024855956526228 " " y[1] (numeric) = -1.024855956526219 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8830325315021950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9315827740444615 " " Order of pole = 2.1674567187962737 " " x[1] = -1.645000000000039 " " y[1] (analytic) = -1.0245862453664558 " " y[1] (numeric) = -1.024586245366447 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6686545297361220000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9307346994594254 " " Order of pole = 2.167593309393517 " " x[1] = -1.6440000000000392 " " y[1] (analytic) = -1.0243162946660123 " " y[1] (numeric) = -1.0243162946660034 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 8.6709390871276140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9298868338212578 " " Order of pole = 2.1677308690339387 " " x[1] = -1.6430000000000393 " " y[1] (analytic) = -1.024046104145035 " " y[1] (numeric) = -1.024046104145026 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8900575521714140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9290391760329006 " " Order of pole = 2.167869379364518 " " x[1] = -1.6420000000000394 " " y[1] (analytic) = -1.0237756735233037 " " y[1] (numeric) = -1.0237756735232946 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8924058632841290000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9281917249825693 " " Order of pole = 2.168008821803305 " " x[1] = -1.6410000000000395 " " y[1] (analytic) = -1.0235050025202406 " " y[1] (numeric) = -1.0235050025202315 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8947575043691570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9273444795448897 " " Order of pole = 2.1681491775547954 " " x[1] = -1.6400000000000396 " " y[1] (analytic) = -1.0232340908549098 " " y[1] (numeric) = -1.0232340908549007 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8971124821692120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9264974385792355 " " Order of pole = 2.1682904275871735 " " x[1] = -1.6390000000000398 " " y[1] (analytic) = -1.022962938246017 " " y[1] (numeric) = -1.022962938246008 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.8994708034445560000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9256506009319299 " " Order of pole = 2.1684325526621286 " " x[1] = -1.6380000000000399 " " y[1] (analytic) = -1.0226915444119091 " " y[1] (numeric) = -1.0226915444119 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9018324749730580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9248039654346767 " " Order of pole = 2.1685755333134367 " " x[1] = -1.63700000000004 " " y[1] (analytic) = -1.0224199090705737 " " y[1] (numeric) = -1.0224199090705646 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9041975035502570000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9239575309058614 " " Order of pole = 2.168719349864528 " " x[1] = -1.63600000000004 " " y[1] (analytic) = -1.0221480319396385 " " y[1] (numeric) = -1.0221480319396294 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9065658959894150000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.923111296150137 " " Order of pole = 2.168863982422792 " " x[1] = -1.6350000000000402 " " y[1] (analytic) = -1.021875912736372 " " y[1] (numeric) = -1.0218759127363626 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 9.1262288215391620000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9222652599586398 " " Order of pole = 2.169009410882367 " " x[1] = -1.6340000000000403 " " y[1] (analytic) = -1.021603551177681 " " y[1] (numeric) = -1.021603551177672 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9113127997955750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9214194211095583 " " Order of pole = 2.16915561493186 " " x[1] = -1.6330000000000404 " " y[1] (analytic) = -1.0213309469801137 " " y[1] (numeric) = -1.0213309469801046 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9136913248782070000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9205737783678514 " " Order of pole = 2.169302574050384 " " x[1] = -1.6320000000000405 " " y[1] (analytic) = -1.0210580998598555 " " y[1] (numeric) = -1.0210580998598464 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 8.9160732412541680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.91972833048558 " " Order of pole = 2.1694502675120795 " " x[1] = -1.6310000000000406 " " y[1] (analytic) = -1.0207850095327315 " " y[1] (numeric) = -1.0207850095327222 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 9.135981935236561000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9188830762019837 " " Order of pole = 2.1695986743870144 " " x[1] = -1.6300000000000407 " " y[1] (analytic) = -1.0205116757142045 " " y[1] (numeric) = -1.020511675714195 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3560105572474130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9180380142442042 " " Order of pole = 2.1697477735509842 " " x[1] = -1.6290000000000409 " " y[1] (analytic) = -1.020238098119375 " " y[1] (numeric) = -1.0202380981193657 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 9.1408793928024070000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9171931433265146 " " Order of pole = 2.1698975436750594 " " x[1] = -1.628000000000041 " " y[1] (analytic) = -1.0199642764629822 " " y[1] (numeric) = -1.0199642764629726 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3610317852371080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9163484621515738 " " Order of pole = 2.1700479632425314 " " x[1] = -1.627000000000041 " " y[1] (analytic) = -1.019690210459401 " " y[1] (numeric) = -1.0196902104593915 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3635477852383450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9155039694097047 " " Order of pole = 2.170199010539111 " " x[1] = -1.6260000000000412 " " y[1] (analytic) = -1.0194158998226444 " " y[1] (numeric) = -1.0194158998226348 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3660673856837740000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9146596637797904 " " Order of pole = 2.17035066366509 " " x[1] = -1.6250000000000413 " " y[1] (analytic) = -1.019141344266361 " " y[1] (numeric) = -1.0191413442663515 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.368590593927391000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.913815543929022 " " Order of pole = 2.170502900531872 " " x[1] = -1.6240000000000414 " " y[1] (analytic) = -1.0188665435038362 " " y[1] (numeric) = -1.0188665435038267 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3711174173424970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.912971608513343 " " Order of pole = 2.1706556988680745 " " x[1] = -1.6230000000000415 " " y[1] (analytic) = -1.0185914972479906 " " y[1] (numeric) = -1.018591497247981 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3736478633217680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9121278561776407 " " Order of pole = 2.1708090362220815 " " x[1] = -1.6220000000000416 " " y[1] (analytic) = -1.0183162052113803 " " y[1] (numeric) = -1.018316205211371 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 9.1581311965034140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9112842855556853 " " Order of pole = 2.170962889961274 " " x[1] = -1.6210000000000417 " " y[1] (analytic) = -1.0180406671061974 " " y[1] (numeric) = -1.018040667106188 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 9.3787196526407040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.91044089527088 " " Order of pole = 2.171117237282207 " " x[1] = -1.6200000000000419 " " y[1] (analytic) = -1.0177648826442676 " " y[1] (numeric) = -1.0177648826442578 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.5994298715808680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9095976839359166 " " Order of pole = 2.1712720552060283 " " x[1] = -1.619000000000042 " " y[1] (analytic) = -1.0174888515370513 " " y[1] (numeric) = -1.0174888515370413 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8202621154346440000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9087546501537578 " " Order of pole = 2.1714273205917642 " " x[1] = -1.618000000000042 " " y[1] (analytic) = -1.0172125734956423 " " y[1] (numeric) = -1.0172125734956325 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.604642010201451000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.907911792516747 " " Order of pole = 2.1715830101244364 " " x[1] = -1.6170000000000422 " " y[1] (analytic) = -1.016936048230769 " " y[1] (numeric) = -1.0169360482307597 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 9.1705603543862520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9070691096078718 " " Order of pole = 2.1717391003321573 " " x[1] = -1.6160000000000423 " " y[1] (analytic) = -1.0166592754527939 " " y[1] (numeric) = -1.0166592754527841 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.6098691593111040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9062266000006725 " " Order of pole = 2.17189556758499 " " x[1] = -1.6150000000000424 " " y[1] (analytic) = -1.01638225487171 " " y[1] (numeric) = -1.0163822548717003 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.6124883820748750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9053842622593407 " " Order of pole = 2.172052388096393 " " x[1] = -1.6140000000000425 " " y[1] (analytic) = -1.0161049861971447 " " y[1] (numeric) = -1.016104986197135 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.6151113806322850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9045420949387284 " " Order of pole = 2.1722095379235036 " " x[1] = -1.6130000000000426 " " y[1] (analytic) = -1.015827469138357 " " y[1] (numeric) = -1.0158274691383473 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 9.6177381627496580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9037000965857047 " " Order of pole = 2.1723669929854594 " " x[1] = -1.6120000000000427 " " y[1] (analytic) = -1.0155497034042384 " " y[1] (numeric) = -1.0155497034042285 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8390134802187030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9028582657379067 " " Order of pole = 2.1725247290468133 " " x[1] = -1.6110000000000428 " " y[1] (analytic) = -1.015271688703311 " " y[1] (numeric) = -1.015271688703301 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8417077249421210000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9020166009249944 " " Order of pole = 2.1726827217344784 " " x[1] = -1.610000000000043 " " y[1] (analytic) = -1.0149934247437291 " " y[1] (numeric) = -1.0149934247437191 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.844405863170240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9011751006688455 " " Order of pole = 2.17284094654066 " " x[1] = -1.609000000000043 " " y[1] (analytic) = -1.014714911233277 " " y[1] (numeric) = -1.014714911233267 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.847107902930291000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.90033376348341 " " Order of pole = 2.172999378820897 " " x[1] = -1.6080000000000432 " " y[1] (analytic) = -1.01443614787937 " " y[1] (numeric) = -1.01443614787936 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8498138522707620000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8994925878750817 " " Order of pole = 2.173157993799393 " " x[1] = -1.6070000000000433 " " y[1] (analytic) = -1.0141571343890534 " " y[1] (numeric) = -1.0141571343890432 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0071468690800632000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8986515723434962 " " Order of pole = 2.1733167665798945 " " x[1] = -1.6060000000000434 " " y[1] (analytic) = -1.0138778704690021 " " y[1] (numeric) = -1.0138778704689921 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8552375119937090000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8978107153809889 " " Order of pole = 2.1734756721385864 " " x[1] = -1.6050000000000435 " " y[1] (analytic) = -1.013598355825521 " " y[1] (numeric) = -1.013598355825511 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8579552385801370000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8969700154736227 " " Order of pole = 2.173634685338172 " " x[1] = -1.6040000000000436 " " y[1] (analytic) = -1.0133185901645438 " " y[1] (numeric) = -1.0133185901645339 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.860676907155030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8961294711008678 " " Order of pole = 2.173793780923795 " " x[1] = -1.6030000000000437 " " y[1] (analytic) = -1.0130385731916332 " " y[1] (numeric) = -1.013038573191623 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0082589248671464000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8952890807363063 " " Order of pole = 2.1739529335327745 " " x[1] = -1.6020000000000438 " " y[1] (analytic) = -1.0127583046119792 " " y[1] (numeric) = -1.012758304611969 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0085379482980174000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8944488428479183 " " Order of pole = 2.1741121176986127 " " x[1] = -1.601000000000044 " " y[1] (analytic) = -1.0124777841304013 " " y[1] (numeric) = -1.0124777841303914 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8688656464777260000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8936087558979062 " " Order of pole = 2.174271307849054 " " x[1] = -1.600000000000044 " " y[1] (analytic) = -1.0121970114513463 " " y[1] (numeric) = -1.0121970114513363 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 9.8716031647824110000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.892768818343732 " " Order of pole = 2.174430478320158 " " x[1] = -1.5990000000000442 " " y[1] (analytic) = -1.0119159862788885 " " y[1] (numeric) = -1.0119159862788782 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0093774547540751000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8919290286376707 " " Order of pole = 2.1745896033507037 " " x[1] = -1.5980000000000443 " " y[1] (analytic) = -1.0116347083167283 " " y[1] (numeric) = -1.011634708316718 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0096581051026542000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8910893852276165 " " Order of pole = 2.1747486570932253 " " x[1] = -1.5970000000000444 " " y[1] (analytic) = -1.011353177268194 " " y[1] (numeric) = -1.0113531772681839 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0099391642928356000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.890249886557312 " " Order of pole = 2.1749076136175276 " " x[1] = -1.5960000000000445 " " y[1] (analytic) = -1.0110713928362398 " " y[1] (numeric) = -1.0110713928362296 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0102206331739998000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8894105310664273 " " Order of pole = 2.1750664469119947 " " x[1] = -1.5950000000000446 " " y[1] (analytic) = -1.0107893547234459 " " y[1] (numeric) = -1.0107893547234355 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 1.032469958523832000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.888571317191211 " " Order of pole = 2.175225130892585 " " x[1] = -1.5940000000000447 " " y[1] (analytic) = -1.0105070626320178 " " y[1] (numeric) = -1.0105070626320076 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0107848034181378000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8877322433645043 " " Order of pole = 2.1753836394036163 " " x[1] = -1.5930000000000448 " " y[1] (analytic) = -1.0102245162637873 " " y[1] (numeric) = -1.010224516263777 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0110675064912375000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8868933080163313 " " Order of pole = 2.1755419462258097 " " x[1] = -1.592000000000045 " " y[1] (analytic) = -1.0099417153202104 " " y[1] (numeric) = -1.0099417153202002 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0113506226755858000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8860545095737904 " " Order of pole = 2.1757000250753897 " " x[1] = -1.591000000000045 " " y[1] (analytic) = -1.0096586595023678 " " y[1] (numeric) = -1.0096586595023576 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 1.0116341528319737000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8852158464623185 " " Order of pole = 2.1758578496212273 " " x[1] = -1.5900000000000452 " " y[1] (analytic) = -1.009375348510965 " " y[1] (numeric) = -1.0093753485109547 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 1.0339163173413979000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.884377317104618 " " Order of pole = 2.176015393471179 " " x[1] = -1.5890000000000453 " " y[1] (analytic) = -1.009091782046331 " " y[1] (numeric) = -1.0090917820463206 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 1.0342068597876375000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.883538919922266 " " Order of pole = 2.176172630193708 " " x[1] = -1.5880000000000454 " " y[1] (analytic) = -1.0088079598084185 " " y[1] (numeric) = -1.008807959808408 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 1.0344978278579778000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.882700653335524 " " Order of pole = 2.1763295333160073 " " x[1] = -1.5870000000000455 " " y[1] (analytic) = -1.0085238814968043 " " y[1] (numeric) = -1.0085238814967936 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0568060144082246000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.88186251576326 " " Order of pole = 2.176486076323421 " " x[1] = -1.5860000000000456 " " y[1] (analytic) = -1.0082395468106866 " " y[1] (numeric) = -1.008239546810676 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0571040453745206000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8810245056244317 " " Order of pole = 2.1766422326795407 " " x[1] = -1.5850000000000457 " " y[1] (analytic) = -1.0079549554488878 " " y[1] (numeric) = -1.0079549554488771 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0574025137517135000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8801866213371408 " " Order of pole = 2.176797975814228 " " x[1] = -1.5840000000000458 " " y[1] (analytic) = -1.0076701071098517 " " y[1] (numeric) = -1.007670107109841 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.057701420455018000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8793488613199971 " " Order of pole = 2.1769532791422463 " " x[1] = -1.583000000000046 " " y[1] (analytic) = -1.0073850014916443 " " y[1] (numeric) = -1.0073850014916337 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0580007664021097000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8785112239916808 " " Order of pole = 2.1771081160579513 " " x[1] = -1.582000000000046 " " y[1] (analytic) = -1.0070996382919535 " " y[1] (numeric) = -1.0070996382919428 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0583005525131325000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.87767370777205 " " Order of pole = 2.17726245995064 " " x[1] = -1.5810000000000461 " " y[1] (analytic) = -1.006814017208088 " " y[1] (numeric) = -1.0068140172080773 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 1.0586007797107061000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8768363110818163 " " Order of pole = 2.177416284200689 " " x[1] = -1.5800000000000463 " " y[1] (analytic) = -1.0065281379369782 " " y[1] (numeric) = -1.0065281379369673 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0809618957724336000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8759990323433435 " " Order of pole = 2.1775695621907403 " " x[1] = -1.5790000000000464 " " y[1] (analytic) = -1.006242000175174 " " y[1] (numeric) = -1.006242000175163 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0812692810906752000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8751618699808636 " " Order of pole = 2.177722267309253 " " x[1] = -1.5780000000000465 " " y[1] (analytic) = -1.0059556036188466 " " y[1] (numeric) = -1.0059556036188357 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0815771195255452000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8743248224207805 " " Order of pole = 2.1778743729549284 " " x[1] = -1.5770000000000466 " " y[1] (analytic) = -1.005668947963787 " " y[1] (numeric) = -1.0056689479637761 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 1.0818854120290804000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8734878880921852 " " Order of pole = 2.1780258525445326 " " x[1] = -1.5760000000000467 " " y[1] (analytic) = -1.0053820329054057 " " y[1] (numeric) = -1.0053820329053946 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.104279754648863000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8726510654271549 " " Order of pole = 2.178176679517037 " " x[1] = -1.5750000000000468 " " y[1] (analytic) = -1.0050948581387322 " " y[1] (numeric) = -1.0050948581387211 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.1045952684317817000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8718143528610807 " " Order of pole = 2.1783268273385517 " " x[1] = -1.574000000000047 " " y[1] (analytic) = -1.0048074233584159 " " y[1] (numeric) = -1.0048074233584046 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.1270094734498409000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8709777488329367 " " Order of pole = 2.1784762695075557 " " x[1] = -1.573000000000047 " " y[1] (analytic) = -1.0045197282587235 " " y[1] (numeric) = -1.0045197282587124 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.1052276957762329000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.870141251786113 " " Order of pole = 2.1786249795650576 " " x[1] = -1.5720000000000471 " " y[1] (analytic) = -1.0042317725335415 " " y[1] (numeric) = -1.0042317725335304 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.1055446113044336000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.869304860168152 " " Order of pole = 2.17877293109305 " " x[1] = -1.5710000000000472 " " y[1] (analytic) = -1.0039435558763734 " " y[1] (numeric) = -1.0039435558763623 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.105861996052167000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8684685724316297 " " Order of pole = 2.1789200977262198 " " x[1] = -1.5700000000000474 " " y[1] (analytic) = -1.0036550779803408 " " y[1] (numeric) = -1.0036550779803297 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.1061798510094353000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8676323870342662 " " Order of pole = 2.1790664531541957 " " x[1] = -1.5690000000000475 " " y[1] (analytic) = -1.0033663385381826 " " y[1] (numeric) = -1.0033663385381715 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.106498177168924000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.866796302439466 " " Order of pole = 2.1792119711296003 " " x[1] = -1.5680000000000476 " " y[1] (analytic) = -1.0030773372422548 " " y[1] (numeric) = -1.0030773372422435 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.1289533150365308000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8659603171165622 " " Order of pole = 2.1793566254719003 " " x[1] = -1.5670000000000477 " " y[1] (analytic) = -1.0027880737845298 " " y[1] (numeric) = -1.0027880737845185 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.1292789720203489000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8651244295411842 " " Order of pole = 2.1795003900731196 " " x[1] = -1.5660000000000478 " " y[1] (analytic) = -1.0024985478565966 " " y[1] (numeric) = -1.0024985478565855 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 1.1074559928280012000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.864288638196028 " " Order of pole = 2.179643238908433 " " x[1] = -1.565000000000048 " " y[1] (analytic) = -1.002208759149661 " " y[1] (numeric) = -1.0022087591496496 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 1.1299317380527435000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8634529415706975 " " Order of pole = 2.1797851460351794 " " x[1] = -1.564000000000048 " " y[1] (analytic) = -1.001918707354543 " " y[1] (numeric) = -1.0019187073545315 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.152420787369908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8626173381623288 " " Order of pole = 2.1799260856019735 " " x[1] = -1.5630000000000481 " " y[1] (analytic) = -1.001628392161679 " " y[1] (numeric) = -1.0016283921616675 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.152754808715312900000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8617818264761339 " " Order of pole = 2.1800660318562635 " " x[1] = -1.5620000000000482 " " y[1] (analytic) = -1.0013378132611208 " " y[1] (numeric) = -1.0013378132611093 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.1530893274166878000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8609464050255438 " " Order of pole = 2.1802049591475594 " " x[1] = -1.5610000000000483 " " y[1] (analytic) = -1.0010469703425344 " " y[1] (numeric) = -1.0010469703425229 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.1534243445290836000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.860111072332766 " " Order of pole = 2.1803428419348343 " " x[1] = -1.5600000000000485 " " y[1] (analytic) = -1.0007558630952005 " " y[1] (numeric) = -1.0007558630951887 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.1759475507471646000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8592758269290843 " " Order of pole = 2.180479654792318 " " x[1] = -1.5590000000000486 " " y[1] (analytic) = -1.0004644912080134 " " y[1] (numeric) = -1.0004644912080018 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 1.1540958782215244000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8584406673552778 " " Order of pole = 2.180615372414991 " " x[1] = -1.5580000000000487 " " y[1] (analytic) = -1.0001728543694828 " " y[1] (numeric) = -1.0001728543694708 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.1988336429617003000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8576055921621035 " " Order of pole = 2.1807499696263335 " " x[1] = -1.5570000000000488 " " y[1] (analytic) = -0.9998809522677297 " " y[1] (numeric) = -0.9998809522677179 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 1.1769765224886036000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.85677059991047 " " Order of pole = 2.180883421381356 " " x[1] = -1.556000000000049 " " y[1] (analytic) = -0.9995887845904904 " " y[1] (numeric) = -0.9995887845904785 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 1.188427335982556000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.855935689172085 " " Order of pole = 2.181015702775703 " " x[1] = -1.555000000000049 " " y[1] (analytic) = -0.9992963510251128 " " y[1] (numeric) = -0.9992963510251008 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.1998851645611948000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.855100858529691 " " Order of pole = 2.181146789050171 " " x[1] = -1.5540000000000491 " " y[1] (analytic) = -0.9990036512585577 " " y[1] (numeric) = -0.9990036512585458 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 1.1891234179698312000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.854266106577547 " " Order of pole = 2.181276655597582 " " x[1] = -1.5530000000000492 " " y[1] (analytic) = -0.9987106849773988 " " y[1] (numeric) = -0.9987106849773866 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.222821929771693000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8534314319218184 " " Order of pole = 2.181405277968615 " " x[1] = -1.5520000000000493 " " y[1] (analytic) = -0.9984174518678203 " " y[1] (numeric) = -0.9984174518678083 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 1.2009414141870481000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8525968331807683 " " Order of pole = 2.181532631876294 " " x[1] = -1.5510000000000495 " " y[1] (analytic) = -0.9981239516156195 " " y[1] (numeric) = -0.9981239516156076 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 1.190171455585304100000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8517623089855029 " " Order of pole = 2.181658693205467 " " x[1] = -1.5500000000000496 " " y[1] (analytic) = -0.9978301839062049 " " y[1] (numeric) = -0.9978301839061928 " " absolute error = 1.210143096841420600000000000000E-14 " " relative error = 1.2127745946750924000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8509278579801678 " " Order of pole = 2.18178343801679 " " x[1] = -1.5490000000000497 " " y[1] (analytic) = -0.9975361484245951 " " y[1] (numeric) = -0.9975361484245829 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.224261726270652000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.850093478822297 " " Order of pole = 2.1819068425525607 " " x[1] = -1.5480000000000498 " " y[1] (analytic) = -0.9972418448554202 " " y[1] (numeric) = -0.9972418448554079 " " absolute error = 1.232347557333923800000000000000E-14 " " relative error = 1.235755964003485000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8492591701833234 " " Order of pole = 2.1820288832442145 " " x[1] = -1.54700000000005 " " y[1] (analytic) = -0.9969472728829204 " " y[1] (numeric) = -0.9969472728829081 " " absolute error = 1.232347557333923800000000000000E-14 " " relative error = 1.236121097728955100000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8484249307489677 " " Order of pole = 2.182149536718125 " " x[1] = -1.54600000000005 " " y[1] (analytic) = -0.9966524321909462 " " y[1] (numeric) = -0.9966524321909338 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.2476263012238813000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8475907592194527 " " Order of pole = 2.182268779799923 " " x[1] = -1.5450000000000501 " " y[1] (analytic) = -0.9963573224629576 " " y[1] (numeric) = -0.9963573224629453 " " absolute error = 1.232347557333923800000000000000E-14 " " relative error = 1.2368530140247348000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.846756654310165 " " Order of pole = 2.1823865895235954 " " x[1] = -1.5440000000000502 " " y[1] (analytic) = -0.9960619433820245 " " y[1] (numeric) = -0.9960619433820123 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 1.2260736746361987000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8459226147518846 " " Order of pole = 2.18250294313615 " " x[1] = -1.5430000000000503 " " y[1] (analytic) = -0.9957662946308262 " " y[1] (numeric) = -0.9957662946308138 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.248736570302549000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.845088639291188 " " Order of pole = 2.1826178181031644 " " x[1] = -1.5420000000000504 " " y[1] (analytic) = -0.9954703758916499 " " y[1] (numeric) = -0.9954703758916376 " " absolute error = 1.232347557333923800000000000000E-14 " " relative error = 1.2379550282750516000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.844254726690862 " " Order of pole = 2.1827311921161225 " " x[1] = -1.5410000000000506 " " y[1] (analytic) = -0.9951741868463927 " " y[1] (numeric) = -0.99517418684638 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.2717916770765628000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8434208757303348 " " Order of pole = 2.1828430430979324 " " x[1] = -1.5400000000000507 " " y[1] (analytic) = -0.9948777271765585 " " y[1] (numeric) = -0.994877727176546 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.2610112615414745000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8425870852059496 " " Order of pole = 2.182953349208862 " " x[1] = -1.5390000000000508 " " y[1] (analytic) = -0.9945809965632608 " " y[1] (numeric) = -0.9945809965632483 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.2613874809205955000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.841753353931468 " " Order of pole = 2.1830620888532195 " " x[1] = -1.5380000000000509 " " y[1] (analytic) = -0.9942839946872197 " " y[1] (numeric) = -0.9942839946872072 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.2617642690920333000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8409196807383723 " " Order of pole = 2.1831692406846663 " " x[1] = -1.537000000000051 " " y[1] (analytic) = -0.9939867212287633 " " y[1] (numeric) = -0.9939867212287506 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.273311022211726000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8400860644763197 " " Order of pole = 2.183274783613328 " " x[1] = -1.536000000000051 " " y[1] (analytic) = -0.9936891758678261 " " y[1] (numeric) = -0.9936891758678136 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.262519556712268000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8392525040134633 " " Order of pole = 2.1833786968109727 " " x[1] = -1.5350000000000512 " " y[1] (analytic) = -0.9933913582839505 " " y[1] (numeric) = -0.9933913582839378 " " absolute error = 1.2767564783189300000000000000E-14 " " relative error = 1.2852502366484073000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8384189982368273 " " Order of pole = 2.1834809597168245 " " x[1] = -1.5340000000000513 " " y[1] (analytic) = -0.993093268156284 " " y[1] (numeric) = -0.9930932681562715 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 1.252097690571086000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8375855460527746 " " Order of pole = 2.1835815520450232 " " x[1] = -1.5330000000000514 " " y[1] (analytic) = -0.9927949051635819 " " y[1] (numeric) = -0.9927949051635694 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.2636567848016056000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8367521463872603 " " Order of pole = 2.1836804537891403 " " x[1] = -1.5320000000000515 " " y[1] (analytic) = -0.9924962689842043 " " y[1] (numeric) = -0.9924962689841917 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 1.264037011555147000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.835918798186295 " " Order of pole = 2.183777645228556 " " x[1] = -1.5310000000000517 " " y[1] (analytic) = -0.9921973592961174 " " y[1] (numeric) = -0.9921973592961048 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.275607353934661000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8350855004162407 " " Order of pole = 2.183873106934371 " " x[1] = -1.5300000000000518 " " y[1] (analytic) = -0.9918981757768925 " " y[1] (numeric) = -0.9918981757768798 " " absolute error = 1.2767564783189300000000000000E-14 " " relative error = 1.2871850251351916000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.83425225206426 " " Order of pole = 2.183966819775911 " " x[1] = -1.5290000000000519 " " y[1] (analytic) = -0.991598718103706 " " y[1] (numeric) = -0.9915987181036934 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 1.2763774548771759000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8334190521386238 " " Order of pole = 2.1840587649258048 " " x[1] = -1.528000000000052 " " y[1] (analytic) = -0.9912989859533398 " " y[1] (numeric) = -0.9912989859533269 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.2991627418307486000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8325858996691238 " " Order of pole = 2.184148923866722 " " x[1] = -1.527000000000052 " " y[1] (analytic) = -0.9909989790021789 " " y[1] (numeric) = -0.990998979002166 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.2995560397669695000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8317527937073013 " " Order of pole = 2.184237278394921 " " x[1] = -1.5260000000000522 " " y[1] (analytic) = -0.9906986969262138 " " y[1] (numeric) = -0.9906986969262008 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.311156401882477000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.830919733327 " " Order of pole = 2.1843238106294365 " " x[1] = -1.5250000000000523 " " y[1] (analytic) = -0.990398139401038 " " y[1] (numeric) = -0.9903981394010252 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.3003444345564283000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8300867176245803 " " Order of pole = 2.1844085030151668 " " x[1] = -1.5240000000000524 " " y[1] (analytic) = -0.9900973061018495 " " y[1] (numeric) = -0.9900973061018365 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.3119528058566512000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8292537457193054 " " Order of pole = 2.1844913383295577 " " x[1] = -1.5230000000000525 " " y[1] (analytic) = -0.9897961967034488 " " y[1] (numeric) = -0.9897961967034358 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.3123519196554487000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8284208167536933 " " Order of pole = 2.1845722996881562 " " x[1] = -1.5220000000000526 " " y[1] (analytic) = -0.9894948108802397 " " y[1] (numeric) = -0.9894948108802268 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.3015315435757785000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8275879298938476 " " Order of pole = 2.184651370549844 " " x[1] = -1.5210000000000528 " " y[1] (analytic) = -0.9891931483062296 " " y[1] (numeric) = -0.9891931483062165 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.3243754986585507000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8267550843297984 " " Order of pole = 2.184728534722616 " " x[1] = -1.5200000000000529 " " y[1] (analytic) = -0.988891208655027 " " y[1] (numeric) = -0.988891208655014 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.3135529241665790000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8259222792759087 " " Order of pole = 2.1848037763702663 " " x[1] = -1.519000000000053 " " y[1] (analytic) = -0.9885889915998438 " " y[1] (numeric) = -0.9885889915998307 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.3251848646803116000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8250895139710426 " " Order of pole = 2.1848770800147754 " " x[1] = -1.518000000000053 " " y[1] (analytic) = -0.9882864968134931 " " y[1] (numeric) = -0.9882864968134801 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.3143566597334272000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.824256787679023 " " Order of pole = 2.1849484305443063 " " x[1] = -1.5170000000000532 " " y[1] (analytic) = -0.9879837239683902 " " y[1] (numeric) = -0.9879837239683773 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 1.3035221910258774000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.823424099689055 " " Order of pole = 2.1850178132201634 " " x[1] = -1.5160000000000533 " " y[1] (analytic) = -0.9876806727365518 " " y[1] (numeric) = -0.9876806727365387 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.3264035687039544000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.822591449315679 " " Order of pole = 2.185085213675393 " " x[1] = -1.5150000000000534 " " y[1] (analytic) = -0.987377342789595 " " y[1] (numeric) = -0.9873773427895819 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.3268110501264080000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8217588358994548 " " Order of pole = 2.1851506179269116 " " x[1] = -1.5140000000000535 " " y[1] (analytic) = -0.9870737337987385 " " y[1] (numeric) = -0.9870737337987254 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 1.3272191571909490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.820926258807192 " " Order of pole = 2.1852140123788146 " " x[1] = -1.5130000000000536 " " y[1] (analytic) = -0.9867698454348013 " " y[1] (numeric) = -0.9867698454347883 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 1.3163768074399057000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8200937174321214 " " Order of pole = 2.185275383825555 " " x[1] = -1.5120000000000537 " " y[1] (analytic) = -0.9864656773682031 " " y[1] (numeric) = -0.9864656773681899 " " absolute error = 1.321165399303936300000000000000E-14 " " relative error = 1.3392918067141274000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8192612111942126 " " Order of pole = 2.1853347194567476 " " x[1] = -1.5110000000000539 " " y[1] (analytic) = -0.9861612292689629 " " y[1] (numeric) = -0.9861612292689497 " " absolute error = 1.321165399303936300000000000000E-14 " " relative error = 1.3397052734300968000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8184287395406975 " " Order of pole = 2.1853920068667634 " " x[1] = -1.510000000000054 " " y[1] (analytic) = -0.9858565008067 " " y[1] (numeric) = -0.9858565008066867 " " absolute error = 1.321165399303936300000000000000E-14 " " relative error = 1.3401193766261743000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8175963019461157 " " Order of pole = 2.1854472340546813 " " x[1] = -1.509000000000054 " " y[1] (analytic) = -0.9855514916506329 " " y[1] (numeric) = -0.9855514916506197 " " absolute error = 1.321165399303936300000000000000E-14 " " relative error = 1.3405341176960794000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.816763897912594 " " Order of pole = 2.185500389429265 " " x[1] = -1.5080000000000542 " " y[1] (analytic) = -0.9852462014695801 " " y[1] (numeric) = -0.9852462014695665 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3747549475678045000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.815931526970355 " " Order of pole = 2.1855514618177914 " " x[1] = -1.5070000000000543 " " y[1] (analytic) = -0.9849406299319576 " " y[1] (numeric) = -0.9849406299319442 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.3639094773552420000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.815099188677789 " " Order of pole = 2.1856004404669562 " " x[1] = -1.5060000000000544 " " y[1] (analytic) = -0.9846347767057816 " " y[1] (numeric) = -0.9846347767057683 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.35305766266702000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8142668826217765 " " Order of pole = 2.185647315048506 " " x[1] = -1.5050000000000545 " " y[1] (analytic) = -0.984328641458666 " " y[1] (numeric) = -0.9843286414586527 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.353478476025969000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.813434608417994 " " Order of pole = 2.185692075664452 " " x[1] = -1.5040000000000546 " " y[1] (analytic) = -0.9840222238578233 " " y[1] (numeric) = -0.9840222238578099 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.3651824392032600000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8126023657111447 " " Order of pole = 2.1857347128509623 " " x[1] = -1.5030000000000547 " " y[1] (analytic) = -0.9837155235700633 " " y[1] (numeric) = -0.9837155235700499 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.3656080722617167000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8117701541751854 " " Order of pole = 2.1857752175823073 " " x[1] = -1.5020000000000548 " " y[1] (analytic) = -0.9834085402617941 " " y[1] (numeric) = -0.9834085402617806 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3773239041447777000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.81093797351363 " " Order of pole = 2.1858135812761077 " " x[1] = -1.501000000000055 " " y[1] (analytic) = -0.9831012735990207 " " y[1] (numeric) = -0.9831012735990073 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 1.3551682469832527000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8101058234596468 " " Order of pole = 2.185849795794855 " " x[1] = -1.500000000000055 " " y[1] (analytic) = -0.9827937232473459 " " y[1] (numeric) = -0.9827937232473325 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.366888928998934000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.809273703776598 " " Order of pole = 2.1858838534556106 " " x[1] = -1.4990000000000552 " " y[1] (analytic) = -0.9824858888719687 " " y[1] (numeric) = -0.9824858888719553 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.3673172052769286000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8084416142579496 " " Order of pole = 2.1859157470281936 " " x[1] = -1.4980000000000553 " " y[1] (analytic) = -0.9821777701376855 " " y[1] (numeric) = -0.9821777701376719 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3790498331608705000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8076095547276871 " " Order of pole = 2.1859454697424674 " " x[1] = -1.4970000000000554 " " y[1] (analytic) = -0.9818693667088882 " " y[1] (numeric) = -0.9818693667088747 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3794829902706138000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8067775250402658 " " Order of pole = 2.1859730152876367 " " x[1] = -1.4960000000000555 " " y[1] (analytic) = -0.9815606782495657 " " y[1] (numeric) = -0.9815606782495521 " " absolute error = 1.365574320288942500000000000000E-14 " " relative error = 1.3912276138895407000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8059455250813856 " " Order of pole = 2.1859983778258005 " " x[1] = -1.4950000000000556 " " y[1] (analytic) = -0.9812517044233021 " " y[1] (numeric) = -0.9812517044232886 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3803513246774300000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.805113554767469 " " Order of pole = 2.1860215519827904 " " x[1] = -1.4940000000000557 " " y[1] (analytic) = -0.9809424448932778 " " y[1] (numeric) = -0.9809424448932643 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 1.3694685827796882000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.804281614046426 " " Order of pole = 2.186042532861819 " " x[1] = -1.4930000000000558 " " y[1] (analytic) = -0.9806328993222685 " " y[1] (numeric) = -0.9806328993222547 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.403865352148228000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.803449702897591 " " Order of pole = 2.186061316042405 " " x[1] = -1.492000000000056 " " y[1] (analytic) = -0.9803230673726441 " " y[1] (numeric) = -0.9803230673726305 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 1.3816588991145548000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8026178213318484 " " Order of pole = 2.1860778975825497 " " x[1] = -1.491000000000056 " " y[1] (analytic) = -0.980012948706371 " " y[1] (numeric) = -0.9800129487063572 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.404753429383177000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8017859693921068 " " Order of pole = 2.1860922740274304 " " x[1] = -1.4900000000000562 " " y[1] (analytic) = -0.9797025429850089 " " y[1] (numeric) = -0.9797025429849953 " " absolute error = 1.365574320288942500000000000000E-14 " " relative error = 1.393866260802222000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8009541471530697 " " Order of pole = 2.186104442405412 " " x[1] = -1.4890000000000563 " " y[1] (analytic) = -0.9793918498697128 " " y[1] (numeric) = -0.9793918498696992 " " absolute error = 1.365574320288942500000000000000E-14 " " relative error = 1.3943084379052195000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8001223547217966 " " Order of pole = 2.1861144002379724 " " x[1] = -1.4880000000000564 " " y[1] (analytic) = -0.9790808690212317 " " y[1] (numeric) = -0.9790808690212179 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.4060907470405698000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7992905922373812 " " Order of pole = 2.1861221455345756 " " x[1] = -1.4870000000000565 " " y[1] (analytic) = -0.9787696000999082 " " y[1] (numeric) = -0.9787696000998943 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4178809605854000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7984588598716653 " " Order of pole = 2.1861276768049827 " " x[1] = -1.4860000000000566 " " y[1] (analytic) = -0.9784580427656789 " " y[1] (numeric) = -0.978458042765665 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.4296790969939435000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7976271578289955 " " Order of pole = 2.1861309930554995 " " x[1] = -1.4850000000000567 " " y[1] (analytic) = -0.9781461966780738 " " y[1] (numeric) = -0.9781461966780599 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4187846208414892000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7967954863462159 " " Order of pole = 2.186132093789091 " " x[1] = -1.4840000000000568 " " y[1] (analytic) = -0.9778340614962163 " " y[1] (numeric) = -0.9778340614962026 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 1.4078836121015212000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7959638456933062 " " Order of pole = 2.1861309790166956 " " x[1] = -1.483000000000057 " " y[1] (analytic) = -0.977521636878823 " " y[1] (numeric) = -0.9775216368788091 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4196911131425724000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.795132236173152 " " Order of pole = 2.186127649253585 " " x[1] = -1.482000000000057 " " y[1] (analytic) = -0.9772089224842027 " " y[1] (numeric) = -0.9772089224841888 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4201454252520704000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.794300658121683 " " Order of pole = 2.1861221055220774 " " x[1] = -1.4810000000000572 " " y[1] (analytic) = -0.9768959179702573 " " y[1] (numeric) = -0.9768959179702433 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.431965253713229000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.793469111907963 " " Order of pole = 2.186114349353481 " " x[1] = -1.4800000000000573 " " y[1] (analytic) = -0.9765826229944805 " " y[1] (numeric) = -0.9765826229944666 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4210561893126059000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7926375979345042 " " Order of pole = 2.1861043827938538 " " x[1] = -1.4790000000000574 " " y[1] (analytic) = -0.9762690372139593 " " y[1] (numeric) = -0.976269037213945 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 1.4670010490689908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7918061166368329 " " Order of pole = 2.1860922083969356 " " x[1] = -1.4780000000000575 " " y[1] (analytic) = -0.9759551602853703 " " y[1] (numeric) = -0.9759551602853562 " " absolute error = 1.409983241273948800000000000000E-14 " " relative error = 1.4447213341867757000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7909746684843426 " " Order of pole = 2.1860778292392062 " " x[1] = -1.4770000000000576 " " y[1] (analytic) = -0.9756409918649841 " " y[1] (numeric) = -0.9756409918649702 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 1.4224277089143625000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7901432539794713 " " Order of pole = 2.1860612489062348 " " x[1] = -1.4760000000000577 " " y[1] (analytic) = -0.9753265316086619 " " y[1] (numeric) = -0.9753265316086479 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 1.4342694120300847000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7893118736585776 " " Order of pole = 2.1860424715080704 " " x[1] = -1.4750000000000578 " " y[1] (analytic) = -0.9750117791718558 " " y[1] (numeric) = -0.9750117791718417 " " absolute error = 1.409983241273948800000000000000E-14 " " relative error = 1.4461191868589980000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.78848052809154 " " Order of pole = 2.18602150167289 " " x[1] = -1.474000000000058 " " y[1] (analytic) = -0.9746967342096091 " " y[1] (numeric) = -0.9746967342095949 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 1.457977052393196000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7876492178818135 " " Order of pole = 2.1859983445484303 " " x[1] = -1.473000000000058 " " y[1] (analytic) = -0.9743813963765559 " " y[1] (numeric) = -0.9743813963765418 " " absolute error = 1.409983241273948800000000000000E-14 " " relative error = 1.4470547636862433000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.78681794366663 " " Order of pole = 2.1859730058059235 " " x[1] = -1.4720000000000582 " " y[1] (analytic) = -0.9740657653269209 " " y[1] (numeric) = -0.9740657653269068 " " absolute error = 1.409983241273948800000000000000E-14 " " relative error = 1.4475236595557006000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7859867061167456 " " Order of pole = 2.185945491636243 " " x[1] = -1.4710000000000583 " " y[1] (analytic) = -0.9737498407145194 " " y[1] (numeric) = -0.9737498407145051 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 1.4707963399670898000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7851555059371167 " " Order of pole = 2.185915808761955 " " x[1] = -1.4700000000000584 " " y[1] (analytic) = -0.9734336221927561 " " y[1] (numeric) = -0.9734336221927418 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 1.4712741260573130000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7843243438658758 " " Order of pole = 2.185883964420519 " " x[1] = -1.4690000000000585 " " y[1] (analytic) = -0.9731171094146264 " " y[1] (numeric) = -0.973117109414612 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 1.4717526677009893000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7834932206753222 " " Order of pole = 2.1858499663814612 " " x[1] = -1.4680000000000586 " " y[1] (analytic) = -0.9728003020327151 " " y[1] (numeric) = -0.9728003020327006 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.4836446174994775000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7826621371713391 " " Order of pole = 2.1858138229372805 " " x[1] = -1.4670000000000587 " " y[1] (analytic) = -0.9724831996991963 " " y[1] (numeric) = -0.9724831996991818 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 1.4841283967261695000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7818310941936237 " " Order of pole = 2.1857755429077024 " " x[1] = -1.4660000000000588 " " y[1] (analytic) = -0.972165802065834 " " y[1] (numeric) = -0.9721658020658195 " " absolute error = 1.45439216225895500000000000000E-14 " " relative error = 1.4960330420679263000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7810000926154452 " " Order of pole = 2.1857351356363424 " " x[1] = -1.465000000000059 " " y[1] (analytic) = -0.9718481087839808 " " y[1] (numeric) = -0.9718481087839661 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.5079459220627572000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7801691333438223 " " Order of pole = 2.1856926109941526 " " x[1] = -1.464000000000059 " " y[1] (analytic) = -0.971530119504578 " " y[1] (numeric) = -0.9715301195045635 " " absolute error = 1.45439216225895500000000000000E-14 " " relative error = 1.4970119125082892000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7793382173194823 " " Order of pole = 2.18564797937945 " " x[1] = -1.4630000000000591 " " y[1] (analytic) = -0.9712118338781566 " " y[1] (numeric) = -0.9712118338781419 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.5089338302781227000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.778507345516634 " " Order of pole = 2.185601251714612 " " x[1] = -1.4620000000000593 " " y[1] (analytic) = -0.9708932515548349 " " y[1] (numeric) = -0.9708932515548202 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 1.5094289615859352000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7776765189430186 " " Order of pole = 2.185552439447587 " " x[1] = -1.4610000000000594 " " y[1] (analytic) = -0.9705743721843203 " " y[1] (numeric) = -0.9705743721843055 " " absolute error = 1.476596622751458200000000000000E-14 " " relative error = 1.5213637049042544000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.776845738639852 " " Order of pole = 2.185501554551543 " " x[1] = -1.4600000000000595 " " y[1] (analytic) = -0.970255195415908 " " y[1] (numeric) = -0.9702551954158932 " " absolute error = 1.476596622751458200000000000000E-14 " " relative error = 1.5218641752477324000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7760150056817354 " " Order of pole = 2.185448609524027 " " x[1] = -1.4590000000000596 " " y[1] (analytic) = -0.9699357208984811 " " y[1] (numeric) = -0.9699357208984664 " " absolute error = 1.476596622751458200000000000000E-14 " " relative error = 1.522365442303374200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7751843211764398 " " Order of pole = 2.1853936173839763 " " x[1] = -1.4580000000000597 " " y[1] (analytic) = -0.9696159482805107 " " y[1] (numeric) = -0.9696159482804958 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.5343176395107286000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7743536862653098 " " Order of pole = 2.1853365916791105 " " x[1] = -1.4570000000000598 " " y[1] (analytic) = -0.9692958772100548 " " y[1] (numeric) = -0.96929587721004 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.5348242863466885000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.773523102122269 " " Order of pole = 2.1852775464699548 " " x[1] = -1.45600000000006 " " y[1] (analytic) = -0.9689755073347596 " " y[1] (numeric) = -0.9689755073347447 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.5353317413458034000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7726925699546243 " " Order of pole = 2.185216496343962 " " x[1] = -1.45500000000006 " " y[1] (analytic) = -0.9686548383018577 " " y[1] (numeric) = -0.9686548383018428 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 1.5358400063388777000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7718620910023772 " " Order of pole = 2.1851534564046595 " " x[1] = -1.4540000000000601 " " y[1] (analytic) = -0.9683338697581694 " " y[1] (numeric) = -0.9683338697581543 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.5592796664928124000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.771031666538322 " " Order of pole = 2.185088442273962 " " x[1] = -1.4530000000000602 " " y[1] (analytic) = -0.9680126013501007 " " y[1] (numeric) = -0.9680126013500857 " " absolute error = 1.498801083243961300000000000000E-14 " " relative error = 1.548328070475076800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7702012978676425 " " Order of pole = 2.1850214700861166 " " x[1] = -1.4520000000000604 " " y[1] (analytic) = -0.9676910327236454 " " y[1] (numeric) = -0.9676910327236304 " " absolute error = 1.498801083243961300000000000000E-14 " " relative error = 1.5488425877270592000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7693709863281986 " " Order of pole = 2.184952556493176 " " x[1] = -1.4510000000000605 " " y[1] (analytic) = -0.9673691635243834 " " y[1] (numeric) = -0.9673691635243681 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.583788104637158000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7685407332902963 " " Order of pole = 2.1848817186618206 " " x[1] = -1.4500000000000606 " " y[1] (analytic) = -0.9670469933974796 " " y[1] (numeric) = -0.9670469933974646 " " absolute error = 1.498801083243961300000000000000E-14 " " relative error = 1.5498740945135414000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7677105401558098 " " Order of pole = 2.184808974259454 " " x[1] = -1.4490000000000607 " " y[1] (analytic) = -0.9667245219876873 " " y[1] (numeric) = -0.966724521987672 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 1.5848442230807813000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7668804083589829 " " Order of pole = 2.1847343414682285 " " x[1] = -1.4480000000000608 " " y[1] (analytic) = -0.9664017489393434 " " y[1] (numeric) = -0.9664017489393282 " " absolute error = 1.521005543736464500000000000000E-14 " " relative error = 1.5738853384793813000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.766050339365913 " " Order of pole = 2.184657838977145 " " x[1] = -1.447000000000061 " " y[1] (analytic) = -0.966078673896372 " " y[1] (numeric) = -0.9660786738963568 " " absolute error = 1.521005543736464500000000000000E-14 " " relative error = 1.574411675606057000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.765220334673764 " " Order of pole = 2.1845794859696746 " " x[1] = -1.446000000000061 " " y[1] (analytic) = -0.9657552965022821 " " y[1] (numeric) = -0.965755296502267 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.5634429538814806000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7643903958116762 " " Order of pole = 2.1844993021395602 " " x[1] = -1.4450000000000611 " " y[1] (analytic) = -0.9654316164001685 " " y[1] (numeric) = -0.9654316164001534 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.5639671291481327000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7635605243394574 " " Order of pole = 2.184417307669804 " " x[1] = -1.4440000000000612 " " y[1] (analytic) = -0.9651076332327108 " " y[1] (numeric) = -0.9651076332326957 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 1.5644921472982887000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7627307218481336 " " Order of pole = 2.184333523242511 " " x[1] = -1.4430000000000613 " " y[1] (analytic) = -0.9647833466421741 " " y[1] (numeric) = -0.9647833466421587 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.5995404663647500000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7619009899592524 " " Order of pole = 2.1842479700279824 " " x[1] = -1.4420000000000615 " " y[1] (analytic) = -0.9644587562704077 " " y[1] (numeric) = -0.9644587562703922 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.600078794656403000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7610713303252001 " " Order of pole = 2.1841606696907725 " " x[1] = -1.4410000000000616 " " y[1] (analytic) = -0.9641338617588462 " " y[1] (numeric) = -0.9641338617588308 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.600617990341846000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7602417446279666 " " Order of pole = 2.1840716443698014 " " x[1] = -1.4400000000000617 " " y[1] (analytic) = -0.9638086627485086 " " y[1] (numeric) = -0.9638086627484932 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.6011580554050747000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7594122345802106 " " Order of pole = 2.1839809166968323 " " x[1] = -1.4390000000000618 " " y[1] (analytic) = -0.9634831588799987 " " y[1] (numeric) = -0.9634831588799829 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.6362680348251699000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7585828019237166 " " Order of pole = 2.1838885097714957 " " x[1] = -1.438000000000062 " " y[1] (analytic) = -0.9631573497935034 " " y[1] (numeric) = -0.9631573497934878 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 1.6252946261138831000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.757753448430153 " " Order of pole = 2.183794447174666 " " x[1] = -1.437000000000062 " " y[1] (analytic) = -0.9628312351287951 " " y[1] (numeric) = -0.9628312351287794 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 1.6258451196923102000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7569241758999614 " " Order of pole = 2.1836987529506757 " " x[1] = -1.4360000000000621 " " y[1] (analytic) = -0.9625048145252293 " " y[1] (numeric) = -0.9625048145252136 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 1.6263965032669847000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7560949861628907 " " Order of pole = 2.183601451616912 " " x[1] = -1.4350000000000622 " " y[1] (analytic) = -0.9621780876217454 " " y[1] (numeric) = -0.96217808762173 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.603871491236495000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7552658810767654 " " Order of pole = 2.1835025681441067 " " x[1] = -1.4340000000000623 " " y[1] (analytic) = -0.9618510540568671 " " y[1] (numeric) = -0.9618510540568516 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 1.6159593815689932000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7544368625280944 " " Order of pole = 2.183402127967156 " " x[1] = -1.4330000000000624 " " y[1] (analytic) = -0.9615237134687009 " " y[1] (numeric) = -0.9615237134686851 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.6396025109775314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7536079324309992 " " Order of pole = 2.183300156968034 " " x[1] = -1.4320000000000626 " " y[1] (analytic) = -0.9611960654949362 " " y[1] (numeric) = -0.9611960654949208 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 1.6055101135212643000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7527790927274902 " " Order of pole = 2.183196681481089 " " x[1] = -1.4310000000000627 " " y[1] (analytic) = -0.9608681097728473 " " y[1] (numeric) = -0.9608681097728317 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 1.629166842774645000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.751950345386719 " " Order of pole = 2.1830917282813687 " " x[1] = -1.4300000000000628 " " y[1] (analytic) = -0.9605398459392899 " " y[1] (numeric) = -0.9605398459392742 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 1.629723609425789100000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7511216924049107 " " Order of pole = 2.1829853245841733 " " x[1] = -1.4290000000000629 " " y[1] (analytic) = -0.9602112736307037 " " y[1] (numeric) = -0.9602112736306878 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 1.6534058376662744000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7502931358048555 " " Order of pole = 2.1828774980373815 " " x[1] = -1.428000000000063 " " y[1] (analytic) = -0.9598823924831105 " " y[1] (numeric) = -0.9598823924830946 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 1.6539723383267588000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7494646776354672 " " Order of pole = 2.1827682767148033 " " x[1] = -1.427000000000063 " " y[1] (analytic) = -0.9595532021321154 " " y[1] (numeric) = -0.9595532021320994 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.666109968585261000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7486363199716595 " " Order of pole = 2.182657689114812 " " x[1] = -1.4260000000000632 " " y[1] (analytic) = -0.9592237022129054 " " y[1] (numeric) = -0.9592237022128896 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 1.6551081062231637000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7478080649139982 " " Order of pole = 2.1825457641553037 " " x[1] = -1.4250000000000633 " " y[1] (analytic) = -0.9588938923602507 " " y[1] (numeric) = -0.9588938923602348 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 1.655677377719197200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.746979914587766 " " Order of pole = 2.1824325311589092 " " x[1] = -1.4240000000000634 " " y[1] (analytic) = -0.9585637722085033 " " y[1] (numeric) = -0.9585637722084873 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.6678297279865043000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7461518711435007 " " Order of pole = 2.182318019862567 " " x[1] = -1.4230000000000635 " " y[1] (analytic) = -0.9582333413915971 " " y[1] (numeric) = -0.9582333413915813 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 1.6452325617038346000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7453239367557252 " " Order of pole = 2.1822022603971476 " " x[1] = -1.4220000000000637 " " y[1] (analytic) = -0.9579025995430491 " " y[1] (numeric) = -0.9579025995430331 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 1.6689809133234085000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.744496113623049 " " Order of pole = 2.182085283289883 " " x[1] = -1.4210000000000638 " " y[1] (analytic) = -0.9575715462959572 " " y[1] (numeric) = -0.957571546295941 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.6927462206064214000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7436684039675805 " " Order of pole = 2.1819671194552512 " " x[1] = -1.4200000000000639 " " y[1] (analytic) = -0.9572401812830013 " " y[1] (numeric) = -0.9572401812829849 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.7049303592872087000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7428408100345147 " " Order of pole = 2.1818478001888337 " " x[1] = -1.419000000000064 " " y[1] (analytic) = -0.9569085041364428 " " y[1] (numeric) = -0.9569085041364267 " " absolute error = 1.60982338570647700000000000000E-14 " " relative error = 1.6823169391301981000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.742013334091895 " " Order of pole = 2.1817273571640534 " " x[1] = -1.418000000000064 " " y[1] (analytic) = -0.9565765144881259 " " y[1] (numeric) = -0.9565765144881097 " " absolute error = 1.620925615952728500000000000000E-14 " " relative error = 1.6945070168486240000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7411859784296477 " " Order of pole = 2.1816058224168096 " " x[1] = -1.4170000000000642 " " y[1] (analytic) = -0.956244211969475 " " y[1] (numeric) = -0.9562442119694586 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.706706117297866000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7403587453601024 " " Order of pole = 2.181483228354761 " " x[1] = -1.4160000000000643 " " y[1] (analytic) = -0.9559115962114961 " " y[1] (numeric) = -0.9559115962114798 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.707299976971817000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7395316372162666 " " Order of pole = 2.181359607729437 " " x[1] = -1.4150000000000644 " " y[1] (analytic) = -0.9555786668447769 " " y[1] (numeric) = -0.9555786668447606 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.7078948105735442000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7387046563525062 " " Order of pole = 2.1812349936480864 " " x[1] = -1.4140000000000645 " " y[1] (analytic) = -0.9552454234994858 " " y[1] (numeric) = -0.9552454234994695 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.7084906203686812000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7378778051435886 " " Order of pole = 2.18110941955851 " " x[1] = -1.4130000000000646 " " y[1] (analytic) = -0.9549118658053727 " " y[1] (numeric) = -0.9549118658053563 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.7207138535862845000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7370510859839545 " " Order of pole = 2.1809829192376284 " " x[1] = -1.4120000000000648 " " y[1] (analytic) = -0.9545779933917677 " " y[1] (numeric) = -0.9545779933917514 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 1.7096851776355382000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7362245012878914 " " Order of pole = 2.1808555267949323 " " x[1] = -1.4110000000000649 " " y[1] (analytic) = -0.954243805887583 " " y[1] (numeric) = -0.9542438058875664 " " absolute error = 1.654232306691483200000000000000E-14 " " relative error = 1.733553098783608000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.735398053488476 " " Order of pole = 2.1807272766556736 " " x[1] = -1.410000000000065 " " y[1] (analytic) = -0.9539093029213099 " " y[1] (numeric) = -0.9539093029212935 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.7225223314346658000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7345717450374734 " " Order of pole = 2.1805982035596863 " " x[1] = -1.409000000000065 " " y[1] (analytic) = -0.953574484121022 " " y[1] (numeric) = -0.9535744841210055 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 1.723127142983301200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7337455784044942 " " Order of pole = 2.1804683425481137 " " x[1] = -1.4080000000000652 " " y[1] (analytic) = -0.9532393491143726 " " y[1] (numeric) = -0.9532393491143559 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.7470266397258458000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7329195560767925 " " Order of pole = 2.180337728960623 " " x[1] = -1.4070000000000653 " " y[1] (analytic) = -0.9529038975285954 " " y[1] (numeric) = -0.9529038975285787 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.747641647029532000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.732093680558279 " " Order of pole = 2.1802063984196636 " " x[1] = -1.4060000000000654 " " y[1] (analytic) = -0.9525681289905048 " " y[1] (numeric) = -0.9525681289904883 " " absolute error = 1.654232306691483200000000000000E-14 " " relative error = 1.7366026180663585000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7312679543700726 " " Order of pole = 2.1800743868401398 " " x[1] = -1.4050000000000655 " " y[1] (analytic) = -0.9522320431264959 " " y[1] (numeric) = -0.9522320431264791 " " absolute error = 1.676436767183986400000000000000E-14 " " relative error = 1.760533873319033200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.730442380048599 " " Order of pole = 2.1799417303984967 " " x[1] = -1.4040000000000656 " " y[1] (analytic) = -0.951895639562543 " " y[1] (numeric) = -0.9518956395625263 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.749492767613751000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.729616960145937 " " Order of pole = 2.179808465539036 " " x[1] = -1.4030000000000658 " " y[1] (analytic) = -0.9515589179242017 " " y[1] (numeric) = -0.9515589179241849 " " absolute error = 1.676436767183986400000000000000E-14 " " relative error = 1.7617792609637717000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.728791697229038 " " Order of pole = 2.1796746289615285 " " x[1] = -1.4020000000000659 " " y[1] (analytic) = -0.9512218778366066 " " y[1] (numeric) = -0.95122187783659 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.7507319540686520000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.727966593879319 " " Order of pole = 2.179540257614981 " " x[1] = -1.401000000000066 " " y[1] (analytic) = -0.9508845189244737 " " y[1] (numeric) = -0.9508845189244568 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.7747044607887605000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7271416526917838 " " Order of pole = 2.179405388683648 " " x[1] = -1.400000000000066 " " y[1] (analytic) = -0.9505468408120972 " " y[1] (numeric) = -0.9505468408120805 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 1.7519752477583964000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7263168762749688 " " Order of pole = 2.17927005958661 " " x[1] = -1.3990000000000662 " " y[1] (analytic) = -0.950208843123353 " " y[1] (numeric) = -0.9502088431233361 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 1.7759664200590555000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7254922672498867 " " Order of pole = 2.179134307960812 " " x[1] = -1.3980000000000663 " " y[1] (analytic) = -0.9498705254816954 " " y[1] (numeric) = -0.9498705254816784 " " absolute error = 1.698641227676489500000000000000E-14 " " relative error = 1.7882871213580187000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7246678282497374 " " Order of pole = 2.178998171656776 " " x[1] = -1.3970000000000664 " " y[1] (analytic) = -0.9495318875101592 " " y[1] (numeric) = -0.9495318875101421 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 1.8006172098190312000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.723843561919433 " " Order of pole = 2.1788616887311854 " " x[1] = -1.3960000000000665 " " y[1] (analytic) = -0.9491929288313584 " " y[1] (numeric) = -0.9491929288313412 " " absolute error = 1.720845688168992600000000000000E-14 " " relative error = 1.8129567086932360000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7230194709146054 " " Order of pole = 2.1787248974309357 " " x[1] = -1.3950000000000666 " " y[1] (analytic) = -0.9488536490674868 " " y[1] (numeric) = -0.9488536490674698 " " absolute error = 1.698641227676489500000000000000E-14 " " relative error = 1.790203609740952000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7221955579016142 " " Order of pole = 2.1785878361937456 " " x[1] = -1.3940000000000667 " " y[1] (analytic) = -0.9485140478403187 " " y[1] (numeric) = -0.9485140478403014 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 1.82595916460988000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7213718255561583 " " Order of pole = 2.1784505436255586 " " x[1] = -1.3930000000000669 " " y[1] (analytic) = -0.9481741247712063 " " y[1] (numeric) = -0.9481741247711889 " " absolute error = 1.743050148661495800000000000000E-14 " " relative error = 1.8383228387318548000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7205482765636535 " " Order of pole = 2.1783130585073067 " " x[1] = -1.392000000000067 " " y[1] (analytic) = -0.947833879481082 " " y[1] (numeric) = -0.9478338794810648 " " absolute error = 1.720845688168992600000000000000E-14 " " relative error = 1.8155562123513852000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7197249136180734 " " Order of pole = 2.1781754197760606 " " x[1] = -1.391000000000067 " " y[1] (analytic) = -0.9474933115904584 " " y[1] (numeric) = -0.9474933115904409 " " absolute error = 1.743050148661495800000000000000E-14 " " relative error = 1.8396437498177365000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7189017394212522 " " Order of pole = 2.178037666513937 " " x[1] = -1.3900000000000672 " " y[1] (analytic) = -0.9471524207194262 " " y[1] (numeric) = -0.9471524207194086 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.852027551780261700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7180787566825098 " " Order of pole = 2.177899837942263 " " x[1] = -1.3890000000000673 " " y[1] (analytic) = -0.9468112064876562 " " y[1] (numeric) = -0.9468112064876386 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.8526949901818854000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7172559681180566 " " Order of pole = 2.1777619734121174 " " x[1] = -1.3880000000000674 " " y[1] (analytic) = -0.9464696685143982 " " y[1] (numeric) = -0.9464696685143806 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.8533635437690335000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7164333764502926 " " Order of pole = 2.177624112393108 " " x[1] = -1.3870000000000675 " " y[1] (analytic) = -0.9461278064184815 " " y[1] (numeric) = -0.946127806418464 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.8540332151826314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7156109844071996 " " Order of pole = 2.177486294463602 " " x[1] = -1.3860000000000676 " " y[1] (analytic) = -0.9457856198183144 " " y[1] (numeric) = -0.9457856198182969 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.854704007071624200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7147887947218554 " " Order of pole = 2.1773485593031054 " " x[1] = -1.3850000000000677 " " y[1] (analytic) = -0.9454431083318848 " " y[1] (numeric) = -0.9454431083318672 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 1.8671188076758716000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7139668101315204 " " Order of pole = 2.177210946677377 " " x[1] = -1.3840000000000678 " " y[1] (analytic) = -0.9451002715767589 " " y[1] (numeric) = -0.9451002715767415 " " absolute error = 1.743050148661495800000000000000E-14 " " relative error = 1.8443018175769607000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7131450333772495 " " Order of pole = 2.1770734964323637 " " x[1] = -1.383000000000068 " " y[1] (analytic) = -0.9447571091700833 " " y[1] (numeric) = -0.9447571091700657 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.856723132201326000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7123234672029575 " " Order of pole = 2.176936248479013 " " x[1] = -1.382000000000068 " " y[1] (analytic) = -0.9444136207285825 " " y[1] (numeric) = -0.9444136207285649 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 1.8573984326427645000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7115021143560567 " " Order of pole = 2.1767992428041616 " " x[1] = -1.3810000000000682 " " y[1] (analytic) = -0.944069805868561 " " y[1] (numeric) = -0.9440698058685433 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.8815948019500214000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7106809775842446 " " Order of pole = 2.176662519417448 " " x[1] = -1.3800000000000683 " " y[1] (analytic) = -0.9437256642059016 " " y[1] (numeric) = -0.943725664205884 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 1.8705166936827697000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7098600596370561 " " Order of pole = 2.1765261183774776 " " x[1] = -1.3790000000000684 " " y[1] (analytic) = -0.9433811953560671 " " y[1] (numeric) = -0.9433811953560494 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.8829682509516077000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7090393632656824 " " Order of pole = 2.1763900797889413 " " x[1] = -1.3780000000000685 " " y[1] (analytic) = -0.9430363989340985 " " y[1] (numeric) = -0.9430363989340806 " " absolute error = 1.78745906964650200000000000000E-14 " " relative error = 1.8954295631291043000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7082188912186016 " " Order of pole = 2.1762544437304108 " " x[1] = -1.3770000000000686 " " y[1] (analytic) = -0.9426912745546161 " " y[1] (numeric) = -0.9426912745545983 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.884346325619177800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7073986462461672 " " Order of pole = 2.1761192503307427 " " x[1] = -1.3760000000000687 " " y[1] (analytic) = -0.9423458218318198 " " y[1] (numeric) = -0.9423458218318018 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.908600068281241000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.706578631096548 " " Order of pole = 2.1759845397018402 " " x[1] = -1.3750000000000688 " " y[1] (analytic) = -0.9420000403794875 " " y[1] (numeric) = -0.9420000403794695 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.9093006611424326000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7057588485159674 " " Order of pole = 2.175850351942877 " " x[1] = -1.374000000000069 " " y[1] (analytic) = -0.9416539298109767 " " y[1] (numeric) = -0.941653929810959 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 1.886422159101304000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7049393012464364 " " Order of pole = 2.1757167271028095 " " x[1] = -1.373000000000069 " " y[1] (analytic) = -0.9413074897392244 " " y[1] (numeric) = -0.9413074897392067 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 1.875321962691529000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7041199920273276 " " Order of pole = 2.175583705206691 " " x[1] = -1.3720000000000692 " " y[1] (analytic) = -0.9409607197767464 " " y[1] (numeric) = -0.9409607197767283 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 1.9232083678991066000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7033009235955219 " " Order of pole = 2.1754513262582726 " " x[1] = -1.3710000000000693 " " y[1] (analytic) = -0.9406136195356365 " " y[1] (numeric) = -0.9406136195356185 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.9121148817520525000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.702482098681492 " " Order of pole = 2.175319630175043 " " x[1] = -1.3700000000000694 " " y[1] (analytic) = -0.9402661886275688 " " y[1] (numeric) = -0.9402661886275508 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.912821413389297000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7016635200107832 " " Order of pole = 2.1751886568130594 " " x[1] = -1.3690000000000695 " " y[1] (analytic) = -0.9399184266637962 " " y[1] (numeric) = -0.9399184266637782 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 1.9135291413284410000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7008451903031294 " " Order of pole = 2.175058445952203 " " x[1] = -1.3680000000000696 " " y[1] (analytic) = -0.9395703332551506 " " y[1] (numeric) = -0.9395703332551325 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 1.9260543528118945000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7000271122711421 " " Order of pole = 2.1749290372746337 " " x[1] = -1.3670000000000697 " " y[1] (analytic) = -0.9392219080120429 " " y[1] (numeric) = -0.9392219080120247 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.9385895333713943000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6992092886206305 " " Order of pole = 2.174800470370105 " " x[1] = -1.3660000000000698 " " y[1] (analytic) = -0.9388731505444629 " " y[1] (numeric) = -0.9388731505444448 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 1.9274845905323434000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6983917220490388 " " Order of pole = 2.1746727847101006 " " x[1] = -1.36500000000007 " " y[1] (analytic) = -0.9385240604619803 " " y[1] (numeric) = -0.9385240604619622 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 1.9282015308677478000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6975744152449015 " " Order of pole = 2.1745460196387256 " " x[1] = -1.36400000000007 " " y[1] (analytic) = -0.9381746373737436 " " y[1] (numeric) = -0.9381746373737255 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 1.928919689413948200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6967573708878474 " " Order of pole = 2.1744202143729083 " " x[1] = -1.3630000000000702 " " y[1] (analytic) = -0.9378248808884806 " " y[1] (numeric) = -0.9378248808884624 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 1.94147734560026990000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6959405916467858 " " Order of pole = 2.1742954079722203 " " x[1] = -1.3620000000000703 " " y[1] (analytic) = -0.9374747906144981 " " y[1] (numeric) = -0.9374747906144798 " " absolute error = 1.831867990631508300000000000000E-14 " " relative error = 1.9540450676340335000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6951240801805187 " " Order of pole = 2.1741716393489696 " " x[1] = -1.3610000000000704 " " y[1] (analytic) = -0.9371243661596824 " " y[1] (numeric) = -0.9371243661596641 " " absolute error = 1.831867990631508300000000000000E-14 " " relative error = 1.9547757552591105000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6943078391361621 " " Order of pole = 2.1740489472420528 " " x[1] = -1.3600000000000705 " " y[1] (analytic) = -0.9367736071314992 " " y[1] (numeric) = -0.9367736071314808 " " absolute error = 1.831867990631508300000000000000E-14 " " relative error = 1.9555076879683703000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.69349187114879 " " Order of pole = 2.1739273702108655 " " x[1] = -1.3590000000000706 " " y[1] (analytic) = -0.9364225131369937 " " y[1] (numeric) = -0.9364225131369751 " " absolute error = 1.854072451124011400000000000000E-14 " " relative error = 1.9799528792968804000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6926761788407108 " " Order of pole = 2.1738069466232943 " " x[1] = -1.3580000000000707 " " y[1] (analytic) = -0.9360710837827898 " " y[1] (numeric) = -0.9360710837827714 " " absolute error = 1.8429702208777599000000000000E-14 " " relative error = 1.9688357570346773000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6918607648205917 " " Order of pole = 2.173687714641023 " " x[1] = -1.3570000000000708 " " y[1] (analytic) = -0.9357193186750922 " " y[1] (numeric) = -0.9357193186750736 " " absolute error = 1.854072451124011400000000000000E-14 " " relative error = 1.9814408168351572000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.691045631683393 " " Order of pole = 2.1735697122183666 " " x[1] = -1.356000000000071 " " y[1] (analytic) = -0.9353672174196841 " " y[1] (numeric) = -0.9353672174196654 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.994056074057799200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6902307820090283 " " Order of pole = 2.173452977079851 " " x[1] = -1.355000000000071 " " y[1] (analytic) = -0.9350147796219286 " " y[1] (numeric) = -0.9350147796219098 " " absolute error = 1.876276911616514600000000000000E-14 " " relative error = 2.006681554675727700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6894162183619739 " " Order of pole = 2.1733375467136007 " " x[1] = -1.3540000000000711 " " y[1] (analytic) = -0.9346620048867682 " " y[1] (numeric) = -0.9346620048867497 " " absolute error = 1.854072451124011400000000000000E-14 " " relative error = 1.9836822738382603000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6886019432908488 " " Order of pole = 2.17322345836417 " " x[1] = -1.3530000000000713 " " y[1] (analytic) = -0.9343088928187262 " " y[1] (numeric) = -0.9343088928187073 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 2.020080464147903000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6877879593269798 " " Order of pole = 2.1731107490085115 " " x[1] = -1.3520000000000714 " " y[1] (analytic) = -0.9339554430219039 " " y[1] (numeric) = -0.9339554430218853 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.9970703049123076000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.686974268984692 " " Order of pole = 2.172999455360646 " " x[1] = -1.3510000000000715 " " y[1] (analytic) = -0.9336016550999843 " " y[1] (numeric) = -0.9336016550999656 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 1.9978270937946355000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6861608747599273 " " Order of pole = 2.1728896138484295 " " x[1] = -1.3500000000000716 " " y[1] (analytic) = -0.9332475286562292 " " y[1] (numeric) = -0.9332475286562104 " " absolute error = 1.876276911616514600000000000000E-14 " " relative error = 2.0104815217867666000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6853477791299993 " " Order of pole = 2.172781260609252 " " x[1] = -1.3490000000000717 " " y[1] (analytic) = -0.9328930632934807 " " y[1] (numeric) = -0.9328930632934619 " " absolute error = 1.876276911616514600000000000000E-14 " " relative error = 2.0112454314887032000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6845349845523498 " " Order of pole = 2.1726744314691437 " " x[1] = -1.3480000000000718 " " y[1] (analytic) = -0.9325382586141612 " " y[1] (numeric) = -0.9325382586141422 " " absolute error = 1.898481372109017700000000000000E-14 " " relative error = 2.0358214309945183000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6837224934649453 " " Order of pole = 2.1725691619490064 " " x[1] = -1.347000000000072 " " y[1] (analytic) = -0.9321831142202728 " " y[1] (numeric) = -0.9321831142202539 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 2.024687116802657000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6829103082844348 " " Order of pole = 2.1724654872337936 " " x[1] = -1.346000000000072 " " y[1] (analytic) = -0.9318276297133987 " " y[1] (numeric) = -0.9318276297133796 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 2.0492884536409356000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6820984314060867 " " Order of pole = 2.172363442171104 " " x[1] = -1.3450000000000721 " " y[1] (analytic) = -0.9314718046947013 " " y[1] (numeric) = -0.9314718046946824 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 2.026233249734673800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6812868652032862 " " Order of pole = 2.172263061262445 " " x[1] = -1.3440000000000722 " " y[1] (analytic) = -0.9311156387649248 " " y[1] (numeric) = -0.9311156387649058 " " absolute error = 1.898481372109017700000000000000E-14 " " relative error = 2.038931893171993200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6804756120264004 " " Order of pole = 2.1721643786440907 " " x[1] = -1.3430000000000724 " " y[1] (analytic) = -0.9307591315243927 " " y[1] (numeric) = -0.9307591315243738 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 2.027784716730767800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6796646742025985 " " Order of pole = 2.1720674280836754 " " x[1] = -1.3420000000000725 " " y[1] (analytic) = -0.9304022825730104 " " y[1] (numeric) = -0.9304022825729913 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 2.052427899332266200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6788540540345507 " " Order of pole = 2.1719722429581836 " " x[1] = -1.3410000000000726 " " y[1] (analytic) = -0.9300450915102629 " " y[1] (numeric) = -0.9300450915102437 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 2.0651534534552474000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6780437538008564 " " Order of pole = 2.171878856260644 " " x[1] = -1.3400000000000727 " " y[1] (analytic) = -0.9296875579352167 " " y[1] (numeric) = -0.9296875579351975 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 2.065947657584290800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.677233775754346 " " Order of pole = 2.1717873005714807 " " x[1] = -1.3390000000000728 " " y[1] (analytic) = -0.9293296814465191 " " y[1] (numeric) = -0.9293296814465 " " absolute error = 1.909583602355269200000000000000E-14 " " relative error = 2.0547967427263988000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.676424122121682 " " Order of pole = 2.171697608051449 " " x[1] = -1.338000000000073 " " y[1] (analytic) = -0.9289714616423989 " " y[1] (numeric) = -0.9289714616423795 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 2.0794912896811904000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6756147951032898 " " Order of pole = 2.17160981043995 " " x[1] = -1.337000000000073 " " y[1] (analytic) = -0.9286128981206652 " " y[1] (numeric) = -0.928612898120646 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 2.0683385256532852000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6748057968721088 " " Order of pole = 2.1715239390338823 " " x[1] = -1.3360000000000731 " " y[1] (analytic) = -0.9282539904787094 " " y[1] (numeric) = -0.9282539904786902 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 2.0691382448148754000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.673997129573055 " " Order of pole = 2.171440024678116 " " x[1] = -1.3350000000000732 " " y[1] (analytic) = -0.9278947383135041 " " y[1] (numeric) = -0.9278947383134848 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 2.0819043185425273000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.673188795322589 " " Order of pole = 2.171358097757796 " " x[1] = -1.3340000000000733 " " y[1] (analytic) = -0.9275351412216031 " " y[1] (numeric) = -0.9275351412215838 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 2.0827114542566288000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6723807962083923 " " Order of pole = 2.171278188192481 " " x[1] = -1.3330000000000735 " " y[1] (analytic) = -0.9271751987991423 " " y[1] (numeric) = -0.927175198799123 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 2.0835199920681477000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6715731342876319 " " Order of pole = 2.1712003254066516 " " x[1] = -1.3320000000000736 " " y[1] (analytic) = -0.9268149106418396 " " y[1] (numeric) = -0.9268149106418202 " " absolute error = 1.94289029309402400000000000000E-14 " " relative error = 2.0963088430984886000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6707658115876942 " " Order of pole = 2.1711245383413598 " " x[1] = -1.3310000000000737 " " y[1] (analytic) = -0.9264542763449946 " " y[1] (numeric) = -0.926454276344975 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.1091084290193773000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.669958830104812 " " Order of pole = 2.1710508554308205 " " x[1] = -1.3300000000000738 " " y[1] (analytic) = -0.926093295503489 " " y[1] (numeric) = -0.9260932955034694 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.1099305359704054000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6691521918032384 " " Order of pole = 2.1709793045880375 " " x[1] = -1.329000000000074 " " y[1] (analytic) = -0.9257319677117869 " " y[1] (numeric) = -0.9257319677117675 " " absolute error = 1.94289029309402400000000000000E-14 " " relative error = 2.098761154264162000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6683458986156676 " " Order of pole = 2.1709099132111582 " " x[1] = -1.328000000000074 " " y[1] (analytic) = -0.9253702925639352 " " y[1] (numeric) = -0.9253702925639158 " " absolute error = 1.94289029309402400000000000000E-14 " " relative error = 2.0995814418364708000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6675399524415864 " " Order of pole = 2.1708427081554262 " " x[1] = -1.3270000000000741 " " y[1] (analytic) = -0.925008269653563 " " y[1] (numeric) = -0.9250082696535435 " " absolute error = 1.94289029309402400000000000000E-14 " " relative error = 2.1004031605270745000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6667343551470313 " " Order of pole = 2.1707777157284767 " " x[1] = -1.3260000000000742 " " y[1] (analytic) = -0.9246458985738824 " " y[1] (numeric) = -0.9246458985738628 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.1132333213763183000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6659291085642522 " " Order of pole = 2.1707149616840375 " " x[1] = -1.3250000000000743 " " y[1] (analytic) = -0.9242831789176881 " " y[1] (numeric) = -0.9242831789176685 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.114062624863898000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6651242144911163 " " Order of pole = 2.1706544712112965 " " x[1] = -1.3240000000000745 " " y[1] (analytic) = -0.9239201102773583 " " y[1] (numeric) = -0.9239201102773388 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.114893378339488800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6643196746899465 " " Order of pole = 2.170596268914924 " " x[1] = -1.3230000000000746 " " y[1] (analytic) = -0.9235566922448544 " " y[1] (numeric) = -0.9235566922448348 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 2.1157255853896526000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6635154908877618 " " Order of pole = 2.170540378818263 " " x[1] = -1.3220000000000747 " " y[1] (analytic) = -0.9231929244117212 " " y[1] (numeric) = -0.9231929244117013 " " absolute error = 1.987299214079030200000000000000E-14 " " relative error = 2.1526369640943477000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6627116647751028 " " Order of pole = 2.1704868243430546 " " x[1] = -1.3210000000000748 " " y[1] (analytic) = -0.9228288063690864 " " y[1] (numeric) = -0.9228288063690667 " " absolute error = 1.96509475358652700000000000000E-14 " " relative error = 2.1294250244726162000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.661908198005817 " " Order of pole = 2.170435628305132 " " x[1] = -1.320000000000075 " " y[1] (analytic) = -0.9224643377076633 " " y[1] (numeric) = -0.9224643377076432 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 2.1784079800474215000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.661105092196223 " " Order of pole = 2.170386812899686 " " x[1] = -1.319000000000075 " " y[1] (analytic) = -0.9220995180177469 " " y[1] (numeric) = -0.922099518017727 " " absolute error = 1.987299214079030200000000000000E-14 " " relative error = 2.155189516150232000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6603023489253925 " " Order of pole = 2.170340399705168 " " x[1] = -1.3180000000000751 " " y[1] (analytic) = -0.9217343468892186 " " y[1] (numeric) = -0.9217343468891985 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 2.1801332253196934000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6594999697330914 " " Order of pole = 2.1702964096482162 " " x[1] = -1.3170000000000752 " " y[1] (analytic) = -0.9213688239115424 " " y[1] (numeric) = -0.9213688239115224 " " absolute error = 1.998401444325281800000000000000E-14 " " relative error = 2.168948408566016000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.658697956120851 " " Order of pole = 2.1702548630206593 " " x[1] = -1.3160000000000753 " " y[1] (analytic) = -0.9210029486737681 " " y[1] (numeric) = -0.921002948673748 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 2.1818645395926167000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6578963095504151 " " Order of pole = 2.1702157794527785 " " x[1] = -1.3150000000000754 " " y[1] (analytic) = -0.9206367207645295 " " y[1] (numeric) = -0.9206367207645094 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 2.182732482040006000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.657095031443639 " " Order of pole = 2.170179177910825 " " x[1] = -1.3140000000000756 " " y[1] (analytic) = -0.920270139772046 " " y[1] (numeric) = -0.9202701397720258 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 2.1956660522727553000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6562941231820953 " " Order of pole = 2.170145076689529 " " x[1] = -1.3130000000000757 " " y[1] (analytic) = -0.9199032052841215 " " y[1] (numeric) = -0.9199032052841013 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 2.196541867895438000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6554935861061029 " " Order of pole = 2.170113493395082 " " x[1] = -1.3120000000000758 " " y[1] (analytic) = -0.9195359168881463 " " y[1] (numeric) = -0.9195359168881259 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.2215666922761199000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6546934215148827 " " Order of pole = 2.170084444946781 " " x[1] = -1.3110000000000759 " " y[1] (analytic) = -0.9191682741710949 " " y[1] (numeric) = -0.9191682741710746 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 2.2103766983213483000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6538936306653247 " " Order of pole = 2.1700579475556516 " " x[1] = -1.310000000000076 " " y[1] (analytic) = -0.9188002767195292 " " y[1] (numeric) = -0.9188002767195089 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 2.2112619973494313000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.653094214772537 " " Order of pole = 2.1700340167325436 " " x[1] = -1.309000000000076 " " y[1] (analytic) = -0.9184319241195965 " " y[1] (numeric) = -0.918431924119576 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.236325351522823200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6522951750084096 " " Order of pole = 2.1700126672633964 " " x[1] = -1.3080000000000762 " " y[1] (analytic) = -0.9180632159570299 " " y[1] (numeric) = -0.9180632159570093 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.2372234938260213000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6514965125011962 " " Order of pole = 2.169993913201239 " " x[1] = -1.3070000000000763 " " y[1] (analytic) = -0.9176941518171495 " " y[1] (numeric) = -0.9176941518171292 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 2.2139272992434347000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6506982283365224 " " Order of pole = 2.1699777678819956 " " x[1] = -1.3060000000000764 " " y[1] (analytic) = -0.9173247312848629 " " y[1] (numeric) = -0.9173247312848425 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.2269217166411712000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6499003235542267 " " Order of pole = 2.1699642438709823 " " x[1] = -1.3050000000000765 " " y[1] (analytic) = -0.9169549539446635 " " y[1] (numeric) = -0.9169549539446431 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.227819759871833000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6491027991520242 " " Order of pole = 2.1699533530227484 " " x[1] = -1.3040000000000767 " " y[1] (analytic) = -0.9165848193806329 " " y[1] (numeric) = -0.9165848193806123 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.2408320017174593000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6483056560797953 " " Order of pole = 2.1699451063852386 " " x[1] = -1.3030000000000768 " " y[1] (analytic) = -0.9162143271764394 " " y[1] (numeric) = -0.9162143271764188 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.2417381333538225000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6475088952441952 " " Order of pole = 2.1699395142752245 " " x[1] = -1.3020000000000769 " " y[1] (analytic) = -0.9158434769153396 " " y[1] (numeric) = -0.9158434769153192 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.2305234647635375000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.646712517505407 " " Order of pole = 2.1699365862233826 " " x[1] = -1.301000000000077 " " y[1] (analytic) = -0.9154722681801789 " " y[1] (numeric) = -0.9154722681801581 " " absolute error = 2.076117056049042700000000000000E-14 " " relative error = 2.2678098815336603000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6459165236760853 " " Order of pole = 2.1699363309557356 " " x[1] = -1.300000000000077 " " y[1] (analytic) = -0.9151007005533889 " " y[1] (numeric) = -0.9151007005533685 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.2323339541483675000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.645120914525611 " " Order of pole = 2.1699387564631323 " " x[1] = -1.2990000000000772 " " y[1] (analytic) = -0.914728773616992 " " y[1] (numeric) = -0.9147287736169717 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 2.2211044340830335000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6443256907739199 " " Order of pole = 2.1699438698977644 " " x[1] = -1.2980000000000773 " " y[1] (analytic) = -0.9143564869525986 " " y[1] (numeric) = -0.9143564869525782 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 2.234150896789328000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6435308530941068 " " Order of pole = 2.169951677615334 " " x[1] = -1.2970000000000774 " " y[1] (analytic) = -0.913983840141408 " " y[1] (numeric) = -0.9139838401413874 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.24720887323212020000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6427364021124269 " " Order of pole = 2.1699621851739366 " " x[1] = -1.2960000000000775 " " y[1] (analytic) = -0.9136108327642085 " " y[1] (numeric) = -0.9136108327641883 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 2.2116702564748134000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6419423384069018 " " Order of pole = 2.1699753973098055 " " x[1] = -1.2950000000000776 " " y[1] (analytic) = -0.9132374644013798 " " y[1] (numeric) = -0.9132374644013594 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 2.22473147922792000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.641148662507262 " " Order of pole = 2.1699913179352954 " " x[1] = -1.2940000000000778 " " y[1] (analytic) = -0.91286373463289 " " y[1] (numeric) = -0.9128637346328694 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.2499662519538308000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6403553748949715 " " Order of pole = 2.170009950138155 " " x[1] = -1.2930000000000779 " " y[1] (analytic) = -0.9124896430382976 " " y[1] (numeric) = -0.9124896430382771 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 2.250888666218358000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6395624760027125 " " Order of pole = 2.1700312961718033 " " x[1] = -1.292000000000078 " " y[1] (analytic) = -0.9121151891967526 " " y[1] (numeric) = -0.912115189196732 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 2.2639846921322854000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6387699662140498 " " Order of pole = 2.1700553574487174 " " x[1] = -1.291000000000078 " " y[1] (analytic) = -0.911740372686995 " " y[1] (numeric) = -0.9117403726869744 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 2.2649154163448684000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6379778458634697 " " Order of pole = 2.17008213453985 " " x[1] = -1.2900000000000782 " " y[1] (analytic) = -0.9113651930873568 " " y[1] (numeric) = -0.9113651930873361 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 2.2658478088320563000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6371861152358902 " " Order of pole = 2.1701116271654257 " " x[1] = -1.2890000000000783 " " y[1] (analytic) = -0.9109896499757608 " " y[1] (numeric) = -0.9109896499757401 " " absolute error = 2.076117056049042700000000000000E-14 " " relative error = 2.2789688731417343000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6363947745660457 " " Order of pole = 2.1701438341835626 " " x[1] = -1.2880000000000784 " " y[1] (analytic) = -0.9106137429297219 " " y[1] (numeric) = -0.9106137429297012 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 2.2677176155490575000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6356038240393909 " " Order of pole = 2.17017875360413 " " x[1] = -1.2870000000000785 " " y[1] (analytic) = -0.9102374715263476 " " y[1] (numeric) = -0.9102374715263267 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 2.2930491784691132000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.63481326379079 " " Order of pole = 2.1702163825658403 " " x[1] = -1.2860000000000786 " " y[1] (analytic) = -0.9098608353423373 " " y[1] (numeric) = -0.9098608353423162 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 2.3184026225220716000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6340230939046636 " " Order of pole = 2.1702567173375478 " " x[1] = -1.2850000000000787 " " y[1] (analytic) = -0.9094838339539834 " " y[1] (numeric) = -0.909483833953962 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 2.343778006490826200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6332333144150868 " " Order of pole = 2.1702997533187123 " " x[1] = -1.2840000000000789 " " y[1] (analytic) = -0.9091064669371709 " " y[1] (numeric) = -0.9091064669371498 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 2.3203264122568182000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6324439253053766 " " Order of pole = 2.170345485031408 " " x[1] = -1.283000000000079 " " y[1] (analytic) = -0.9087287338673796 " " y[1] (numeric) = -0.9087287338673586 " " absolute error = 2.09832151654154600000000000000E-14 " " relative error = 2.309073586362215800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6316549265080866 " " Order of pole = 2.1703939061191093 " " x[1] = -1.282000000000079 " " y[1] (analytic) = -0.9083506343196829 " " y[1] (numeric) = -0.9083506343196615 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 2.358924358688172000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6308663179044873 " " Order of pole = 2.170445009336831 " " x[1] = -1.2810000000000792 " " y[1] (analytic) = -0.9079721678687466 " " y[1] (numeric) = -0.9079721678687254 " " absolute error = 2.12052597703404900000000000000E-14 " " relative error = 2.3354526185659308000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6300780993250772 " " Order of pole = 2.1704987865585714 " " x[1] = -1.2800000000000793 " " y[1] (analytic) = -0.9075933340888332 " " y[1] (numeric) = -0.907593334088812 " " absolute error = 2.12052597703404900000000000000E-14 " " relative error = 2.3364274476111307000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6292902705489483 " " Order of pole = 2.1705552287655543 " " x[1] = -1.2790000000000794 " " y[1] (analytic) = -0.9072141325537995 " " y[1] (numeric) = -0.9072141325537781 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 2.3496417557779736000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6285028313038838 " " Order of pole = 2.17061432604676 " " x[1] = -1.2780000000000795 " " y[1] (analytic) = -0.9068345628370968 " " y[1] (numeric) = -0.9068345628370755 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 2.3506252348954906000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6277157812664775 " " Order of pole = 2.1706760675997074 " " x[1] = -1.2770000000000796 " " y[1] (analytic) = -0.9064546245117732 " " y[1] (numeric) = -0.9064546245117517 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 2.3638584652603560000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6269291200615934 " " Order of pole = 2.170740441720394 " " x[1] = -1.2760000000000797 " " y[1] (analytic) = -0.9060743171504717 " " y[1] (numeric) = -0.9060743171504504 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 2.3525975374559713000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.626142847262966 " " Order of pole = 2.17080743581214 " " x[1] = -1.2750000000000798 " " y[1] (analytic) = -0.9056936403254328 " " y[1] (numeric) = -0.9056936403254113 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 2.3658446323600424000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6253569623926258 " " Order of pole = 2.1708770363748577 " " x[1] = -1.27400000000008 " " y[1] (analytic) = -0.9053125936084929 " " y[1] (numeric) = -0.9053125936084715 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 2.3668404180547464000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6245714649211649 " " Order of pole = 2.1709492290084462 " " x[1] = -1.27300000000008 " " y[1] (analytic) = -0.9049311765710866 " " y[1] (numeric) = -0.9049311765710648 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 2.404643783531276200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6237863542678357 " " Order of pole = 2.1710239984132187 " " x[1] = -1.2720000000000802 " " y[1] (analytic) = -0.9045493887842445 " " y[1] (numeric) = -0.9045493887842229 " " absolute error = 2.164934898019055300000000000000E-14 " " relative error = 2.3933849548324013000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6230016298000371 " " Order of pole = 2.1711013283803133 " " x[1] = -1.2710000000000803 " " y[1] (analytic) = -0.9041672298185965 " " y[1] (numeric) = -0.9041672298185751 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 2.369838639204441300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6222172908343186 " " Order of pole = 2.171181201807304 " " x[1] = -1.2700000000000804 " " y[1] (analytic) = -0.9037846992443711 " " y[1] (numeric) = -0.9037846992443495 " " absolute error = 2.164934898019055300000000000000E-14 " " relative error = 2.3954099907080703000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6214333366353852 " " Order of pole = 2.171263600680515 " " x[1] = -1.2690000000000805 " " y[1] (analytic) = -0.9034017966313943 " " y[1] (numeric) = -0.9034017966313728 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 2.3841359136145374000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6206497664168764 " " Order of pole = 2.17134850608695 " " x[1] = -1.2680000000000806 " " y[1] (analytic) = -0.9030185215490925 " " y[1] (numeric) = -0.9030185215490708 " " absolute error = 2.164934898019055300000000000000E-14 " " relative error = 2.397442407167014700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6198665793413365 " " Order of pole = 2.1714358982127244 " " x[1] = -1.2670000000000807 " " y[1] (analytic) = -0.902634873566491 " " y[1] (numeric) = -0.9026348735664692 " " absolute error = 2.176037128265306800000000000000E-14 " " relative error = 2.410761197013526200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.61908377451999 " " Order of pole = 2.1715257563382266 " " x[1] = -1.2660000000000808 " " y[1] (analytic) = -0.9022508522522154 " " y[1] (numeric) = -0.9022508522521937 " " absolute error = 2.164934898019055300000000000000E-14 " " relative error = 2.3994822422333043000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.61830135101349 " " Order of pole = 2.171618058849603 " " x[1] = -1.265000000000081 " " y[1] (analytic) = -0.9018664571744921 " " y[1] (numeric) = -0.9018664571744702 " " absolute error = 2.187139358511558400000000000000E-14 " " relative error = 2.425125517323008000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6175193078314252 " " Order of pole = 2.171712783229463 " " x[1] = -1.264000000000081 " " y[1] (analytic) = -0.9014816879011478 " " y[1] (numeric) = -0.9014816879011259 " " absolute error = 2.187139358511558400000000000000E-14 " " relative error = 2.4261606063276903000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6167376439327883 " " Order of pole = 2.171809906063711 " " x[1] = -1.2630000000000812 " " y[1] (analytic) = -0.9010965439996113 " " y[1] (numeric) = -0.9010965439995893 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 2.439518388341258800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6159563582264216 " " Order of pole = 2.1719094030479056 " " x[1] = -1.2620000000000813 " " y[1] (analytic) = -0.9007110250369125 " " y[1] (numeric) = -0.9007110250368904 " " absolute error = 2.209343819004061500000000000000E-14 " " relative error = 2.4528886153175702000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.615175449570612 " " Order of pole = 2.172011248979569 " " x[1] = -1.2610000000000814 " " y[1] (analytic) = -0.9003251305796838 " " y[1] (numeric) = -0.9003251305796619 " " absolute error = 2.187139358511558400000000000000E-14 " " relative error = 2.4292772513229147000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6143949167739011 " " Order of pole = 2.172115417770698 " " x[1] = -1.2600000000000815 " " y[1] (analytic) = -0.8999388601941609 " " y[1] (numeric) = -0.8999388601941389 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 2.4426565914528256000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6136147585949625 " " Order of pole = 2.172221882444763 " " x[1] = -1.2590000000000816 " " y[1] (analytic) = -0.8995522134461822 " " y[1] (numeric) = -0.8995522134461599 " " absolute error = 2.231548279496564600000000000000E-14 " " relative error = 2.480732353431168700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6128349737429644 " " Order of pole = 2.17233061514181 " " x[1] = -1.2580000000000817 " " y[1] (analytic) = -0.8991651899011891 " " y[1] (numeric) = -0.8991651899011669 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 2.4694528593731727000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.61205556087802 " " Order of pole = 2.172441587125043 " " x[1] = -1.2570000000000818 " " y[1] (analytic) = -0.8987777891242283 " " y[1] (numeric) = -0.8987777891242061 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 2.4705172692506366000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.611276518611232 " " Order of pole = 2.172554768780678 " " x[1] = -1.256000000000082 " " y[1] (analytic) = -0.8983900106799505 " " y[1] (numeric) = -0.8983900106799284 " " absolute error = 2.209343819004061500000000000000E-14 " " relative error = 2.4592257179394833000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6104978455051846 " " Order of pole = 2.1726701296252493 " " x[1] = -1.255000000000082 " " y[1] (analytic) = -0.898001854132612 " " y[1] (numeric) = -0.8980018541325896 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 2.4973784847126093000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6097195400741624 " " Order of pole = 2.172787638308389 " " x[1] = -1.2540000000000822 " " y[1] (analytic) = -0.8976133190460733 " " y[1] (numeric) = -0.8976133190460511 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 2.4737222611737344000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6089416007846145 " " Order of pole = 2.1729072626197627 " " x[1] = -1.2530000000000823 " " y[1] (analytic) = -0.897224404983803 " " y[1] (numeric) = -0.8972244049837806 " " absolute error = 2.231548279496564600000000000000E-14 " " relative error = 2.487168502217513000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6081640260555121 " " Order of pole = 2.1730289694941547 " " x[1] = -1.2520000000000824 " " y[1] (analytic) = -0.8968351115088745 " " y[1] (numeric) = -0.8968351115088521 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 2.500627463134983000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6073868142588168 " " Order of pole = 2.1731527250185394 " " x[1] = -1.2510000000000825 " " y[1] (analytic) = -0.8964454381839693 " " y[1] (numeric) = -0.8964454381839468 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 2.5017144537943176000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6066099637196911 " " Order of pole = 2.1732784944347934 " " x[1] = -1.2500000000000826 " " y[1] (analytic) = -0.8960553845713761 " " y[1] (numeric) = -0.8960553845713536 " " absolute error = 2.253752739989067800000000000000E-14 " " relative error = 2.515193568160008000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6058334727170234 " " Order of pole = 2.17340624214771 " " x[1] = -1.2490000000000827 " " y[1] (analytic) = -0.8956649502329919 " " y[1] (numeric) = -0.8956649502329692 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 2.5286854974576780000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6050573394842567 " " Order of pole = 2.173535931738101 " " x[1] = -1.2480000000000828 " " y[1] (analytic) = -0.8952741347303218 " " y[1] (numeric) = -0.8952741347302993 " " absolute error = 2.253752739989067800000000000000E-14 " " relative error = 2.517388420551156000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6042815622092763 " " Order of pole = 2.173667525960237 " " x[1] = -1.247000000000083 " " y[1] (analytic) = -0.8948829376244811 " " y[1] (numeric) = -0.8948829376244585 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 2.530895243401901000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6035061390351883 " " Order of pole = 2.17380098675417 " " x[1] = -1.246000000000083 " " y[1] (analytic) = -0.8944913584761941 " " y[1] (numeric) = -0.8944913584761711 " " absolute error = 2.29816166097407400000000000000E-14 " " relative error = 2.5692385277920350000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.602731068061013 " " Order of pole = 2.173936275256633 " " x[1] = -1.2450000000000832 " " y[1] (analytic) = -0.8940993968457946 " " y[1] (numeric) = -0.8940993968457719 " " absolute error = 2.27595720048157100000000000000E-14 " " relative error = 2.5455304058035344000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6019563473419747 " " Order of pole = 2.1740733518053332 " " x[1] = -1.2440000000000833 " " y[1] (analytic) = -0.893707052293229 " " y[1] (numeric) = -0.8937070522932061 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 2.5590705867871216000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6011819748901583 " " Order of pole = 2.174212175949247 " " x[1] = -1.2430000000000834 " " y[1] (analytic) = -0.8933143243780536 " " y[1] (numeric) = -0.8933143243780306 " " absolute error = 2.29816166097407400000000000000E-14 " " relative error = 2.5726237655196094000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6004079486751495 " " Order of pole = 2.1743527064588193 " " x[1] = -1.2420000000000835 " " y[1] (analytic) = -0.8929212126594368 " " y[1] (numeric) = -0.8929212126594138 " " absolute error = 2.29816166097407400000000000000E-14 " " relative error = 2.5737563722216117000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5996342666245214 " " Order of pole = 2.174494901333567 " " x[1] = -1.2410000000000836 " " y[1] (analytic) = -0.8925277166961598 " " y[1] (numeric) = -0.8925277166961368 " " absolute error = 2.29816166097407400000000000000E-14 " " relative error = 2.5748910851543105000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.59886092662461 " " Order of pole = 2.1746387178144815 " " x[1] = -1.2400000000000837 " " y[1] (analytic) = -0.8921338360466168 " " y[1] (numeric) = -0.8921338360465938 " " absolute error = 2.29816166097407400000000000000E-14 " " relative error = 2.5760279098460154000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5980879265209882 " " Order of pole = 2.1747841123915386 " " x[1] = -1.2390000000000838 " " y[1] (analytic) = -0.8917395702688155 " " y[1] (numeric) = -0.8917395702687922 " " absolute error = 2.320366121466577200000000000000E-14 " " relative error = 2.6020670146633745000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5973152641192994 " " Order of pole = 2.174931040817203 " " x[1] = -1.238000000000084 " " y[1] (analytic) = -0.8913449189203771 " " y[1] (numeric) = -0.8913449189203541 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 2.5907635105132737000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5965429371859365 " " Order of pole = 2.175079458117356 " " x[1] = -1.237000000000084 " " y[1] (analytic) = -0.890949881558539 " " y[1] (numeric) = -0.8909498815585157 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 2.6168344594584714000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5957709434485998 " " Order of pole = 2.175229318600241 " " x[1] = -1.2360000000000841 " " y[1] (analytic) = -0.8905544577401524 " " y[1] (numeric) = -0.8905544577401292 " " absolute error = 2.320366121466577200000000000000E-14 " " relative error = 2.605529736333786000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.594999280597132 " " Order of pole = 2.1753805758701823 " " x[1] = -1.2350000000000843 " " y[1] (analytic) = -0.8901586470216857 " " y[1] (numeric) = -0.8901586470216623 " " absolute error = 2.342570581959080300000000000000E-14 " " relative error = 2.6316326755875590000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.594227946284311 " " Order of pole = 2.1755331828404536 " " x[1] = -1.2340000000000844 " " y[1] (analytic) = -0.8897624489592229 " " y[1] (numeric) = -0.8897624489591994 " " absolute error = 2.342570581959080300000000000000E-14 " " relative error = 2.6328045027065855000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5934569381266046 " " Order of pole = 2.1756870917457007 " " x[1] = -1.2330000000000845 " " y[1] (analytic) = -0.8893658631084654 " " y[1] (numeric) = -0.8893658631084421 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 2.6214952118400425000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5926862537048811 " " Order of pole = 2.17584225415359 " " x[1] = -1.2320000000000846 " " y[1] (analytic) = -0.888968889024733 " " y[1] (numeric) = -0.8889688890247098 " " absolute error = 2.320366121466577200000000000000E-14 " " relative error = 2.610176970323671000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5919158905653124 " " Order of pole = 2.175998620979751 " " x[1] = -1.2310000000000847 " " y[1] (analytic) = -0.8885715262629637 " " y[1] (numeric) = -0.8885715262629401 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 2.648827632485701000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.591145846220195 " " Order of pole = 2.176156142501373 " " x[1] = -1.2300000000000848 " " y[1] (analytic) = -0.8881737743777134 " " y[1] (numeric) = -0.8881737743776897 " " absolute error = 2.364775042451583400000000000000E-14 " " relative error = 2.6625139253953206000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5903761181487428 " " Order of pole = 2.1763147683703643 " " x[1] = -1.229000000000085 " " y[1] (analytic) = -0.8877756329231586 " " y[1] (numeric) = -0.8877756329231352 " " absolute error = 2.342570581959080300000000000000E-14 " " relative error = 2.6386966425804587000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5896067037981862 " " Order of pole = 2.176474447631655 " " x[1] = -1.228000000000085 " " y[1] (analytic) = -0.8873771014530968 " " y[1] (numeric) = -0.8873771014530731 " " absolute error = 2.364775042451583400000000000000E-14 " " relative error = 2.664904287680197600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888376005841889 " " Order of pole = 2.1766351287302363 " " x[1] = -1.2270000000000851 " " y[1] (analytic) = -0.8869781795209449 " " y[1] (numeric) = -0.8869781795209211 " " absolute error = 2.386979502944086600000000000000E-14 " " relative error = 2.691136668360082400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880688058923653 " " Order of pole = 2.176796759536476 " " x[1] = -1.2260000000000852 " " y[1] (analytic) = -0.8865788666797421 " " y[1] (numeric) = -0.8865788666797183 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 2.679826197070938000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5873003170787643 " " Order of pole = 2.176959287354361 " " x[1] = -1.2250000000000854 " " y[1] (analytic) = -0.8861791624821499 " " y[1] (numeric) = -0.8861791624821264 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 2.6559785107255230000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586532131471034 " " Order of pole = 2.177122658941091 " " x[1] = -1.2240000000000855 " " y[1] (analytic) = -0.8857790664804532 " " y[1] (numeric) = -0.8857790664804296 " " absolute error = 2.364775042451583400000000000000E-14 " " relative error = 2.669712044390210600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857642463694173 " " Order of pole = 2.177286820523854 " " x[1] = -1.2230000000000856 " " y[1] (analytic) = -0.8853785782265599 " " y[1] (numeric) = -0.8853785782265359 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 2.7085382368226800000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849966590475995 " " Order of pole = 2.1774517178142787 " " x[1] = -1.2220000000000857 " " y[1] (analytic) = -0.8849776972720014 " " y[1] (numeric) = -0.8849776972719776 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 2.684674743806114000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842293667537144 " " Order of pole = 2.1776172960255167 " " x[1] = -1.2210000000000858 " " y[1] (analytic) = -0.8845764231679357 " " y[1] (numeric) = -0.8845764231679119 " " absolute error = 2.386979502944086600000000000000E-14 " " relative error = 2.698443504062194000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834623667117511 " " Order of pole = 2.1777834998959946 " " x[1] = -1.220000000000086 " " y[1] (analytic) = -0.8841747554651455 " " y[1] (numeric) = -0.8841747554651215 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 2.71222596932069000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826956561220327 " " Order of pole = 2.1779502736979097 " " x[1] = -1.219000000000086 " " y[1] (analytic) = -0.8837726937140397 " " y[1] (numeric) = -0.8837726937140157 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 2.7134598638847285000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581929232162762 " " Order of pole = 2.17811756126342 " " x[1] = -1.2180000000000861 " " y[1] (analytic) = -0.8833702374646547 " " y[1] (numeric) = -0.8833702374646306 " " absolute error = 2.409183963436589700000000000000E-14 " " relative error = 2.7272641314599255000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581163091990832 " " Order of pole = 2.1782853059986387 " " x[1] = -1.2170000000000862 " " y[1] (analytic) = -0.882967386266654 " " y[1] (numeric) = -0.8829673862666302 " " absolute error = 2.386979502944086600000000000000E-14 " " relative error = 2.70336089426436000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580397232743031 " " Order of pole = 2.178453450904371 " " x[1] = -1.2160000000000863 " " y[1] (analytic) = -0.882564139669331 " " y[1] (numeric) = -0.8825641396693069 " " absolute error = 2.409183963436589700000000000000E-14 " " relative error = 2.7297551023761685000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579631651537339 " " Order of pole = 2.1786219385981944 " " x[1] = -1.2150000000000865 " " y[1] (analytic) = -0.8821604972216065 " " y[1] (numeric) = -0.8821604972215823 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.74358940499559000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.578866345473684 " " Order of pole = 2.1787907113279594 " " x[1] = -1.2140000000000866 " " y[1] (analytic) = -0.8817564584720322 " " y[1] (numeric) = -0.8817564584720079 " " absolute error = 2.431388423929092800000000000000E-14 " " relative error = 2.7574376128101950000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5781013116354063 " " Order of pole = 2.178959710996704 " " x[1] = -1.2130000000000867 " " y[1] (analytic) = -0.88135202296879 " " y[1] (numeric) = -0.8813520229687658 " " absolute error = 2.420286193682841300000000000000E-14 " " relative error = 2.7461061308173196000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5773365470904168 " " Order of pole = 2.179128879182848 " " x[1] = -1.2120000000000868 " " y[1] (analytic) = -0.8809471902596938 " " y[1] (numeric) = -0.8809471902596697 " " absolute error = 2.409183963436589700000000000000E-14 " " relative error = 2.7347654775156140000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5765720488921942 " " Order of pole = 2.1792981571576604 " " x[1] = -1.211000000000087 " " y[1] (analytic) = -0.8805419598921896 " " y[1] (numeric) = -0.8805419598921652 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.773849249017496000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5758078140812 " " Order of pole = 2.179467485909665 " " x[1] = -1.210000000000087 " " y[1] (analytic) = -0.8801363314133552 " " y[1] (numeric) = -0.8801363314133309 " " absolute error = 2.431388423929092800000000000000E-14 " " relative error = 2.7625134165575005000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5750438396860726 " " Order of pole = 2.1796368061654796 " " x[1] = -1.2090000000000871 " " y[1] (analytic) = -0.8797303043699034 " " y[1] (numeric) = -0.879730304369879 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 2.7764084538667220000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5742801227247478 " " Order of pole = 2.1798060584094436 " " x[1] = -1.2080000000000872 " " y[1] (analytic) = -0.8793238783081809 " " y[1] (numeric) = -0.8793238783081562 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.815569332289182000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5735166602057964 " " Order of pole = 2.179975182907384 " " x[1] = -1.2070000000000873 " " y[1] (analytic) = -0.8789170527741689 " " y[1] (numeric) = -0.8789170527741443 " " absolute error = 2.45359288442159600000000000000E-14 " " relative error = 2.791609147503966000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.572753449129805 " " Order of pole = 2.180144119729775 " " x[1] = -1.2060000000000874 " " y[1] (analytic) = -0.8785098273134861 " " y[1] (numeric) = -0.8785098273134614 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.8181783150738043000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.571990486490403 " " Order of pole = 2.1803128087709887 " " x[1] = -1.2050000000000876 " " y[1] (analytic) = -0.8781022014713867 " " y[1] (numeric) = -0.878102201471362 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.819486548109712000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.571227769275846 " " Order of pole = 2.1804811897763905 " " x[1] = -1.2040000000000877 " " y[1] (analytic) = -0.8776941747927629 " " y[1] (numeric) = -0.8776941747927383 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.8081479693650696000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.570465294470072 " " Order of pole = 2.18064920236133 " " x[1] = -1.2030000000000878 " " y[1] (analytic) = -0.8772857468221457 " " y[1] (numeric) = -0.8772857468221208 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.8347657353021216000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.569703059054259 " " Order of pole = 2.1808167860383314 " " x[1] = -1.2020000000000879 " " y[1] (analytic) = -0.8768769171037042 " " y[1] (numeric) = -0.8768769171036794 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.8234262946407310000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.568941060007984 " " Order of pole = 2.1809838802378927 " " x[1] = -1.201000000000088 " " y[1] (analytic) = -0.8764676851812486 " " y[1] (numeric) = -0.8764676851812239 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.824744581886231000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5681792943106547 " " Order of pole = 2.1811504243336977 " " x[1] = -1.200000000000088 " " y[1] (analytic) = -0.8760580505982294 " " y[1] (numeric) = -0.8760580505982047 " " absolute error = 2.464695114667847500000000000000E-14 " " relative error = 2.813392460676314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5674177589429457 " " Order of pole = 2.1813163576679813 " " x[1] = -1.1990000000000882 " " y[1] (analytic) = -0.8756480128977391 " " y[1] (numeric) = -0.8756480128977142 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.8400676282363460000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5666564508879752 " " Order of pole = 2.1814816195728284 " " x[1] = -1.1980000000000883 " " y[1] (analytic) = -0.8752375716225118 " " y[1] (numeric) = -0.875237571622487 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.828714654381754300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.565895367132828 " " Order of pole = 2.1816461493970465 " " x[1] = -1.1970000000000884 " " y[1] (analytic) = -0.8748267263149265 " " y[1] (numeric) = -0.8748267263149014 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.8681154338094700000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.565134504670001 " " Order of pole = 2.181809886531777 " " x[1] = -1.1960000000000885 " " y[1] (analytic) = -0.8744154765170044 " " y[1] (numeric) = -0.8744154765169796 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.8313741137974396000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.564373860498643 " " Order of pole = 2.1819727704331022 " " x[1] = -1.1950000000000887 " " y[1] (analytic) = -0.8740038217704137 " " y[1] (numeric) = -0.8740038217703888 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.8454104126487650000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.563613431626101 " " Order of pole = 2.1821347406493636 " " x[1] = -1.1940000000000888 " " y[1] (analytic) = -0.8735917616164672 " " y[1] (numeric) = -0.8735917616164423 " " absolute error = 2.498001805406602200000000000000E-14 " " relative error = 2.8594612668786810000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.562853215069271 " " Order of pole = 2.182295736845532 " " x[1] = -1.1930000000000889 " " y[1] (analytic) = -0.8731792955961248 " " y[1] (numeric) = -0.8731792955961001 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 2.83538255819940970000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5620932078560708 " " Order of pole = 2.1824556988295853 " " x[1] = -1.192000000000089 " " y[1] (analytic) = -0.8727664232499951 " " y[1] (numeric) = -0.8727664232499699 " " absolute error = 2.520206265899105300000000000000E-14 " " relative error = 2.8876068083765155000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5613334070268092 " " Order of pole = 2.1826145665773033 " " x[1] = -1.191000000000089 " " y[1] (analytic) = -0.872353144118333 " " y[1] (numeric) = -0.872353144118308 " " absolute error = 2.498001805406602200000000000000E-14 " " relative error = 2.8635212955313810000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5605738096357298 " " Order of pole = 2.1827722802598153 " " x[1] = -1.1900000000000892 " " y[1] (analytic) = -0.8719394577410449 " " y[1] (numeric) = -0.87193945774102 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 2.8521470763614976000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.55981441275235 " " Order of pole = 2.182928780268064 " " x[1] = -1.1890000000000893 " " y[1] (analytic) = -0.8715253636576873 " " y[1] (numeric) = -0.8715253636576621 " " absolute error = 2.520206265899105300000000000000E-14 " " relative error = 2.8917187852366133000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5590552134629605 " " Order of pole = 2.183084007239735 " " x[1] = -1.1880000000000894 " " y[1] (analytic) = -0.8711108614074666 " " y[1] (numeric) = -0.8711108614074415 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 2.8803498461709653000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5582962088721068 " " Order of pole = 2.1832379020861126 " " x[1] = -1.1870000000000895 " " y[1] (analytic) = -0.8706959505292431 " " y[1] (numeric) = -0.8706959505292178 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.9072243813775960000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.557537396104024 " " Order of pole = 2.1833904060180345 " " x[1] = -1.1860000000000896 " " y[1] (analytic) = -0.8702806305615287 " " y[1] (numeric) = -0.8702806305615035 " " absolute error = 2.520206265899105300000000000000E-14 " " relative error = 2.8958547132928830000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5567787723040762 " " Order of pole = 2.183541460572272 " " x[1] = -1.1850000000000898 " " y[1] (analytic) = -0.8698649010424907 " " y[1] (numeric) = -0.8698649010424654 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 2.9100018785810383000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5560203346402601 " " Order of pole = 2.1836910076387213 " " x[1] = -1.1840000000000899 " " y[1] (analytic) = -0.8694487615099504 " " y[1] (numeric) = -0.869448761509925 " " absolute error = 2.542410726391608500000000000000E-14 " " relative error = 2.924163951854122000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5552620803046402 " " Order of pole = 2.183838989486567 " " x[1] = -1.18300000000009 " " y[1] (analytic) = -0.8690322115013853 " " y[1] (numeric) = -0.8690322115013599 " " absolute error = 2.542410726391608500000000000000E-14 " " relative error = 2.9255655805890180000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.554504006514878 " " Order of pole = 2.183985348792163 " " x[1] = -1.18200000000009 " " y[1] (analytic) = -0.86861525055393 " " y[1] (numeric) = -0.8686152505539045 " " absolute error = 2.542410726391608500000000000000E-14 " " relative error = 2.9269699383821224000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5537461105156172 " " Order of pole = 2.184130028664484 " " x[1] = -1.1810000000000902 " " y[1] (analytic) = -0.8681978782043767 " " y[1] (numeric) = -0.8681978782043512 " " absolute error = 2.542410726391608500000000000000E-14 " " relative error = 2.9283770327219305000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5529883895799925 " " Order of pole = 2.184272972672737 " " x[1] = -1.1800000000000903 " " y[1] (analytic) = -0.8677800939891768 " " y[1] (numeric) = -0.8677800939891511 " " absolute error = 2.564615186884111600000000000000E-14 " " relative error = 2.9553745293863565000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5522308410110954 " " Order of pole = 2.184414124873282 " " x[1] = -1.1790000000000904 " " y[1] (analytic) = -0.8673618974444408 " " y[1] (numeric) = -0.867361897444415 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.9695994540679620000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5514734621434576 " " Order of pole = 2.1845534298366402 " " x[1] = -1.1780000000000905 " " y[1] (analytic) = -0.8669432881059403 " " y[1] (numeric) = -0.8669432881059147 " " absolute error = 2.564615186884111600000000000000E-14 " " relative error = 2.9582271667241006000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5507162503444816 " " Order of pole = 2.1846908326741925 " " x[1] = -1.1770000000000906 " " y[1] (analytic) = -0.8665242655091094 " " y[1] (numeric) = -0.8665242655090835 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 2.998094780527015000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5499592030158778 " " Order of pole = 2.184826279064641 " " x[1] = -1.1760000000000908 " " y[1] (analytic) = -0.8661048291890433 " " y[1] (numeric) = -0.8661048291890177 " " absolute error = 2.564615186884111600000000000000E-14 " " relative error = 2.9610909678051650000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.549202317595208 " " Order of pole = 2.1849597152820976 " " x[1] = -1.1750000000000909 " " y[1] (analytic) = -0.8656849786805029 " " y[1] (numeric) = -0.8656849786804771 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.9753518665142270000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5484455915572233 " " Order of pole = 2.1850910882214407 " " x[1] = -1.174000000000091 " " y[1] (analytic) = -0.8652647135179125 " " y[1] (numeric) = -0.8652647135178867 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.9767970158614830000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5476890224153865 " " Order of pole = 2.185220345426089 " " x[1] = -1.173000000000091 " " y[1] (analytic) = -0.864844033235363 " " y[1] (numeric) = -0.8648440332353371 " " absolute error = 2.586819647376615000000000000000E-14 " " relative error = 2.991082262196315000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5469326077232672 " " Order of pole = 2.1853474351140854 " " x[1] = -1.1720000000000912 " " y[1] (analytic) = -0.8644229373666117 " " y[1] (numeric) = -0.8644229373665857 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 3.0053828575363890000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5461763450759924 " " Order of pole = 2.1854723062051136 " " x[1] = -1.1710000000000913 " " y[1] (analytic) = -0.8640014254450836 " " y[1] (numeric) = -0.8640014254450579 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.9811494996128074000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5454202321116566 " " Order of pole = 2.1855949083467863 " " x[1] = -1.1700000000000914 " " y[1] (analytic) = -0.8635794970038738 " " y[1] (numeric) = -0.8635794970038478 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 3.0083181532634423000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.544664266512708 " " Order of pole = 2.1857151919402398 " " x[1] = -1.1690000000000915 " " y[1] (analytic) = -0.8631571515757459 " " y[1] (numeric) = -0.8631571515757199 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 3.0097901325155000000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5439084460074102 " " Order of pole = 2.185833108168019 " " x[1] = -1.1680000000000916 " " y[1] (analytic) = -0.8627343886931357 " " y[1] (numeric) = -0.8627343886931095 " " absolute error = 2.620126338115369400000000000000E-14 " " relative error = 3.037002317809911000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5431527683711792 " " Order of pole = 2.185948609018581 " " x[1] = -1.1670000000000917 " " y[1] (analytic) = -0.8623112078881497 " " y[1] (numeric) = -0.862311207888124 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 2.9869928554430425000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5423972314279646 " " Order of pole = 2.186061647312563 " " x[1] = -1.1660000000000919 " " y[1] (analytic) = -0.8618876086925701 " " y[1] (numeric) = -0.8618876086925441 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 3.0142234920441100000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5416418330516508 " " Order of pole = 2.1861721767290447 " " x[1] = -1.165000000000092 " " y[1] (analytic) = -0.8614635906378509 " " y[1] (numeric) = -0.8614635906378248 " " absolute error = 2.60902410786911800000000000000E-14 " " relative error = 3.028594749938678000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.540886571167375 " " Order of pole = 2.186280151830424 " " x[1] = -1.164000000000092 " " y[1] (analytic) = -0.8610391532551225 " " y[1] (numeric) = -0.8610391532550965 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 3.0171936639600316000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5401314437528948 " " Order of pole = 2.1863855280881452 " " x[1] = -1.1630000000000922 " " y[1] (analytic) = -0.8606142960751922 " " y[1] (numeric) = -0.860614296075166 " " absolute error = 2.620126338115369400000000000000E-14 " " relative error = 3.044483864681755000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.539376448839873 " " Order of pole = 2.1864882619071295 " " x[1] = -1.1620000000000923 " " y[1] (analytic) = -0.8601890186285438 " " y[1] (numeric) = -0.8601890186285179 " " absolute error = 2.586819647376615000000000000000E-14 " " relative error = 3.0072688576063805000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5386215845152056 " " Order of pole = 2.18658831065094 " " x[1] = -1.1610000000000924 " " y[1] (analytic) = -0.8597633204453419 " " y[1] (numeric) = -0.8597633204453154 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 3.07332347841868000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5378668489223581 " " Order of pole = 2.1866856326671957 " " x[1] = -1.1600000000000925 " " y[1] (analytic) = -0.8593372010554281 " " y[1] (numeric) = -0.8593372010554017 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 3.0748474468027126000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5371122402625539 " " Order of pole = 2.186780187310166 " " x[1] = -1.1590000000000926 " " y[1] (analytic) = -0.8589106599883269 " " y[1] (numeric) = -0.8589106599883007 " " absolute error = 2.620126338115369400000000000000E-14 " " relative error = 3.050522551613201000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5363577567960631 " " Order of pole = 2.186871934965314 " " x[1] = -1.1580000000000927 " " y[1] (analytic) = -0.8584836967732452 " " y[1] (numeric) = -0.8584836967732189 " " absolute error = 2.63122856836162100000000000000E-14 " " relative error = 3.064972087707122000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5356033968434983 " " Order of pole = 2.18696083707432 " " x[1] = -1.1570000000000928 " " y[1] (analytic) = -0.8580563109390722 " " y[1] (numeric) = -0.8580563109390456 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 3.105315146723016700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5348491587869382 " " Order of pole = 2.1870468561564174 " " x[1] = -1.156000000000093 " " y[1] (analytic) = -0.8576285020143813 " " y[1] (numeric) = -0.8576285020143549 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 3.080973629492976000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5340950410711922 " " Order of pole = 2.1871299558328268 " " x[1] = -1.155000000000093 " " y[1] (analytic) = -0.8572002695274329 " " y[1] (numeric) = -0.8572002695274065 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 3.082512794897470700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5333410422049225 " " Order of pole = 2.1872101008483362 " " x[1] = -1.1540000000000932 " " y[1] (analytic) = -0.8567716130061733 " " y[1] (numeric) = -0.8567716130061468 " " absolute error = 2.65343302885412400000000000000E-14 " " relative error = 3.0970132396706810000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5325871607618347 " " Order of pole = 2.1872872570943613 " " x[1] = -1.1530000000000933 " " y[1] (analytic) = -0.856342531978237 " " y[1] (numeric) = -0.8563425319782103 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 3.111529743763903300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.531833395381809 " " Order of pole = 2.1873613916309083 " " x[1] = -1.1520000000000934 " " y[1] (analytic) = -0.8559130259709474 " " y[1] (numeric) = -0.8559130259709207 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.1260623546550015000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5310797447719646 " " Order of pole = 2.187432472707151 " " x[1] = -1.1510000000000935 " " y[1] (analytic) = -0.8554830945113185 " " y[1] (numeric) = -0.855483094511292 " " absolute error = 2.65343302885412400000000000000E-14 " " relative error = 3.1016779242959286000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.530326207707808 " " Order of pole = 2.187500469783952 " " x[1] = -1.1500000000000936 " " y[1] (analytic) = -0.8550527371260568 " " y[1] (numeric) = -0.85505273712603 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.129207560155637000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.529572783034169 " " Order of pole = 2.187565353552106 " " x[1] = -1.1490000000000937 " " y[1] (analytic) = -0.8546219533415601 " " y[1] (numeric) = -0.8546219533415332 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 3.1437756882885626000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5288194696663853 " " Order of pole = 2.1876270959556265 " " x[1] = -1.1480000000000938 " " y[1] (analytic) = -0.854190742683921 " " y[1] (numeric) = -0.8541907426838943 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.132365355470379000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5280662665912055 " " Order of pole = 2.187685670209529 " " x[1] = -1.147000000000094 " " y[1] (analytic) = -0.8537591046789279 " " y[1] (numeric) = -0.853759104678901 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 3.1469529342275976000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5273131728677292 " " Order of pole = 2.1877410508183637 " " x[1] = -1.146000000000094 " " y[1] (analytic) = -0.8533270388520648 " " y[1] (numeric) = -0.8533270388520381 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.1355358116227267000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5265601876284953 " " Order of pole = 2.1877932135978675 " " x[1] = -1.1450000000000942 " " y[1] (analytic) = -0.8528945447285144 " " y[1] (numeric) = -0.8528945447284877 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.1371258098482874000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.525807310080211 " " Order of pole = 2.1878421356895217 " " x[1] = -1.1440000000000943 " " y[1] (analytic) = -0.8524616218331582 " " y[1] (numeric) = -0.8524616218331313 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 3.1517427304413260000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5250545395048145 " " Order of pole = 2.1878877955817195 " " x[1] = -1.1430000000000944 " " y[1] (analytic) = -0.8520282696905778 " " y[1] (numeric) = -0.8520282696905508 " " absolute error = 2.697841949839130400000000000000E-14 " " relative error = 3.166376100195452000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.524301875260203 " " Order of pole = 2.187930173124471 " " x[1] = -1.1420000000000945 " " y[1] (analytic) = -0.8515944878250562 " " y[1] (numeric) = -0.8515944878250294 " " absolute error = 2.675637489346627000000000000000E-14 " " relative error = 3.1419149931091210000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.52354931678114 " " Order of pole = 2.1879692495477236 " " x[1] = -1.1410000000000946 " " y[1] (analytic) = -0.8511602757605807 " " y[1] (numeric) = -0.8511602757605536 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 3.182648741054933000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5227968635799953 " " Order of pole = 2.188005007476427 " " x[1] = -1.1400000000000947 " " y[1] (analytic) = -0.8507256330208409 " " y[1] (numeric) = -0.850725633020814 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 3.15817416956456000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5220445152475235 " " Order of pole = 2.188037430946377 " " x[1] = -1.1390000000000948 " " y[1] (analytic) = -0.850290559129234 " " y[1] (numeric) = -0.8502905591292068 " " absolute error = 2.720046410331633500000000000000E-14 " " relative error = 3.1989610858636136000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5212922714536048 " " Order of pole = 2.1880665054194743 " " x[1] = -1.138000000000095 " " y[1] (analytic) = -0.8498550536088623 " " y[1] (numeric) = -0.8498550536088351 " " absolute error = 2.720046410331633500000000000000E-14 " " relative error = 3.2006003833019614000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.520540131947859 " " Order of pole = 2.1880922177964948 " " x[1] = -1.137000000000095 " " y[1] (analytic) = -0.8494191159825372 " " y[1] (numeric) = -0.8494191159825101 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 3.1891726111578045000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.519788096560439 " " Order of pole = 2.188114556433508 " " x[1] = -1.1360000000000952 " " y[1] (analytic) = -0.8489827457727799 " " y[1] (numeric) = -0.8489827457727526 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 3.216966015124228000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5190361652025923 " " Order of pole = 2.1881335111537226 " " x[1] = -1.1350000000000953 " " y[1] (analytic) = -0.8485459425018217 " " y[1] (numeric) = -0.8485459425017944 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 3.218622002393255000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5182843378671456 " " Order of pole = 2.188149073257982 " " x[1] = -1.1340000000000954 " " y[1] (analytic) = -0.8481087056916067 " " y[1] (numeric) = -0.8481087056915794 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 3.220281341589009000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.51753261462926 " " Order of pole = 2.1881612355405586 " " x[1] = -1.1330000000000955 " " y[1] (analytic) = -0.8476710348637929 " " y[1] (numeric) = -0.8476710348637652 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 3.274333376283028000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5167809956467466 " " Order of pole = 2.188169992296409 " " x[1] = -1.1320000000000956 " " y[1] (analytic) = -0.8472329295397522 " " y[1] (numeric) = -0.8472329295397244 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 3.276026538617515000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.516029481160663 " " Order of pole = 2.1881753393340695 " " x[1] = -1.1310000000000957 " " y[1] (analytic) = -0.8467943892405736 " " y[1] (numeric) = -0.8467943892405461 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 3.2515013515142255000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5152780714956982 " " Order of pole = 2.188177273984305 " " x[1] = -1.1300000000000958 " " y[1] (analytic) = -0.8463554134870643 " " y[1] (numeric) = -0.8463554134870368 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 3.2531877946243803000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5145267670606144 " " Order of pole = 2.188175795110098 " " x[1] = -1.129000000000096 " " y[1] (analytic) = -0.8459160017997505 " " y[1] (numeric) = -0.8459160017997226 " " absolute error = 2.78665979180914300000000000000E-14 " " relative error = 3.294251185555437000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5137755683486094 " " Order of pole = 2.188170903115033 " " x[1] = -1.128000000000096 " " y[1] (analytic) = -0.8454761536988775 " " y[1] (numeric) = -0.84547615369885 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 3.2565709736752846000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5130244759374947 " " Order of pole = 2.1881625999482317 " " x[1] = -1.1270000000000961 " " y[1] (analytic) = -0.8450358687044152 " " y[1] (numeric) = -0.8450358687043875 " " absolute error = 2.764455331316640000000000000000E-14 " " relative error = 3.271405905591941000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5122734904902795 " " Order of pole = 2.188150889117125 " " x[1] = -1.1260000000000963 " " y[1] (analytic) = -0.8445951463360549 " " y[1] (numeric) = -0.8445951463360271 " " absolute error = 2.78665979180914300000000000000E-14 " " relative error = 3.299403038127764000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5115226127551014 " " Order of pole = 2.188135775687659 " " x[1] = -1.1250000000000964 " " y[1] (analytic) = -0.8441539861132132 " " y[1] (numeric) = -0.8441539861131856 " " absolute error = 2.764455331316640000000000000000E-14 " " relative error = 3.274823523662052000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5107718435656154 " " Order of pole = 2.188117266293478 " " x[1] = -1.1240000000000965 " " y[1] (analytic) = -0.8437123875550345 " " y[1] (numeric) = -0.8437123875550064 " " absolute error = 2.80886425230164600000000000000E-14 " " relative error = 3.329172705928093000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5100211838410693 " " Order of pole = 2.188095369138935 " " x[1] = -1.1230000000000966 " " y[1] (analytic) = -0.8432703501803887 " " y[1] (numeric) = -0.8432703501803605 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 3.3440835219033410000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5092706345864215 " " Order of pole = 2.1880700940031126 " " x[1] = -1.1220000000000967 " " y[1] (analytic) = -0.8428278735078759 " " y[1] (numeric) = -0.842827873507848 " " absolute error = 2.78665979180914300000000000000E-14 " " relative error = 3.3063213491160160000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5085201968925708 " " Order of pole = 2.1880414522460114 " " x[1] = -1.1210000000000968 " " y[1] (analytic) = -0.8423849570558284 " " y[1] (numeric) = -0.8423849570558003 " " absolute error = 2.80886425230164600000000000000E-14 " " relative error = 3.334418817400001000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5077698719361687 " " Order of pole = 2.1880094568065793 " " x[1] = -1.120000000000097 " " y[1] (analytic) = -0.8419416003423087 " " y[1] (numeric) = -0.8419416003422805 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 3.3493611450026730000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5070196609797608 " " Order of pole = 2.187974122207361 " " x[1] = -1.119000000000097 " " y[1] (analytic) = -0.8414978028851138 " " y[1] (numeric) = -0.8414978028850857 " " absolute error = 2.80886425230164600000000000000E-14 " " relative error = 3.3379341486945374000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5062695653716125 " " Order of pole = 2.1879354645529077 " " x[1] = -1.1180000000000971 " " y[1] (analytic) = -0.8410535642017765 " " y[1] (numeric) = -0.8410535642017483 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 3.3528976067347854000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.505519586545897 " " Order of pole = 2.187893501535278 " " x[1] = -1.1170000000000972 " " y[1] (analytic) = -0.8406088838095656 " " y[1] (numeric) = -0.8406088838095374 " " absolute error = 2.819966482547897600000000000000E-14 " " relative error = 3.354671282758823000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5047697260221293 " " Order of pole = 2.187848252425045 " " x[1] = -1.1160000000000974 " " y[1] (analytic) = -0.8401637612254886 " " y[1] (numeric) = -0.8401637612254603 " " absolute error = 2.831068712794149000000000000000E-14 " " relative error = 3.3696629674489476000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5040199854054108 " " Order of pole = 2.1877997380779064 " " x[1] = -1.1150000000000975 " " y[1] (analytic) = -0.8397181959662928 " " y[1] (numeric) = -0.8397181959662644 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 3.384672330185505000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.503270366385938 " " Order of pole = 2.1877479809271954 " " x[1] = -1.1140000000000976 " " y[1] (analytic) = -0.8392721875484668 " " y[1] (numeric) = -0.8392721875484384 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 3.3864710224015016000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5025208707389162 " " Order of pole = 2.187693004984194 " " x[1] = -1.1130000000000977 " " y[1] (analytic) = -0.8388257354882421 " " y[1] (numeric) = -0.8388257354882137 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 3.388273419372503000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5017715003239585 " " Order of pole = 2.1876348358285505 " " x[1] = -1.1120000000000978 " " y[1] (analytic) = -0.8383788393015951 " " y[1] (numeric) = -0.8383788393015666 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 3.3900795318355710000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.501022257085243 " " Order of pole = 2.1875735006133326 " " x[1] = -1.111000000000098 " " y[1] (analytic) = -0.8379314985042481 " " y[1] (numeric) = -0.8379314985042196 " " absolute error = 2.85327317328665230000000000000E-14 " " relative error = 3.4051389384214525000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5002731430505838 " " Order of pole = 2.187509028049199 " " x[1] = -1.110000000000098 " " y[1] (analytic) = -0.8374837126116709 " " y[1] (numeric) = -0.8374837126116422 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 3.420216250654505300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4995241603313716 " " Order of pole = 2.1874414484053126 " " x[1] = -1.1090000000000981 " " y[1] (analytic) = -0.8370354811390825 " " y[1] (numeric) = -0.8370354811390541 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 3.395520270147477000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4987753111218782 " " Order of pole = 2.1873707934980047 " " x[1] = -1.1080000000000982 " " y[1] (analytic) = -0.8365868036014539 " " y[1] (numeric) = -0.8365868036014253 " " absolute error = 2.85327317328665230000000000000E-14 " " relative error = 3.410612217409466000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.498026597698894 " " Order of pole = 2.187297096685942 " " x[1] = -1.1070000000000983 " " y[1] (analytic) = -0.8361376795135073 " " y[1] (numeric) = -0.8361376795134786 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 3.425722191110312000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.497278022420971 " " Order of pole = 2.187220392857604 " " x[1] = -1.1060000000000985 " " y[1] (analytic) = -0.8356881083897196 " " y[1] (numeric) = -0.8356881083896908 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 3.454135382622033000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.49652958772804 " " Order of pole = 2.1871407184261216 " " x[1] = -1.1050000000000986 " " y[1] (analytic) = -0.8352380897443233 " " y[1] (numeric) = -0.8352380897442946 " " absolute error = 2.875477633779155400000000000000E-14 " " relative error = 3.442704145184967000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.495781296140578 " " Order of pole = 2.1870581113152703 " " x[1] = -1.1040000000000987 " " y[1] (analytic) = -0.8347876230913089 " " y[1] (numeric) = -0.8347876230912802 " " absolute error = 2.875477633779155400000000000000E-14 " " relative error = 3.4445618912400144000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4950331502589702 " " Order of pole = 2.186972610949436 " " x[1] = -1.1030000000000988 " " y[1] (analytic) = -0.8343367079444255 " " y[1] (numeric) = -0.8343367079443967 " " absolute error = 2.875477633779155400000000000000E-14 " " relative error = 3.4464234959331175000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.494285152762808 " " Order of pole = 2.186884258242184 " " x[1] = -1.102000000000099 " " y[1] (analytic) = -0.8338853438171835 " " y[1] (numeric) = -0.8338853438171544 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 3.488230541626615000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4935373064099882 " " Order of pole = 2.1867930955810877 " " x[1] = -1.101000000000099 " " y[1] (analytic) = -0.8334335302228545 " " y[1] (numeric) = -0.8334335302228257 " " absolute error = 2.875477633779155400000000000000E-14 " " relative error = 3.4501583263757970000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.49278961403617 " " Order of pole = 2.1866991668194906 " " x[1] = -1.1000000000000991 " " y[1] (analytic) = -0.8329812666744765 " " y[1] (numeric) = -0.8329812666744475 " " absolute error = 2.897682094271658600000000000000E-14 " " relative error = 3.4786881892795957000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.492042078553514 " " Order of pole = 2.1866025172542827 " " x[1] = -1.0990000000000992 " " y[1] (analytic) = -0.8325285526848512 " " y[1] (numeric) = -0.8325285526848222 " " absolute error = 2.897682094271658600000000000000E-14 " " relative error = 3.4805798370840490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4912947029500665 " " Order of pole = 2.186503193616314 " " x[1] = -1.0980000000000993 " " y[1] (analytic) = -0.8320753877665497 " " y[1] (numeric) = -0.8320753877665201 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 3.5491895192692274000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4905474902887366 " " Order of pole = 2.186401244052817 " " x[1] = -1.0970000000000995 " " y[1] (analytic) = -0.8316217714319097 " " y[1] (numeric) = -0.8316217714318807 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 3.497725077001632000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4898004437062329 " " Order of pole = 2.186296718109098 " " x[1] = -1.0960000000000996 " " y[1] (analytic) = -0.8311677031930436 " " y[1] (numeric) = -0.8311677031930145 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 3.4996358897770213000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4890535664120932 " " Order of pole = 2.186189666712025 " " x[1] = -1.0950000000000997 " " y[1] (analytic) = -0.830713182561834 " " y[1] (numeric) = -0.8307131825618048 " " absolute error = 2.91988655476416170000000000000E-14 " " relative error = 3.5149153956598256000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.488306861687662 " " Order of pole = 2.186080142152452 " " x[1] = -1.0940000000000998 " " y[1] (analytic) = -0.8302582090499392 " " y[1] (numeric) = -0.8302582090499098 " " absolute error = 2.94209101525666500000000000000E-14 " " relative error = 3.543585577579879000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4875603328848792 " " Order of pole = 2.185968198064124 " " x[1] = -1.0930000000001 " " y[1] (analytic) = -0.8298027821687931 " " y[1] (numeric) = -0.8298027821687635 " " absolute error = 2.96429547574916800000000000000E-14 " " relative error = 3.5722891504432075000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4868139834250031 " " Order of pole = 2.1858538894011055 " " x[1] = -1.0920000000001 " " y[1] (analytic) = -0.8293469014296077 " " y[1] (numeric) = -0.8293469014295782 " " absolute error = 2.94209101525666500000000000000E-14 " " relative error = 3.547479360187108000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4860678167979018 " " Order of pole = 2.1857372724263833 " " x[1] = -1.0910000000001001 " " y[1] (analytic) = -0.8288905663433759 " " y[1] (numeric) = -0.8288905663433465 " " absolute error = 2.94209101525666500000000000000E-14 " " relative error = 3.5494323795185710000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4853218365602523 " " Order of pole = 2.185618404679154 " " x[1] = -1.0900000000001002 " " y[1] (analytic) = -0.8284337764208713 " " y[1] (numeric) = -0.828433776420842 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 3.5379880304655464000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4845760463344888 " " Order of pole = 2.185497344956808 " " x[1] = -1.0890000000001003 " " y[1] (analytic) = -0.8279765311726518 " " y[1] (numeric) = -0.8279765311726224 " " absolute error = 2.94209101525666500000000000000E-14 " " relative error = 3.5533507345791815000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4838304498076813 " " Order of pole = 2.1853741532953244 " " x[1] = -1.0880000000001004 " " y[1] (analytic) = -0.8275188301090599 " " y[1] (numeric) = -0.8275188301090304 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 3.568732381731677000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4830850507299114 " " Order of pole = 2.1852488909400662 " " x[1] = -1.0870000000001006 " " y[1] (analytic) = -0.8270606727402255 " " y[1] (numeric) = -0.827060672740196 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 3.5707093117103095000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4823398529129757 " " Order of pole = 2.1851216203228887 " " x[1] = -1.0860000000001007 " " y[1] (analytic) = -0.8266020585760678 " " y[1] (numeric) = -0.8266020585760383 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 3.5726904075102180000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4815948602290032 " " Order of pole = 2.184992405037484 " " x[1] = -1.0850000000001008 " " y[1] (analytic) = -0.8261429871262966 " " y[1] (numeric) = -0.8261429871262671 " " absolute error = 2.953193245502916400000000000000E-14 " " relative error = 3.5746756814767305000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4808500766089276 " " Order of pole = 2.184861309811975 " " x[1] = -1.0840000000001009 " " y[1] (analytic) = -0.8256834579004149 " " y[1] (numeric) = -0.8256834579003851 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 3.6035573651449860000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4801055060412212 " " Order of pole = 2.1847284004864953 " " x[1] = -1.083000000000101 " " y[1] (analytic) = -0.8252234704077193 " " y[1] (numeric) = -0.8252234704076895 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 3.6055660226500350000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4793611525698414 " " Order of pole = 2.184593743975597 " " x[1] = -1.082000000000101 " " y[1] (analytic) = -0.824763024157304 " " y[1] (numeric) = -0.8247630241572741 " " absolute error = 2.98649993624167100000000000000E-14 " " relative error = 3.621040042736042300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4786170202934097 " " Order of pole = 2.1844574082543424 " " x[1] = -1.0810000000001012 " " y[1] (analytic) = -0.8243021186580609 " " y[1] (numeric) = -0.824302118658031 " " absolute error = 2.98649993624167100000000000000E-14 " " relative error = 3.6230647339638083000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4778731133628702 " " Order of pole = 2.1843194623150524 " " x[1] = -1.0800000000001013 " " y[1] (analytic) = -0.823840753418683 " " y[1] (numeric) = -0.8238407534186529 " " absolute error = 3.00870439673417400000000000000E-14 " " relative error = 3.652046083237551000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4771294359804354 " " Order of pole = 2.184179976148961 " " x[1] = -1.0790000000001014 " " y[1] (analytic) = -0.8233789279476645 " " y[1] (numeric) = -0.8233789279476345 " " absolute error = 3.00870439673417400000000000000E-14 " " relative error = 3.654094481423762000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4763859923974412 " " Order of pole = 2.1840390207065674 " " x[1] = -1.0780000000001015 " " y[1] (analytic) = -0.8229166417533047 " " y[1] (numeric) = -0.8229166417532746 " " absolute error = 3.00870439673417400000000000000E-14 " " relative error = 3.656147225706644600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4756427869131328 " " Order of pole = 2.183896667876173 " " x[1] = -1.0770000000001017 " " y[1] (analytic) = -0.8224538943437091 " " y[1] (numeric) = -0.8224538943436785 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 3.712199964905587000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4748998238726543 " " Order of pole = 2.183752990446827 " " x[1] = -1.0760000000001018 " " y[1] (analytic) = -0.8219906852267898 " " y[1] (numeric) = -0.8219906852267594 " " absolute error = 3.030908857226677400000000000000E-14 " " relative error = 3.687278836244282000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4741571076651794 " " Order of pole = 2.1836080620740397 " " x[1] = -1.0750000000001019 " " y[1] (analytic) = -0.821527013910271 " " y[1] (numeric) = -0.8215270139102406 " " absolute error = 3.04201108747292900000000000000E-14 " " relative error = 3.702874082002109000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.473414642722549 " " Order of pole = 2.1834619572552327 " " x[1] = -1.074000000000102 " " y[1] (analytic) = -0.8210628799016879 " " y[1] (numeric) = -0.8210628799016574 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 3.718489037142627000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4726724335167907 " " Order of pole = 2.1833147512835644 " " x[1] = -1.073000000000102 " " y[1] (analytic) = -0.8205982827083897 " " y[1] (numeric) = -0.8205982827083591 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 3.7341237637641270000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4719304845592094 " " Order of pole = 2.1831665202319854 " " x[1] = -1.0720000000001022 " " y[1] (analytic) = -0.8201332218375417 " " y[1] (numeric) = -0.8201332218375111 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 3.72270411248377000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4711888003975169 " " Order of pole = 2.183017340899518 " " x[1] = -1.0710000000001023 " " y[1] (analytic) = -0.8196676967961276 " " y[1] (numeric) = -0.8196676967960971 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 3.724818398544951000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4704473856146665 " " Order of pole = 2.182867290790277 " " x[1] = -1.0700000000001024 " " y[1] (analytic) = -0.8192017070909511 " " y[1] (numeric) = -0.8192017070909206 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 3.726937201536143000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4697062448265539 " " Order of pole = 2.182716448070625 " " x[1] = -1.0690000000001025 " " y[1] (analytic) = -0.818735252228638 " " y[1] (numeric) = -0.8187352522286072 " " absolute error = 3.075317778211683600000000000000E-14 " " relative error = 3.756180975279268500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4689653826802294 " " Order of pole = 2.182564891536135 " " x[1] = -1.0680000000001026 " " y[1] (analytic) = -0.8182683317156377 " " y[1] (numeric) = -0.8182683317156071 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 3.744756370493756000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4682248038518506 " " Order of pole = 2.1824127005735257 " " x[1] = -1.0670000000001028 " " y[1] (analytic) = -0.817800945058227 " " y[1] (numeric) = -0.8178009450581963 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 3.746896560198107000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4674845130448755 " " Order of pole = 2.1822599551270976 " " x[1] = -1.0660000000001029 " " y[1] (analytic) = -0.8173330917625101 " " y[1] (numeric) = -0.8173330917624795 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 3.749041338039683000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4667445149874372 " " Order of pole = 2.1821067356493913 " " x[1] = -1.065000000000103 " " y[1] (analytic) = -0.8168647713344226 " " y[1] (numeric) = -0.8168647713343915 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 3.805555800713769000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4660048144319677 " " Order of pole = 2.181953123095287 " " x[1] = -1.064000000000103 " " y[1] (analytic) = -0.816395983279731 " " y[1] (numeric) = -0.8163959832797 " " absolute error = 3.09752223870418700000000000000E-14 " " relative error = 3.794141938646515000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4652654161492233 " " Order of pole = 2.18179919880766 " " x[1] = -1.0630000000001032 " " y[1] (analytic) = -0.8159267271040378 " " y[1] (numeric) = -0.8159267271040069 " " absolute error = 3.08642000845793500000000000000E-14 " " relative error = 3.782717131246014500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4645263249324312 " " Order of pole = 2.1816450445988984 " " x[1] = -1.0620000000001033 " " y[1] (analytic) = -0.8154570023127825 " " y[1] (numeric) = -0.8154570023127513 " " absolute error = 3.1197266991966900000000000000E-14 " " relative error = 3.8257402785782500000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4637875455890788 " " Order of pole = 2.1814907425932013 " " x[1] = -1.0610000000001034 " " y[1] (analytic) = -0.8149868084112422 " " y[1] (numeric) = -0.814986808411211 " " absolute error = 3.1197266991966900000000000000E-14 " " relative error = 3.827947479638807000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4630490829429093 " " Order of pole = 2.1813363752663406 " " x[1] = -1.0600000000001035 " " y[1] (analytic) = -0.8145161449045357 " " y[1] (numeric) = -0.8145161449045047 " " absolute error = 3.09752223870418700000000000000E-14 " " relative error = 3.8028985159861106000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4623109418290205 " " Order of pole = 2.1811820253519087 " " x[1] = -1.0590000000001036 " " y[1] (analytic) = -0.8140450112976259 " " y[1] (numeric) = -0.8140450112975947 " " absolute error = 3.1197266991966900000000000000E-14 " " relative error = 3.832376165813853000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4615731270939878 " " Order of pole = 2.1810277758447114 " " x[1] = -1.0580000000001037 " " y[1] (analytic) = -0.8135734070953191 " " y[1] (numeric) = -0.8135734070952882 " " absolute error = 3.08642000845793500000000000000E-14 " " relative error = 3.793658914537661500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4608356435921388 " " Order of pole = 2.180873709929621 " " x[1] = -1.0570000000001039 " " y[1] (analytic) = -0.8131013318022715 " " y[1] (numeric) = -0.8131013318022404 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 3.82316981582116970000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4600984961841366 " " Order of pole = 2.1807199109550552 " " x[1] = -1.056000000000104 " " y[1] (analytic) = -0.8126287849229874 " " y[1] (numeric) = -0.8126287849229561 " " absolute error = 3.130828929442941400000000000000E-14 " " relative error = 3.8527172400614007000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4593616897345187 " " Order of pole = 2.180566462386224 " " x[1] = -1.055000000000104 " " y[1] (analytic) = -0.8121557659618236 " " y[1] (numeric) = -0.8121557659617921 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 3.882301304850499000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4586252291096289 " " Order of pole = 2.180413447765826 " " x[1] = -1.0540000000001042 " " y[1] (analytic) = -0.8116822744229911 " " y[1] (numeric) = -0.8116822744229594 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 3.9119221282553710000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4578891191751768 " " Order of pole = 2.1802609506675594 " " x[1] = -1.0530000000001043 " " y[1] (analytic) = -0.8112083098105569 " " y[1] (numeric) = -0.8112083098105255 " " absolute error = 3.14193115968919300000000000000E-14 " " relative error = 3.8731496234585344000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4571533647944286 " " Order of pole = 2.1801090546617132 " " x[1] = -1.0520000000001044 " " y[1] (analytic) = -0.8107338716284482 " " y[1] (numeric) = -0.8107338716284165 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 3.916498325215071000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4564179708255136 " " Order of pole = 2.179957843263658 " " x[1] = -1.0510000000001045 " " y[1] (analytic) = -0.8102589593804513 " " y[1] (numeric) = -0.8102589593804195 " " absolute error = 3.18634008067419900000000000000E-14 " " relative error = 3.932495955503623000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4556829421194233 " " Order of pole = 2.179807399895566 " " x[1] = -1.0500000000001046 " " y[1] (analytic) = -0.8097835725702166 " " y[1] (numeric) = -0.8097835725701849 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 3.921094423229512500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.454948283517842 " " Order of pole = 2.179657807844908 " " x[1] = -1.0490000000001047 " " y[1] (analytic) = -0.8093077107012604 " " y[1] (numeric) = -0.8093077107012284 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 3.950836336589313000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4542139998507577 " " Order of pole = 2.17950915021855 " " x[1] = -1.0480000000001048 " " y[1] (analytic) = -0.8088313732769657 " " y[1] (numeric) = -0.808831373276934 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 3.925710544045205000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4534800959342822 " " Order of pole = 2.179361509900879 " " x[1] = -1.047000000000105 " " y[1] (analytic) = -0.8083545598005871 " " y[1] (numeric) = -0.8083545598005553 " " absolute error = 3.18634008067419900000000000000E-14 " " relative error = 3.941760508483105300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.452746576568223 " " Order of pole = 2.1792149695070293 " " x[1] = -1.046000000000105 " " y[1] (analytic) = -0.8078772697752504 " " y[1] (numeric) = -0.8078772697752185 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 3.957831753095333000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4520134465341323 " " Order of pole = 2.179069611345252 " " x[1] = -1.0450000000001052 " " y[1] (analytic) = -0.8073995027039569 " " y[1] (numeric) = -0.8073995027039247 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 3.987674949799266400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4512807105925816 " " Order of pole = 2.1789255173642985 " " x[1] = -1.0440000000001053 " " y[1] (analytic) = -0.8069212580895841 " " y[1] (numeric) = -0.8069212580895522 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 3.962520851774946600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4505483734815938 " " Order of pole = 2.178782769123 " " x[1] = -1.0430000000001054 " " y[1] (analytic) = -0.8064425354348909 " " y[1] (numeric) = -0.8064425354348587 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 3.992406935327007000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.449816439913633 " " Order of pole = 2.178641447732023 " " x[1] = -1.0420000000001055 " " y[1] (analytic) = -0.8059633342425158 " " y[1] (numeric) = -0.8059633342424837 " " absolute error = 3.208544541166702400000000000000E-14 " " relative error = 3.9810055927448007000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.449084914573735 " " Order of pole = 2.178501633817504 " " x[1] = -1.0410000000001056 " " y[1] (analytic) = -0.8054836540149831 " " y[1] (numeric) = -0.8054836540149511 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 3.969593045101042000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4483538021173912 " " Order of pole = 2.178363407479857 " " x[1] = -1.0400000000001057 " " y[1] (analytic) = -0.8050034942547039 " " y[1] (numeric) = -0.8050034942546715 " " absolute error = 3.230749001659205500000000000000E-14 " " relative error = 4.013335376451165300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.447623107167875 " " Order of pole = 2.1782268482418097 " " x[1] = -1.0390000000001058 " " y[1] (analytic) = -0.8045228544639764 " " y[1] (numeric) = -0.8045228544639446 " " absolute error = 3.18634008067419900000000000000E-14 " " relative error = 3.960533952509203700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4468928343141894 " " Order of pole = 2.178092035008241 " " x[1] = -1.038000000000106 " " y[1] (analytic) = -0.8040417341449936 " " y[1] (numeric) = -0.8040417341449613 " " absolute error = 3.230749001659205500000000000000E-14 " " relative error = 4.018135955460991000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4461629881089646 " " Order of pole = 2.1779590460251086 " " x[1] = -1.037000000000106 " " y[1] (analytic) = -0.8035601327998391 " " y[1] (numeric) = -0.8035601327998069 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 4.006727860172407000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.445433573066062 " " Order of pole = 2.177827958832502 " " x[1] = -1.0360000000001062 " " y[1] (analytic) = -0.8030780499304954 " " y[1] (numeric) = -0.803078049930463 " " absolute error = 3.24185123190545700000000000000E-14 " " relative error = 4.036782268156915000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4447045936583838 " " Order of pole = 2.177698850221713 " " x[1] = -1.0350000000001063 " " y[1] (analytic) = -0.8025954850388425 " " y[1] (numeric) = -0.80259548503881 " " absolute error = 3.252953462151708700000000000000E-14 " " relative error = 4.053042314328841000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4439760543155444 " " Order of pole = 2.1775717961894756 " " x[1] = -1.0340000000001064 " " y[1] (analytic) = -0.8021124376266622 " " y[1] (numeric) = -0.8021124376266296 " " absolute error = 3.252953462151708700000000000000E-14 " " relative error = 4.0554831337321484000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4432479594218357 " " Order of pole = 2.177446871897839 " " x[1] = -1.0330000000001065 " " y[1] (analytic) = -0.80162890719564 " " y[1] (numeric) = -0.8016289071956076 " " absolute error = 3.230749001659205500000000000000E-14 " " relative error = 4.0302301634323817000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.442520313313946 " " Order of pole = 2.1773241516292217 " " x[1] = -1.0320000000001066 " " y[1] (analytic) = -0.8011448932473685 " " y[1] (numeric) = -0.8011448932473362 " " absolute error = 3.230749001659205500000000000000E-14 " " relative error = 4.03266503835986060000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4417931202788168 " " Order of pole = 2.1772037087440346 " " x[1] = -1.0310000000001067 " " y[1] (analytic) = -0.8006603952833486 " " y[1] (numeric) = -0.8006603952833161 " " absolute error = 3.252953462151708700000000000000E-14 " " relative error = 4.0628379788917984000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4410663845511964 " " Order of pole = 2.177085615632361 " " x[1] = -1.0300000000001068 " " y[1] (analytic) = -0.8001754128049926 " " y[1] (numeric) = -0.8001754128049599 " " absolute error = 3.27515792264421200000000000000E-14 " " relative error = 4.093049936592324000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4403401103121407 " " Order of pole = 2.176969943683879 " " x[1] = -1.029000000000107 " " y[1] (analytic) = -0.7996899453136266 " " y[1] (numeric) = -0.7996899453135937 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 4.109417871449716500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4396143016859346 " " Order of pole = 2.176856763227203 " " x[1] = -1.028000000000107 " " y[1] (analytic) = -0.799203992310493 " " y[1] (numeric) = -0.7992039923104607 " " absolute error = 3.230749001659205500000000000000E-14 " " relative error = 4.042458537174137000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.438888962738878 " " Order of pole = 2.1767461435051807 " " x[1] = -1.0270000000001072 " " y[1] (analytic) = -0.7987175532967559 " " y[1] (numeric) = -0.7987175532967229 " " absolute error = 3.29736238313671500000000000000E-14 " " relative error = 4.1283209183605000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4381640974764909 " " Order of pole = 2.1766381526195246 " " x[1] = -1.0260000000001073 " " y[1] (analytic) = -0.7982306277734967 " " y[1] (numeric) = -0.7982306277734641 " " absolute error = 3.2640556923979600000000000000E-14 " " relative error = 4.089113570475722000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4374397098418732 " " Order of pole = 2.1765328574977545 " " x[1] = -1.0250000000001074 " " y[1] (analytic) = -0.7977432152417253 " " y[1] (numeric) = -0.7977432152416923 " " absolute error = 3.29736238313671500000000000000E-14 " " relative error = 4.133363117525953000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4367158037133245 " " Order of pole = 2.176430323845672 " " x[1] = -1.0240000000001075 " " y[1] (analytic) = -0.7972553152023757 " " y[1] (numeric) = -0.7972553152023427 " " absolute error = 3.29736238313671500000000000000E-14 " " relative error = 4.135892630956886000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4359923829025425 " " Order of pole = 2.1763306161110734 " " x[1] = -1.0230000000001076 " " y[1] (analytic) = -0.7967669271563126 " " y[1] (numeric) = -0.7967669271562797 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 4.1244936767383583000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.435269451152467 " " Order of pole = 2.176233797440453 " " x[1] = -1.0220000000001077 " " y[1] (analytic) = -0.7962780506043332 " " y[1] (numeric) = -0.7962780506043003 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 4.1270259181404845000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4345470121351338 " " Order of pole = 2.1761399296358164 " " x[1] = -1.0210000000001078 " " y[1] (analytic) = -0.7957886850471694 " " y[1] (numeric) = -0.7957886850471363 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 4.157466266546453000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4338250694501649 " " Order of pole = 2.1760490731237567 " " x[1] = -1.020000000000108 " " y[1] (analytic) = -0.7952988299854898 " " y[1] (numeric) = -0.7952988299854568 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 4.16002700952462000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4331036266223345 " " Order of pole = 2.1759612869066807 " " x[1] = -1.019000000000108 " " y[1] (analytic) = -0.7948084849199044 " " y[1] (numeric) = -0.7948084849198712 " " absolute error = 3.31956684362921800000000000000E-14 " " relative error = 4.176561909708025000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.432382687099694 " " Order of pole = 2.1758766285245628 " " x[1] = -1.0180000000001082 " " y[1] (analytic) = -0.7943176493509652 " " y[1] (numeric) = -0.7943176493509322 " " absolute error = 3.29736238313671500000000000000E-14 " " relative error = 4.151188615575873000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4316622542520245 " " Order of pole = 2.1757951540231986 " " x[1] = -1.0170000000001083 " " y[1] (analytic) = -0.7938263227791709 " " y[1] (numeric) = -0.7938263227791378 " " absolute error = 3.308464613382966500000000000000E-14 " " relative error = 4.1677436467464260000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4309423313685727 " " Order of pole = 2.175716917908357 " " x[1] = -1.0160000000001084 " " y[1] (analytic) = -0.7933345047049677 " " y[1] (numeric) = -0.7933345047049345 " " absolute error = 3.31956684362921800000000000000E-14 " " relative error = 4.184321775924429000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4302229216564712 " " Order of pole = 2.1756419731132333 " " x[1] = -1.0150000000001085 " " y[1] (analytic) = -0.792842194628753 " " y[1] (numeric) = -0.7928421946287199 " " absolute error = 3.31956684362921800000000000000E-14 " " relative error = 4.186920002641382000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4295040282389568 " " Order of pole = 2.175570370961811 " " x[1] = -1.0140000000001086 " " y[1] (analytic) = -0.7923493920508787 " " y[1] (numeric) = -0.7923493920508455 " " absolute error = 3.31956684362921800000000000000E-14 " " relative error = 4.189524062152698000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4287856541531805 " " Order of pole = 2.175502161124413 " " x[1] = -1.0130000000001087 " " y[1] (analytic) = -0.791856096471653 " " y[1] (numeric) = -0.7918560964716196 " " absolute error = 3.34177130412172100000000000000E-14 " " relative error = 4.22017500277129030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4280678023490143 " " Order of pole = 2.1754373915923217 " " x[1] = -1.0120000000001088 " " y[1] (analytic) = -0.7913623073913433 " " y[1] (numeric) = -0.7913623073913097 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 4.236837543375584500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4273504756869755 " " Order of pole = 2.175376108635355 " " x[1] = -1.011000000000109 " " y[1] (analytic) = -0.7908680243101792 " " y[1] (numeric) = -0.7908680243101458 " " absolute error = 3.34177130412172100000000000000E-14 " " relative error = 4.225447484789289000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4266336769369372 " " Order of pole = 2.1753183567746035 " " x[1] = -1.010000000000109 " " y[1] (analytic) = -0.7903732467283563 " " y[1] (numeric) = -0.7903732467283228 " " absolute error = 3.35287353436797300000000000000E-14 " " relative error = 4.2421394553101865000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4259174087758386 " " Order of pole = 2.1752641787356986 " " x[1] = -1.0090000000001091 " " y[1] (analytic) = -0.7898779741460369 " " y[1] (numeric) = -0.7898779741460036 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 4.2166881251200430000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4252016737867779 " " Order of pole = 2.1752136154288344 " " x[1] = -1.0080000000001093 " " y[1] (analytic) = -0.7893822060633552 " " y[1] (numeric) = -0.7893822060633218 " " absolute error = 3.34177130412172100000000000000E-14 " " relative error = 4.2334008525313954000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4244864744570758 " " Order of pole = 2.175166705908808 " " x[1] = -1.0070000000001094 " " y[1] (analytic) = -0.7888859419804178 " " y[1] (numeric) = -0.7888859419803845 " " absolute error = 3.330669073875469600000000000000E-14 " " relative error = 4.221990653698511000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.423771813177076 " " Order of pole = 2.1751234873492074 " " x[1] = -1.0060000000001095 " " y[1] (analytic) = -0.7883891813973092 " " y[1] (numeric) = -0.7883891813972755 " " absolute error = 3.363975764614224300000000000000E-14 " " relative error = 4.266897420702868700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.423057692238024 " " Order of pole = 2.1750839949988254 " " x[1] = -1.0050000000001096 " " y[1] (analytic) = -0.7878919238140916 " " y[1] (numeric) = -0.7878919238140579 " " absolute error = 3.363975764614224300000000000000E-14 " " relative error = 4.269590362507608700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4223441138313044 " " Order of pole = 2.1750482621642533 " " x[1] = -1.0040000000001097 " " y[1] (analytic) = -0.7873941687308106 " " y[1] (numeric) = -0.7873941687307769 " " absolute error = 3.363975764614224300000000000000E-14 " " relative error = 4.272289404983236000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.421631080047136 " " Order of pole = 2.1750163201818538 " " x[1] = -1.0030000000001098 " " y[1] (analytic) = -0.7868959156474968 " " y[1] (numeric) = -0.7868959156474631 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 4.289103460504423700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4209185928723338 " " Order of pole = 2.174988198371885 " " x[1] = -1.00200000000011 " " y[1] (analytic) = -0.7863971640641692 " " y[1] (numeric) = -0.7863971640641351 " " absolute error = 3.408384685599230600000000000000E-14 " " relative error = 4.334177234292658000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4202066541896738 " " Order of pole = 2.1749639240232526 " " x[1] = -1.00100000000011 " " y[1] (analytic) = -0.7858979134808365 " " y[1] (numeric) = -0.7858979134808025 " " absolute error = 3.39728245535297900000000000000E-14 " " relative error = 4.322803759976923000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.419495265777604 " " Order of pole = 2.1749435223852025 " " x[1] = -1.0000000000001101 " " y[1] (analytic) = -0.7853981633975036 " " y[1] (numeric) = -0.7853981633974693 " " absolute error = 3.43058914609173370000000000000E-14 " " relative error = 4.367961762542922300000000000E-12 "%" h = 1.000E-3 " " "Finished!" "Maximum Iterations Reached before Solution Completed!" "diff ( y , x , 1 ) = 1.0/ (x * x + 1.0) ;" Iterations = 1000 "Total Elapsed Time "= 7 Minutes 40 Seconds "Elapsed Time(since restart) "= 7 Minutes 40 Seconds "Expected Time Remaining "= 15 Minutes 20 Seconds "Optimized Time Remaining "= 15 Minutes 18 Seconds "Time to Timeout "= 7 Minutes 19 Seconds Percent Done = 33.366666666662994 "%" (%o49) true (%o49) diffeq.max