(%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_m1 array_const_2D0 , 1 1 1 array_tmp2 : array_tmp1 array_x , array_tmp3 : array_x array_x , 1 1 1 1 1 1 array_tmp2 1 array_tmp4 : array_const_1D0 + array_tmp3 , array_tmp5 : -----------, 1 1 1 1 array_tmp4 1 array_tmp6 : array_x array_x , array_tmp7 : array_const_1D0 + array_tmp6 , 1 1 1 1 1 1 array_tmp5 1 array_tmp8 : -----------, array_tmp9 : array_tmp8 + array_const_0D0 , 1 array_tmp7 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 2 array_tmp2 : ats(2, array_tmp1, array_x, 1), 2 array_tmp3 : ats(2, array_x, array_x, 1), 2 array_tmp4 : array_const_1D0 + array_tmp3 , 2 2 2 array_tmp2 - ats(2, array_tmp4, array_tmp5, 2) 2 array_tmp5 : -----------------------------------------------, 2 array_tmp4 1 array_tmp6 : ats(2, array_x, array_x, 1), 2 array_tmp7 : array_const_1D0 + array_tmp6 , 2 2 2 array_tmp5 - ats(2, array_tmp7, array_tmp8, 2) 2 array_tmp8 : -----------------------------------------------, 2 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 3 array_tmp2 : ats(3, array_tmp1, array_x, 1), 3 array_tmp3 : ats(3, array_x, array_x, 1), 3 array_tmp4 : array_const_1D0 + array_tmp3 , 3 3 3 array_tmp2 - ats(3, array_tmp4, array_tmp5, 2) 3 array_tmp5 : -----------------------------------------------, 3 array_tmp4 1 array_tmp6 : ats(3, array_x, array_x, 1), 3 array_tmp7 : array_const_1D0 + array_tmp6 , 3 3 3 array_tmp5 - ats(3, array_tmp7, array_tmp8, 2) 3 array_tmp8 : -----------------------------------------------, 3 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 4 array_tmp2 : ats(4, array_tmp1, array_x, 1), 4 array_tmp3 : ats(4, array_x, array_x, 1), 4 array_tmp4 : array_const_1D0 + array_tmp3 , 4 4 4 array_tmp2 - ats(4, array_tmp4, array_tmp5, 2) 4 array_tmp5 : -----------------------------------------------, 4 array_tmp4 1 array_tmp6 : ats(4, array_x, array_x, 1), 4 array_tmp7 : array_const_1D0 + array_tmp6 , 4 4 4 array_tmp5 - ats(4, array_tmp7, array_tmp8, 2) 4 array_tmp8 : -----------------------------------------------, 4 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 5 array_tmp2 : ats(5, array_tmp1, array_x, 1), 5 array_tmp3 : ats(5, array_x, array_x, 1), 5 array_tmp4 : array_const_1D0 + array_tmp3 , 5 5 5 array_tmp2 - ats(5, array_tmp4, array_tmp5, 2) 5 array_tmp5 : -----------------------------------------------, 5 array_tmp4 1 array_tmp6 : ats(5, array_x, array_x, 1), 5 array_tmp7 : array_const_1D0 + array_tmp6 , 5 5 5 array_tmp5 - ats(5, array_tmp7, array_tmp8, 2) 5 array_tmp8 : -----------------------------------------------, 5 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), array_tmp2 : ats(kkk, array_tmp1, array_x, 1), kkk array_tmp3 : ats(kkk, array_x, array_x, 1), kkk array_tmp4 : array_const_1D0 + array_tmp3 , kkk kkk kkk array_tmp2 - ats(kkk, array_tmp4, array_tmp5, 2) kkk array_tmp5 : ---------------------------------------------------, kkk array_tmp4 1 array_tmp6 : ats(kkk, array_x, array_x, 1), kkk array_tmp7 : array_const_1D0 + array_tmp6 , kkk kkk kkk array_tmp5 - ats(kkk, array_tmp7, array_tmp8, 2) kkk array_tmp8 : ---------------------------------------------------, kkk array_tmp7 1 array_tmp9 : array_tmp8 + 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_tmp9 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_m1 array_const_2D0 , 1 1 1 array_tmp2 : array_tmp1 array_x , array_tmp3 : array_x array_x , 1 1 1 1 1 1 array_tmp2 1 array_tmp4 : array_const_1D0 + array_tmp3 , array_tmp5 : -----------, 1 1 1 1 array_tmp4 1 array_tmp6 : array_x array_x , array_tmp7 : array_const_1D0 + array_tmp6 , 1 1 1 1 1 1 array_tmp5 1 array_tmp8 : -----------, array_tmp9 : array_tmp8 + array_const_0D0 , 1 array_tmp7 1 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 2 array_tmp2 : ats(2, array_tmp1, array_x, 1), 2 array_tmp3 : ats(2, array_x, array_x, 1), 2 array_tmp4 : array_const_1D0 + array_tmp3 , 2 2 2 array_tmp2 - ats(2, array_tmp4, array_tmp5, 2) 2 array_tmp5 : -----------------------------------------------, 2 array_tmp4 1 array_tmp6 : ats(2, array_x, array_x, 1), 2 array_tmp7 : array_const_1D0 + array_tmp6 , 2 2 2 array_tmp5 - ats(2, array_tmp7, array_tmp8, 2) 2 array_tmp8 : -----------------------------------------------, 2 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 3 array_tmp2 : ats(3, array_tmp1, array_x, 1), 3 array_tmp3 : ats(3, array_x, array_x, 1), 3 array_tmp4 : array_const_1D0 + array_tmp3 , 3 3 3 array_tmp2 - ats(3, array_tmp4, array_tmp5, 2) 3 array_tmp5 : -----------------------------------------------, 3 array_tmp4 1 array_tmp6 : ats(3, array_x, array_x, 1), 3 array_tmp7 : array_const_1D0 + array_tmp6 , 3 3 3 array_tmp5 - ats(3, array_tmp7, array_tmp8, 2) 3 array_tmp8 : -----------------------------------------------, 3 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 4 array_tmp2 : ats(4, array_tmp1, array_x, 1), 4 array_tmp3 : ats(4, array_x, array_x, 1), 4 array_tmp4 : array_const_1D0 + array_tmp3 , 4 4 4 array_tmp2 - ats(4, array_tmp4, array_tmp5, 2) 4 array_tmp5 : -----------------------------------------------, 4 array_tmp4 1 array_tmp6 : ats(4, array_x, array_x, 1), 4 array_tmp7 : array_const_1D0 + array_tmp6 , 4 4 4 array_tmp5 - ats(4, array_tmp7, array_tmp8, 2) 4 array_tmp8 : -----------------------------------------------, 4 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), 5 array_tmp2 : ats(5, array_tmp1, array_x, 1), 5 array_tmp3 : ats(5, array_x, array_x, 1), 5 array_tmp4 : array_const_1D0 + array_tmp3 , 5 5 5 array_tmp2 - ats(5, array_tmp4, array_tmp5, 2) 5 array_tmp5 : -----------------------------------------------, 5 array_tmp4 1 array_tmp6 : ats(5, array_x, array_x, 1), 5 array_tmp7 : array_const_1D0 + array_tmp6 , 5 5 5 array_tmp5 - ats(5, array_tmp7, array_tmp8, 2) 5 array_tmp8 : -----------------------------------------------, 5 array_tmp7 1 array_tmp9 : array_tmp8 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp9 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_m1, array_const_2D0, 1), array_tmp2 : ats(kkk, array_tmp1, array_x, 1), kkk array_tmp3 : ats(kkk, array_x, array_x, 1), kkk array_tmp4 : array_const_1D0 + array_tmp3 , kkk kkk kkk array_tmp2 - ats(kkk, array_tmp4, array_tmp5, 2) kkk array_tmp5 : ---------------------------------------------------, kkk array_tmp4 1 array_tmp6 : ats(kkk, array_x, array_x, 1), kkk array_tmp7 : array_const_1D0 + array_tmp6 , kkk kkk kkk array_tmp5 - ats(kkk, array_tmp7, array_tmp8, 2) kkk array_tmp8 : ---------------------------------------------------, kkk array_tmp7 1 array_tmp9 : array_tmp8 + 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_tmp9 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) mode_declare(factorial_1, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o39) [factorial_1] (%i40) factorial_1(nnn) := nnn! (%o40) factorial_1(nnn) := nnn! (%i41) mode_declare(factorial_3, bfloat) modedeclare: bfloat is not a built-in type; assuming it is a Maxima extension type. (%o41) [factorial_3] mmm2! (%i42) factorial_3(mmm2, nnn2) := ----- nnn2! mmm2! (%o42) factorial_3(mmm2, nnn2) := ----- nnn2! (%i43) convfp(mmm) := mmm (%o43) convfp(mmm) := mmm (%i44) convfloat(mmm) := mmm (%o44) convfloat(mmm) := mmm (%i45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%o45) elapsed_time_seconds() := (t : elapsed_real_time(), t) (%i46) arcsin(x) := asin(x) (%o46) arcsin(x) := asin(x) (%i47) arccos(x) := acos(x) (%o47) arccos(x) := acos(x) (%i48) arctan(x) := atan(x) (%o48) arctan(x) := atan(x) 1.0 (%i49) exact_soln_y(x) := --------- 1.0 + x x 1.0 (%o49) exact_soln_y(x) := --------- 1.0 + x x (%i50) mainprog() := (define_variable(glob_iolevel, 5, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(centuries_in_millinium, 10.0, float), define_variable(hours_in_day, 24.0, float), define_variable(min_in_hour, 60.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_almost_1, 0.999, float), define_variable(djd_debug, true, boolean), define_variable(glob_normmax, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(sec_in_min, 60.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(years_in_century, 100.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_h, 0.1, float), define_variable(djd_debug2, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_dump, false, boolean), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_optimal_done, false, boolean), define_variable(days_in_year, 365.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_display_flag, true, boolean), 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/sing4postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 1.0) /( x * x + 1.0);"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 50,"), 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, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.1,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 50,"), 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, "1.0 / (x * x + 1.0) "), 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 : 50, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_m1, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_pole, 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_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_tmp5, 1 + max_terms), array(array_tmp6, 1 + max_terms), array(array_tmp7, 1 + max_terms), array(array_tmp8, 1 + max_terms), array(array_tmp9, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_norms : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_type_pole : 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_pole : 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_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp5 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp6 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp7 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp8 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp9 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_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), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 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 <= 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_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_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term term : 1 + 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_tmp9, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp9 : 0.0, term : 1 + term), term array(array_tmp8, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp8 : 0.0, term : 1 + term), term array(array_tmp7, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp7 : 0.0, term : 1 + term), term array(array_tmp6, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp6 : 0.0, term : 1 + term), term array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term : 1 + term), term array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), 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_const_2D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_2D0 : 0.0, term : 1 + term), term array_const_2D0 : 2.0, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 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, x_start : - 2.0, x_end : 1.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.1, 1 + 0 glob_look_poles : true, glob_max_iter : 50, 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, convfp(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, convfp(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, convfp(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 )\ = m1 * 2.0 * x / (x * x + 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-16T00:36:15-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing4"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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, " 090 "), logitem_str(html_log_file, "sing4 diffeq.max"), logitem_str(html_log_file, "sing4 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%o50) mainprog() := (define_variable(glob_iolevel, 5, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_max_terms, 30, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(INFO, 2, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(centuries_in_millinium, 10.0, float), define_variable(hours_in_day, 24.0, float), define_variable(min_in_hour, 60.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_almost_1, 0.999, float), define_variable(djd_debug, true, boolean), define_variable(glob_normmax, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_max_hours, 0.0, float), define_variable(sec_in_min, 60.0, float), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(years_in_century, 100.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_h, 0.1, float), define_variable(djd_debug2, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_dump, false, boolean), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_look_poles, false, boolean), define_variable(glob_optimal_done, false, boolean), define_variable(days_in_year, 365.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_display_flag, true, boolean), 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/sing4postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 1.0) /( x * x + 1.0);"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 50,"), 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, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.1,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 50,"), 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, "1.0 / (x * x + 1.0) "), 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 : 50, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_m1, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_pole, 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_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_tmp5, 1 + max_terms), array(array_tmp6, 1 + max_terms), array(array_tmp7, 1 + max_terms), array(array_tmp8, 1 + max_terms), array(array_tmp9, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_norms : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_type_pole : 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_pole : 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_tmp0 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp3 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp4 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp5 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp6 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp7 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp8 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp9 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_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), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 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 <= 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_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_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), array(array_m1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_m1 : 0.0, term term : 1 + 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_tmp9, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp9 : 0.0, term : 1 + term), term array(array_tmp8, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp8 : 0.0, term : 1 + term), term array(array_tmp7, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp7 : 0.0, term : 1 + term), term array(array_tmp6, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp6 : 0.0, term : 1 + term), term array(array_tmp5, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp5 : 0.0, term : 1 + term), term array(array_tmp4, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp4 : 0.0, term : 1 + term), 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_const_2D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_2D0 : 0.0, term : 1 + term), term array_const_2D0 : 2.0, array(array_const_0D0, 1 + 1 + max_terms), term : 1, 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, x_start : - 2.0, x_end : 1.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.1, 1 + 0 glob_look_poles : true, glob_max_iter : 50, 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, convfp(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, convfp(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, convfp(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 )\ = m1 * 2.0 * x / (x * x + 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-16T00:36:15-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "sing4"), logitem_str(html_log_file, "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 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, " 090 "), logitem_str(html_log_file, "sing4 diffeq.max"), logitem_str(html_log_file, "sing4 maxima results"), logitem_str(html_log_file, "Test of revised logic - mostly affecting systems of eqs"), logend(html_log_file)), if glob_html_log then close(html_log_file)) (%i51) mainprog() "##############ECHO OF PROBLEM#################" "##############temp/sing4postode.ode#################" "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 1.0) /( x * x + 1.0);" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 50," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : -2.0," "x_end : 1.0," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_h : 0.1," "glob_look_poles : true," "glob_max_iter : 50," "/* 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) := (" "1.0 / (x * x + 1.0) " ");" "" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = -2. " " y[1] (analytic) = 0.2 " " y[1] (numeric) = 0.2 " " 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.259037444896596 " " Order of pole = 3.571602884033478 " " x[1] = -1.999 " " y[1] (analytic) = 0.2001600880384131 " " y[1] (numeric) = 0.20016008803841315 " " absolute error = 5.55111512312578300000000000000000E-17 " " relative error = 2.773337670625154000000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2581061217122853 " " Order of pole = 3.5712012087996676 " " x[1] = -1.9980000000000002 " " y[1] (analytic) = 0.20032035230740997 " " y[1] (numeric) = 0.20032035230741002 " " absolute error = 5.55111512312578300000000000000000E-17 " " relative error = 2.771118889910440500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.257174751806302 " " Order of pole = 3.5707978287454267 " " x[1] = -1.9970000000000003 " " y[1] (analytic) = 0.20048079303786334 " " y[1] (numeric) = 0.20048079303786343 " " absolute error = 8.32667268468867400000000000000000E-17 " " relative error = 4.153351829128128500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2562433385915934 " " Order of pole = 3.5703927882327093 " " x[1] = -1.9960000000000004 " " y[1] (analytic) = 0.2006414104609615 " " y[1] (numeric) = 0.20064141046096162 " " absolute error = 1.11022302462515650000000000000000E-16 " " relative error = 5.533369318300176000000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2553118854965537 " " Order of pole = 3.569986131854151 " " x[1] = -1.9950000000000006 " " y[1] (analytic) = 0.2008022048082087 " " y[1] (numeric) = 0.20080220480820882 " " absolute error = 1.11022302462515650000000000000000E-16 " " relative error = 5.52893841820889700000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2543803959650996 " " Order of pole = 3.5695779044345244 " " x[1] = -1.9940000000000007 " " y[1] (analytic) = 0.2009631763114253 " " y[1] (numeric) = 0.20096317631142543 " " absolute error = 1.38777878078144570000000000000000E-16 " " relative error = 6.90563717320458500000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2534488734548783 " " Order of pole = 3.569168151005691 " " x[1] = -1.9930000000000008 " " y[1] (analytic) = 0.20112432520274826 " " y[1] (numeric) = 0.20112432520274845 " " absolute error = 1.9428902930940240000000000000000E-16 " " relative error = 9.66014573888785600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2525173214400165 " " Order of pole = 3.5687569168462225 " " x[1] = -1.9920000000000009 " " y[1] (analytic) = 0.20128565171463156 " " y[1] (numeric) = 0.20128565171463175 " " absolute error = 1.9428902930940240000000000000000E-16 " " relative error = 9.65240332106987600000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.251585743407358 " " Order of pole = 3.5683442474282394 " " x[1] = -1.991000000000001 " " y[1] (analytic) = 0.20144715607984626 " " y[1] (numeric) = 0.20144715607984645 " " absolute error = 1.9428902930940240000000000000000E-16 " " relative error = 9.64466478903248200000000000000E-14 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2506541428580236 " " Order of pole = 3.5679301884400374 " " x[1] = -1.990000000000001 " " y[1] (analytic) = 0.20160883853148104 " " y[1] (numeric) = 0.20160883853148126 " " absolute error = 2.2204460492503130000000000000000E-16 " " relative error = 1.10136344488864880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.249722523306552 " " Order of pole = 3.5675147857742893 " " x[1] = -1.9890000000000012 " " y[1] (analytic) = 0.20177069930294256 " " y[1] (numeric) = 0.2017706993029428 " " absolute error = 2.4980018054066022000000000000000E-16 " " relative error = 1.23803992058135870000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.248790888281442 " " Order of pole = 3.5670980855363013 " " x[1] = -1.9880000000000013 " " y[1] (analytic) = 0.20193273862795566 " " y[1] (numeric) = 0.20193273862795594 " " absolute error = 2.77555756156289140000000000000000E-16 " " relative error = 1.3744960725148320000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.247859241323284 " " Order of pole = 3.566680134017684 " " x[1] = -1.9870000000000014 " " y[1] (analytic) = 0.20209495674056382 " " y[1] (numeric) = 0.20209495674056407 " " absolute error = 2.4980018054066022000000000000000E-16 " " relative error = 1.23605350954569940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.246927585986066 " " Order of pole = 3.5662609777154977 " " x[1] = -1.9860000000000015 " " y[1] (analytic) = 0.2022573538751293 " " y[1] (numeric) = 0.20225735387512958 " " absolute error = 2.77555756156289140000000000000000E-16 " " relative error = 1.37229005936490180000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2459959258355973 " " Order of pole = 3.5658406633101407 " " x[1] = -1.9850000000000017 " " y[1] (analytic) = 0.20241993026633373 " " y[1] (numeric) = 0.20241993026633406 " " absolute error = 3.33066907387546960000000000000000E-16 " " relative error = 1.64542546254864670000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.245064264450119 " " Order of pole = 3.565419237674522 " " x[1] = -1.9840000000000018 " " y[1] (analytic) = 0.20258268614917835 " " y[1] (numeric) = 0.20258268614917868 " " absolute error = 3.33066907387546960000000000000000E-16 " " relative error = 1.64410351999322550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.244132605419085 " " Order of pole = 3.564996747857087 " " x[1] = -1.9830000000000019 " " y[1] (analytic) = 0.2027456217589842 " " y[1] (numeric) = 0.20274562175898456 " " absolute error = 3.6082248300317590000000000000000E-16 " " relative error = 1.7796807638692540000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.24320095234371 " " Order of pole = 3.5645732410900344 " " x[1] = -1.982000000000002 " " y[1] (analytic) = 0.20290873733139267 " " y[1] (numeric) = 0.20290873733139303 " " absolute error = 3.6082248300317590000000000000000E-16 " " relative error = 1.77825010272414650000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.24226930883625 " " Order of pole = 3.5641487647794996 " " x[1] = -1.981000000000002 " " y[1] (analytic) = 0.20307203310236563 " " y[1] (numeric) = 0.20307203310236602 " " absolute error = 3.8857805861880480000000000000000E-16 " " relative error = 1.91349863731815920000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2413376785194035 " " Order of pole = 3.563723366497392 " " x[1] = -1.9800000000000022 " " y[1] (analytic) = 0.20323550930818596 " " y[1] (numeric) = 0.20323550930818637 " " absolute error = 4.1633363423443370000000000000000E-16 " " relative error = 2.04852801388711120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.240406065026422 " " Order of pole = 3.5632970939834117 " " x[1] = -1.9790000000000023 " " y[1] (analytic) = 0.20339916618545775 " " y[1] (numeric) = 0.2033991661854582 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.1833383989644560000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.239474472000969 " " Order of pole = 3.5628699951433838 " " x[1] = -1.9780000000000024 " " y[1] (analytic) = 0.2035630039711067 " " y[1] (numeric) = 0.20356300397110713 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.18158113796107940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2385429030958544 " " Order of pole = 3.562442118031708 " " x[1] = -1.9770000000000025 " " y[1] (analytic) = 0.20372702290238032 " " y[1] (numeric) = 0.2037270229023808 " " absolute error = 4.7184478546569153000000000000000E-16 " " relative error = 2.31606381295713040000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.237611361973436 " " Order of pole = 3.562013510857355 " " x[1] = -1.9760000000000026 " " y[1] (analytic) = 0.2038912232168485 " " y[1] (numeric) = 0.20389122321684897 " " absolute error = 4.7184478546569153000000000000000E-16 " " relative error = 2.31419861052018420000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.236679852305863 " " Order of pole = 3.561584221987829 " " x[1] = -1.9750000000000028 " " y[1] (analytic) = 0.2040556051524036 " " y[1] (numeric) = 0.2040556051524041 " " absolute error = 4.9960036108132044000000000000000E-16 " " relative error = 2.4483540195241510000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.23574837777254 " " Order of pole = 3.5611542999133547 " " x[1] = -1.9740000000000029 " " y[1] (analytic) = 0.2042201689472609 " " y[1] (numeric) = 0.20422016894726142 " " absolute error = 5.2735593669694940000000000000000E-16 " " relative error = 2.58229115868147730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.234816942063366 " " Order of pole = 3.5607237932933984 " " x[1] = -1.973000000000003 " " y[1] (analytic) = 0.20438491483995896 " " y[1] (numeric) = 0.20438491483995952 " " absolute error = 5.5511151231257830000000000000000E-16 " " relative error = 2.71601019452561540000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2338855488748903 " " Order of pole = 3.560292750902338 " " x[1] = -1.972000000000003 " " y[1] (analytic) = 0.20454984306935992 " " y[1] (numeric) = 0.20454984306936047 " " absolute error = 5.5511151231257830000000000000000E-16 " " relative error = 2.7138202796095420000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.232954201911582 " " Order of pole = 3.559861221647804 " " x[1] = -1.9710000000000032 " " y[1] (analytic) = 0.20471495387464966 " " y[1] (numeric) = 0.20471495387465025 " " absolute error = 5.8286708792820720000000000000000E-16 " " relative error = 2.84721304866231900000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.232022904885352 " " Order of pole = 3.5594292545643427 " " x[1] = -1.9700000000000033 " " y[1] (analytic) = 0.20488024749533842 " " y[1] (numeric) = 0.20488024749533906 " " absolute error = 6.383782391594650000000000000000E-16 " " relative error = 3.11586034751344100000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.231091661515796 " " Order of pole = 3.5589968988171954 " " x[1] = -1.9690000000000034 " " y[1] (analytic) = 0.205045724171261 " " y[1] (numeric) = 0.20504572417126166 " " absolute error = 6.6613381477509390000000000000000E-16 " " relative error = 3.2487086354393660000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.230160475528719 " " Order of pole = 3.558564203681609 " " x[1] = -1.9680000000000035 " " y[1] (analytic) = 0.20521138414257703 " " y[1] (numeric) = 0.20521138414257767 " " absolute error = 6.383782391594650000000000000000E-16 " " relative error = 3.11083248050182170000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.229229350656085 " " Order of pole = 3.5581312185424885 " " x[1] = -1.9670000000000036 " " y[1] (analytic) = 0.20537722764977123 " " y[1] (numeric) = 0.20537722764977193 " " absolute error = 6.9388939039072280000000000000000E-16 " " relative error = 3.37860919796818400000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2282982906367583 " " Order of pole = 3.557697992905325 " " x[1] = -1.9660000000000037 " " y[1] (analytic) = 0.2055432549336541 " " y[1] (numeric) = 0.20554325493365483 " " absolute error = 7.2164496600635180000000000000000E-16 " " relative error = 3.51091533623560940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.227367299214293 " " Order of pole = 3.557264576364968 " " x[1] = -1.9650000000000039 " " y[1] (analytic) = 0.20570946623536185 " " y[1] (numeric) = 0.20570946623536257 " " absolute error = 7.2164496600635180000000000000000E-16 " " relative error = 3.50807854987423840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.226436380139121 " " Order of pole = 3.556831018637265 " " x[1] = -1.964000000000004 " " y[1] (analytic) = 0.2058758617963568 " " y[1] (numeric) = 0.20587586179635756 " " absolute error = 7.4940054162198070000000000000000E-16 " " relative error = 3.6400602532182920000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.225505537165172 " " Order of pole = 3.556397369511078 " " x[1] = -1.963000000000004 " " y[1] (analytic) = 0.206042441858428 " " y[1] (numeric) = 0.20604244185842874 " " absolute error = 7.4940054162198070000000000000000E-16 " " relative error = 3.63711735729134230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2245747740521695 " " Order of pole = 3.5559636788814366 " " x[1] = -1.9620000000000042 " " y[1] (analytic) = 0.20620920666369108 " " y[1] (numeric) = 0.20620920666369183 " " absolute error = 7.4940054162198070000000000000000E-16 " " relative error = 3.63417596016547660000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.223644094563458 " " Order of pole = 3.555529996718853 " " x[1] = -1.9610000000000043 " " y[1] (analytic) = 0.20637615645458895 " " y[1] (numeric) = 0.2063761564545898 " " absolute error = 8.3266726846886740000000000000000E-16 " " relative error = 4.03470673537854930000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2227135024671894 " " Order of pole = 3.555096373086542 " " x[1] = -1.9600000000000044 " " y[1] (analytic) = 0.2065432914738922 " " y[1] (numeric) = 0.206543291473893 " " absolute error = 8.0491169285323850000000000000000E-16 " " relative error = 3.89706045211825340000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2217830015345257 " " Order of pole = 3.554662858115144 " " x[1] = -1.9590000000000045 " " y[1] (analytic) = 0.20671061196469886 " " y[1] (numeric) = 0.2067106119646997 " " absolute error = 8.3266726846886740000000000000000E-16 " " relative error = 4.02817862399375340000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2208525955399776 " " Order of pole = 3.554229502007818 " " x[1] = -1.9580000000000046 " " y[1] (analytic) = 0.20687811817043536 " " y[1] (numeric) = 0.2068781181704362 " " absolute error = 8.3266726846886740000000000000000E-16 " " relative error = 4.02491706630316140000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2199222882621417 " " Order of pole = 3.5537963550510696 " " x[1] = -1.9570000000000047 " " y[1] (analytic) = 0.20704581033485644 " " y[1] (numeric) = 0.20704581033485733 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.2897676522102474000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.218992083480817 " " Order of pole = 3.55336346757397 " " x[1] = -1.9560000000000048 " " y[1] (analytic) = 0.2072136887020458 " " y[1] (numeric) = 0.20721368870204668 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.28629221005396100000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.218061984978816 " " Order of pole = 3.5529308899742205 " " x[1] = -1.955000000000005 " " y[1] (analytic) = 0.20738175351641602 " " y[1] (numeric) = 0.20738175351641694 " " absolute error = 9.1593399531575410000000000000000E-16 " " relative error = 4.41665662376246700000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.21713199654096 " " Order of pole = 3.5524986727041252 " " x[1] = -1.954000000000005 " " y[1] (analytic) = 0.2075500050227093 " " y[1] (numeric) = 0.2075500050227102 " " absolute error = 9.1593399531575410000000000000000E-16 " " relative error = 4.4130762377747780000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.216202121953881 " " Order of pole = 3.5520668662680563 " " x[1] = -1.9530000000000052 " " y[1] (analytic) = 0.20771844346599738 " " y[1] (numeric) = 0.20771844346599833 " " absolute error = 9.436895709313831000000000000000E-16 " " relative error = 4.54311882558402160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.215272365004457 " " Order of pole = 3.551635521200428 " " x[1] = -1.9520000000000053 " " y[1] (analytic) = 0.20788706909168228 " " y[1] (numeric) = 0.20788706909168325 " " absolute error = 9.714451465470120000000000000000E-16 " " relative error = 4.6729464742156984000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2143427294821905 " " Order of pole = 3.5512046880998867 " " x[1] = -1.9510000000000054 " " y[1] (analytic) = 0.20805588214549633 " " y[1] (numeric) = 0.20805588214549728 " " absolute error = 9.436895709313831000000000000000E-16 " " relative error = 4.53575049741418930000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2134132191755618 " " Order of pole = 3.5507744175775073 " " x[1] = -1.9500000000000055 " " y[1] (analytic) = 0.20822488287350244 " " y[1] (numeric) = 0.20822488287350344 " " absolute error = 9.9920072216264090000000000000000E-16 " " relative error = 4.7986614681861050000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2124838378739624 " " Order of pole = 3.5503447602847196 " " x[1] = -1.9490000000000056 " " y[1] (analytic) = 0.20839407152209477 " " y[1] (numeric) = 0.20839407152209577 " " absolute error = 9.9920072216264090000000000000000E-16 " " relative error = 4.7947655845703930000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2115545893669917 " " Order of pole = 3.549915766903453 " " x[1] = -1.9480000000000057 " " y[1] (analytic) = 0.2085634483379986 " " y[1] (numeric) = 0.20856344833799964 " " absolute error = 1.0269562977782698000000000000000E-15 " " relative error = 4.9239514687826846000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2106254774429974 " " Order of pole = 3.5494874881255996 " " x[1] = -1.9470000000000058 " " y[1] (analytic) = 0.2087330135682711 " " y[1] (numeric) = 0.20873301356827212 " " absolute error = 1.0269562977782698000000000000000E-15 " " relative error = 4.9199514740028390000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2096965058901077 " " Order of pole = 3.5490599746679905 " " x[1] = -1.946000000000006 " " y[1] (analytic) = 0.2089027674603012 " " y[1] (numeric) = 0.20890276746030223 " " absolute error = 1.0269562977782698000000000000000E-15 " " relative error = 4.9159535331355880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2087676784954424 " " Order of pole = 3.548633277261345 " " x[1] = -1.945000000000006 " " y[1] (analytic) = 0.2090727102618103 " " y[1] (numeric) = 0.20907271026181132 " " absolute error = 1.0269562977782698000000000000000E-15 " " relative error = 4.9119576461809320000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2078389990436706 " " Order of pole = 3.5482074466299665 " " x[1] = -1.9440000000000062 " " y[1] (analytic) = 0.20924284222085224 " " y[1] (numeric) = 0.20924284222085332 " " absolute error = 1.0824674490095276000000000000000E-15 " " relative error = 5.1732591543896240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2069104713185417 " " Order of pole = 3.547782533513736 " " x[1] = -1.9430000000000063 " " y[1] (analytic) = 0.20941316358581402 " " y[1] (numeric) = 0.2094131635858151 " " absolute error = 1.0824674490095276000000000000000E-15 " " relative error = 5.1690516034153240000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2059820991015386 " " Order of pole = 3.547358588649221 " " x[1] = -1.9420000000000064 " " y[1] (analytic) = 0.20958367460541572 " " y[1] (numeric) = 0.20958367460541683 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.2972781716676130000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.205053886170718 " " Order of pole = 3.5469356627532704 " " x[1] = -1.9410000000000065 " " y[1] (analytic) = 0.209754375528711 " " y[1] (numeric) = 0.20975437552871212 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.2929671756629940000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2041258363022913 " " Order of pole = 3.5465138065457538 " " x[1] = -1.9400000000000066 " " y[1] (analytic) = 0.20992526660508748 " " y[1] (numeric) = 0.2099252666050886 " " absolute error = 1.1102230246251565000000000000000E-15 " " relative error = 5.2886584001044230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.203197953268376 " " Order of pole = 3.5460930707177525 " " x[1] = -1.9390000000000067 " " y[1] (analytic) = 0.21009634808426683 " " y[1] (numeric) = 0.21009634808426797 " " absolute error = 1.1379786002407855000000000000000E-15 " " relative error = 5.4164606411167020000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.20227024083794 " " Order of pole = 3.5456735059451923 " " x[1] = -1.9380000000000068 " " y[1] (analytic) = 0.21026762021630535 " " y[1] (numeric) = 0.21026762021630652 " " absolute error = 1.1657341758564144000000000000000E-15 " " relative error = 5.5440498858417030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.201342702775898 " " Order of pole = 3.5452551628760745 " " x[1] = -1.937000000000007 " " y[1] (analytic) = 0.21043908325159408 " " y[1] (numeric) = 0.2104390832515953 " " absolute error = 1.2212453270876722000000000000000E-15 " " relative error = 5.8033199357155120000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.2004153428425512 " " Order of pole = 3.5448380921227987 " " x[1] = -1.936000000000007 " " y[1] (analytic) = 0.2106107374408593 " " y[1] (numeric) = 0.2106107374408605 " " absolute error = 1.1934897514720433000000000000000E-15 " " relative error = 5.6668039150054350000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.199488164794251 " " Order of pole = 3.544422344271677 " " x[1] = -1.9350000000000072 " " y[1] (analytic) = 0.21078258303516256 " " y[1] (numeric) = 0.2107825830351638 " " absolute error = 1.2490009027033011000000000000000E-15 " " relative error = 5.9255413076276030000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.198561172381365 " " Order of pole = 3.544007969854153 " " x[1] = -1.9340000000000073 " " y[1] (analytic) = 0.2109546202859013 " " y[1] (numeric) = 0.2109546202859026 " " absolute error = 1.27675647831893000000000000000E-15 " " relative error = 6.0522802325380450000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1976343693496903 " " Order of pole = 3.543595019367075 " " x[1] = -1.9330000000000074 " " y[1] (analytic) = 0.21112684944480897 " " y[1] (numeric) = 0.21112684944481028 " " absolute error = 1.304512053934559000000000000000E-15 " " relative error = 6.1788069938284830000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1967077594384117 " " Order of pole = 3.543183543243785 " " x[1] = -1.9320000000000075 " " y[1] (analytic) = 0.21129927076395547 " " y[1] (numeric) = 0.21129927076395674 " " absolute error = 1.27675647831893000000000000000E-15 " " relative error = 6.0424083514476850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.195781346381864 " " Order of pole = 3.542773591879328 " " x[1] = -1.9310000000000076 " " y[1] (analytic) = 0.21147188449574716 " " y[1] (numeric) = 0.21147188449574847 " " absolute error = 1.304512053934559000000000000000E-15 " " relative error = 6.1687257246756780000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1948551339068794 " " Order of pole = 3.5423652155928274 " " x[1] = -1.9300000000000077 " " y[1] (analytic) = 0.21164469089292762 " " y[1] (numeric) = 0.21164469089292895 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.2948313228617230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1939291257338533 " " Order of pole = 3.54195846464275 " " x[1] = -1.9290000000000078 " " y[1] (analytic) = 0.21181769020857766 " " y[1] (numeric) = 0.211817690208579 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.2896901020792880000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1930033255764516 " " Order of pole = 3.541553389222912 " " x[1] = -1.928000000000008 " " y[1] (analytic) = 0.21199088269611563 " " y[1] (numeric) = 0.211990882696117 " " absolute error = 1.3600232051658168000000000000000E-15 " " relative error = 6.415479703036949000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1920777371400306 " " Order of pole = 3.541150039440005 " " x[1] = -1.927000000000008 " " y[1] (analytic) = 0.2121642686092979 " " y[1] (numeric) = 0.21216426860929927 " " absolute error = 1.3600232051658168000000000000000E-15 " " relative error = 6.4102368135810360000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1911523641226855 " " Order of pole = 3.540748465328729 " " x[1] = -1.9260000000000081 " " y[1] (analytic) = 0.21233784820221896 " " y[1] (numeric) = 0.21233784820222035 " " absolute error = 1.3877787807814457000000000000000E-15 " " relative error = 6.5357108613995230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.190227210214212 " " Order of pole = 3.54034871683702 " " x[1] = -1.9250000000000083 " " y[1] (analytic) = 0.2125116217293119 " " y[1] (numeric) = 0.2125116217293133 " " absolute error = 1.3877787807814457000000000000000E-15 " " relative error = 6.5303665253147340000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1893022790961627 " " Order of pole = 3.5399508438269756 " " x[1] = -1.9240000000000084 " " y[1] (analytic) = 0.21268558944534854 " " y[1] (numeric) = 0.21268558944535 " " absolute error = 1.4432899320127035000000000000000E-15 " " relative error = 6.7860259633790090000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1883775744399694 " " Order of pole = 3.539554896048159 " " x[1] = -1.9230000000000085 " " y[1] (analytic) = 0.21285975160544 " " y[1] (numeric) = 0.21285975160544143 " " absolute error = 1.4432899320127035000000000000000E-15 " " relative error = 6.7804736270105550000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1874530999093746 " " Order of pole = 3.539160923172375 " " x[1] = -1.9220000000000086 " " y[1] (analytic) = 0.21303410846503662 " " y[1] (numeric) = 0.2130341084650381 " " absolute error = 1.4710455076283324000000000000000E-15 " " relative error = 6.9052111806300810000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.186528859157747 " " Order of pole = 3.538768974755463 " " x[1] = -1.9210000000000087 " " y[1] (analytic) = 0.21320866027992863 " " y[1] (numeric) = 0.21320866027993016 " " absolute error = 1.5265566588595902000000000000000E-15 " " relative error = 7.1599186302063160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.185604855827894 " " Order of pole = 3.5383791002345824 " " x[1] = -1.9200000000000088 " " y[1] (analytic) = 0.21338340730624633 " " y[1] (numeric) = 0.21338340730624783 " " absolute error = 1.4988010832439613000000000000000E-15 " " relative error = 7.0239813965145510000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1846810935541896 " " Order of pole = 3.5379913489588404 " " x[1] = -1.919000000000009 " " y[1] (analytic) = 0.21355834980046018 " " y[1] (numeric) = 0.2135583498004617 " " absolute error = 1.5265566588595902000000000000000E-15 " " relative error = 7.1481946750662750000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1837575759584924 " " Order of pole = 3.537605770130895 " " x[1] = -1.918000000000009 " " y[1] (analytic) = 0.2137334880193815 " " y[1] (numeric) = 0.21373348801938302 " " absolute error = 1.5265566588595902000000000000000E-15 " " relative error = 7.142337277166230000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1828343066521025 " " Order of pole = 3.5372224128350283 " " x[1] = -1.9170000000000091 " " y[1] (analytic) = 0.21390882222016236 " " y[1] (numeric) = 0.2139088222201639 " " absolute error = 1.5543122344752192000000000000000E-15 " " relative error = 7.2662371675136770000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1819112892353325 " " Order of pole = 3.5368413260310483 " " x[1] = -1.9160000000000093 " " y[1] (analytic) = 0.21408435266029616 " " y[1] (numeric) = 0.21408435266029777 " " absolute error = 1.609823385706477000000000000000E-15 " " relative error = 7.5195751847446110000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1809885272965763 " " Order of pole = 3.536462558541036 " " x[1] = -1.9150000000000094 " " y[1] (analytic) = 0.21426007959761792 " " y[1] (numeric) = 0.21426007959761953 " " absolute error = 1.609823385706477000000000000000E-15 " " relative error = 7.513407951353970000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1800660244122034 " " Order of pole = 3.5360861590478585 " " x[1] = -1.9140000000000095 " " y[1] (analytic) = 0.21443600329030438 " " y[1] (numeric) = 0.214436003290306 " " absolute error = 1.609823385706477000000000000000E-15 " " relative error = 7.50724393761010000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1791437841463246 " " Order of pole = 3.5357121760918098 " " x[1] = -1.9130000000000096 " " y[1] (analytic) = 0.2146121239968744 " " y[1] (numeric) = 0.21461212399687607 " " absolute error = 1.6653345369377348000000000000000E-15 " " relative error = 7.7597411829444860000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.178221810049192 " " Order of pole = 3.535340658047815 " " x[1] = -1.9120000000000097 " " y[1] (analytic) = 0.2147884419761894 " " y[1] (numeric) = 0.2147884419761911 " " absolute error = 1.6930901125533637000000000000000E-15 " " relative error = 7.8825941329797110000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.17730010566063 " " Order of pole = 3.534971653174466 " " x[1] = -1.9110000000000098 " " y[1] (analytic) = 0.21496495748745348 " " y[1] (numeric) = 0.21496495748745514 " " absolute error = 1.6653345369377348000000000000000E-15 " " relative error = 7.7470047044059850000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1763786745030984 " " Order of pole = 3.5346052095148366 " " x[1] = -1.91000000000001 " " y[1] (analytic) = 0.21514167079021362 " " y[1] (numeric) = 0.21514167079021532 " " absolute error = 1.6930901125533637000000000000000E-15 " " relative error = 7.8696521521593530000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.175457520088683 " " Order of pole = 3.534241374996416 " " x[1] = -1.90900000000001 " " y[1] (analytic) = 0.21531858214436028 " " y[1] (numeric) = 0.21531858214436203 " " absolute error = 1.7486012637846216000000000000000E-15 " " relative error = 8.1209956259709730000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1745366459139306 " " Order of pole = 3.533880197357284 " " x[1] = -1.9080000000000101 " " y[1] (analytic) = 0.21549569181012754 " " y[1] (numeric) = 0.2154956918101293 " " absolute error = 1.7486012637846216000000000000000E-15 " " relative error = 8.1143212149471080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1736160554580093 " " Order of pole = 3.533521724119744 " " x[1] = -1.9070000000000102 " " y[1] (analytic) = 0.21567300004809326 " " y[1] (numeric) = 0.21567300004809503 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.2363431630484020000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1726957521923214 " " Order of pole = 3.533166002727828 " " x[1] = -1.9060000000000104 " " y[1] (analytic) = 0.2158505071191796 " " y[1] (numeric) = 0.21585050711918138 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.2295699144197680000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1717757395694073 " " Order of pole = 3.5328130803884683 " " x[1] = -1.9050000000000105 " " y[1] (analytic) = 0.21602821328465313 " " y[1] (numeric) = 0.21602821328465494 " " absolute error = 1.8041124150158794000000000000000E-15 " " relative error = 8.3512814719189520000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.170856021012943 " " Order of pole = 3.5324630039284344 " " x[1] = -1.9040000000000106 " " y[1] (analytic) = 0.2162061188061252 " " y[1] (numeric) = 0.21620611880612706 " " absolute error = 1.8596235662471372000000000000000E-15 " " relative error = 8.6011606725833960000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.169936599963982 " " Order of pole = 3.5321158204558003 " " x[1] = -1.9030000000000107 " " y[1] (analytic) = 0.21638422394555237 " " y[1] (numeric) = 0.2163842239455542 " " absolute error = 1.8318679906315083000000000000000E-15 " " relative error = 8.4658112187164410000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1690174798100754 " " Order of pole = 3.5317715763458324 " " x[1] = -1.9020000000000108 " " y[1] (analytic) = 0.21656252896523634 " " y[1] (numeric) = 0.21656252896523817 " " absolute error = 1.8318679906315083000000000000000E-15 " " relative error = 8.458840961012090000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.168098663946387 " " Order of pole = 3.531430318115291 " " x[1] = -1.901000000000011 " " y[1] (analytic) = 0.21674103412782456 " " y[1] (numeric) = 0.21674103412782642 " " absolute error = 1.8596235662471372000000000000000E-15 " " relative error = 8.5799330695746840000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1671801557397288 " " Order of pole = 3.531092091907812 " " x[1] = -1.900000000000011 " " y[1] (analytic) = 0.2169197396963104 " " y[1] (numeric) = 0.21691973969631229 " " absolute error = 1.887379141862766000000000000000E-15 " " relative error = 8.7008178439874310000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1662619585455816 " " Order of pole = 3.530756943737334 " " x[1] = -1.8990000000000111 " " y[1] (analytic) = 0.21709864593403347 " " y[1] (numeric) = 0.21709864593403536 " " absolute error = 1.887379141862766000000000000000E-15 " " relative error = 8.6936476906274950000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1653440757001445 " " Order of pole = 3.5304249193742905 " " x[1] = -1.8980000000000112 " " y[1] (analytic) = 0.2172777531046798 " " y[1] (numeric) = 0.21727775310468173 " " absolute error = 1.915134717478395000000000000000E-15 " " relative error = 8.8142236842615160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1644265105176625 " " Order of pole = 3.530096064307191 " " x[1] = -1.8970000000000113 " " y[1] (analytic) = 0.2174570614722823 " " y[1] (numeric) = 0.21745706147228425 " " absolute error = 1.942890293094024000000000000000E-15 " " relative error = 8.93459278783490000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.163509266298621 " " Order of pole = 3.5297704238598833 " " x[1] = -1.8960000000000115 " " y[1] (analytic) = 0.21763657130122088 " " y[1] (numeric) = 0.21763657130122285 " " absolute error = 1.970645868709652900000000000000E-15 " " relative error = 9.0547551678810980000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1625923463245633 " " Order of pole = 3.5294480431171387 " " x[1] = -1.8950000000000116 " " y[1] (analytic) = 0.21781628285622284 " " y[1] (numeric) = 0.2178162828562248 " " absolute error = 1.970645868709652900000000000000E-15 " " relative error = 9.047284449392820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1616757538550373 " " Order of pole = 3.529128966880993 " " x[1] = -1.8940000000000117 " " y[1] (analytic) = 0.21799619640236306 " " y[1] (numeric) = 0.21799619640236506 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 9.1671390478610160000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.160759492132907 " " Order of pole = 3.52881323974648 " " x[1] = -1.8930000000000118 " " y[1] (analytic) = 0.21817631220506442 " " y[1] (numeric) = 0.21817631220506642 " " absolute error = 1.9984014443252818000000000000000E-15 " " relative error = 9.1595711015913560000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1598435643795524 " " Order of pole = 3.528500906032903 " " x[1] = -1.892000000000012 " " y[1] (analytic) = 0.21835663053009785 " " y[1] (numeric) = 0.2183566305300999 " " absolute error = 2.0539125955565396000000000000000E-15 " " relative error = 9.4062295730169390000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1589279737970677 " " Order of pole = 3.5281920098150543 " " x[1] = -1.891000000000012 " " y[1] (analytic) = 0.21853715164358298 " " y[1] (numeric) = 0.218537151643585 " " absolute error = 2.0261570199409107000000000000000E-15 " " relative error = 9.2714534105643260000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.15801272356735 " " Order of pole = 3.5278865949101004 " " x[1] = -1.8900000000000121 " " y[1] (analytic) = 0.21871787581198796 " " y[1] (numeric) = 0.21871787581198998 " " absolute error = 2.0261570199409107000000000000000E-15 " " relative error = 9.263792510871929000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.15709781685003 " " Order of pole = 3.527584704847765 " " x[1] = -1.8890000000000122 " " y[1] (analytic) = 0.21889880330213002 " " y[1] (numeric) = 0.2188988033021321 " " absolute error = 2.0816681711721685000000000000000E-15 " " relative error = 9.5097284213975080000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1561832567852766 " " Order of pole = 3.5272863829102263 " " x[1] = -1.8880000000000123 " " y[1] (analytic) = 0.21907993438117582 " " y[1] (numeric) = 0.21907993438117793 " " absolute error = 2.1094237467877974000000000000000E-15 " " relative error = 9.6285575068578580000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.155269046491079 " " Order of pole = 3.5269916720931818 " " x[1] = -1.8870000000000124 " " y[1] (analytic) = 0.2192612693166415 " " y[1] (numeric) = 0.2192612693166436 " " absolute error = 2.1094237467877974000000000000000E-15 " " relative error = 9.6205944322137360000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.154355189063753 " " Order of pole = 3.526700615112759 " " x[1] = -1.8860000000000126 " " y[1] (analytic) = 0.21944280837639302 " " y[1] (numeric) = 0.21944280837639518 " " absolute error = 2.1649348980190553000000000000000E-15 " " relative error = 9.8655996705333460000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.153441687576869 " " Order of pole = 3.5264132543900537 " " x[1] = -1.8850000000000127 " " y[1] (analytic) = 0.21962455182864665 " " y[1] (numeric) = 0.2196245518286488 " " absolute error = 2.1371793224034263000000000000000E-15 " " relative error = 9.731058320250441000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.152528545082078 " " Order of pole = 3.5261296320626982 " " x[1] = -1.8840000000000128 " " y[1] (analytic) = 0.21980649994196877 " " y[1] (numeric) = 0.21980649994197093 " " absolute error = 2.1649348980190553000000000000000E-15 " " relative error = 9.8492760614022820000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.151615764607696 " " Order of pole = 3.525849789964404 " " x[1] = -1.8830000000000129 " " y[1] (analytic) = 0.21998865298527664 " " y[1] (numeric) = 0.21998865298527887 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.0093457181170716000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1507033491591643 " " Order of pole = 3.5255737696313325 " " x[1] = -1.882000000000013 " " y[1] (analytic) = 0.22017101122783853 " " y[1] (numeric) = 0.22017101122784072 " " absolute error = 2.192690473634684200000000000000E-15 " " relative error = 9.9590334867728460000000000000E-13 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1497913017180075 " " Order of pole = 3.5253016122869063 " " x[1] = -1.881000000000013 " " y[1] (analytic) = 0.22035357493927366 " " y[1] (numeric) = 0.2203535749392759 " " absolute error = 2.248201624865942000000000000000E-15 " " relative error = 1.020270093410336000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.148879625242314 " " Order of pole = 3.525033358848461 " " x[1] = -1.8800000000000132 " " y[1] (analytic) = 0.220536344389553 " " y[1] (numeric) = 0.22053634438955524 " " absolute error = 2.248201624865942000000000000000E-15 " " relative error = 1.0194245447792238000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1479683226655806 " " Order of pole = 3.524769049910475 " " x[1] = -1.8790000000000133 " " y[1] (analytic) = 0.22071931984899906 " " y[1] (numeric) = 0.22071931984900134 " " absolute error = 2.275957200481571000000000000000E-15 " " relative error = 1.0311545006747139000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.147057396897171 " " Order of pole = 3.5245087257508168 " " x[1] = -1.8780000000000134 " " y[1] (analytic) = 0.22090250158828653 " " y[1] (numeric) = 0.22090250158828884 " " absolute error = 2.3037127760971998000000000000E-15 " " relative error = 1.0428640506710113000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.146146850819687 " " Order of pole = 3.5242524262929074 " " x[1] = -1.8770000000000135 " " y[1] (analytic) = 0.2210858898784423 " " y[1] (numeric) = 0.2210858898784446 " " absolute error = 2.3037127760971998000000000000E-15 " " relative error = 1.0419990065235868000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1452366872933597 " " Order of pole = 3.5240001911682306 " " x[1] = -1.8760000000000137 " " y[1] (analytic) = 0.2212694849908458 " " y[1] (numeric) = 0.22126948499084811 " " absolute error = 2.3037127760971998000000000000E-15 " " relative error = 1.0411344231187177000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.144326909150688 " " Order of pole = 3.523752059639328 " " x[1] = -1.8750000000000138 " " y[1] (analytic) = 0.22145328719722931 " " y[1] (numeric) = 0.22145328719723165 " " absolute error = 2.3314683517128287000000000000000E-15 " " relative error = 1.0528036775703362000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.143417519198647 " " Order of pole = 3.523508070631113 " " x[1] = -1.8740000000000139 " " y[1] (analytic) = 0.22163729676967817 " " y[1] (numeric) = 0.22163729676968053 " " absolute error = 2.3592239273284576000000000000000E-15 " " relative error = 1.0644525816339134000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.142508520218603 " " Order of pole = 3.5232682627293563 " " x[1] = -1.873000000000014 " " y[1] (analytic) = 0.2218215139806311 " " y[1] (numeric) = 0.22182151398063343 " " absolute error = 2.3314683517128287000000000000000E-15 " " relative error = 1.0510560088938922000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1415999149642593 " " Order of pole = 3.5230326741508975 " " x[1] = -1.872000000000014 " " y[1] (analytic) = 0.22200593910288025 " " y[1] (numeric) = 0.22200593910288266 " " absolute error = 2.4147350785597155000000000000000E-15 " " relative error = 1.0876894052103254000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1406917061627855 " " Order of pole = 3.522801342759575 " " x[1] = -1.8710000000000142 " " y[1] (analytic) = 0.22219057240957193 " " y[1] (numeric) = 0.22219057240957432 " " absolute error = 2.3869795029440866000000000000000E-15 " " relative error = 1.0742937817109903000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1397838965146 " " Order of pole = 3.5225743060627117 " " x[1] = -1.8700000000000143 " " y[1] (analytic) = 0.22237541417420625 " " y[1] (numeric) = 0.22237541417420867 " " absolute error = 2.4147350785597155000000000000000E-15 " " relative error = 1.0858822174775314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.138876488691556 " " Order of pole = 3.5223516011848055 " " x[1] = -1.8690000000000144 " " y[1] (analytic) = 0.2225604646706379 " " y[1] (numeric) = 0.22256046467064033 " " absolute error = 2.4424906541753444000000000000000E-15 " " relative error = 1.0974503750205276000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1379694853374125 " " Order of pole = 3.522133264873947 " " x[1] = -1.8680000000000145 " " y[1] (analytic) = 0.22274572417307606 " " y[1] (numeric) = 0.22274572417307856 " " absolute error = 2.4980018054066022000000000000000E-15 " " relative error = 1.1214589257235867000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1370628890688272 " " Order of pole = 3.5219193335156334 " " x[1] = -1.8670000000000146 " " y[1] (analytic) = 0.22293119295608496 " " y[1] (numeric) = 0.22293119295608746 " " absolute error = 2.4980018054066022000000000000000E-15 " " relative error = 1.1205259220492673000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.136156702472521 " " Order of pole = 3.521709843091852 " " x[1] = -1.8660000000000148 " " y[1] (analytic) = 0.2231168712945838 " " y[1] (numeric) = 0.22311687129458632 " " absolute error = 2.525757381022231000000000000000E-15 " " relative error = 1.1320333448417016000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.135250928106886 " " Order of pole = 3.5215048292036037 " " x[1] = -1.8650000000000149 " " y[1] (analytic) = 0.2233027594638473 " " y[1] (numeric) = 0.22330275946384984 " " absolute error = 2.525757381022231000000000000000E-15 " " relative error = 1.1310909847628421000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.134345568500475 " " Order of pole = 3.521304327049066 " " x[1] = -1.864000000000015 " " y[1] (analytic) = 0.22348885773950578 " " y[1] (numeric) = 0.2234888577395083 " " absolute error = 2.525757381022231000000000000000E-15 " " relative error = 1.1301491298354588000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1334406261526806 " " Order of pole = 3.521108371432746 " " x[1] = -1.863000000000015 " " y[1] (analytic) = 0.22367516639754537 " " y[1] (numeric) = 0.22367516639754792 " " absolute error = 2.55351295663786000000000000000E-15 " " relative error = 1.141616656763503000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.132536103532432 " " Order of pole = 3.520916996746461 " " x[1] = -1.8620000000000152 " " y[1] (analytic) = 0.22386168571430848 " " y[1] (numeric) = 0.22386168571431106 " " absolute error = 2.581268532253489000000000000000E-15 " " relative error = 1.15306401093919000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1316320030786553 " " Order of pole = 3.5207302369755773 " " x[1] = -1.8610000000000153 " " y[1] (analytic) = 0.2240484159664938 " " y[1] (numeric) = 0.22404841596649647 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.1892676177183302000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1307283271992166 " " Order of pole = 3.5205481256833373 " " x[1] = -1.8600000000000154 " " y[1] (analytic) = 0.22423535743115688 " " y[1] (numeric) = 0.22423535743115952 " " absolute error = 2.6367796834847470000000000000000E-15 " " relative error = 1.1758982676468728000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1298250782711494 " " Order of pole = 3.5203706960137815 " " x[1] = -1.8590000000000155 " " y[1] (analytic) = 0.2244225103857098 " " y[1] (numeric) = 0.2244225103857125 " " absolute error = 2.7200464103316335000000000000000E-15 " " relative error = 1.2120203118915088000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.128922258640695 " " Order of pole = 3.520197980691762 " " x[1] = -1.8580000000000156 " " y[1] (analytic) = 0.2246098751079221 " " y[1] (numeric) = 0.22460987510792482 " " absolute error = 2.7200464103316335000000000000000E-15 " " relative error = 1.2110092706407885000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.128019870620933 " " Order of pole = 3.5200300119886556 " " x[1] = -1.8570000000000157 " " y[1] (analytic) = 0.22479745187592054 " " y[1] (numeric) = 0.22479745187592326 " " absolute error = 2.7200464103316335000000000000000E-15 " " relative error = 1.2099987733993504000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.127117916494753 " " Order of pole = 3.5198668217644276 " " x[1] = -1.8560000000000159 " " y[1] (analytic) = 0.22498524096818948 " " y[1] (numeric) = 0.22498524096819225 " " absolute error = 2.7755575615628914000000000000000E-15 " " relative error = 1.2336620613950965000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.126216398510871 " " Order of pole = 3.5197084414100352 " " x[1] = -1.855000000000016 " " y[1] (analytic) = 0.22517324266357128 " " y[1] (numeric) = 0.22517324266357405 " " absolute error = 2.7755575615628914000000000000000E-15 " " relative error = 1.2326320519840005000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.125315318887219 " " Order of pole = 3.519554901895585 " " x[1] = -1.854000000000016 " " y[1] (analytic) = 0.22536145724126624 " " y[1] (numeric) = 0.22536145724126902 " " absolute error = 2.7755575615628914000000000000000E-15 " " relative error = 1.2316025976844168000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.124414679807058 " " Order of pole = 3.5194062337141077 " " x[1] = -1.8530000000000162 " " y[1] (analytic) = 0.2255498849808331 " " y[1] (numeric) = 0.2255498849808359 " " absolute error = 2.8033131371785200000000000000000E-15 " " relative error = 1.242879435481309000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.123514483421177 " " Order of pole = 3.5192624669125543 " " x[1] = -1.8520000000000163 " " y[1] (analytic) = 0.22573852616218912 " " y[1] (numeric) = 0.22573852616219195 " " absolute error = 2.831068712794149000000000000000E-15 " " relative error = 1.2541362615081825000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1226147318469506 " " Order of pole = 3.5191236310778002 " " x[1] = -1.8510000000000164 " " y[1] (analytic) = 0.22592738106561047 " " y[1] (numeric) = 0.22592738106561333 " " absolute error = 2.858824288409778000000000000000E-15 " " relative error = 1.2653730924183826000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.121715427166423 " " Order of pole = 3.5189897553086524 " " x[1] = -1.8500000000000165 " " y[1] (analytic) = 0.2261164499717323 " " y[1] (numeric) = 0.22611644997173516 " " absolute error = 2.858824288409778000000000000000E-15 " " relative error = 1.264315041549241800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1208165714290783 " " Order of pole = 3.5188608682550218 " " x[1] = -1.8490000000000166 " " y[1] (analytic) = 0.22630573316154903 " " y[1] (numeric) = 0.22630573316155192 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.2755221989735510000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1199181666490565 " " Order of pole = 3.5187369980775074 " " x[1] = -1.8480000000000167 " " y[1] (analytic) = 0.22649523091641466 " " y[1] (numeric) = 0.22649523091641754 " " absolute error = 2.886579864025407000000000000000E-15 " " relative error = 1.274455030397821000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.119020214804562 " " Order of pole = 3.5186181724383054 " " x[1] = -1.8470000000000169 " " y[1] (analytic) = 0.22668494351804286 " " y[1] (numeric) = 0.22668494351804577 " " absolute error = 2.914335439641036000000000000000E-15 " " relative error = 1.2856325587451603000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.118122717840136 " " Order of pole = 3.5185044185333005 " " x[1] = -1.846000000000017 " " y[1] (analytic) = 0.22687487124850733 " " y[1] (numeric) = 0.22687487124851027 " " absolute error = 2.942091015256665000000000000000E-15 " " relative error = 1.296790164140323200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1172256776633587 " " Order of pole = 3.5183957630441363 " " x[1] = -1.845000000000017 " " y[1] (analytic) = 0.22706501439024204 " " y[1] (numeric) = 0.22706501439024498 " " absolute error = 2.942091015256665000000000000000E-15 " " relative error = 1.295704238346592000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1163290961468055 " " Order of pole = 3.518292232165795 " " x[1] = -1.8440000000000172 " " y[1] (analytic) = 0.22725537322604128 " " y[1] (numeric) = 0.22725537322604425 " " absolute error = 2.9698465908722940000000000000000E-15 " " relative error = 1.3068322868292814000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.115432975126254 " " Order of pole = 3.5181938515801754 " " x[1] = -1.8430000000000173 " " y[1] (analytic) = 0.22744594803906007 " " y[1] (numeric) = 0.22744594803906307 " " absolute error = 2.9976021664879227000000000000000E-15 " " relative error = 1.3179404567687150000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1145373164012873 " " Order of pole = 3.5181006464642337 " " x[1] = -1.8420000000000174 " " y[1] (analytic) = 0.22763673911281437 " " y[1] (numeric) = 0.22763673911281734 " " absolute error = 2.9698465908722940000000000000000E-15 " " relative error = 1.3046429159224907000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.113642121734673 " " Order of pole = 3.51801264148045 " " x[1] = -1.8410000000000175 " " y[1] (analytic) = 0.2278277467311811 " " y[1] (numeric) = 0.2278277467311841 " " absolute error = 2.9976021664879227000000000000000E-15 " " relative error = 1.315731823492447000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1127473928510128 " " Order of pole = 3.5179298607568548 " " x[1] = -1.8400000000000176 " " y[1] (analytic) = 0.22801897117839867 " " y[1] (numeric) = 0.2280189711784017 " " absolute error = 3.0253577421035516000000000000000E-15 " " relative error = 1.3268008913769533000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.111853131438737 " " Order of pole = 3.5178523279149765 " " x[1] = -1.8390000000000177 " " y[1] (analytic) = 0.228210412739067 " " y[1] (numeric) = 0.22821041273907003 " " absolute error = 3.0253577421035516000000000000000E-15 " " relative error = 1.3256878622636334000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1109593391473918 " " Order of pole = 3.5177800660303262 " " x[1] = -1.8380000000000178 " " y[1] (analytic) = 0.2284020716981477 " " y[1] (numeric) = 0.22840207169815077 " " absolute error = 3.0808688933348094000000000000000E-15 " " relative error = 1.3488795747029972000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.110066017589132 " " Order of pole = 3.517713097653189 " " x[1] = -1.837000000000018 " " y[1] (analytic) = 0.22859394834096455 " " y[1] (numeric) = 0.22859394834096763 " " absolute error = 3.0808688933348094000000000000000E-15 " " relative error = 1.3477473553846966000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1091731683368042 " " Order of pole = 3.5176514447804443 " " x[1] = -1.836000000000018 " " y[1] (analytic) = 0.2287860429532034 " " y[1] (numeric) = 0.22878604295320648 " " absolute error = 3.0808688933348094000000000000000E-15 " " relative error = 1.3466157522401748000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.108280792925842 " " Order of pole = 3.517595128882064 " " x[1] = -1.8350000000000182 " " y[1] (analytic) = 0.22897835582091253 " " y[1] (numeric) = 0.22897835582091566 " " absolute error = 3.1363800445660670000000000000000E-15 " " relative error = 1.3697277340130250000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1073888928509747 " " Order of pole = 3.5175441708532986 " " x[1] = -1.8340000000000183 " " y[1] (analytic) = 0.229170887230503 " " y[1] (numeric) = 0.22917088723050613 " " absolute error = 3.1363800445660670000000000000000E-15 " " relative error = 1.3685769961746738000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.106497469568767 " " Order of pole = 3.5174985910504013 " " x[1] = -1.8330000000000184 " " y[1] (analytic) = 0.22936363746874852 " " y[1] (numeric) = 0.2293636374687517 " " absolute error = 3.191891195797325000000000000000E-15 " " relative error = 1.391629131375382000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1056065244952884 " " Order of pole = 3.5174584092564523 " " x[1] = -1.8320000000000185 " " y[1] (analytic) = 0.22955660682278609 " " y[1] (numeric) = 0.22955660682278928 " " absolute error = 3.191891195797325000000000000000E-15 " " relative error = 1.3904593032521223000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1047160590072163 " " Order of pole = 3.51742364469656 " " x[1] = -1.8310000000000186 " " y[1] (analytic) = 0.2297497955801158 " " y[1] (numeric) = 0.22974979558011902 " " absolute error = 3.219646771412954000000000000000E-15 " " relative error = 1.4013708971028158000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1038260744403856 " " Order of pole = 3.517394316016329 " " x[1] = -1.8300000000000187 " " y[1] (analytic) = 0.22994320402860136 " " y[1] (numeric) = 0.22994320402860458 " " absolute error = 3.219646771412954000000000000000E-15 " " relative error = 1.4001921844198012000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.10293657209043 " " Order of pole = 3.517370441290307 " " x[1] = -1.8290000000000188 " " y[1] (analytic) = 0.23013683245647 " " y[1] (numeric) = 0.2301368324564733 " " absolute error = 3.3029134982598407000000000000000E-15 " " relative error = 1.4351955152092316000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1020475532121106 " " Order of pole = 3.5173520380116514 " " x[1] = -1.828000000000019 " " y[1] (analytic) = 0.2303306811523131 " " y[1] (numeric) = 0.2303306811523164 " " absolute error = 3.3029134982598407000000000000000E-15 " " relative error = 1.433987639742918000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.1011590190185374 " " Order of pole = 3.5173391230802515 " " x[1] = -1.827000000000019 " " y[1] (analytic) = 0.23052475040508588 " " y[1] (numeric) = 0.23052475040508924 " " absolute error = 3.3584246494910985000000000000000E-15 " " relative error = 1.4568607681342507000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.100270970681288 " " Order of pole = 3.5173317128036246 " " x[1] = -1.8260000000000192 " " y[1] (analytic) = 0.23071904050410813 " " y[1] (numeric) = 0.2307190405041115 " " absolute error = 3.3584246494910985000000000000000E-15 " " relative error = 1.4556339356097917000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0993834093310277 " " Order of pole = 3.517329822905115 " " x[1] = -1.8250000000000193 " " y[1] (analytic) = 0.23091355173906392 " " y[1] (numeric) = 0.2309135517390673 " " absolute error = 3.3861802251067274000000000000000E-15 " " relative error = 1.4664276737353063000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0984963360558027 " " Order of pole = 3.517333468498606 " " x[1] = -1.8240000000000194 " " y[1] (analytic) = 0.2311082844000021 " " y[1] (numeric) = 0.23110828440000553 " " absolute error = 3.4139358007223564000000000000000E-15 " " relative error = 1.4772018275266663000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.097609751900199 " " Order of pole = 3.51734266407572 " " x[1] = -1.8230000000000195 " " y[1] (analytic) = 0.23130323877733652 " " y[1] (numeric) = 0.23130323877733994 " " absolute error = 3.4139358007223564000000000000000E-15 " " relative error = 1.4759567651401426000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.096723657868494 " " Order of pole = 3.5173574235502443 " " x[1] = -1.8220000000000196 " " y[1] (analytic) = 0.23149841516184597 " " y[1] (numeric) = 0.2314984151618494 " " absolute error = 3.4416913763379850000000000000000E-15 " " relative error = 1.486701917130542000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.095838054919569 " " Order of pole = 3.517377760184303 " " x[1] = -1.8210000000000197 " " y[1] (analytic) = 0.23169381384467466 " " y[1] (numeric) = 0.2316938138446781 " " absolute error = 3.4416913763379850000000000000000E-15 " " relative error = 1.485448108962142000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.094952943968907 " " Order of pole = 3.51740368661628 " " x[1] = -1.8200000000000198 " " y[1] (analytic) = 0.23188943511733218 " " y[1] (numeric) = 0.23188943511733567 " " absolute error = 3.497202527569243000000000000000E-15 " " relative error = 1.5081336179889857000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0940683258926747 " " Order of pole = 3.5174352149185495 " " x[1] = -1.81900000000002 " " y[1] (analytic) = 0.23208527927169392 " " y[1] (numeric) = 0.23208527927169745 " " absolute error = 3.524958103184872000000000000000E-15 " " relative error = 1.5188202001637208000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.093184201574286 " " Order of pole = 3.517472357264854 " " x[1] = -1.81800000000002 " " y[1] (analytic) = 0.23228134660000108 " " y[1] (numeric) = 0.23228134660000463 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.5294872923732586000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0923005716293055 " " Order of pole = 3.5175151219820577 " " x[1] = -1.8170000000000202 " " y[1] (analytic) = 0.23247763739486096 " " y[1] (numeric) = 0.2324776373948645 " " absolute error = 3.524958103184872000000000000000E-15 " " relative error = 1.5162568506310847000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0914174369699614 " " Order of pole = 3.517563521649514 " " x[1] = -1.8160000000000203 " " y[1] (analytic) = 0.23267415194924695 " " y[1] (numeric) = 0.23267415194925056 " " absolute error = 3.608224830031759000000000000000E-15 " " relative error = 1.5507630735101240000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0905347982339095 " " Order of pole = 3.5176175649016166 " " x[1] = -1.8150000000000204 " " y[1] (analytic) = 0.2328708905564992 " " y[1] (numeric) = 0.23287089055650279 " " absolute error = 3.58046925441613000000000000000E-15 " " relative error = 1.537534058404537200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0896526560736124 " " Order of pole = 3.5176772605792124 " " x[1] = -1.8140000000000205 " " y[1] (analytic) = 0.23306785351032414 " " y[1] (numeric) = 0.23306785351032774 " " absolute error = 3.608224830031759000000000000000E-15 " " relative error = 1.5481435022835213000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0887710110939173 " " Order of pole = 3.5177426168330577 " " x[1] = -1.8130000000000206 " " y[1] (analytic) = 0.23326504110479515 " " y[1] (numeric) = 0.2332650411047988 " " absolute error = 3.635980405647387700000000000000E-15 " " relative error = 1.5587335283618048000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0878898638557697 " " Order of pole = 3.5178136411762253 " " x[1] = -1.8120000000000207 " " y[1] (analytic) = 0.2334624536343526 " " y[1] (numeric) = 0.23346245363435628 " " absolute error = 3.6637359812630166000000000000000E-15 " " relative error = 1.569304153292733000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.087009214874612 " " Order of pole = 3.517890340460262 " " x[1] = -1.8110000000000208 " " y[1] (analytic) = 0.23366009139380406 " " y[1] (numeric) = 0.23366009139380772 " " absolute error = 3.6637359812630166000000000000000E-15 " " relative error = 1.5679767817467213000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0861290646178974 " " Order of pole = 3.5179727208386815 " " x[1] = -1.810000000000021 " " y[1] (analytic) = 0.23385795467832424 " " y[1] (numeric) = 0.23385795467832796 " " absolute error = 3.7192471324942744000000000000000E-15 " " relative error = 1.5903872663259050000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0852494135084467 " " Order of pole = 3.51806078781415 " " x[1] = -1.809000000000021 " " y[1] (analytic) = 0.23405604378345565 " " y[1] (numeric) = 0.23405604378345934 " " absolute error = 3.6914915568786455000000000000000E-15 " " relative error = 1.577182753842471000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.084370261922312 " " Order of pole = 3.518154546207004 " " x[1] = -1.8080000000000211 " " y[1] (analytic) = 0.23425435900510813 " " y[1] (numeric) = 0.23425435900511193 " " absolute error = 3.802513859341161000000000000000E-15 " " relative error = 1.623241452364284000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0834916101886862 " " Order of pole = 3.5182540001530427 " " x[1] = -1.8070000000000213 " " y[1] (analytic) = 0.23445290063955984 " " y[1] (numeric) = 0.23445290063956362 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 1.6100283994902330000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0826134585893383 " " Order of pole = 3.5183591530944724 " " x[1] = -1.8060000000000214 " " y[1] (analytic) = 0.23465166898345655 " " y[1] (numeric) = 0.23465166898346035 " " absolute error = 3.802513859341161000000000000000E-15 " " relative error = 1.6204929953467523000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0817358073590237 " " Order of pole = 3.518470007784938 " " x[1] = -1.8050000000000215 " " y[1] (analytic) = 0.23485066433381244 " " y[1] (numeric) = 0.23485066433381627 " " absolute error = 3.83026943495679000000000000000E-15 " " relative error = 1.6309383010782183000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0808586566854332 " " Order of pole = 3.5185865662878086 " " x[1] = -1.8040000000000216 " " y[1] (analytic) = 0.23504988698801008 " " y[1] (numeric) = 0.23504988698801385 " " absolute error = 3.774758283725532000000000000000E-15 " " relative error = 1.6059392038414735000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0799820067073456 " " Order of pole = 3.5187088299487463 " " x[1] = -1.8030000000000217 " " y[1] (analytic) = 0.23524933724380032 " " y[1] (numeric) = 0.23524933724380415 " " absolute error = 3.83026943495679000000000000000E-15 " " relative error = 1.6281743786539538000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0791058575163106 " " Order of pole = 3.5188367994189313 " " x[1] = -1.8020000000000218 " " y[1] (analytic) = 0.23544901539930307 " " y[1] (numeric) = 0.2354490153993069 " " absolute error = 3.83026943495679000000000000000E-15 " " relative error = 1.6267935665226518000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0782302091556555 " " Order of pole = 3.518970474639861 " " x[1] = -1.801000000000022 " " y[1] (analytic) = 0.2356489217530068 " " y[1] (numeric) = 0.23564892175301067 " " absolute error = 3.858025010572419000000000000000E-15 " " relative error = 1.6371918792890433000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.077355061619804 " " Order of pole = 3.519109854832628 " " x[1] = -1.800000000000022 " " y[1] (analytic) = 0.23584905660376917 " " y[1] (numeric) = 0.23584905660377306 " " absolute error = 3.885780586188048000000000000000E-15 " " relative error = 1.6475709685437630000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.07648041485452 " " Order of pole = 3.519254938500392 " " x[1] = -1.7990000000000221 " " y[1] (analytic) = 0.23604942025081696 " " y[1] (numeric) = 0.23604942025082087 " " absolute error = 3.913536161803677000000000000000E-15 " " relative error = 1.6579308509401570000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.075606268756907 " " Order of pole = 3.519405723427507 " " x[1] = -1.7980000000000222 " " y[1] (analytic) = 0.23625001299374626 " " y[1] (numeric) = 0.2362500129937502 " " absolute error = 3.941291737419305700000000000000E-15 " " relative error = 1.6682715431315703000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.074732623174604 " " Order of pole = 3.5195622066669365 " " x[1] = -1.7970000000000224 " " y[1] (analytic) = 0.23645083513252263 " " y[1] (numeric) = 0.23645083513252663 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.6903314747907283000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.073859477905954 " " Order of pole = 3.519724384541707 " " x[1] = -1.7960000000000225 " " y[1] (analytic) = 0.2366518869674814 " " y[1] (numeric) = 0.2366518869674854 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.6888954235128362000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.072986832699319 " " Order of pole = 3.5198922526341256 " " x[1] = -1.7950000000000226 " " y[1] (analytic) = 0.23685316879932752 " " y[1] (numeric) = 0.23685316879933155 " " absolute error = 4.0245584642661925000000000000000E-15 " " relative error = 1.6991786450093796000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0721146872538707 " " Order of pole = 3.5200658057960688 " " x[1] = -1.7940000000000227 " " y[1] (analytic) = 0.23705468092913598 " " y[1] (numeric) = 0.23705468092914003 " " absolute error = 4.052314039881821400000000000000E-15 " " relative error = 1.7094427429143240000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0712430412183447 " " Order of pole = 3.520245038130163 " " x[1] = -1.7930000000000228 " " y[1] (analytic) = 0.23725642365835184 " " y[1] (numeric) = 0.23725642365835592 " " absolute error = 4.08006961549745030000000000000E-15 " " relative error = 1.7196877338810146000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0703718941907923 " " Order of pole = 3.520429942985217 " " x[1] = -1.792000000000023 " " y[1] (analytic) = 0.2374583972887904 " " y[1] (numeric) = 0.23745839728879448 " " absolute error = 4.08006961549745030000000000000E-15 " " relative error = 1.7182250289238588000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0695012457196733 " " Order of pole = 3.520620512970865 " " x[1] = -1.791000000000023 " " y[1] (analytic) = 0.23766060212263723 " " y[1] (numeric) = 0.23766060212264137 " " absolute error = 4.135580766728708000000000000000E-15 " " relative error = 1.740120461613016000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0686310953023086 " " Order of pole = 3.5208167399344 " " x[1] = -1.7900000000000231 " " y[1] (analytic) = 0.23786303846244863 " " y[1] (numeric) = 0.23786303846245277 " " absolute error = 4.135580766728708000000000000000E-15 " " relative error = 1.7386395101404503000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.067761442385069 " " Order of pole = 3.521018614962376 " " x[1] = -1.7890000000000232 " " y[1] (analytic) = 0.23806570661115134 " " y[1] (numeric) = 0.23806570661115553 " " absolute error = 4.191091917959966000000000000000E-15 " " relative error = 1.7604769614321467000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.066892286363443 " " Order of pole = 3.5212261283806576 " " x[1] = -1.7880000000000233 " " y[1] (analytic) = 0.2382686068720431 " " y[1] (numeric) = 0.2382686068720473 " " absolute error = 4.191091917959966000000000000000E-15 " " relative error = 1.7589778078530920000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.066023626581889 " " Order of pole = 3.521439269751248 " " x[1] = -1.7870000000000235 " " y[1] (analytic) = 0.2384717395487924 " " y[1] (numeric) = 0.23847173954879658 " " absolute error = 4.191091917959966000000000000000E-15 " " relative error = 1.7574794924924214000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0651554623328163 " " Order of pole = 3.5216580278565317 " " x[1] = -1.7860000000000236 " " y[1] (analytic) = 0.2386751049454388 " " y[1] (numeric) = 0.23867510494544306 " " absolute error = 4.246603069191224000000000000000E-15 " " relative error = 1.7792400552885473000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0642877928579395 " " Order of pole = 3.5218823907178667 " " x[1] = -1.7850000000000237 " " y[1] (analytic) = 0.2388787033663933 " " y[1] (numeric) = 0.23887870336639752 " " absolute error = 4.218847493575595000000000000000E-15 " " relative error = 1.766104484879385000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0634206173464946 " " Order of pole = 3.522112345568754 " " x[1] = -1.7840000000000238 " " y[1] (analytic) = 0.2390825351164379 " " y[1] (numeric) = 0.23908253511644215 " " absolute error = 4.246603069191224000000000000000E-15 " " relative error = 1.7762079806971448000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0625539349360196 " " Order of pole = 3.522347878865123 " " x[1] = -1.783000000000024 " " y[1] (analytic) = 0.23928660050072628 " " y[1] (numeric) = 0.23928660050073053 " " absolute error = 4.246603069191224000000000000000E-15 " " relative error = 1.7746932173823643000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0616877447120125 " " Order of pole = 3.522588976279323 " " x[1] = -1.782000000000024 " " y[1] (analytic) = 0.23949089982478355 " " y[1] (numeric) = 0.23949089982478783 " " absolute error = 4.274358644806852700000000000000E-15 " " relative error = 1.7847687105998855000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0608220457080195 " " Order of pole = 3.5228356227003665 " " x[1] = -1.7810000000000241 " " y[1] (analytic) = 0.23969543339450666 " " y[1] (numeric) = 0.23969543339451096 " " absolute error = 4.3021142204224816000000000000000E-15 " " relative error = 1.7948252745148366000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.059956836904748 " " Order of pole = 3.5230878022200933 " " x[1] = -1.7800000000000242 " " y[1] (analytic) = 0.2399002015161643 " " y[1] (numeric) = 0.23990020151616864 " " absolute error = 4.3298697960381105000000000000000E-15 " " relative error = 1.8048629257805635000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0590921172303585 " " Order of pole = 3.5233454981364076 " " x[1] = -1.7790000000000243 " " y[1] (analytic) = 0.24010520449639716 " " y[1] (numeric) = 0.24010520449640152 " " absolute error = 4.3576253716537394000000000000000E-15 " " relative error = 1.8148816810504106000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0582278855606546 " " Order of pole = 3.523608692954838 " " x[1] = -1.7780000000000244 " " y[1] (analytic) = 0.2403104426422179 " " y[1] (numeric) = 0.2403104426422223 " " absolute error = 4.385380947269368300000000000000E-15 " " relative error = 1.8248815569777246000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.057364140718715 " " Order of pole = 3.523877368382262 " " x[1] = -1.7770000000000246 " " y[1] (analytic) = 0.24051591626101151 " " y[1] (numeric) = 0.24051591626101587 " " absolute error = 4.3576253716537394000000000000000E-15 " " relative error = 1.8117825378860908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0565008814740184 " " Order of pole = 3.524151505313238 " " x[1] = -1.7760000000000247 " " y[1] (analytic) = 0.24072162566053507 " " y[1] (numeric) = 0.24072162566053948 " " absolute error = 4.413136522884997000000000000000E-15 " " relative error = 1.833294582809269200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.055638106543849 " " Order of pole = 3.524431083849187 " " x[1] = -1.7750000000000248 " " y[1] (analytic) = 0.24092757114891822 " " y[1] (numeric) = 0.2409275711489227 " " absolute error = 4.468647674116255000000000000000E-15 " " relative error = 1.8547680752379178000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0547758145917623 " " Order of pole = 3.5247160832752478 " " x[1] = -1.774000000000025 " " y[1] (analytic) = 0.24113375303466317 " " y[1] (numeric) = 0.2411337530346676 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.8416717040281974000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.053914004227877 " " Order of pole = 3.5250064820633966 " " x[1] = -1.773000000000025 " " y[1] (analytic) = 0.24134017162664448 " " y[1] (numeric) = 0.24134017162664897 " " absolute error = 4.496403249731884000000000000000E-15 " " relative error = 1.8630977260958703000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0530526740097237 " " Order of pole = 3.52530225788362 " " x[1] = -1.772000000000025 " " y[1] (analytic) = 0.24154682723410972 " " y[1] (numeric) = 0.24154682723411422 " " absolute error = 4.496403249731884000000000000000E-15 " " relative error = 1.8615037511438404000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0521918224403706 " " Order of pole = 3.525603387575888 " " x[1] = -1.7710000000000252 " " y[1] (analytic) = 0.24175372016667915 " " y[1] (numeric) = 0.24175372016668364 " " absolute error = 4.496403249731884000000000000000E-15 " " relative error = 1.8599106754724606000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0513314479700853 " " Order of pole = 3.525909847172965 " " x[1] = -1.7700000000000253 " " y[1] (analytic) = 0.24196085073434592 " " y[1] (numeric) = 0.24196085073435047 " " absolute error = 4.551914400963142000000000000000E-15 " " relative error = 1.8812607027740977000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0504715489951435 " " Order of pole = 3.5262216118822636 " " x[1] = -1.7690000000000254 " " y[1] (analytic) = 0.24216821924747636 " " y[1] (numeric) = 0.24216821924748091 " " absolute error = 4.551914400963142000000000000000E-15 " " relative error = 1.879649780267597000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0496121238579774 " " Order of pole = 3.5265386560868457 " " x[1] = -1.7680000000000256 " " y[1] (analytic) = 0.24237582601680976 " " y[1] (numeric) = 0.24237582601681434 " " absolute error = 4.579669976578771000000000000000E-15 " " relative error = 1.8894912301448544000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0487531708473186 " " Order of pole = 3.526860953346496 " " x[1] = -1.7670000000000257 " " y[1] (analytic) = 0.2425836713534587 " " y[1] (numeric) = 0.24258367135346334 " " absolute error = 4.6351811278100286000000000000000E-15 " " relative error = 1.9107556176179297000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0478946881980673 " " Order of pole = 3.5271884763946986 " " x[1] = -1.7660000000000258 " " y[1] (analytic) = 0.24279175556890914 " " y[1] (numeric) = 0.24279175556891378 " " absolute error = 4.6351811278100286000000000000000E-15 " " relative error = 1.9091180081254740000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0470366740911543 " " Order of pole = 3.5275211971356306 " " x[1] = -1.7650000000000259 " " y[1] (analytic) = 0.2430000789750203 " " y[1] (numeric) = 0.24300007897502493 " " absolute error = 4.6351811278100286000000000000000E-15 " " relative error = 1.9074813256692447000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.046179126653407 " " Order of pole = 3.5278590866412003 " " x[1] = -1.764000000000026 " " y[1] (analytic) = 0.2432086418840249 " " y[1] (numeric) = 0.2432086418840296 " " absolute error = 4.690692279041286400000000000000E-15 " " relative error = 1.928670068096536800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0453220439575985 " " Order of pole = 3.5282021151506235 " " x[1] = -1.763000000000026 " " y[1] (analytic) = 0.24341744460852938 " " y[1] (numeric) = 0.2434174446085341 " " absolute error = 4.718447854656915300000000000000E-15 " " relative error = 1.938418120461847800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0444654240228375 " " Order of pole = 3.5285502520750747 " " x[1] = -1.7620000000000262 " " y[1] (analytic) = 0.2436264874615137 " " y[1] (numeric) = 0.24362648746151844 " " absolute error = 4.746203430272544000000000000000E-15 " " relative error = 1.9481475432848058000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0436092648135507 " " Order of pole = 3.528903465981891 " " x[1] = -1.7610000000000263 " " y[1] (analytic) = 0.24383577075633156 " " y[1] (numeric) = 0.24383577075633633 " " absolute error = 4.773959005888173000000000000000E-15 " " relative error = 1.9578583532187555000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.042753564240542 " " Order of pole = 3.5292617246088476 " " x[1] = -1.7600000000000264 " " y[1] (analytic) = 0.24404529480671058 " " y[1] (numeric) = 0.24404529480671536 " " absolute error = 4.773959005888173000000000000000E-15 " " relative error = 1.9561774422527822000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0418983201598655 " " Order of pole = 3.5296249948468166 " " x[1] = -1.7590000000000265 " " y[1] (analytic) = 0.24425505992675212 " " y[1] (numeric) = 0.2442550599267569 " " absolute error = 4.773959005888173000000000000000E-15 " " relative error = 1.9544974860786105000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0410435303743832 " " Order of pole = 3.5299932427612433 " " x[1] = -1.7580000000000267 " " y[1] (analytic) = 0.24446506643093155 " " y[1] (numeric) = 0.24446506643093635 " " absolute error = 4.801714581503802000000000000000E-15 " " relative error = 1.964172080537496800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0401891926319604 " " Order of pole = 3.5303664335650033 " " x[1] = -1.7570000000000268 " " y[1] (analytic) = 0.2446753146340983 " " y[1] (numeric) = 0.24467531463410316 " " absolute error = 4.85722573273506000000000000000E-15 " " relative error = 1.9851719573749554000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.039335304626301 " " Order of pole = 3.530744531629505 " " x[1] = -1.7560000000000269 " " y[1] (analytic) = 0.24488580485147599 " " y[1] (numeric) = 0.24488580485148084 " " absolute error = 4.85722573273506000000000000000E-15 " " relative error = 1.9834656139750453000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.038481863997923 " " Order of pole = 3.5311275004976466 " " x[1] = -1.755000000000027 " " y[1] (analytic) = 0.2450965373986622 " " y[1] (numeric) = 0.24509653739866707 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 1.9930845862603985000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.037628868332521 " " Order of pole = 3.531515302859251 " " x[1] = -1.754000000000027 " " y[1] (analytic) = 0.24530751259162892 " " y[1] (numeric) = 0.2453075125916338 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 1.991370446319298000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0367763151613567 " " Order of pole = 3.5319079005555842 " " x[1] = -1.7530000000000272 " " y[1] (analytic) = 0.2455187307467223 " " y[1] (numeric) = 0.2455187307467272 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 1.9896572833744597000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.035924201962787 " " Order of pole = 3.5323052546004696 " " x[1] = -1.7520000000000273 " " y[1] (analytic) = 0.2457301921806629 " " y[1] (numeric) = 0.24573019218066786 " " absolute error = 4.9682480351975755000000000000000E-15 " " relative error = 2.0218305252229155000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.035072526160255 " " Order of pole = 3.5327073251502306 " " x[1] = -1.7510000000000274 " " y[1] (analytic) = 0.2459418972105458 " " y[1] (numeric) = 0.24594189721055074 " " absolute error = 4.9404924595819466000000000000000E-15 " " relative error = 2.008804728115313000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.03422128512387 " " Order of pole = 3.5331140715255636 " " x[1] = -1.7500000000000275 " " y[1] (analytic) = 0.24615384615384034 " " y[1] (numeric) = 0.24615384615384528 " " absolute error = 4.9404924595819466000000000000000E-15 " " relative error = 2.007075061705213000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0333704761699067 " " Order of pole = 3.5335254522032393 " " x[1] = -1.7490000000000276 " " y[1] (analytic) = 0.2463660393283905 " " y[1] (numeric) = 0.24636603932839543 " " absolute error = 4.9404924595819466000000000000000E-15 " " relative error = 2.0053463833936058000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0325200965603365 " " Order of pole = 3.533941424808347 " " x[1] = -1.7480000000000278 " " y[1] (analytic) = 0.24657847705241473 " " y[1] (numeric) = 0.24657847705241973 " " absolute error = 4.9960036108132044000000000000000E-15 " " relative error = 2.026131262766788000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.031670143504245 " " Order of pole = 3.5343619461338385 " " x[1] = -1.7470000000000279 " " y[1] (analytic) = 0.24679115964450618 " " y[1] (numeric) = 0.24679115964451126 " " absolute error = 5.079270337660091000000000000000E-15 " " relative error = 2.0581249121632225000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.030820614156607 " " Order of pole = 3.5347869721218466 " " x[1] = -1.746000000000028 " " y[1] (analytic) = 0.24700408742363278 " " y[1] (numeric) = 0.2470040874236378 " " absolute error = 5.023759186428833000000000000000E-15 " " relative error = 2.03387694464046030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.029971505619461 " " Order of pole = 3.5352164578796312 " " x[1] = -1.745000000000028 " " y[1] (analytic) = 0.2472172607091367 " " y[1] (numeric) = 0.24721726070914182 " " absolute error = 5.134781488891349000000000000000E-15 " " relative error = 2.0770319492103237000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.029122814940663 " " Order of pole = 3.535650357660689 " " x[1] = -1.7440000000000282 " " y[1] (analytic) = 0.2474306798207354 " " y[1] (numeric) = 0.24743067982074052 " " absolute error = 5.10702591327572000000000000000E-15 " " relative error = 2.0640229081437203000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.028274539116039 " " Order of pole = 3.536088624894859 " " x[1] = -1.7430000000000283 " " y[1] (analytic) = 0.24764434507852073 " " y[1] (numeric) = 0.24764434507852587 " " absolute error = 5.134781488891349000000000000000E-15 " " relative error = 2.073449925643673000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0274266750872445 " " Order of pole = 3.5365312121564543 " " x[1] = -1.7420000000000284 " " y[1] (analytic) = 0.24785825680295948 " " y[1] (numeric) = 0.24785825680296464 " " absolute error = 5.162537064506978000000000000000E-15 " " relative error = 2.0828586189126044000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0265792197438834 " " Order of pole = 3.5369780711940066 " " x[1] = -1.7410000000000285 " " y[1] (analytic) = 0.24807241531489327 " " y[1] (numeric) = 0.24807241531489846 " " absolute error = 5.190292640122607000000000000000E-15 " " relative error = 2.0922490046038594000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0257321699222945 " " Order of pole = 3.5374291529117166 " " x[1] = -1.7400000000000286 " " y[1] (analytic) = 0.24828682093553864 " " y[1] (numeric) = 0.2482868209355438 " " absolute error = 5.162537064506978000000000000000E-15 " " relative error = 2.0792634281008818000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0248855224064664 " " Order of pole = 3.537884407381874 " " x[1] = -1.7390000000000287 " " y[1] (analytic) = 0.24850147398648675 " " y[1] (numeric) = 0.248501473986492 " " absolute error = 5.245803791353865000000000000000E-15 " " relative error = 2.110974919866723000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0240392739279054 " " Order of pole = 3.5383437838419667 " " x[1] = -1.7380000000000289 " " y[1] (analytic) = 0.2487163747897041 " " y[1] (numeric) = 0.24871637478970934 " " absolute error = 5.245803791353865000000000000000E-15 " " relative error = 2.1091509538884692000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0231934211660767 " " Order of pole = 3.5388072307002325 " " x[1] = -1.737000000000029 " " y[1] (analytic) = 0.2489315236675318 " " y[1] (numeric) = 0.24893152366753704 " " absolute error = 5.245803791353865000000000000000E-15 " " relative error = 2.107328037070974000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0223479607479584 " " Order of pole = 3.5392746955283165 " " x[1] = -1.736000000000029 " " y[1] (analytic) = 0.24914692094268598 " " y[1] (numeric) = 0.24914692094269125 " " absolute error = 5.2735593669694940000000000000000E-15 " " relative error = 2.116646413696851900000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0215028892493603 " " Order of pole = 3.53974612507945 " " x[1] = -1.7350000000000292 " " y[1] (analytic) = 0.24936256693825776 " " y[1] (numeric) = 0.24936256693826309 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 2.1370771818852147000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0206582031945337 " " Order of pole = 3.5402214652820128 " " x[1] = -1.7340000000000293 " " y[1] (analytic) = 0.2495784619777133 " " y[1] (numeric) = 0.24957846197771866 " " absolute error = 5.35682609381638000000000000000E-15 " " relative error = 2.146349509235589000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0198138990555217 " " Order of pole = 3.540700661229298 " " x[1] = -1.7330000000000294 " " y[1] (analytic) = 0.24979460638489367 " " y[1] (numeric) = 0.24979460638489903 " " absolute error = 5.35682609381638000000000000000E-15 " " relative error = 2.144492297628863000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0189699732541393 " " Order of pole = 3.541183657207288 " " x[1] = -1.7320000000000295 " " y[1] (analytic) = 0.2500110004840149 " " y[1] (numeric) = 0.2500110004840203 " " absolute error = 5.384581669432009000000000000000E-15 " " relative error = 2.1537378991354766000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0181264221609463 " " Order of pole = 3.541670396679031 " " x[1] = -1.7310000000000296 " " y[1] (analytic) = 0.2502276445996681 " " y[1] (numeric) = 0.25022764459967356 " " absolute error = 5.440092820663267000000000000000E-15 " " relative error = 2.1740574784879232000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.017283242096341 " " Order of pole = 3.542160822299664 " " x[1] = -1.7300000000000297 " " y[1] (analytic) = 0.2504445390568194 " " y[1] (numeric) = 0.25044453905682484 " " absolute error = 5.440092820663267000000000000000E-15 " " relative error = 2.172174662362692000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0164404293299154 " " Order of pole = 3.5426548759062975 " " x[1] = -1.7290000000000298 " " y[1] (analytic) = 0.2506616841808098 " " y[1] (numeric) = 0.2506616841808153 " " absolute error = 5.495603971894525000000000000000E-15 " " relative error = 2.1924387805239431000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.015597980081813 " " Order of pole = 3.543152498536937 " " x[1] = -1.72800000000003 " " y[1] (analytic) = 0.25087908029735545 " " y[1] (numeric) = 0.25087908029736095 " " absolute error = 5.495603971894525000000000000000E-15 " " relative error = 2.190538950230859200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.014755890522115 " " Order of pole = 3.5436536304207955 " " x[1] = -1.72700000000003 " " y[1] (analytic) = 0.2510967277325473 " " y[1] (numeric) = 0.25109672773255287 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 2.2107476960187575000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0139141567714463 " " Order of pole = 3.5441582109864562 " " x[1] = -1.7260000000000302 " " y[1] (analytic) = 0.2513146268128515 " " y[1] (numeric) = 0.25131462681285704 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 2.2088308959667424000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.013072774901557 " " Order of pole = 3.5446661788694414 " " x[1] = -1.7250000000000303 " " y[1] (analytic) = 0.25153277786510897 " " y[1] (numeric) = 0.2515327778651145 " " absolute error = 5.551115123125783000000000000000E-15 " " relative error = 2.2069152061377517000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.012231740936076 " " Order of pole = 3.545177471922454 " " x[1] = -1.7240000000000304 " " y[1] (analytic) = 0.2517511812165356 " " y[1] (numeric) = 0.2517511812165412 " " absolute error = 5.6066262743570400000000000000000E-15 " " relative error = 2.227050632797104000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0113910508492676 " " Order of pole = 3.545692027196875 " " x[1] = -1.7230000000000305 " " y[1] (analytic) = 0.25196983719472243 " " y[1] (numeric) = 0.25196983719472804 " " absolute error = 5.6066262743570400000000000000000E-15 " " relative error = 2.225118028720333200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0105507005679493 " " Order of pole = 3.5462097809696367 " " x[1] = -1.7220000000000306 " " y[1] (analytic) = 0.2521887461276351 " " y[1] (numeric) = 0.25218874612764075 " " absolute error = 5.662137425588298000000000000000E-15 " " relative error = 2.245198293948707000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0097106859714358 " " Order of pole = 3.546730668741919 " " x[1] = -1.7210000000000307 " " y[1] (analytic) = 0.2524079083436143 " " y[1] (numeric) = 0.25240790834362 " " absolute error = 5.662137425588298000000000000000E-15 " " relative error = 2.2432488200330766000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0088710028915377 " " Order of pole = 3.5472546252385015 " " x[1] = -1.7200000000000308 " " y[1] (analytic) = 0.25262732417137557 " " y[1] (numeric) = 0.2526273241713813 " " absolute error = 5.717648576819556000000000000000E-15 " " relative error = 2.263274012648314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0080316471134974 " " Order of pole = 3.547781584420701 " " x[1] = -1.719000000000031 " " y[1] (analytic) = 0.2528469939400093 " " y[1] (numeric) = 0.252846993940015 " " absolute error = 5.662137425588298000000000000000E-15 " " relative error = 2.2393532694842724000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0071926143759096 " " Order of pole = 3.548311479484653 " " x[1] = -1.718000000000031 " " y[1] (analytic) = 0.2530669179789805 " " y[1] (numeric) = 0.2530669179789862 " " absolute error = 5.717648576819556000000000000000E-15 " " relative error = 2.259342557486893000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0063539003718502 " " Order of pole = 3.5488442428770917 " " x[1] = -1.7170000000000312 " " y[1] (analytic) = 0.25328709661812915 " " y[1] (numeric) = 0.25328709661813487 " " absolute error = 5.717648576819556000000000000000E-15 " " relative error = 2.2573785452007555000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0055155007483383 " " Order of pole = 3.54937980628711 " " x[1] = -1.7160000000000313 " " y[1] (analytic) = 0.2535075301876698 " " y[1] (numeric) = 0.2535075301876755 " " absolute error = 5.717648576819556000000000000000E-15 " " relative error = 2.2554156764443337000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.004677411107793 " " Order of pole = 3.5499181006666234 " " x[1] = -1.7150000000000314 " " y[1] (analytic) = 0.2537282190181917 " " y[1] (numeric) = 0.2537282190181975 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.2753321449187694000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0038396270077152 " " Order of pole = 3.550459056225435 " " x[1] = -1.7140000000000315 " " y[1] (analytic) = 0.2539491634406588 " " y[1] (numeric) = 0.2539491634406646 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.273352528448020800000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0030021439617163 " " Order of pole = 3.5510026024454966 " " x[1] = -1.7130000000000316 " " y[1] (analytic) = 0.2541703637864096 " " y[1] (numeric) = 0.2541703637864154 " " absolute error = 5.773159728050814000000000000000E-15 " " relative error = 2.2713740666092175000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.0021649574398115 " " Order of pole = 3.551548668084905 " " x[1] = -1.7120000000000317 " " y[1] (analytic) = 0.25439182038715696 " " y[1] (numeric) = 0.2543918203871628 " " absolute error = 5.828670879282072000000000000000E-15 " " relative error = 2.2912178820889217000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.001328062868731 " " Order of pole = 3.552097181181857 " " x[1] = -1.7110000000000318 " " y[1] (analytic) = 0.25461353357498845 " " y[1] (numeric) = 0.25461353357499433 " " absolute error = 5.88418203051333000000000000000E-15 " " relative error = 2.3110248492664387000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.000491455632527 " " Order of pole = 3.5526480690632134 " " x[1] = -1.710000000000032 " " y[1] (analytic) = 0.2548355036823659 " " y[1] (numeric) = 0.25483550368237184 " " absolute error = 5.9396931817445870000000000000000E-15 " " relative error = 2.3307950014484588000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9996551310735773 " " Order of pole = 3.5532012583584525 " " x[1] = -1.709000000000032 " " y[1] (analytic) = 0.25505773104212565 " " y[1] (numeric) = 0.25505773104213153 " " absolute error = 5.88418203051333000000000000000E-15 " " relative error = 2.3070000687575673000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9988190844926308 " " Order of pole = 3.5537566750002334 " " x[1] = -1.7080000000000322 " " y[1] (analytic) = 0.25528021598747797 " " y[1] (numeric) = 0.25528021598748396 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 2.348479810621095200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.997983311149526 " " Order of pole = 3.554314244234334 " " x[1] = -1.7070000000000323 " " y[1] (analytic) = 0.2555029588520078 " " y[1] (numeric) = 0.2555029588520138 " " absolute error = 5.995204332975845000000000000000E-15 " " relative error = 2.346432448341384000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.997147806263431 " " Order of pole = 3.554873890622993 " " x[1] = -1.7060000000000324 " " y[1] (analytic) = 0.2557259599696739 " " y[1] (numeric) = 0.25572595996967995 " " absolute error = 6.050715484207103000000000000000E-15 " " relative error = 2.3660935655201557000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9963125650142557 " " Order of pole = 3.555435538064973 " " x[1] = -1.7050000000000325 " " y[1] (analytic) = 0.25594921967480927 " " y[1] (numeric) = 0.2559492196748153 " " absolute error = 6.050715484207103000000000000000E-15 " " relative error = 2.3640296664684926000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.995477582542759 " " Order of pole = 3.555999109796918 " " x[1] = -1.7040000000000326 " " y[1] (analytic) = 0.2561727383021208 " " y[1] (numeric) = 0.2561727383021269 " " absolute error = 6.106226635438361000000000000000E-15 " " relative error = 2.383636399372403000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.994642853950307 " " Order of pole = 3.556564528389945 " " x[1] = -1.7030000000000327 " " y[1] (analytic) = 0.25639651618668935 " " y[1] (numeric) = 0.25639651618669546 " " absolute error = 6.106226635438361000000000000000E-15 " " relative error = 2.3815560079577092000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.99380837430159 " " Order of pole = 3.5571317157882945 " " x[1] = -1.7020000000000328 " " y[1] (analytic) = 0.2566205536639696 " " y[1] (numeric) = 0.25662055366397574 " " absolute error = 6.161737786669619000000000000000E-15 " " relative error = 2.4011084454046006000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9929741386232125 " " Order of pole = 3.5577005932893115 " " x[1] = -1.701000000000033 " " y[1] (analytic) = 0.25684485106978994 " " y[1] (numeric) = 0.2568448510697961 " " absolute error = 6.161737786669619000000000000000E-15 " " relative error = 2.399011606035797200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9921401419055746 " " Order of pole = 3.5582710815702754 " " x[1] = -1.700000000000033 " " y[1] (analytic) = 0.25706940874035245 " " y[1] (numeric) = 0.25706940874035866 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 2.4185098368435112000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9913063791028969 " " Order of pole = 3.558843100688865 " " x[1] = -1.6990000000000332 " " y[1] (analytic) = 0.2572942270122328 " " y[1] (numeric) = 0.25729422701223903 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 2.4163965939295184000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.990472845134427 " " Order of pole = 3.5594165701004705 " " x[1] = -1.6980000000000333 " " y[1] (analytic) = 0.25751930622238 " " y[1] (numeric) = 0.2575193062223863 " " absolute error = 6.2727600891321340000000000000000E-15 " " relative error = 2.435840706915897000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9896395348848157 " " Order of pole = 3.559991408663727 " " x[1] = -1.6970000000000334 " " y[1] (analytic) = 0.25774464670811653 " " y[1] (numeric) = 0.2577446467081228 " " absolute error = 6.2727600891321340000000000000000E-15 " " relative error = 2.4337111048656368000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.988806443204912 " " Order of pole = 3.5605675346520584 " " x[1] = -1.6960000000000335 " " y[1] (analytic) = 0.25797024880713804 " " y[1] (numeric) = 0.2579702488071443 " " absolute error = 6.2727600891321340000000000000000E-15 " " relative error = 2.4315827573673943000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.987973564912586 " " Order of pole = 3.5611448657655913 " " x[1] = -1.6950000000000336 " " y[1] (analytic) = 0.2581961128575133 " " y[1] (numeric) = 0.25819611285751964 " " absolute error = 6.328271240363392000000000000000E-15 " " relative error = 2.450955272070915200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9871408947931597 " " Order of pole = 3.561723319137627 " " x[1] = -1.6940000000000337 " " y[1] (analytic) = 0.25842223919768437 " " y[1] (numeric) = 0.2584222391976907 " " absolute error = 6.328271240363392000000000000000E-15 " " relative error = 2.4488106209475557000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9863084276005598 " " Order of pole = 3.562302811351312 " " x[1] = -1.6930000000000338 " " y[1] (analytic) = 0.25864862816646583 " " y[1] (numeric) = 0.2586486281664722 " " absolute error = 6.38378239159465000000000000000E-15 " " relative error = 2.4681292287721154000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9854761580580726 " " Order of pole = 3.562883258450835 " " x[1] = -1.692000000000034 " " y[1] (analytic) = 0.2588752801030454 " " y[1] (numeric) = 0.2588752801030518 " " absolute error = 6.38378239159465000000000000000E-15 " " relative error = 2.465968318432561000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9846440808587589 " " Order of pole = 3.563464575947652 " " x[1] = -1.691000000000034 " " y[1] (analytic) = 0.2591021953469832 " " y[1] (numeric) = 0.25910219534698964 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 2.485233108196002200000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9838121906666566 " " Order of pole = 3.5640466788381318 " " x[1] = -1.6900000000000341 " " y[1] (analytic) = 0.2593293742382122 " " y[1] (numeric) = 0.2593293742382186 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 2.4830559830491727000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9829804821174264 " " Order of pole = 3.5646294816130464 " " x[1] = -1.6890000000000343 " " y[1] (analytic) = 0.25955681711703754 " " y[1] (numeric) = 0.259556817117044 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 2.480880145761052000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9821489498190041 " " Order of pole = 3.565212898267621 " " x[1] = -1.6880000000000344 " " y[1] (analytic) = 0.2597845243241368 " " y[1] (numeric) = 0.25978452432414323 " " absolute error = 6.439293542825908000000000000000E-15 " " relative error = 2.4787055963316398000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9813175883528962 " " Order of pole = 3.5657968423203705 " " x[1] = -1.6870000000000345 " " y[1] (analytic) = 0.26001249620055955 " " y[1] (numeric) = 0.26001249620056605 " " absolute error = 6.494804694057166000000000000000E-15 " " relative error = 2.49788175143991000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9804863922746623 " " Order of pole = 3.566381226820596 " " x[1] = -1.6860000000000346 " " y[1] (analytic) = 0.26024073308772755 " " y[1] (numeric) = 0.2602407330877341 " " absolute error = 6.5503158452884240000000000000000E-15 " " relative error = 2.5170217465842680000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.979655356114849 " " Order of pole = 3.566965964362396 " " x[1] = -1.6850000000000347 " " y[1] (analytic) = 0.26046923532743443 " " y[1] (numeric) = 0.260469235327441 " " absolute error = 6.5503158452884240000000000000000E-15 " " relative error = 2.5148136351128220000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9788244743801344 " " Order of pole = 3.5675509671015213 " " x[1] = -1.6840000000000348 " " y[1] (analytic) = 0.26069800326184545 " " y[1] (numeric) = 0.260698003261852 " " absolute error = 6.5503158452884240000000000000000E-15 " " relative error = 2.512606833704544000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9779937415539046 " " Order of pole = 3.5681361467643704 " " x[1] = -1.683000000000035 " " y[1] (analytic) = 0.2609270372334974 " " y[1] (numeric) = 0.260927037233504 " " absolute error = 6.6058269965196810000000000000000E-15 " " relative error = 2.5316759300065494000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9771631520971926 " " Order of pole = 3.568721414662207 " " x[1] = -1.682000000000035 " " y[1] (analytic) = 0.26115633758529866 " " y[1] (numeric) = 0.2611563375853053 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 2.5507089773669456000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9763327004499838 " " Order of pole = 3.56930668171038 " " x[1] = -1.6810000000000351 " " y[1] (analytic) = 0.26138590466052875 " " y[1] (numeric) = 0.2613859046605354 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 2.5484687693478570000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.975502381031704 " " Order of pole = 3.5698918584362254 " " x[1] = -1.6800000000000352 " " y[1] (analytic) = 0.2616157388028383 " " y[1] (numeric) = 0.26161573880284494 " " absolute error = 6.661338147750939000000000000000E-15 " " relative error = 2.546229893596398000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9746721882424554 " " Order of pole = 3.5704768549976293 " " x[1] = -1.6790000000000354 " " y[1] (analytic) = 0.2618458403562488 " " y[1] (numeric) = 0.2618458403562555 " " absolute error = 6.716849298982197000000000000000E-15 " " relative error = 2.5651922863635070000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9738421164636444 " " Order of pole = 3.571061581192751 " " x[1] = -1.6780000000000355 " " y[1] (analytic) = 0.26207620966515277 " " y[1] (numeric) = 0.2620762096651595 " " absolute error = 6.716849298982197000000000000000E-15 " " relative error = 2.5629374400538385000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9730121600597146 " " Order of pole = 3.571645946485777 " " x[1] = -1.6770000000000356 " " y[1] (analytic) = 0.26230684707431307 " " y[1] (numeric) = 0.2623068470743198 " " absolute error = 6.716849298982197000000000000000E-15 " " relative error = 2.56068393711403000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9721823133780712 " " Order of pole = 3.572229860006889 " " x[1] = -1.6760000000000357 " " y[1] (analytic) = 0.2625377529288629 " " y[1] (numeric) = 0.2625377529288697 " " absolute error = 6.827871601444713000000000000000E-15 " " relative error = 2.60071990609853000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9713525707512598 " " Order of pole = 3.5728132305841918 " " x[1] = -1.6750000000000358 " " y[1] (analytic) = 0.26276892757430603 " " y[1] (numeric) = 0.26276892757431286 " " absolute error = 6.827871601444713000000000000000E-15 " " relative error = 2.5984318863248856000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9705229264966793 " " Order of pole = 3.5733959667410957 " " x[1] = -1.674000000000036 " " y[1] (analytic) = 0.26300037135651605 " " y[1] (numeric) = 0.2630003713565229 " " absolute error = 6.827871601444713000000000000000E-15 " " relative error = 2.5961452321255620000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9696933749189411 " " Order of pole = 3.573977976730543 " " x[1] = -1.673000000000036 " " y[1] (analytic) = 0.26323208462173636 " " y[1] (numeric) = 0.26323208462174325 " " absolute error = 6.8833827526759700000000000000000E-15 " " relative error = 2.6149482357241405000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9688639103103276 " " Order of pole = 3.5745591685433027 " " x[1] = -1.6720000000000361 " " y[1] (analytic) = 0.26346406771658015 " " y[1] (numeric) = 0.2634640677165871 " " absolute error = 6.938893903907228000000000000000E-15 " " relative error = 2.633715467936865000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9680345269510966 " " Order of pole = 3.5751394499132196 " " x[1] = -1.6710000000000362 " " y[1] (analytic) = 0.26369632098803003 " " y[1] (numeric) = 0.263696320988037 " " absolute error = 6.994405055138486000000000000000E-15 " " relative error = 2.652446962070428000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9672052191122404 " " Order of pole = 3.5757187283577494 " " x[1] = -1.6700000000000363 " " y[1] (analytic) = 0.2639288447834379 " " y[1] (numeric) = 0.2639288447834449 " " absolute error = 6.994405055138486000000000000000E-15 " " relative error = 2.650110131341506000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.966375981055072 " " Order of pole = 3.576296911173678 " " x[1] = -1.6690000000000365 " " y[1] (analytic) = 0.26416163945052473 " " y[1] (numeric) = 0.2641616394505317 " " absolute error = 6.994405055138486000000000000000E-15 " " relative error = 2.6477746994935950000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9655468070327904 " " Order of pole = 3.5768739054606478 " " x[1] = -1.6680000000000366 " " y[1] (analytic) = 0.2643947053373803 " " y[1] (numeric) = 0.2643947053373873 " " absolute error = 6.994405055138486000000000000000E-15 " " relative error = 2.6454406665266955000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9647176912921045 " " Order of pole = 3.5774496181456605 " " x[1] = -1.6670000000000367 " " y[1] (analytic) = 0.264628042792463 " " y[1] (numeric) = 0.26462804279247004 " " absolute error = 7.049916206369744000000000000000E-15 " " relative error = 2.6640850803173216000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9638886280736303 " " Order of pole = 3.5780239559902114 " " x[1] = -1.6660000000000368 " " y[1] (analytic) = 0.2648616521645997 " " y[1] (numeric) = 0.26486165216460683 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 2.6826938892555485000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9630596116133694 " " Order of pole = 3.5785968256130687 " " x[1] = -1.665000000000037 " " y[1] (analytic) = 0.2650955338029856 " " y[1] (numeric) = 0.2650955338029927 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 2.6803270714027310000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.962230636143757 " " Order of pole = 3.579168133506574 " " x[1] = -1.664000000000037 " " y[1] (analytic) = 0.26532968805718365 " " y[1] (numeric) = 0.2653296880571908 " " absolute error = 7.16093850883226000000000000000E-15 " " relative error = 2.6988832502184750000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9614016958950415 " " Order of pole = 3.5797377860578976 " " x[1] = -1.6630000000000371 " " y[1] (analytic) = 0.2655641152771247 " " y[1] (numeric) = 0.26556411527713186 " " absolute error = 7.16093850883226000000000000000E-15 " " relative error = 2.696500805976586600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9605727850960164 " " Order of pole = 3.580305689561307 " " x[1] = -1.6620000000000372 " " y[1] (analytic) = 0.26579881581310705 " " y[1] (numeric) = 0.2657988158131142 " " absolute error = 7.16093850883226000000000000000E-15 " " relative error = 2.6941197939224000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9597438979758313 " " Order of pole = 3.5808717502453433 " " x[1] = -1.6610000000000373 " " y[1] (analytic) = 0.2660337900157963 " " y[1] (numeric) = 0.26603379001580346 " " absolute error = 7.16093850883226000000000000000E-15 " " relative error = 2.691740214055915000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9589150287643537 " " Order of pole = 3.5814358742802384 " " x[1] = -1.6600000000000374 " " y[1] (analytic) = 0.2662690382362251 " " y[1] (numeric) = 0.26626903823623227 " " absolute error = 7.16093850883226000000000000000E-15 " " relative error = 2.689362066377132000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.958086171694099 " " Order of pole = 3.5819979678065685 " " x[1] = -1.6590000000000376 " " y[1] (analytic) = 0.2665045608257928 " " y[1] (numeric) = 0.26650456082580004 " " absolute error = 7.216449660063518000000000000000E-15 " " relative error = 2.7078146946913695000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9572573210011799 " " Order of pole = 3.582557936951183 " " x[1] = -1.6580000000000377 " " y[1] (analytic) = 0.26674035813626557 " " y[1] (numeric) = 0.2667403581362728 " " absolute error = 7.216449660063518000000000000000E-15 " " relative error = 2.7054209983391264000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9564284709263418 " " Order of pole = 3.5831156878435095 " " x[1] = -1.6570000000000378 " " y[1] (analytic) = 0.2669764305197755 " " y[1] (numeric) = 0.26697643051978276 " " absolute error = 7.271960811294775000000000000000E-15 " " relative error = 2.7238212740866374000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9555996157164377 " " Order of pole = 3.5836711266385954 " " x[1] = -1.6560000000000379 " " y[1] (analytic) = 0.26721277832882095 " " y[1] (numeric) = 0.2672127783288282 " " absolute error = 7.271960811294775000000000000000E-15 " " relative error = 2.721412073469856000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9547707496254993 " " Order of pole = 3.5842241595344824 " " x[1] = -1.655000000000038 " " y[1] (analytic) = 0.267449401916266 " " y[1] (numeric) = 0.26744940191627325 " " absolute error = 7.271960811294775000000000000000E-15 " " relative error = 2.719004327245236300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.953941866916271 " " Order of pole = 3.584774692795655 " " x[1] = -1.654000000000038 " " y[1] (analytic) = 0.26768630163534013 " " y[1] (numeric) = 0.26768630163534746 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 2.7373354249960824000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9531129618611112 " " Order of pole = 3.5853226327685697 " " x[1] = -1.6530000000000382 " " y[1] (analytic) = 0.2679234778396382 " " y[1] (numeric) = 0.26792347783964554 " " absolute error = 7.327471962526033000000000000000E-15 " " relative error = 2.7349122300180750000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9522840287433656 " " Order of pole = 3.5858678859027293 " " x[1] = -1.6520000000000383 " " y[1] (analytic) = 0.26816093088311993 " " y[1] (numeric) = 0.2681609308831273 " " absolute error = 7.382983113757291000000000000000E-15 " " relative error = 2.7531911861445700000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9514550618587327 " " Order of pole = 3.5864103587728344 " " x[1] = -1.6510000000000384 " " y[1] (analytic) = 0.26839866112010974 " " y[1] (numeric) = 0.2683986611201171 " " absolute error = 7.382983113757291000000000000000E-15 " " relative error = 2.7507525868220967000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9506260555164983 " " Order of pole = 3.5869499580982236 " " x[1] = -1.6500000000000385 " " y[1] (analytic) = 0.2686366689052964 " " y[1] (numeric) = 0.2686366689053038 " " absolute error = 7.382983113757291000000000000000E-15 " " relative error = 2.7483154640962454000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9497970040407908 " " Order of pole = 3.5874865907629534 " " x[1] = -1.6490000000000387 " " y[1] (analytic) = 0.26887495459373284 " " y[1] (numeric) = 0.2688749545937403 " " absolute error = 7.438494264988549000000000000000E-15 " " relative error = 2.7665255308840620000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9489679017718717 " " Order of pole = 3.588020163836962 " " x[1] = -1.6480000000000388 " " y[1] (analytic) = 0.2691135185408357 " " y[1] (numeric) = 0.2691135185408432 " " absolute error = 7.494005416219807000000000000000E-15 " " relative error = 2.7847004702153805000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.948138743067512 " " Order of pole = 3.588550584597261 " " x[1] = -1.6470000000000389 " " y[1] (analytic) = 0.2693523611023853 " " y[1] (numeric) = 0.2693523611023928 " " absolute error = 7.494005416219807000000000000000E-15 " " relative error = 2.7822311954307355000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9473095223042465 " " Order of pole = 3.589077760548964 " " x[1] = -1.646000000000039 " " y[1] (analytic) = 0.2695914826345249 " " y[1] (numeric) = 0.2695914826345325 " " absolute error = 7.549516567451064000000000000000E-15 " " relative error = 2.800354259591228400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.946480233878614 " " Order of pole = 3.5896015994448085 " " x[1] = -1.645000000000039 " " y[1] (analytic) = 0.2698308834937609 " " y[1] (numeric) = 0.2698308834937685 " " absolute error = 7.605027718682322000000000000000E-15 " " relative error = 2.8184422851130630000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9456508722087074 " " Order of pole = 3.590122009309855 " " x[1] = -1.6440000000000392 " " y[1] (analytic) = 0.27007056403696217 " " y[1] (numeric) = 0.2700705640369698 " " absolute error = 7.605027718682322000000000000000E-15 " " relative error = 2.815940991496389000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9448214317351544 " " Order of pole = 3.5906388984583764 " " x[1] = -1.6430000000000393 " " y[1] (analytic) = 0.27031052462135985 " " y[1] (numeric) = 0.27031052462136745 " " absolute error = 7.605027718682322000000000000000E-15 " " relative error = 2.813441218885258000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9439919069226868 " " Order of pole = 3.591152175518161 " " x[1] = -1.6420000000000394 " " y[1] (analytic) = 0.270550765604547 " " y[1] (numeric) = 0.27055076560455465 " " absolute error = 7.66053886991358000000000000000E-15 " " relative error = 2.8314607991576250000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9431622922616347 " " Order of pole = 3.591661749454566 " " x[1] = -1.6410000000000395 " " y[1] (analytic) = 0.27079128734447844 " " y[1] (numeric) = 0.2707912873444861 " " absolute error = 7.66053886991358000000000000000E-15 " " relative error = 2.8289458442466325000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9423325822688062 " " Order of pole = 3.592167529585833 " " x[1] = -1.6400000000000396 " " y[1] (analytic) = 0.27103209019947005 " " y[1] (numeric) = 0.27103209019947777 " " absolute error = 7.716050021144838000000000000000E-15 " " relative error = 2.8469138158017000000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9415027714891884 " " Order of pole = 3.5926694256102145 " " x[1] = -1.6390000000000398 " " y[1] (analytic) = 0.2712731745281989 " " y[1] (numeric) = 0.2712731745282066 " " absolute error = 7.716050021144838000000000000000E-15 " " relative error = 2.8443837229997670000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9406728544972158 " " Order of pole = 3.5931673476259505 " " x[1] = -1.6380000000000399 " " y[1] (analytic) = 0.27151454068970243 " " y[1] (numeric) = 0.2715145406897102 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 2.8623001746553767000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9398428258980673 " " Order of pole = 3.5936612061535165 " " x[1] = -1.63700000000004 " " y[1] (analytic) = 0.27175618904337867 " " y[1] (numeric) = 0.27175618904338644 " " absolute error = 7.771561172376096000000000000000E-15 " " relative error = 2.859754988371423000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9390126803290815 " " Order of pole = 3.5941509121576622 " " x[1] = -1.63600000000004 " " y[1] (analytic) = 0.2719981199489852 " " y[1] (numeric) = 0.27199811994899303 " " absolute error = 7.827072323607354000000000000000E-15 " " relative error = 2.8776200089454170000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9381824124610731 " " Order of pole = 3.5946363770697722 " " x[1] = -1.6350000000000402 " " y[1] (analytic) = 0.2722403337666395 " " y[1] (numeric) = 0.2722403337666473 " " absolute error = 7.827072323607354000000000000000E-15 " " relative error = 2.875059773588365000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.93735201699969 " " Order of pole = 3.5951175128094413 " " x[1] = -1.6340000000000403 " " y[1] (analytic) = 0.2724828308568179 " " y[1] (numeric) = 0.2724828308568258 " " absolute error = 7.882583474838611000000000000000E-15 " " relative error = 2.892873451898585000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.936521488686811 " " Order of pole = 3.595594231807688 " " x[1] = -1.6330000000000404 " " y[1] (analytic) = 0.272725611580356 " " y[1] (numeric) = 0.2727256115803639 " " absolute error = 7.882583474838611000000000000000E-15 " " relative error = 2.8902982118773550000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9356908223019151 " " Order of pole = 3.5960664470292265 " " x[1] = -1.6320000000000405 " " y[1] (analytic) = 0.2729686762984475 " " y[1] (numeric) = 0.27296867629845545 " " absolute error = 7.93809462606986900000000000000E-15 " " relative error = 2.9080606367416440000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9348600126633635 " " Order of pole = 3.596534071993659 " " x[1] = -1.6310000000000406 " " y[1] (analytic) = 0.27321202537264444 " " y[1] (numeric) = 0.27321202537265243 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 2.9257884115453336000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9340290546298522 " " Order of pole = 3.596997020799371 " " x[1] = -1.6300000000000407 " " y[1] (analytic) = 0.2734556591648565 " " y[1] (numeric) = 0.2734556591648645 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 2.9231816967013550000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9331979431017532 " " Order of pole = 3.597455208145533 " " x[1] = -1.6290000000000409 " " y[1] (analytic) = 0.27369957803735057 " " y[1] (numeric) = 0.27369957803735856 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 2.9205765805785333000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9323666730224565 " " Order of pole = 3.5979085493544076 " " x[1] = -1.628000000000041 " " y[1] (analytic) = 0.2739437823527507 " " y[1] (numeric) = 0.2739437823527587 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 2.9179730631768663000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9315352393797316 " " Order of pole = 3.598356960393737 " " x[1] = -1.627000000000041 " " y[1] (analytic) = 0.2741882724740373 " " y[1] (numeric) = 0.27418827247404537 " " absolute error = 8.049116928532385000000000000000E-15 " " relative error = 2.9356167774442465000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9307036372071202 " " Order of pole = 3.5988003578994494 " " x[1] = -1.6260000000000412 " " y[1] (analytic) = 0.2744330487645472 " " y[1] (numeric) = 0.27443304876455527 " " absolute error = 8.049116928532385000000000000000E-15 " " relative error = 2.932998399707395000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.929871861585241 " " Order of pole = 3.5992386591984378 " " x[1] = -1.6250000000000413 " " y[1] (analytic) = 0.27467811158797273 " " y[1] (numeric) = 0.2746781115879808 " " absolute error = 8.049116928532385000000000000000E-15 " " relative error = 2.9303816317939290000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9290399076432596 " " Order of pole = 3.5996717823312885 " " x[1] = -1.6240000000000414 " " y[1] (analytic) = 0.2749234613083616 " " y[1] (numeric) = 0.2749234613083697 " " absolute error = 8.104628079763643000000000000000E-15 " " relative error = 2.947957966625945000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9282077705600842 " " Order of pole = 3.6000996460736268 " " x[1] = -1.6230000000000415 " " y[1] (analytic) = 0.27516909829011654 " " y[1] (numeric) = 0.2751690982901247 " " absolute error = 8.1601392309949010000000000000E-15 " " relative error = 2.9654998623397366000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9273754455658876 " " Order of pole = 3.600522169960353 " " x[1] = -1.6220000000000416 " " y[1] (analytic) = 0.27541502289799474 " " y[1] (numeric) = 0.27541502289800296 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 2.9830073522419953000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9265429279432689 " " Order of pole = 3.6009392743061817 " " x[1] = -1.6210000000000417 " " y[1] (analytic) = 0.2756612354971076 " " y[1] (numeric) = 0.27566123549711574 " " absolute error = 8.1601392309949010000000000000E-15 " " relative error = 2.9602055640066670000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9257102130288277 " " Order of pole = 3.6013508802308074 " " x[1] = -1.6200000000000419 " " y[1] (analytic) = 0.2759077364529198 " " y[1] (numeric) = 0.27590773645292804 " " absolute error = 8.215650382226158000000000000000E-15 " " relative error = 2.97768032453416000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.924877296214266 " " Order of pole = 3.60175690967786 " " x[1] = -1.619000000000042 " " y[1] (analytic) = 0.27615452613124974 " " y[1] (numeric) = 0.276154526131258 " " absolute error = 8.271161533457416000000000000000E-15 " " relative error = 2.9951207569657310000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9240441729479216 " " Order of pole = 3.6021572854407857 " " x[1] = -1.618000000000042 " " y[1] (analytic) = 0.27640160489826826 " " y[1] (numeric) = 0.2764016048982766 " " absolute error = 8.326672684688674000000000000000E-15 " " relative error = 3.012526894608072400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.923210838735904 " " Order of pole = 3.6025519311818712 " " x[1] = -1.6170000000000422 " " y[1] (analytic) = 0.2766489731204987 " " y[1] (numeric) = 0.276648973120507 " " absolute error = 8.326672684688674000000000000000E-15 " " relative error = 3.0098332159945750000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9223772891436475 " " Order of pole = 3.602940771457245 " " x[1] = -1.6160000000000423 " " y[1] (analytic) = 0.2768966311648161 " " y[1] (numeric) = 0.2768966311648245 " " absolute error = 8.382183835919932000000000000000E-15 " " relative error = 3.02718881073372000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.921543519797001 " " Order of pole = 3.603323731737312 " " x[1] = -1.6150000000000424 " " y[1] (analytic) = 0.27714457939844717 " " y[1] (numeric) = 0.27714457939845555 " " absolute error = 8.382183835919932000000000000000E-15 " " relative error = 3.0244805271363345000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9207095263837453 " " Order of pole = 3.603700738430451 " " x[1] = -1.6140000000000425 " " y[1] (analytic) = 0.27739281818896944 " " y[1] (numeric) = 0.2773928181889778 " " absolute error = 8.382183835919932000000000000000E-15 " " relative error = 3.0217739199757154000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.91987530465472 " " Order of pole = 3.604071718903178 " " x[1] = -1.6130000000000426 " " y[1] (analytic) = 0.27764134790431083 " " y[1] (numeric) = 0.2776413479043193 " " absolute error = 8.493206138382448000000000000000E-15 " " relative error = 3.059056657983678000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9190408504252368 " " Order of pole = 3.6044366015034264 " " x[1] = -1.6120000000000427 " " y[1] (analytic) = 0.27789016891274965 " " y[1] (numeric) = 0.27789016891275814 " " absolute error = 8.493206138382448000000000000000E-15 " " relative error = 3.0563175990040490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9182061595763122 " " Order of pole = 3.60479531558169 " " x[1] = -1.6110000000000428 " " y[1] (analytic) = 0.27813928158291334 " " y[1] (numeric) = 0.2781392815829219 " " absolute error = 8.548717289613705000000000000000E-15 " " relative error = 3.073538279441242000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9173712280559476 " " Order of pole = 3.605147791512742 " " x[1] = -1.610000000000043 " " y[1] (analytic) = 0.2783886862837787 " " y[1] (numeric) = 0.27838868628378727 " " absolute error = 8.548717289613705000000000000000E-15 " " relative error = 3.0707847376022573000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9165360518804262 " " Order of pole = 3.605493960718203 " " x[1] = -1.609000000000043 " " y[1] (analytic) = 0.27863838338467095 " " y[1] (numeric) = 0.27863838338467956 " " absolute error = 8.604228440844963000000000000000E-15 " " relative error = 3.087955197100930600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9157006271355899 " " Order of pole = 3.605833755687467 " " x[1] = -1.6080000000000432 " " y[1] (analytic) = 0.27888837325526356 " " y[1] (numeric) = 0.27888837325527216 " " absolute error = 8.604228440844963000000000000000E-15 " " relative error = 3.0851872168115110000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9148649499780073 " " Order of pole = 3.6061671099980366 " " x[1] = -1.6070000000000433 " " y[1] (analytic) = 0.2791386562655773 " " y[1] (numeric) = 0.279138656265586 " " absolute error = 8.659739592076221000000000000000E-15 " " relative error = 3.102307544189507000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9140290166362326 " " Order of pole = 3.6064939583366424 " " x[1] = -1.6060000000000434 " " y[1] (analytic) = 0.2793892327859803 " " y[1] (numeric) = 0.27938923278598904 " " absolute error = 8.715250743307479000000000000000E-15 " " relative error = 3.1193939209474103000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.913192823412186 " " Order of pole = 3.6068142365240945 " " x[1] = -1.6050000000000435 " " y[1] (analytic) = 0.2796401031871872 " " y[1] (numeric) = 0.2796401031871959 " " absolute error = 8.715250743307479000000000000000E-15 " " relative error = 3.1165954539337340000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.912356366682127 " " Order of pole = 3.607127881530694 " " x[1] = -1.6040000000000436 " " y[1] (analytic) = 0.2798912678402585 " " y[1] (numeric) = 0.27989126784026724 " " absolute error = 8.770761894538737000000000000000E-15 " " relative error = 3.1336318428999530000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9115196428980157 " " Order of pole = 3.6074348315000435 " " x[1] = -1.6030000000000437 " " y[1] (analytic) = 0.2801427271166004 " " y[1] (numeric) = 0.2801427271166092 " " absolute error = 8.826273045769994000000000000000E-15 " " relative error = 3.150634370063922000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9106826485887025 " " Order of pole = 3.607735025770225 " " x[1] = -1.6020000000000438 " " y[1] (analytic) = 0.2803944813879641 " " y[1] (numeric) = 0.28039448138797296 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 3.1676030687323303000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9098453803609872 " " Order of pole = 3.608028404890984 " " x[1] = -1.601000000000044 " " y[1] (analytic) = 0.2806465310264452 " " y[1] (numeric) = 0.2806465310264541 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 3.1647582332540310000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9090078349009572 " " Order of pole = 3.6083149106477563 " " x[1] = -1.600000000000044 " " y[1] (analytic) = 0.28089887640448324 " " y[1] (numeric) = 0.2808988764044922 " " absolute error = 8.93729534823251000000000000000E-15 " " relative error = 3.1816771439708996000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9081700089749867 " " Order of pole = 3.608594486078619 " " x[1] = -1.5990000000000442 " " y[1] (analytic) = 0.2811515178948612 " " y[1] (numeric) = 0.2811515178948702 " " absolute error = 8.992806499463768000000000000000E-15 " " relative error = 3.1985623150100500000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9073318994309192 " " Order of pole = 3.6088670754949845 " " x[1] = -1.5980000000000443 " " y[1] (analytic) = 0.28140445587070484 " " y[1] (numeric) = 0.28140445587071383 " " absolute error = 8.992806499463768000000000000000E-15 " " relative error = 3.1956873147721715000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.906493503199262 " " Order of pole = 3.6091326245023865 " " x[1] = -1.5970000000000444 " " y[1] (analytic) = 0.28165769070548213 " " y[1] (numeric) = 0.2816576907054911 " " absolute error = 8.992806499463768000000000000000E-15 " " relative error = 3.192814113095593000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9056548172941719 " " Order of pole = 3.6093910800177262 " " x[1] = -1.5960000000000445 " " y[1] (analytic) = 0.28191122277300285 " " y[1] (numeric) = 0.28191122277301184 " " absolute error = 8.992806499463768000000000000000E-15 " " relative error = 3.189942709980314000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9048158388146448 " " Order of pole = 3.609642390289988 " " x[1] = -1.5950000000000446 " " y[1] (analytic) = 0.2821650524474178 " " y[1] (numeric) = 0.28216505244742685 " " absolute error = 9.048317650695026000000000000000E-15 " " relative error = 3.2067463962005727000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9039765649454616 " " Order of pole = 3.609886504916979 " " x[1] = -1.5940000000000447 " " y[1] (analytic) = 0.2824191801032185 " " y[1] (numeric) = 0.2824191801032276 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 3.2235164759698753000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.903136992958406 " " Order of pole = 3.6101233748666424 " " x[1] = -1.5930000000000448 " " y[1] (analytic) = 0.28267360611523634 " " y[1] (numeric) = 0.28267360611524545 " " absolute error = 9.103828801926284000000000000000E-15 " " relative error = 3.220615085730701000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9022971202132526 " " Order of pole = 3.6103529524948215 " " x[1] = -1.592000000000045 " " y[1] (analytic) = 0.28292833085864205 " " y[1] (numeric) = 0.28292833085865127 " " absolute error = 9.2148511043887990000000000000E-15 " " relative error = 3.2569559493823774000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9014569441586615 " " Order of pole = 3.610575191560642 " " x[1] = -1.591000000000045 " " y[1] (analytic) = 0.2831833547089454 " " y[1] (numeric) = 0.2831833547089546 " " absolute error = 9.2148511043887990000000000000E-15 " " relative error = 3.2540228622758505000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.9006164623332813 " " Order of pole = 3.6107900472460983 " " x[1] = -1.5900000000000452 " " y[1] (analytic) = 0.2834386780419941 " " y[1] (numeric) = 0.28343867804200334 " " absolute error = 9.270362255620057000000000000000E-15 " " relative error = 3.2706765074054456000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.899775672366851 " " Order of pole = 3.6109974761763617 " " x[1] = -1.5890000000000453 " " y[1] (analytic) = 0.28369430123397354 " " y[1] (numeric) = 0.2836943012339828 " " absolute error = 9.270362255620057000000000000000E-15 " " relative error = 3.267729459244384000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8989345719808433 " " Order of pole = 3.6111974364300394 " " x[1] = -1.5880000000000454 " " y[1] (analytic) = 0.2839502246614061 " " y[1] (numeric) = 0.28395022466141545 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 3.2843338715339520000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8980931589898682 " " Order of pole = 3.611389887565821 " " x[1] = -1.5870000000000455 " " y[1] (analytic) = 0.2842064487011507 " " y[1] (numeric) = 0.28420644870116 " " absolute error = 9.325873406851315000000000000000E-15 " " relative error = 3.2813729067272770000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8972514313021058 " " Order of pole = 3.611574790628822 " " x[1] = -1.5860000000000456 " " y[1] (analytic) = 0.2844629737304016 " " y[1] (numeric) = 0.28446297373041096 " " absolute error = 9.381384558082573000000000000000E-15 " " relative error = 3.29792817499466000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8964093869205194 " " Order of pole = 3.6117521081732384 " " x[1] = -1.5850000000000457 " " y[1] (analytic) = 0.28471980012668857 " " y[1] (numeric) = 0.28471980012669795 " " absolute error = 9.381384558082573000000000000000E-15 " " relative error = 3.294953337951292400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8955670239436164 " " Order of pole = 3.6119218042760792 " " x[1] = -1.5840000000000458 " " y[1] (analytic) = 0.2849769282678757 " " y[1] (numeric) = 0.28497692826788507 " " absolute error = 9.381384558082573000000000000000E-15 " " relative error = 3.2919803771848355000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.894724340566488 " " Order of pole = 3.6120838445558263 " " x[1] = -1.583000000000046 " " y[1] (analytic) = 0.2852343585321607 " " y[1] (numeric) = 0.2852343585321702 " " absolute error = 9.492406860545088000000000000000E-15 " " relative error = 3.327932479591094000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8938813350814243 " " Order of pole = 3.6122381961837213 " " x[1] = -1.582000000000046 " " y[1] (analytic) = 0.28549209129807496 " " y[1] (numeric) = 0.2854920912980845 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 3.3443721569882684000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8930380058787568 " " Order of pole = 3.612384827899273 " " x[1] = -1.5810000000000461 " " y[1] (analytic) = 0.285750126944482 " " y[1] (numeric) = 0.28575012694449153 " " absolute error = 9.547918011776346000000000000000E-15 " " relative error = 3.3413521505211435000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8921943514478505 " " Order of pole = 3.6125237100283343 " " x[1] = -1.5800000000000463 " " y[1] (analytic) = 0.2860084658505772 " " y[1] (numeric) = 0.2860084658505868 " " absolute error = 9.603429163007604000000000000000E-15 " " relative error = 3.3577429725541190000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8913503703777468 " " Order of pole = 3.6126548144951762 " " x[1] = -1.5790000000000464 " " y[1] (analytic) = 0.2862671083958874 " " y[1] (numeric) = 0.28626710839589703 " " absolute error = 9.603429163007604000000000000000E-15 " " relative error = 3.354709249281525000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8905060613576752 " " Order of pole = 3.6127781148317517 " " x[1] = -1.5780000000000465 " " y[1] (analytic) = 0.2865260549602697 " " y[1] (numeric) = 0.2865260549602794 " " absolute error = 9.658940314238862000000000000000E-15 " " relative error = 3.371051304768144000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.889661423178456 " " Order of pole = 3.6128935862041125 " " x[1] = -1.5770000000000466 " " y[1] (analytic) = 0.2867853059239112 " " y[1] (numeric) = 0.28678530592392093 " " absolute error = 9.71445146547012000000000000000E-15 " " relative error = 3.387360253404169000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.888816454732308 " " Order of pole = 3.613001205408672 " " x[1] = -1.5760000000000467 " " y[1] (analytic) = 0.2870448616673281 " " y[1] (numeric) = 0.2870448616673379 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 3.4036361284962896000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8879711550144025 " " Order of pole = 3.6131009509013516 " " x[1] = -1.5750000000000468 " " y[1] (analytic) = 0.28730472257136513 " " y[1] (numeric) = 0.2873047225713749 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 3.400557613275767000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.887125523122715 " " Order of pole = 3.6131928027952043 " " x[1] = -1.574000000000047 " " y[1] (analytic) = 0.2875648890171945 " " y[1] (numeric) = 0.28756488901720434 " " absolute error = 9.825473767932635000000000000000E-15 " " relative error = 3.4167849216616764000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.886279558259223 " " Order of pole = 3.6132767428829027 " " x[1] = -1.573000000000047 " " y[1] (analytic) = 0.28782536138631587 " " y[1] (numeric) = 0.2878253613863257 " " absolute error = 9.825473767932635000000000000000E-15 " " relative error = 3.413692845066908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8854332597304464 " " Order of pole = 3.613352754647188 " " x[1] = -1.5720000000000471 " " y[1] (analytic) = 0.28808614006055494 " " y[1] (numeric) = 0.28808614006056477 " " absolute error = 9.825473767932635000000000000000E-15 " " relative error = 3.410602733566893000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8845866269477118 " " Order of pole = 3.6134208232662957 " " x[1] = -1.5710000000000472 " " y[1] (analytic) = 0.28834722542206315 " " y[1] (numeric) = 0.288347225422073 " " absolute error = 9.825473767932635000000000000000E-15 " " relative error = 3.407514587161632000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8837396594279616 " " Order of pole = 3.6134809356294504 " " x[1] = -1.5700000000000474 " " y[1] (analytic) = 0.2886086178533167 " " y[1] (numeric) = 0.2886086178533266 " " absolute error = 9.880984919163893000000000000000E-15 " " relative error = 3.4236624646412445000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8828923567942395 " " Order of pole = 3.613533080346709 " " x[1] = -1.5690000000000475 " " y[1] (analytic) = 0.2888703177371162 " " y[1] (numeric) = 0.28887031773712607 " " absolute error = 9.880984919163893000000000000000E-15 " " relative error = 3.4205608234751184000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.882044718776116 " " Order of pole = 3.613577247757224 " " x[1] = -1.5680000000000476 " " y[1] (analytic) = 0.2891323254565853 " " y[1] (numeric) = 0.28913232545659523 " " absolute error = 9.936496070395151000000000000000E-15 " " relative error = 3.436660378497584000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8811967452104021 " " Order of pole = 3.6136134299434666 " " x[1] = -1.5670000000000477 " " y[1] (analytic) = 0.2893946413951706 " " y[1] (numeric) = 0.28939464139518056 " " absolute error = 9.936496070395151000000000000000E-15 " " relative error = 3.4335452869795150000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8803484360410128 " " Order of pole = 3.6136416207296698 " " x[1] = -1.5660000000000478 " " y[1] (analytic) = 0.28965726593664054 " " y[1] (numeric) = 0.28965726593665053 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 3.449596608362676000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8794997913201734 " " Order of pole = 3.613661815704713 " " x[1] = -1.565000000000048 " " y[1] (analytic) = 0.2899201994650846 " " y[1] (numeric) = 0.2899201994650946 " " absolute error = 9.992007221626409000000000000000E-15 " " relative error = 3.446468110901585000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8786508112082594 " " Order of pole = 3.6136740122204607 " " x[1] = -1.564000000000048 " " y[1] (analytic) = 0.2901834423649127 " " y[1] (numeric) = 0.2901834423649228 " " absolute error = 1.004751837285766700000000000000E-14 " " relative error = 3.4624712874632830000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8778014959742861 " " Order of pole = 3.613678209401808 " " x[1] = -1.5630000000000481 " " y[1] (analytic) = 0.29044699502085447 " " y[1] (numeric) = 0.2904469950208645 " " absolute error = 1.004751837285766700000000000000E-14 " " relative error = 3.45932942846809030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8769518459962944 " " Order of pole = 3.61367440815485 " " x[1] = -1.5620000000000482 " " y[1] (analytic) = 0.2907108578179581 " " y[1] (numeric) = 0.2907108578179681 " " absolute error = 1.004751837285766700000000000000E-14 " " relative error = 3.456189578976572300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8761018617616407 " " Order of pole = 3.6136626111735417 " " x[1] = -1.5610000000000483 " " y[1] (analytic) = 0.29097503114158996 " " y[1] (numeric) = 0.2909750311416 " " absolute error = 1.004751837285766700000000000000E-14 " " relative error = 3.4530517389887290000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8752515438673927 " " Order of pole = 3.6136428229481687 " " x[1] = -1.5600000000000485 " " y[1] (analytic) = 0.2912395153774336 " " y[1] (numeric) = 0.2912395153774437 " " absolute error = 1.010302952408892500000000000000E-14 " " relative error = 3.468976217391326000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8744008930201725 " " Order of pole = 3.613615049763979 " " x[1] = -1.5590000000000486 " " y[1] (analytic) = 0.29150431091148904 " " y[1] (numeric) = 0.2915043109114992 " " absolute error = 1.015854067532018200000000000000E-14 " " relative error = 3.4848680774414600000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8735499100370767 " " Order of pole = 3.6135792997192198 " " x[1] = -1.5580000000000487 " " y[1] (analytic) = 0.2917694181300719 " " y[1] (numeric) = 0.29176941813008206 " " absolute error = 1.015854067532018200000000000000E-14 " " relative error = 3.481701660312962000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8726985958451845 " " Order of pole = 3.613535582717933 " " x[1] = -1.5570000000000488 " " y[1] (analytic) = 0.2920348374198125 " " y[1] (numeric) = 0.2920348374198227 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 3.4975456753018497000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8718469514819582 " " Order of pole = 3.6134839104786103 " " x[1] = -1.556000000000049 " " y[1] (analytic) = 0.2923005691676553 " " y[1] (numeric) = 0.2923005691676655 " " absolute error = 1.02140518265514400000000000000E-14 " " relative error = 3.4943660409682440000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8709949780955861 " " Order of pole = 3.613424296542128 " " x[1] = -1.555000000000049 " " y[1] (analytic) = 0.29256661376085763 " " y[1] (numeric) = 0.2925666137608679 " " absolute error = 1.026956297778269800000000000000E-14 " " relative error = 3.510162299713727000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8701426769448783 " " Order of pole = 3.613356756271461 " " x[1] = -1.5540000000000491 " " y[1] (analytic) = 0.29283297158698934 " " y[1] (numeric) = 0.2928329715869996 " " absolute error = 1.026956297778269800000000000000E-14 " " relative error = 3.506969492583935000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8692900493992588 " " Order of pole = 3.6132813068534624 " " x[1] = -1.5530000000000492 " " y[1] (analytic) = 0.2930996430339316 " " y[1] (numeric) = 0.2930996430339419 " " absolute error = 1.032507412901395600000000000000E-14 " " relative error = 3.5227180839038560000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8684370969391477 " " Order of pole = 3.613197967307297 " " x[1] = -1.5520000000000493 " " y[1] (analytic) = 0.29336662848987627 " " y[1] (numeric) = 0.2933666284898866 " " absolute error = 1.032507412901395600000000000000E-14 " " relative error = 3.5195121483867964000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8675838211556297 " " Order of pole = 3.613106758480484 " " x[1] = -1.5510000000000495 " " y[1] (analytic) = 0.2936339283433247 " " y[1] (numeric) = 0.29363392834333507 " " absolute error = 1.038058528024521400000000000000E-14 " " relative error = 3.5352131610989973000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8667302237507541 " " Order of pole = 3.613007703056109 " " x[1] = -1.5500000000000496 " " y[1] (analytic) = 0.2939015429830874 " " y[1] (numeric) = 0.2939015429830978 " " absolute error = 1.038058528024521400000000000000E-14 " " relative error = 3.531994141603593000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.865876306536826 " " Order of pole = 3.6129008255420736 " " x[1] = -1.5490000000000497 " " y[1] (analytic) = 0.29416947279828265 " " y[1] (numeric) = 0.29416947279829303 " " absolute error = 1.038058528024521400000000000000E-14 " " relative error = 3.5287771982252450000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8650220714375463 " " Order of pole = 3.612786152293342 " " x[1] = -1.5480000000000498 " " y[1] (analytic) = 0.2944377181783358 " " y[1] (numeric) = 0.29443771817834624 " " absolute error = 1.043609643147647100000000000000E-14 " " relative error = 3.5444156054610876000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8641675204868264 " " Order of pole = 3.6126637114929316 " " x[1] = -1.54700000000005 " " y[1] (analytic) = 0.29470627951297856 " " y[1] (numeric) = 0.29470627951298906 " " absolute error = 1.04916075827077300000000000000E-14 " " relative error = 3.560021727411373000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8633126558287854 " " Order of pole = 3.612533533153748 " " x[1] = -1.54600000000005 " " y[1] (analytic) = 0.2949751571922478 " " y[1] (numeric) = 0.2949751571922583 " " absolute error = 1.04916075827077300000000000000E-14 " " relative error = 3.556776673186042000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8624574797183246 " " Order of pole = 3.6123956491310167 " " x[1] = -1.5450000000000501 " " y[1] (analytic) = 0.2952443516064848 " " y[1] (numeric) = 0.29524435160649537 " " absolute error = 1.054711873393898700000000000000E-14 " " relative error = 3.5723354829821335000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8616019945200097 " " Order of pole = 3.612250093104386 " " x[1] = -1.5440000000000502 " " y[1] (analytic) = 0.2955138631463344 " " y[1] (numeric) = 0.2955138631463449 " " absolute error = 1.054711873393898700000000000000E-14 " " relative error = 3.5690774780052200000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.860746202708599 " " Order of pole = 3.6120969005894636 " " x[1] = -1.5430000000000503 " " y[1] (analytic) = 0.29578369220274375 " " y[1] (numeric) = 0.29578369220275436 " " absolute error = 1.060262988517024500000000000000E-14 " " relative error = 3.5845890644649586000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8598901068682725 " " Order of pole = 3.611936108926372 " " x[1] = -1.5420000000000504 " " y[1] (analytic) = 0.29605383916696193 " " y[1] (numeric) = 0.29605383916697253 " " absolute error = 1.060262988517024500000000000000E-14 " " relative error = 3.5813181531453836000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8590337096925509 " " Order of pole = 3.6117677572803757 " " x[1] = -1.5410000000000506 " " y[1] (analytic) = 0.2963243044305384 " " y[1] (numeric) = 0.2963243044305491 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 3.596782605086612000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8581770139840428 " " Order of pole = 3.611591886639669 " " x[1] = -1.5400000000000507 " " y[1] (analytic) = 0.2965950883853226 " " y[1] (numeric) = 0.29659508838533327 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 3.593498831833297000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.857320022654125 " " Order of pole = 3.6114085398119435 " " x[1] = -1.5390000000000508 " " y[1] (analytic) = 0.2968661914234626 " " y[1] (numeric) = 0.29686619142347326 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 3.590217190208189000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8564627387223538 " " Order of pole = 3.6112177614162526 " " x[1] = -1.5380000000000509 " " y[1] (analytic) = 0.29713761393740423 " " y[1] (numeric) = 0.29713761393741495 " " absolute error = 1.07136521876327600000000000000E-14 " " relative error = 3.6056196472957225000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8556051653162478 " " Order of pole = 3.6110195978813486 " " x[1] = -1.537000000000051 " " y[1] (analytic) = 0.29740935631989035 " " y[1] (numeric) = 0.29740935631990106 " " absolute error = 1.07136521876327600000000000000E-14 " " relative error = 3.6023251992480254000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8547473056706603 " " Order of pole = 3.6108140974370038 " " x[1] = -1.536000000000051 " " y[1] (analytic) = 0.2976814189639595 " " y[1] (numeric) = 0.29768141896397027 " " absolute error = 1.076916333886401800000000000000E-14 " " relative error = 3.617680732759423000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.853889163127783 " " Order of pole = 3.6106013101163406 " " x[1] = -1.5350000000000512 " " y[1] (analytic) = 0.29795380226294516 " " y[1] (numeric) = 0.297953802262956 " " absolute error = 1.082467449009527600000000000000E-14 " " relative error = 3.633004314052172300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8530307411361353 " " Order of pole = 3.6103812877402675 " " x[1] = -1.5340000000000513 " " y[1] (analytic) = 0.29822650661047473 " " y[1] (numeric) = 0.29822650661048555 " " absolute error = 1.082467449009527600000000000000E-14 " " relative error = 3.629682221451162000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8521720432500408 " " Order of pole = 3.6101540839107322 " " x[1] = -1.5330000000000514 " " y[1] (analytic) = 0.29849953240046845 " " y[1] (numeric) = 0.2984995324004793 " " absolute error = 1.082467449009527600000000000000E-14 " " relative error = 3.62636229378505000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8513130731298313 " " Order of pole = 3.6099197540165022 " " x[1] = -1.5320000000000515 " " y[1] (analytic) = 0.29877288002713837 " " y[1] (numeric) = 0.29877288002714925 " " absolute error = 1.088018564132653400000000000000E-14 " " relative error = 3.641624246597702000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.850453834540231 " " Order of pole = 3.609678355207233 " " x[1] = -1.5310000000000517 " " y[1] (analytic) = 0.29904654988498747 " " y[1] (numeric) = 0.2990465498849984 " " absolute error = 1.093569679255779200000000000000E-14 " " relative error = 3.656854358214008000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8495943313505432 " " Order of pole = 3.609429946399029 " " x[1] = -1.5300000000000518 " " y[1] (analytic) = 0.29932054236880856 " " y[1] (numeric) = 0.2993205423688195 " " absolute error = 1.093569679255779200000000000000E-14 " " relative error = 3.653506941425806000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8487345675334597 " " Order of pole = 3.609174588255968 " " x[1] = -1.5290000000000519 " " y[1] (analytic) = 0.2995948578736832 " " y[1] (numeric) = 0.2995948578736941 " " absolute error = 1.093569679255779200000000000000E-14 " " relative error = 3.650161711776962500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8478745471648816 " " Order of pole = 3.6089123431892602 " " x[1] = -1.528000000000052 " " y[1] (analytic) = 0.29986949679498054 " " y[1] (numeric) = 0.29986949679499153 " " absolute error = 1.09912079437890500000000000000E-14 " " relative error = 3.665330439162237000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8470142744228508 " " Order of pole = 3.6086432753409987 " " x[1] = -1.527000000000052 " " y[1] (analytic) = 0.30014445952835667 " " y[1] (numeric) = 0.3001444595283677 " " absolute error = 1.104671909502030800000000000000E-14 " " relative error = 3.680467436373467400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8461537535870334 " " Order of pole = 3.608367450577351 " " x[1] = -1.5260000000000522 " " y[1] (analytic) = 0.30041974646975317 " " y[1] (numeric) = 0.30041974646976427 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 3.695572736717344700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8452929890380567 " " Order of pole = 3.6080849364794965 " " x[1] = -1.5250000000000523 " " y[1] (analytic) = 0.3006953580153962 " " y[1] (numeric) = 0.3006953580154073 " " absolute error = 1.110223024625156500000000000000E-14 " " relative error = 3.692185446269213300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8444319852560809 " " Order of pole = 3.607795802320876 " " x[1] = -1.5240000000000524 " " y[1] (analytic) = 0.3009712945617954 " " y[1] (numeric) = 0.30097129456180655 " " absolute error = 1.115774139748282300000000000000E-14 " " relative error = 3.7072443781484676000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8435707468214222 " " Order of pole = 3.607500119080587 " " x[1] = -1.5230000000000525 " " y[1] (analytic) = 0.30124755650574275 " " y[1] (numeric) = 0.30124755650575397 " " absolute error = 1.121325254871408100000000000000E-14 " " relative error = 3.72227170197821030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8427092784117673 " " Order of pole = 3.607197959396963 " " x[1] = -1.5220000000000526 " " y[1] (analytic) = 0.3015241442443116 " " y[1] (numeric) = 0.3015241442443229 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.737267451065132000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8418475848029918 " " Order of pole = 3.6068893975843537 " " x[1] = -1.5210000000000528 " " y[1] (analytic) = 0.3018010581748556 " " y[1] (numeric) = 0.3018010581748668 " " absolute error = 1.121325254871408100000000000000E-14 " " relative error = 3.715445073826553000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8409856708677363 " " Order of pole = 3.6065745096106205 " " x[1] = -1.5200000000000529 " " y[1] (analytic) = 0.3020782986950071 " " y[1] (numeric) = 0.30207829869501834 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.7304115352300865000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8401235415736574 " " Order of pole = 3.606253373068892 " " x[1] = -1.519000000000053 " " y[1] (analytic) = 0.3023558662026768 " " y[1] (numeric) = 0.30235586620268806 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.726986957941673000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8392612019839372 " " Order of pole = 3.605926067188964 " " x[1] = -1.518000000000053 " " y[1] (analytic) = 0.3026337610960521 " " y[1] (numeric) = 0.3026337610960634 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.723564634405999700000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8383986572554272 " " Order of pole = 3.605592672807205 " " x[1] = -1.5170000000000532 " " y[1] (analytic) = 0.30291198377359607 " " y[1] (numeric) = 0.30291198377360734 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.720144564623067000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8375359126374082 " " Order of pole = 3.6052532723472837 " " x[1] = -1.5160000000000533 " " y[1] (analytic) = 0.3031905346340463 " " y[1] (numeric) = 0.3031905346340576 " " absolute error = 1.126876369994533900000000000000E-14 " " relative error = 3.716726748592873000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8366729734716856 " " Order of pole = 3.6049079498242413 " " x[1] = -1.5150000000000534 " " y[1] (analytic) = 0.30346941407641387 " " y[1] (numeric) = 0.3034694140764252 " " absolute error = 1.132427485117659700000000000000E-14 " " relative error = 3.731603359647023000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8358098451903901 " " Order of pole = 3.6045567908084806 " " x[1] = -1.5140000000000535 " " y[1] (analytic) = 0.30374862249998197 " " y[1] (numeric) = 0.30374862249999335 " " absolute error = 1.137978600240785500000000000000E-14 " " relative error = 3.746448595798498000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.834946533315357 " " Order of pole = 3.6041998824172623 " " x[1] = -1.5130000000000536 " " y[1] (analytic) = 0.304028160304305 " " y[1] (numeric) = 0.3040281603043164 " " absolute error = 1.137978600240785500000000000000E-14 " " relative error = 3.743003934575569000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8340830434573738 " " Order of pole = 3.6038373133039947 " " x[1] = -1.5120000000000537 " " y[1] (analytic) = 0.3043080278892071 " " y[1] (numeric) = 0.3043080278892185 " " absolute error = 1.143529715363911200000000000000E-14 " " relative error = 3.757803312965011000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.833219381314336 " " Order of pole = 3.6034691736283477 " " x[1] = -1.5110000000000539 " " y[1] (analytic) = 0.30458822565478105 " " y[1] (numeric) = 0.3045882256547925 " " absolute error = 1.143529715363911200000000000000E-14 " " relative error = 3.7543464226354656000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8323555526708715 " " Order of pole = 3.6030955550521675 " " x[1] = -1.510000000000054 " " y[1] (analytic) = 0.30486875400138724 " " y[1] (numeric) = 0.30486875400139873 " " absolute error = 1.14908083048703700000000000000E-14 " " relative error = 3.769100032080717000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8314915633965554 " " Order of pole = 3.602716550710518 " " x[1] = -1.509000000000054 " " y[1] (analytic) = 0.30514961332965224 " " y[1] (numeric) = 0.3051496133296638 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 3.783822410952286700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8306274194452148 " " Order of pole = 3.6023322552020076 " " x[1] = -1.5080000000000542 " " y[1] (analytic) = 0.30543080404046774 " " y[1] (numeric) = 0.30543080404047934 " " absolute error = 1.160183060733288600000000000000E-14 " " relative error = 3.798513592556863600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8297631268531358 " " Order of pole = 3.6019427645598014 " " x[1] = -1.5070000000000543 " " y[1] (analytic) = 0.30571232653498925 " " y[1] (numeric) = 0.3057123265350008 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 3.776857671056366000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8288986917384058 " " Order of pole = 3.601548176242467 " " x[1] = -1.5060000000000544 " " y[1] (analytic) = 0.3059941812146347 " " y[1] (numeric) = 0.3059941812146463 " " absolute error = 1.160183060733288600000000000000E-14 " " relative error = 3.791520009066764000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8280341202996042 " " Order of pole = 3.601148589113425 " " x[1] = -1.5050000000000545 " " y[1] (analytic) = 0.3062763684810835 " " y[1] (numeric) = 0.30627636848109513 " " absolute error = 1.160183060733288600000000000000E-14 " " relative error = 3.788026697870896000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8271694188138274 " " Order of pole = 3.6007441034088217 " " x[1] = -1.5040000000000546 " " y[1] (analytic) = 0.30655888873627524 " " y[1] (numeric) = 0.3065588887362869 " " absolute error = 1.165734175856414400000000000000E-14 " " relative error = 3.802643533390629400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8263045936365083 " " Order of pole = 3.600334820736645 " " x[1] = -1.5030000000000547 " " y[1] (analytic) = 0.30684174238240813 " " y[1] (numeric) = 0.3068417423824198 " " absolute error = 1.165734175856414400000000000000E-14 " " relative error = 3.7991381707238286000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.825439651198922 " " Order of pole = 3.5999208440354877 " " x[1] = -1.5020000000000548 " " y[1] (analytic) = 0.307124929821938 " " y[1] (numeric) = 0.3071249298219497 " " absolute error = 1.171285290979540200000000000000E-14 " " relative error = 3.81370959257074000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8245745980078143 " " Order of pole = 3.599502277570352 " " x[1] = -1.501000000000055 " " y[1] (analytic) = 0.30740845145757695 " " y[1] (numeric) = 0.3074084514575887 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 3.828250005888572700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.823709440643551 " " Order of pole = 3.599079226902571 " " x[1] = -1.500000000000055 " " y[1] (analytic) = 0.30769230769229206 " " y[1] (numeric) = 0.3076923076923038 " " absolute error = 1.17683640610266600000000000000E-14 " " relative error = 3.824718319833859000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8228441857585256 " " Order of pole = 3.598651798864278 " " x[1] = -1.4990000000000552 " " y[1] (analytic) = 0.307976498929304 " " y[1] (numeric) = 0.30797649892931583 " " absolute error = 1.182387521225791700000000000000E-14 " " relative error = 3.839213463807862300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.821978840076402 " " Order of pole = 3.598220101547433 " " x[1] = -1.4980000000000553 " " y[1] (analytic) = 0.3082610255720859 " " y[1] (numeric) = 0.3082610255720977 " " absolute error = 1.182387521225791700000000000000E-14 " " relative error = 3.8356698484067490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8211134103901916 " " Order of pole = 3.5977842442724253 " " x[1] = -1.4970000000000554 " " y[1] (analytic) = 0.30854588802436184 " " y[1] (numeric) = 0.30854588802437366 " " absolute error = 1.182387521225791700000000000000E-14 " " relative error = 3.832128597780677400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8202479035607917 " " Order of pole = 3.5973443375648095 " " x[1] = -1.4960000000000555 " " y[1] (analytic) = 0.3088310866901055 " " y[1] (numeric) = 0.3088310866901174 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 3.846564311516174000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8193823265161242 " " Order of pole = 3.5969004931423996 " " x[1] = -1.4950000000000556 " " y[1] (analytic) = 0.3091166219735392 " " y[1] (numeric) = 0.30911662197355105 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 3.843011187054854000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.81851668624851 " " Order of pole = 3.596452823871651 " " x[1] = -1.4940000000000557 " " y[1] (analytic) = 0.30940249427913197 " " y[1] (numeric) = 0.30940249427914385 " " absolute error = 1.187938636348917500000000000000E-14 " " relative error = 3.839460438470807500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8176509898146969 " " Order of pole = 3.59600144377022 " " x[1] = -1.4930000000000558 " " y[1] (analytic) = 0.3096887040115986 " " y[1] (numeric) = 0.3096887040116105 " " absolute error = 1.193489751472043300000000000000E-14 " " relative error = 3.853836888501248000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8167852443326664 " " Order of pole = 3.5955464679533904 " " x[1] = -1.492000000000056 " " y[1] (analytic) = 0.3099752515758981 " " y[1] (numeric) = 0.3099752515759101 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 3.868182574251678400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8159194569817243 " " Order of pole = 3.5950880126377527 " " x[1] = -1.491000000000056 " " y[1] (analytic) = 0.31026213737723257 " " y[1] (numeric) = 0.31026213737724456 " " absolute error = 1.19904086659516900000000000000E-14 " " relative error = 3.864605835346624500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8150536349996398 " " Order of pole = 3.5946261950932943 " " x[1] = -1.4900000000000562 " " y[1] (analytic) = 0.3105493618210453 " " y[1] (numeric) = 0.31054936182105736 " " absolute error = 1.204591981718294800000000000000E-14 " " relative error = 3.878906640331283300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.814187785681736 " " Order of pole = 3.5941611336296226 " " x[1] = -1.4890000000000563 " " y[1] (analytic) = 0.31083692531301993 " " y[1] (numeric) = 0.310836925313032 " " absolute error = 1.204591981718294800000000000000E-14 " " relative error = 3.875318160817744500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8133219163794936 " " Order of pole = 3.593692947573601 " " x[1] = -1.4880000000000564 " " y[1] (analytic) = 0.31112482825907856 " " y[1] (numeric) = 0.31112482825909066 " " absolute error = 1.210143096841420600000000000000E-14 " " relative error = 3.889574173854473700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8124560344981002 " " Order of pole = 3.5932217572285587 " " x[1] = -1.4870000000000565 " " y[1] (analytic) = 0.3114130710653808 " " y[1] (numeric) = 0.3114130710653929 " " absolute error = 1.210143096841420600000000000000E-14 " " relative error = 3.885973998141371000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8115901474958453 " " Order of pole = 3.592747683865717 " " x[1] = -1.4860000000000566 " " y[1] (analytic) = 0.31170165413832185 " " y[1] (numeric) = 0.311701654138334 " " absolute error = 1.215694211964546400000000000000E-14 " " relative error = 3.9001853080480140000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.810724262881786 " " Order of pole = 3.592270849685427 " " x[1] = -1.4850000000000567 " " y[1] (analytic) = 0.3119905778845315 " " y[1] (numeric) = 0.3119905778845437 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 3.91436605351479000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8098583882145116 " " Order of pole = 3.591791377797449 " " x[1] = -1.4840000000000568 " " y[1] (analytic) = 0.3122798427108724 " " y[1] (numeric) = 0.3122798427108846 " " absolute error = 1.221245327087672200000000000000E-14 " " relative error = 3.910740176138667000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.808992531100124 " " Order of pole = 3.591309392187675 " " x[1] = -1.483000000000057 " " y[1] (analytic) = 0.3125694490244386 " " y[1] (numeric) = 0.3125694490244509 " " absolute error = 1.22679644221079800000000000000E-14 " " relative error = 3.924876362804348700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.808126699191002 " " Order of pole = 3.5908250176983856 " " x[1] = -1.482000000000057 " " y[1] (analytic) = 0.3128593972325544 " " y[1] (numeric) = 0.31285939723256667 " " absolute error = 1.22679644221079800000000000000E-14 " " relative error = 3.921238911353193000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8072609001835689 " " Order of pole = 3.5903383799911133 " " x[1] = -1.4810000000000572 " " y[1] (analytic) = 0.3131496877427723 " " y[1] (numeric) = 0.3131496877427846 " " absolute error = 1.232347557333923800000000000000E-14 " " relative error = 3.935330628035624300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8063951418172002 " " Order of pole = 3.589849605529416 " " x[1] = -1.4800000000000573 " " y[1] (analytic) = 0.313440320962872 " " y[1] (numeric) = 0.3134403209628844 " " absolute error = 1.237898672457049500000000000000E-14 " " relative error = 3.949391924607180700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8055294318719532 " " Order of pole = 3.589358821541005 " " x[1] = -1.4790000000000574 " " y[1] (analytic) = 0.3137312973008588 " " y[1] (numeric) = 0.31373129730087124 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.963422834374552600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8046637781674786 " " Order of pole = 3.5888661560004884 " " x[1] = -1.4780000000000575 " " y[1] (analytic) = 0.31402261716496194 " " y[1] (numeric) = 0.31402261716497437 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.959745953352678000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8037981885606298 " " Order of pole = 3.5883717375893376 " " x[1] = -1.4770000000000576 " " y[1] (analytic) = 0.31431428096363306 " " y[1] (numeric) = 0.31431428096364555 " " absolute error = 1.249000902703301100000000000000E-14 " " relative error = 3.973732592976943000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8029326709438556 " " Order of pole = 3.587875695669574 " " x[1] = -1.4760000000000577 " " y[1] (analytic) = 0.3146062891055449 " " y[1] (numeric) = 0.3146062891055574 " " absolute error = 1.249000902703301100000000000000E-14 " " relative error = 3.970044293311260600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8020672332442231 " " Order of pole = 3.5873781602682655 " " x[1] = -1.4750000000000578 " " y[1] (analytic) = 0.31489864199958945 " " y[1] (numeric) = 0.314898641999602 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 3.983986751610261000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8012018834204953 " " Order of pole = 3.586879262028237 " " x[1] = -1.474000000000058 " " y[1] (analytic) = 0.31519134005487676 " " y[1] (numeric) = 0.3151913400548893 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 3.980287077709690500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.8003366294619931 " " Order of pole = 3.5863791321896947 " " x[1] = -1.473000000000058 " " y[1] (analytic) = 0.315484383680733 " " y[1] (numeric) = 0.31548438368074555 " " absolute error = 1.254552017826427000000000000000E-14 " " relative error = 3.9765899129131566000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7994714793866962 " " Order of pole = 3.585877902558643 " " x[1] = -1.4720000000000582 " " y[1] (analytic) = 0.31577777328669904 " " y[1] (numeric) = 0.31577777328671164 " " absolute error = 1.260103132949552700000000000000E-14 " " relative error = 3.990474439774732000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7986064412399614 " " Order of pole = 3.585375705486072 " " x[1] = -1.4710000000000583 " " y[1] (analytic) = 0.316071509282529 " " y[1] (numeric) = 0.31607150928254163 " " absolute error = 1.265654248072678500000000000000E-14 " " relative error = 4.0043288018767287000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.79774152309138 " " Order of pole = 3.5848726738144805 " " x[1] = -1.4700000000000584 " " y[1] (analytic) = 0.3163655920781884 " " y[1] (numeric) = 0.3163655920782011 " " absolute error = 1.271205363195804200000000000000E-14 " " relative error = 4.018153032525836000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7968767330343411 " " Order of pole = 3.5843689408717623 " " x[1] = -1.4690000000000585 " " y[1] (analytic) = 0.31666002208385274 " " y[1] (numeric) = 0.31666002208386546 " " absolute error = 1.271205363195804200000000000000E-14 " " relative error = 4.014416959963403000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7960120791835932 " " Order of pole = 3.5838646404300007 " " x[1] = -1.4680000000000586 " " y[1] (analytic) = 0.3169547997099057 " " y[1] (numeric) = 0.31695479970991847 " " absolute error = 1.2767564783189300000000000000E-14 " " relative error = 4.028197331251923000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7951475696736592 " " Order of pole = 3.58335990667916 " " x[1] = -1.4670000000000587 " " y[1] (analytic) = 0.3172499253669377 " " y[1] (numeric) = 0.3172499253669505 " " absolute error = 1.282307593442055800000000000000E-14 " " relative error = 4.041947659905398000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7942832126564363 " " Order of pole = 3.58285487418652 " " x[1] = -1.4660000000000588 " " y[1] (analytic) = 0.3175453994657442 " " y[1] (numeric) = 0.31754539946575705 " " absolute error = 1.282307593442055800000000000000E-14 " " relative error = 4.038186651733831600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7934190163001407 " " Order of pole = 3.582349677879524 " " x[1] = -1.465000000000059 " " y[1] (analytic) = 0.317841222417324 " " y[1] (numeric) = 0.3178412224173368 " " absolute error = 1.282307593442055800000000000000E-14 " " relative error = 4.034428208177453500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7925549887870993 " " Order of pole = 3.581844453008472 " " x[1] = -1.464000000000059 " " y[1] (analytic) = 0.3181373946328774 " " y[1] (numeric) = 0.31813739463289026 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 4.048121127198324000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7916911383117686 " " Order of pole = 3.5813393351130998 " " x[1] = -1.4630000000000591 " " y[1] (analytic) = 0.318433916523805 " " y[1] (numeric) = 0.31843391652381786 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 4.044351564758353300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7908274730787888 " " Order of pole = 3.5808344599898483 " " x[1] = -1.4620000000000593 " " y[1] (analytic) = 0.3187307885017055 " " y[1] (numeric) = 0.3187307885017184 " " absolute error = 1.287858708565181600000000000000E-14 " " relative error = 4.0405845780358000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7899640013017817 " " Order of pole = 3.5803299636718897 " " x[1] = -1.4610000000000594 " " y[1] (analytic) = 0.31902801097837424 " " y[1] (numeric) = 0.31902801097838723 " " absolute error = 1.298960938811433200000000000000E-14 " " relative error = 4.071620340884377600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7891007312007035 " " Order of pole = 3.579825982384069 " " x[1] = -1.4600000000000595 " " y[1] (analytic) = 0.31932558436580166 " " y[1] (numeric) = 0.3193255843658147 " " absolute error = 1.30451205393455900000000000000E-14 " " relative error = 4.085209948101691000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7882376710003003 " " Order of pole = 3.5793226525169253 " " x[1] = -1.4590000000000596 " " y[1] (analytic) = 0.3196235090761712 " " y[1] (numeric) = 0.31962350907618425 " " absolute error = 1.30451205393455900000000000000E-14 " " relative error = 4.081402077416256000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7873748289284677 " " Order of pole = 3.578820110599036 " " x[1] = -1.4580000000000597 " " y[1] (analytic) = 0.3199217855218578 " " y[1] (numeric) = 0.3199217855218709 " " absolute error = 1.310063169057684700000000000000E-14 " " relative error = 4.094948291566653000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.786512213213844 " " Order of pole = 3.578318493255999 " " x[1] = -1.4570000000000598 " " y[1] (analytic) = 0.32022041411542607 " " y[1] (numeric) = 0.3202204141154392 " " absolute error = 1.315614284180810500000000000000E-14 " " relative error = 4.108464751739989000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7856498320844132 " " Order of pole = 3.5778179371868504 " " x[1] = -1.45600000000006 " " y[1] (analytic) = 0.32051939526962864 " " y[1] (numeric) = 0.3205193952696418 " " absolute error = 1.315614284180810500000000000000E-14 " " relative error = 4.104632367330171000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.784787693765066 " " Order of pole = 3.5773185791223803 " " x[1] = -1.45500000000006 " " y[1] (analytic) = 0.32081872939740425 " " y[1] (numeric) = 0.32081872939741746 " " absolute error = 1.321165399303936300000000000000E-14 " " relative error = 4.118105578765582400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7839258064766716 " " Order of pole = 3.576820555809796 " " x[1] = -1.4540000000000601 " " y[1] (analytic) = 0.32111841691187604 " " y[1] (numeric) = 0.3211184169118893 " " absolute error = 1.32671651442706200000000000000E-14 " " relative error = 4.131549125041777000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7830641784328716 " " Order of pole = 3.576324003957346 " " x[1] = -1.4530000000000602 " " y[1] (analytic) = 0.32141845822634985 " " y[1] (numeric) = 0.3214184582263631 " " absolute error = 1.32671651442706200000000000000E-14 " " relative error = 4.127692360134338000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7822028178392961 " " Order of pole = 3.5758290602215332 " " x[1] = -1.4520000000000604 " " y[1] (analytic) = 0.3217188537543122 " " y[1] (numeric) = 0.32171885375432546 " " absolute error = 1.32671651442706200000000000000E-14 " " relative error = 4.123838248659927300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7813417328908896 " " Order of pole = 3.5753358611609585 " " x[1] = -1.4510000000000605 " " y[1] (analytic) = 0.3220196039094286 " " y[1] (numeric) = 0.3220196039094419 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 4.137225229073017000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.780480931770774 " " Order of pole = 3.574844543217157 " " x[1] = -1.4500000000000606 " " y[1] (analytic) = 0.3223207091055418 " " y[1] (numeric) = 0.3223207091055551 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 4.133360320679692000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.779620422647778 " " Order of pole = 3.5743552426720058 " " x[1] = -1.4490000000000607 " " y[1] (analytic) = 0.32262216975666974 " " y[1] (numeric) = 0.32262216975668306 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 4.129498076821626000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7787602136728335 " " Order of pole = 3.5738680955852296 " " x[1] = -1.4480000000000608 " " y[1] (analytic) = 0.3229239862770039 " " y[1] (numeric) = 0.3229239862770173 " " absolute error = 1.337818744673313600000000000000E-14 " " relative error = 4.142828657905065000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.777900312988928 " " Order of pole = 3.5733832379692707 " " x[1] = -1.447000000000061 " " y[1] (analytic) = 0.3232261590809074 " " y[1] (numeric) = 0.3232261590809208 " " absolute error = 1.337818744673313600000000000000E-14 " " relative error = 4.138955672639235700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7770407287000494 " " Order of pole = 3.5729008052459754 " " x[1] = -1.446000000000061 " " y[1] (analytic) = 0.32352868858291295 " " y[1] (numeric) = 0.3235286885829263 " " absolute error = 1.337818744673313600000000000000E-14 " " relative error = 4.1350853630108960000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.776181468904117 " " Order of pole = 3.5724209328237286 " " x[1] = -1.4450000000000611 " " y[1] (analytic) = 0.3238315751977211 " " y[1] (numeric) = 0.32383157519773453 " " absolute error = 1.343369859796439400000000000000E-14 " " relative error = 4.1483597112981374000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.775322541670954 " " Order of pole = 3.571943755712148 " " x[1] = -1.4440000000000612 " " y[1] (analytic) = 0.32413481934019855 " " y[1] (numeric) = 0.32413481934021193 " " absolute error = 1.337818744673313600000000000000E-14 " " relative error = 4.127352770666684000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7744639550442574 " " Order of pole = 3.571469408556961 " " x[1] = -1.4430000000000613 " " y[1] (analytic) = 0.3244384214253756 " " y[1] (numeric) = 0.3244384214253891 " " absolute error = 1.348920974919565200000000000000E-14 " " relative error = 4.157710326025094000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7736057170399104 " " Order of pole = 3.5709980256107414 " " x[1] = -1.4420000000000615 " " y[1] (analytic) = 0.32474238186844506 " " y[1] (numeric) = 0.32474238186845855 " " absolute error = 1.348920974919565200000000000000E-14 " " relative error = 4.153818689012450700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7727478356458484 " " Order of pole = 3.5705297407308407 " " x[1] = -1.4410000000000616 " " y[1] (analytic) = 0.3250467010847596 " " y[1] (numeric) = 0.3250467010847731 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 4.167007650046869000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7718903188176387 " " Order of pole = 3.570064687302228 " " x[1] = -1.4400000000000617 " " y[1] (analytic) = 0.32535137948983023 " " y[1] (numeric) = 0.3253513794898438 " " absolute error = 1.35447209004269100000000000000E-14 " " relative error = 4.1631054159554554000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7710331744775887 " " Order of pole = 3.56960299822196 " " x[1] = -1.4390000000000618 " " y[1] (analytic) = 0.3256564174993241 " " y[1] (numeric) = 0.3256564174993377 " " absolute error = 1.360023205165816800000000000000E-14 " " relative error = 4.176251816590224000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7701764105137021 " " Order of pole = 3.56914480588107 " " x[1] = -1.438000000000062 " " y[1] (analytic) = 0.3259618155290627 " " y[1] (numeric) = 0.3259618155290764 " " absolute error = 1.365574320288942500000000000000E-14 " " relative error = 4.189368985052754000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7693200347762958 " " Order of pole = 3.568690242105383 " " x[1] = -1.437000000000062 " " y[1] (analytic) = 0.3262675739950198 " " y[1] (numeric) = 0.3262675739950335 " " absolute error = 1.365574320288942500000000000000E-14 " " relative error = 4.185442958881923000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7684640550777138 " " Order of pole = 3.568239438150446 " " x[1] = -1.4360000000000621 " " y[1] (analytic) = 0.32657369331331926 " " y[1] (numeric) = 0.32657369331333297 " " absolute error = 1.371125435412068300000000000000E-14 " " relative error = 4.198517711273797600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.767608479188442 " " Order of pole = 3.567792524633507 " " x[1] = -1.4350000000000622 " " y[1] (analytic) = 0.32688017390023344 " " y[1] (numeric) = 0.32688017390024715 " " absolute error = 1.371125435412068300000000000000E-14 " " relative error = 4.194581210148729500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7667533148369299 " " Order of pole = 3.567349631530213 " " x[1] = -1.4340000000000623 " " y[1] (analytic) = 0.3271870161721807 " " y[1] (numeric) = 0.3271870161721944 " " absolute error = 1.371125435412068300000000000000E-14 " " relative error = 4.190647451274532300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7658985697074252 " " Order of pole = 3.5669108881366007 " " x[1] = -1.4330000000000624 " " y[1] (analytic) = 0.32749422054572375 " " y[1] (numeric) = 0.32749422054573746 " " absolute error = 1.371125435412068300000000000000E-14 " " relative error = 4.186716434651206000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7650442514370284 " " Order of pole = 3.5664764230172423 " " x[1] = -1.4320000000000626 " " y[1] (analytic) = 0.3278017874375673 " " y[1] (numeric) = 0.32780178743758104 " " absolute error = 1.371125435412068300000000000000E-14 " " relative error = 4.182788160278750300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7641903676151087 " " Order of pole = 3.5660463639947473 " " x[1] = -1.4310000000000627 " " y[1] (analytic) = 0.32810971726455623 " " y[1] (numeric) = 0.32810971726457 " " absolute error = 1.376676550535194000000000000000E-14 " " relative error = 4.19578110033594000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7633369257806693 " " Order of pole = 3.565620838103328 " " x[1] = -1.4300000000000628 " " y[1] (analytic) = 0.32841801044367336 " " y[1] (numeric) = 0.3284180104436872 " " absolute error = 1.382227665658320000000000000000E-14 " " relative error = 4.208745019163267000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7624839334209437 " " Order of pole = 3.5651999715638176 " " x[1] = -1.4290000000000629 " " y[1] (analytic) = 0.32872666739203743 " " y[1] (numeric) = 0.32872666739205125 " " absolute error = 1.382227665658320000000000000000E-14 " " relative error = 4.2047932302671490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7616313979688811 " " Order of pole = 3.56478388973915 " " x[1] = -1.428000000000063 " " y[1] (analytic) = 0.3290356885269009 " " y[1] (numeric) = 0.3290356885269148 " " absolute error = 1.387778780781445700000000000000E-14 " " relative error = 4.217715066090727000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7607793268022502 " " Order of pole = 3.564372717118232 " " x[1] = -1.427000000000063 " " y[1] (analytic) = 0.32934507426564796 " " y[1] (numeric) = 0.3293450742656619 " " absolute error = 1.393329895904571500000000000000E-14 " " relative error = 4.230607969502283000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7599277272407423 " " Order of pole = 3.563966577264594 " " x[1] = -1.4260000000000632 " " y[1] (analytic) = 0.3296548250257924 " " y[1] (numeric) = 0.32965482502580634 " " absolute error = 1.393329895904571500000000000000E-14 " " relative error = 4.226632799309266000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7590766065446917 " " Order of pole = 3.5635655927934202 " " x[1] = -1.4250000000000633 " " y[1] (analytic) = 0.3299649412249752 " " y[1] (numeric) = 0.3299649412249892 " " absolute error = 1.398881011027697200000000000000E-14 " " relative error = 4.239483764046067000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7582259719134261 " " Order of pole = 3.563169885341953 " " x[1] = -1.4240000000000634 " " y[1] (analytic) = 0.33027542328096277 " " y[1] (numeric) = 0.3302754232809768 " " absolute error = 1.40443212615082300000000000000E-14 " " relative error = 4.252305885188688000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7573758304831693 " " Order of pole = 3.562779575532044 " " x[1] = -1.4230000000000635 " " y[1] (analytic) = 0.3305862716116445 " " y[1] (numeric) = 0.3305862716116586 " " absolute error = 1.409983241273948800000000000000E-14 " " relative error = 4.26509919604381950000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7565261893248176 " " Order of pole = 3.5623947829304363 " " x[1] = -1.4220000000000637 " " y[1] (analytic) = 0.33089748663503066 " " y[1] (numeric) = 0.3308974866350448 " " absolute error = 1.415534356397074600000000000000E-14 " " relative error = 4.277863729918153000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.755677055442872 " " Order of pole = 3.5620156260292255 " " x[1] = -1.4210000000000638 " " y[1] (analytic) = 0.33120906876925027 " " y[1] (numeric) = 0.3312090687692644 " " absolute error = 1.415534356397074600000000000000E-14 " " relative error = 4.273839365742917000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7548284357730777 " " Order of pole = 3.56164222220357 " " x[1] = -1.4200000000000639 " " y[1] (analytic) = 0.33152101843254866 " " y[1] (numeric) = 0.3315210184325629 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 4.286562216293790500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7539803371810252 " " Order of pole = 3.561274687686293 " " x[1] = -1.419000000000064 " " y[1] (analytic) = 0.3318333360432856 " " y[1] (numeric) = 0.3318333360432998 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 4.282527754640144700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7531327664597787 " " Order of pole = 3.5609131375253043 " " x[1] = -1.418000000000064 " " y[1] (analytic) = 0.3321460220199326 " " y[1] (numeric) = 0.33214602201994686 " " absolute error = 1.42663658664332620000000000000E-14 " " relative error = 4.295209010685401300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.752285730328665 " " Order of pole = 3.5605576855613066 " " x[1] = -1.4170000000000642 " " y[1] (analytic) = 0.33245907678107117 " " y[1] (numeric) = 0.3324590767810855 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 4.307861634078852000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7514392354313404 " " Order of pole = 3.5602084443927957 " " x[1] = -1.4160000000000643 " " y[1] (analytic) = 0.3327725007453902 " " y[1] (numeric) = 0.33277250074540454 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 4.303804246319748000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7505932883334934 " " Order of pole = 3.5598655253346507 " " x[1] = -1.4150000000000644 " " y[1] (analytic) = 0.3330862943316838 " " y[1] (numeric) = 0.3330862943316981 " " absolute error = 1.43218770176645200000000000000E-14 " " relative error = 4.299749722936047000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7497478955222359 " " Order of pole = 3.559529038406211 " " x[1] = -1.4140000000000645 " " y[1] (analytic) = 0.33340045795884876 " " y[1] (numeric) = 0.33340045795886314 " " absolute error = 1.437738816889577700000000000000E-14 " " relative error = 4.312348056423594400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7489030634028606 " " Order of pole = 3.5591990922731576 " " x[1] = -1.4130000000000646 " " y[1] (analytic) = 0.3337149920458828 " " y[1] (numeric) = 0.3337149920458972 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 4.324917868281638600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7480587982982012 " " Order of pole = 3.5588757942349503 " " x[1] = -1.4120000000000648 " " y[1] (analytic) = 0.33402989701188174 " " y[1] (numeric) = 0.33402989701189617 " " absolute error = 1.443289932012703500000000000000E-14 " " relative error = 4.320840574223703000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7472151064464625 " " Order of pole = 3.558559250185386 " " x[1] = -1.4110000000000649 " " y[1] (analytic) = 0.3343451732760373 " " y[1] (numeric) = 0.3343451732760518 " " absolute error = 1.448841047135829300000000000000E-14 " " relative error = 4.333369113540807000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7463719939996412 " " Order of pole = 3.558249564583484 " " x[1] = -1.410000000000065 " " y[1] (analytic) = 0.33466082125763486 " " y[1] (numeric) = 0.33466082125764934 " " absolute error = 1.448841047135829300000000000000E-14 " " relative error = 4.329281932946837000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7455294670215908 " " Order of pole = 3.5579468404179586 " " x[1] = -1.409000000000065 " " y[1] (analytic) = 0.3349768413760509 " " y[1] (numeric) = 0.3349768413760654 " " absolute error = 1.45439216225895500000000000000E-14 " " relative error = 4.341769288540842700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7446875314865593 " " Order of pole = 3.5576511791800485 " " x[1] = -1.4080000000000652 " " y[1] (analytic) = 0.3352932340507508 " " y[1] (numeric) = 0.3352932340507654 " " absolute error = 1.45994327738208090000000000000E-14 " " relative error = 4.354228266834338500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.743846193276942 " " Order of pole = 3.557362680822532 " " x[1] = -1.4070000000000653 " " y[1] (analytic) = 0.33560999970128635 " " y[1] (numeric) = 0.335609999701301 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 4.366658901134017000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7430054581826384 " " Order of pole = 3.5570814437466503 " " x[1] = -1.4060000000000654 " " y[1] (analytic) = 0.3359271387472935 " " y[1] (numeric) = 0.3359271387473082 " " absolute error = 1.465494392505206600000000000000E-14 " " relative error = 4.362536465407898500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.742165331898587 " " Order of pole = 3.5568075647571966 " " x[1] = -1.4050000000000655 " " y[1] (analytic) = 0.33624465160848954 " " y[1] (numeric) = 0.33624465160850425 " " absolute error = 1.471045507628332400000000000000E-14 " " relative error = 4.374926115824622000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7413258200226451 " " Order of pole = 3.5565411390235084 " " x[1] = -1.4040000000000656 " " y[1] (analytic) = 0.33656253870467107 " " y[1] (numeric) = 0.33656253870468583 " " absolute error = 1.476596622751458200000000000000E-14 " " relative error = 4.387287511065368600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.740486928055291 " " Order of pole = 3.556282260072379 " " x[1] = -1.4030000000000658 " " y[1] (analytic) = 0.3368808004557114 " " y[1] (numeric) = 0.3368808004557262 " " absolute error = 1.48214773787458400000000000000E-14 " " relative error = 4.39962068443683000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.739648661396759 " " Order of pole = 3.5560310197358547 " " x[1] = -1.4020000000000659 " " y[1] (analytic) = 0.33719943728155805 " " y[1] (numeric) = 0.3371994372815729 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 4.411925669245695000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7388110253458968 " " Order of pole = 3.5557875081292387 " " x[1] = -1.401000000000066 " " y[1] (analytic) = 0.3375184496022304 " " y[1] (numeric) = 0.3375184496022452 " " absolute error = 1.48214773787458400000000000000E-14 " " relative error = 4.391308799922829000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7379740250988178 " " Order of pole = 3.5555518136254065 " " x[1] = -1.400000000000066 " " y[1] (analytic) = 0.33783783783781673 " " y[1] (numeric) = 0.3378378378378316 " " absolute error = 1.487698852997709800000000000000E-14 " " relative error = 4.403588604873496000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.73713766574636 " " Order of pole = 3.5553240228081187 " " x[1] = -1.3990000000000662 " " y[1] (analytic) = 0.33815760240847254 " " y[1] (numeric) = 0.33815760240848747 " " absolute error = 1.493249968120835500000000000000E-14 " " relative error = 4.4158402989771794000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7363019522738516 " " Order of pole = 3.555104220465779 " " x[1] = -1.3980000000000663 " " y[1] (analytic) = 0.33847774373441725 " " y[1] (numeric) = 0.33847774373443223 " " absolute error = 1.498801083243961300000000000000E-14 " " relative error = 4.42806391554057000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7354668895583145 " " Order of pole = 3.554892489540098 " " x[1] = -1.3970000000000664 " " y[1] (analytic) = 0.338798262235932 " " y[1] (numeric) = 0.33879826223594706 " " absolute error = 1.50435219836708700000000000000E-14 " " relative error = 4.440259487870359400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7346324823671213 " " Order of pole = 3.554688911100339 " " x[1] = -1.3960000000000665 " " y[1] (analytic) = 0.3391191583333572 " " y[1] (numeric) = 0.33911915833337225 " " absolute error = 1.50435219836708700000000000000E-14 " " relative error = 4.43605783218031960000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.733798735357356 " " Order of pole = 3.554493564329711 " " x[1] = -1.3950000000000666 " " y[1] (analytic) = 0.3394404324470895 " " y[1] (numeric) = 0.3394404324471046 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 4.448212909125286000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7329656530731503 " " Order of pole = 3.554306526476278 " " x[1] = -1.3940000000000667 " " y[1] (analytic) = 0.33976208499757976 " " y[1] (numeric) = 0.3397620849975949 " " absolute error = 1.515454428613338700000000000000E-14 " " relative error = 4.460340030654491000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.732133239944391 " " Order of pole = 3.554127872827852 " " x[1] = -1.3930000000000669 " " y[1] (analytic) = 0.34008411640533015 " " y[1] (numeric) = 0.3400841164053453 " " absolute error = 1.515454428613338700000000000000E-14 " " relative error = 4.456116459161945000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7313015002858225 " " Order of pole = 3.553957676693692 " " x[1] = -1.392000000000067 " " y[1] (analytic) = 0.3404065270908915 " " y[1] (numeric) = 0.34040652709090663 " " absolute error = 1.515454428613338700000000000000E-14 " " relative error = 4.451895918578257500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7304704382949871 " " Order of pole = 3.5537960093658434 " " x[1] = -1.391000000000067 " " y[1] (analytic) = 0.3407293174748606 " " y[1] (numeric) = 0.34072931747487584 " " absolute error = 1.521005543736464500000000000000E-14 " " relative error = 4.4639702712071020000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7296400580509472 " " Order of pole = 3.553642940094104 " " x[1] = -1.3900000000000672 " " y[1] (analytic) = 0.34105248797787807 " " y[1] (numeric) = 0.34105248797789334 " " absolute error = 1.526556658859590200000000000000E-14 " " relative error = 4.47601677944249000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7288103635127638 " " Order of pole = 3.553498536056658 " " x[1] = -1.3890000000000673 " " y[1] (analytic) = 0.34137603902062497 " " y[1] (numeric) = 0.3413760390206403 " " absolute error = 1.53210777398271600000000000000E-14 " " relative error = 4.48803547659111000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7279813585176438 " " Order of pole = 3.5533628623248497 " " x[1] = -1.3880000000000674 " " y[1] (analytic) = 0.3416999710238206 " " y[1] (numeric) = 0.341699971023836 " " absolute error = 1.537658889105841800000000000000E-14 " " relative error = 4.5000263959596550000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7271530467805296 " " Order of pole = 3.553235981853163 " " x[1] = -1.3870000000000675 " " y[1] (analytic) = 0.34202428440821964 " " y[1] (numeric) = 0.34202428440823507 " " absolute error = 1.543210004228967600000000000000E-14 " " relative error = 4.5119895708548136000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7263254318913368 " " Order of pole = 3.553117955427968 " " x[1] = -1.3860000000000676 " " y[1] (analytic) = 0.3423489795946094 " " y[1] (numeric) = 0.3423489795946249 " " absolute error = 1.548761119352093400000000000000E-14 " " relative error = 4.5239250345832780000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7254985173155313 " " Order of pole = 3.553008841674732 " " x[1] = -1.3850000000000677 " " y[1] (analytic) = 0.3426740570038073 " " y[1] (numeric) = 0.34267405700382286 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 4.535832820451738400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7246723063896696 " " Order of pole = 3.5529086969768464 " " x[1] = -1.3840000000000678 " " y[1] (analytic) = 0.3429995170566579 " " y[1] (numeric) = 0.3429995170566734 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 4.531528929874476500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7238468023238056 " " Order of pole = 3.552817575514819 " " x[1] = -1.383000000000068 " " y[1] (analytic) = 0.3433253601740301 " " y[1] (numeric) = 0.34332536017404564 " " absolute error = 1.55431223447521920000000000000E-14 " " relative error = 4.527228147921683000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7230220081969576 " " Order of pole = 3.55273552918376 " " x[1] = -1.382000000000068 " " y[1] (analytic) = 0.34365158677681457 " " y[1] (numeric) = 0.34365158677683016 " " absolute error = 1.55986334959834500000000000000E-14 " " relative error = 4.539083797716908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7221979269570884 " " Order of pole = 3.552662607589859 " " x[1] = -1.3810000000000682 " " y[1] (analytic) = 0.3439781972859209 " " y[1] (numeric) = 0.3439781972859366 " " absolute error = 1.570965579844596500000000000000E-14 " " relative error = 4.567049866066893400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7213745614206823 " " Order of pole = 3.5525988580398646 " " x[1] = -1.3800000000000683 " " y[1] (analytic) = 0.3443051921222749 " " y[1] (numeric) = 0.34430519212229055 " " absolute error = 1.565414464721470700000000000000E-14 " " relative error = 4.5465897713373343000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7205519142695291 " " Order of pole = 3.5525443254814384 " " x[1] = -1.3790000000000684 " " y[1] (analytic) = 0.34463257170681516 " " y[1] (numeric) = 0.3446325717068309 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 4.5744854793031350000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.719729988050403 " " Order of pole = 3.5524990524942766 " " x[1] = -1.3780000000000685 " " y[1] (analytic) = 0.3449603364604913 " " y[1] (numeric) = 0.34496033646050706 " " absolute error = 1.576516694967722300000000000000E-14 " " relative error = 4.570139022775108000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7189087851758247 " " Order of pole = 3.5524630793001606 " " x[1] = -1.3770000000000686 " " y[1] (analytic) = 0.34528848680426 " " y[1] (numeric) = 0.3452884868042758 " " absolute error = 1.58206781009084800000000000000E-14 " " relative error = 4.581872464770897000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7180883079184408 " " Order of pole = 3.552436443661051 " " x[1] = -1.3760000000000687 " " y[1] (analytic) = 0.3456170231590829 " " y[1] (numeric) = 0.34561702315909876 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 4.593578495360207000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7172685584159897 " " Order of pole = 3.5524191809626977 " " x[1] = -1.3750000000000688 " " y[1] (analytic) = 0.3459459459459233 " " y[1] (numeric) = 0.3459459459459392 " " absolute error = 1.58761892521397390000000000000E-14 " " relative error = 4.589210955696943500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.716449538654771 " " Order of pole = 3.552411323921511 " " x[1] = -1.374000000000069 " " y[1] (analytic) = 0.3462752555857434 " " y[1] (numeric) = 0.3462752555857594 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 4.616908455546157000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7156312505002729 " " Order of pole = 3.5524129031178155 " " x[1] = -1.373000000000069 " " y[1] (analytic) = 0.3466049524995015 " " y[1] (numeric) = 0.3466049524995175 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 4.612516768532108000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7148136956593496 " " Order of pole = 3.552423946329359 " " x[1] = -1.3720000000000692 " " y[1] (analytic) = 0.3469350371081487 " " y[1] (numeric) = 0.34693503710816476 " " absolute error = 1.604272270583351200000000000000E-14 " " relative error = 4.6241287243734264000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.713996875702538 " " Order of pole = 3.5524444789189467 " " x[1] = -1.3710000000000693 " " y[1] (analytic) = 0.3472655098326264 " " y[1] (numeric) = 0.3472655098326424 " " absolute error = 1.604272270583351200000000000000E-14 " " relative error = 4.619728205535216000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7131807920547988 " " Order of pole = 3.5524745236684794 " " x[1] = -1.3700000000000694 " " y[1] (analytic) = 0.3475963710938628 " " y[1] (numeric) = 0.3475963710938789 " " absolute error = 1.60982338570647700000000000000E-14 " " relative error = 4.631300898339269500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.712365445995954 " " Order of pole = 3.5525141007829575 " " x[1] = -1.3690000000000695 " " y[1] (analytic) = 0.34792762131277055 " " y[1] (numeric) = 0.34792762131278665 " " absolute error = 1.60982338570647700000000000000E-14 " " relative error = 4.6268915920858195000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7115508386592748 " " Order of pole = 3.552563227862013 " " x[1] = -1.3680000000000696 " " y[1] (analytic) = 0.34825926091024306 " " y[1] (numeric) = 0.3482592609102592 " " absolute error = 1.615374500829602800000000000000E-14 " " relative error = 4.638425110670448000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7107369710312492 " " Order of pole = 3.5526219198921254 " " x[1] = -1.3670000000000697 " " y[1] (analytic) = 0.34859129030715197 " " y[1] (numeric) = 0.34859129030716823 " " absolute error = 1.626476731075854300000000000000E-14 " " relative error = 4.665855907193572000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.709923843949845 " " Order of pole = 3.5526901892123703 " " x[1] = -1.3660000000000698 " " y[1] (analytic) = 0.34892370992434407 " " y[1] (numeric) = 0.34892370992436034 " " absolute error = 1.626476731075854300000000000000E-14 " " relative error = 4.6614107462875415000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7091114581042597 " " Order of pole = 3.5527680455062196 " " x[1] = -1.36500000000007 " " y[1] (analytic) = 0.34925652018263786 " " y[1] (numeric) = 0.3492565201826542 " " absolute error = 1.6320278461989800000000000000E-14 " " relative error = 4.672862929933387000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7082998140331191 " " Order of pole = 3.5528554957661385 " " x[1] = -1.36400000000007 " " y[1] (analytic) = 0.34958972150282086 " " y[1] (numeric) = 0.34958972150283724 " " absolute error = 1.63757896132210600000000000000E-14 " " relative error = 4.684288068546351700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7074889121242411 " " Order of pole = 3.552952544285535 " " x[1] = -1.3630000000000702 " " y[1] (analytic) = 0.3499233143056465 " " y[1] (numeric) = 0.34992331430566287 " " absolute error = 1.63757896132210600000000000000E-14 " " relative error = 4.679822390718826300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7066787526138996 " " Order of pole = 3.553059192641985 " " x[1] = -1.3620000000000703 " " y[1] (analytic) = 0.3502572990118306 " " y[1] (numeric) = 0.35025729901184705 " " absolute error = 1.643130076445231700000000000000E-14 " " relative error = 4.691208665974815300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7058693355853167 " " Order of pole = 3.553175439666827 " " x[1] = -1.3610000000000704 " " y[1] (analytic) = 0.3505916760420488 " " y[1] (numeric) = 0.3505916760420653 " " absolute error = 1.648681191568357500000000000000E-14 " " relative error = 4.702567985015765300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.705060660968644 " " Order of pole = 3.553301281440909 " " x[1] = -1.3600000000000705 " " y[1] (analytic) = 0.35092644581693316 " " y[1] (numeric) = 0.35092644581694965 " " absolute error = 1.648681191568357500000000000000E-14 " " relative error = 4.698081923493507300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7042527285396019 " " Order of pole = 3.553436711266688 " " x[1] = -1.3590000000000706 " " y[1] (analytic) = 0.35126160875706874 " " y[1] (numeric) = 0.3512616087570853 " " absolute error = 1.654232306691483200000000000000E-14 " " relative error = 4.709402523506473500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.703445537919497 " " Order of pole = 3.553581719664624 " " x[1] = -1.3580000000000707 " " y[1] (analytic) = 0.3515971652829909 " " y[1] (numeric) = 0.3515971652830075 " " absolute error = 1.65978342181460900000000000000E-14 " " relative error = 4.7206962561222443000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7026390885734004 " " Order of pole = 3.5537362943370923 " " x[1] = -1.3570000000000708 " " y[1] (analytic) = 0.3519331158151818 " " y[1] (numeric) = 0.35193311581519837 " " absolute error = 1.65978342181460900000000000000E-14 " " relative error = 4.716189944132017600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7018333798107173 " " Order of pole = 3.55390042017439 " " x[1] = -1.356000000000071 " " y[1] (analytic) = 0.3522694607740671 " " y[1] (numeric) = 0.3522694607740838 " " absolute error = 1.665334536937734800000000000000E-14 " " relative error = 4.727445102048798400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.701028410783599 " " Order of pole = 3.554074079222808 " " x[1] = -1.355000000000071 " " y[1] (analytic) = 0.35260620058001324 " " y[1] (numeric) = 0.35260620058002995 " " absolute error = 1.670885652060860600000000000000E-14 " " relative error = 4.738673481386224000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.7002241804870073 " " Order of pole = 3.5542572506816796 " " x[1] = -1.3540000000000711 " " y[1] (analytic) = 0.35294333565332353 " " y[1] (numeric) = 0.35294333565334024 " " absolute error = 1.670885652060860600000000000000E-14 " " relative error = 4.734147052154790700000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6994206877576932 " " Order of pole = 3.5544499108813348 " " x[1] = -1.3530000000000713 " " y[1] (analytic) = 0.35328086641423523 " " y[1] (numeric) = 0.35328086641425194 " " absolute error = 1.670885652060860600000000000000E-14 " " relative error = 4.729623964694662000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6986179312743257 " " Order of pole = 3.5546520332813394 " " x[1] = -1.3520000000000714 " " y[1] (analytic) = 0.3536187932829162 " " y[1] (numeric) = 0.35361879328293294 " " absolute error = 1.676436767183986400000000000000E-14 " " relative error = 4.740802239666987400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.697815909556136 " " Order of pole = 3.5548635884424407 " " x[1] = -1.3510000000000715 " " y[1] (analytic) = 0.3539571166794616 " " y[1] (numeric) = 0.35395711667947843 " " absolute error = 1.681987882307112200000000000000E-14 " " relative error = 4.75195384708226030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6970146209632309 " " Order of pole = 3.555084544028123 " " x[1] = -1.3500000000000716 " " y[1] (analytic) = 0.35429583702389067 " " y[1] (numeric) = 0.35429583702390754 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.763078820247173000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6962140636957164 " " Order of pole = 3.5553148647849326 " " x[1] = -1.3490000000000717 " " y[1] (analytic) = 0.3546349547361432 " " y[1] (numeric) = 0.3546349547361601 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.758524152493109000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6954142357939461 " " Order of pole = 3.5555545125428267 " " x[1] = -1.3480000000000718 " " y[1] (analytic) = 0.3549744702360762 " " y[1] (numeric) = 0.35497447023609313 " " absolute error = 1.693090112553363700000000000000E-14 " " relative error = 4.7696109284348590000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.694615135137333 " " Order of pole = 3.555803446190126 " " x[1] = -1.347000000000072 " " y[1] (analytic) = 0.3553143839434606 " " y[1] (numeric) = 0.3553143839434776 " " absolute error = 1.698641227676489500000000000000E-14 " " relative error = 4.780671158944091000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.693816759444854 " " Order of pole = 3.5560616216782 " " x[1] = -1.346000000000072 " " y[1] (analytic) = 0.3556546962779779 " " y[1] (numeric) = 0.3556546962779949 " " absolute error = 1.698641227676489500000000000000E-14 " " relative error = 4.776096718117958000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6930191062744235 " " Order of pole = 3.5563289920064314 " " x[1] = -1.3450000000000721 " " y[1] (analytic) = 0.35599540765921667 " " y[1] (numeric) = 0.3559954076592336 " " absolute error = 1.693090112553363700000000000000E-14 " " relative error = 4.75593245341554060000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.692222173022786 " " Order of pole = 3.556605507216144 " " x[1] = -1.3440000000000722 " " y[1] (analytic) = 0.35633651850666875 " " y[1] (numeric) = 0.3563365185066858 " " absolute error = 1.704192342799615300000000000000E-14 " " relative error = 4.782536322523232000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6914259569254706 " " Order of pole = 3.5568911143856745 " " x[1] = -1.3430000000000724 " " y[1] (analytic) = 0.35667802923972675 " " y[1] (numeric) = 0.35667802923974384 " " absolute error = 1.70974345792274100000000000000E-14 " " relative error = 4.793520536061967600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6906304550566205 " " Order of pole = 3.557185757623337 " " x[1] = -1.3420000000000725 " " y[1] (analytic) = 0.3570199402776796 " " y[1] (numeric) = 0.35701994027769673 " " absolute error = 1.71529457304586690000000000000E-14 " " relative error = 4.804478348497177600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6898356643288217 " " Order of pole = 3.5574893780602466 " " x[1] = -1.3410000000000726 " " y[1] (analytic) = 0.3573622520397095 " " y[1] (numeric) = 0.3573622520397267 " " absolute error = 1.720845688168992600000000000000E-14 " " relative error = 4.815409793135551600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6890415814933917 " " Order of pole = 3.5578019138513532 " " x[1] = -1.3400000000000727 " " y[1] (analytic) = 0.3577049649448885 " " y[1] (numeric) = 0.3577049649449057 " " absolute error = 1.720845688168992600000000000000E-14 " " relative error = 4.810796205845571000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6882482031400246 " " Order of pole = 3.5581233001651285 " " x[1] = -1.3390000000000728 " " y[1] (analytic) = 0.3580480794121746 " " y[1] (numeric) = 0.3580480794121919 " " absolute error = 1.731947918415244200000000000000E-14 " " relative error = 4.83719371224856030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6874555256973174 " " Order of pole = 3.5584534691887875 " " x[1] = -1.338000000000073 " " y[1] (analytic) = 0.3583915958604087 " " y[1] (numeric) = 0.35839159586042596 " " absolute error = 1.726396803292118400000000000000E-14 " " relative error = 4.81706832200535000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6866635454327155 " " Order of pole = 3.5587923501233263 " " x[1] = -1.337000000000073 " " y[1] (analytic) = 0.35873551470831033 " " y[1] (numeric) = 0.3587355147083277 " " absolute error = 1.7374990335383700000000000000E-14 " " relative error = 4.84339844342186000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.685872258452472 " " Order of pole = 3.5591398691787717 " " x[1] = -1.3360000000000731 " " y[1] (analytic) = 0.359079836374475 " " y[1] (numeric) = 0.35907983637449237 " " absolute error = 1.7374990335383700000000000000E-14 " " relative error = 4.838754108505211600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6850816607021777 " " Order of pole = 3.55949594957956 " " x[1] = -1.3350000000000732 " " y[1] (analytic) = 0.3594245612773696 " " y[1] (numeric) = 0.3594245612773871 " " absolute error = 1.748601263784621600000000000000E-14 " " relative error = 4.865002151133510600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6842917479671111 " " Order of pole = 3.559860511566775 " " x[1] = -1.3340000000000733 " " y[1] (analytic) = 0.35976968983532964 " " y[1] (numeric) = 0.3597696898353472 " " absolute error = 1.754152378907747300000000000000E-14 " " relative error = 4.8757647697076467000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6835025158724037 " " Order of pole = 3.560233472397119 " " x[1] = -1.3330000000000735 " " y[1] (analytic) = 0.360115222466555 " " y[1] (numeric) = 0.36011522246657257 " " absolute error = 1.75970349403087300000000000000E-14 " " relative error = 4.886501275836242500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6827139598833407 " " Order of pole = 3.5606147463443882 " " x[1] = -1.3320000000000736 " " y[1] (analytic) = 0.36046115958910646 " " y[1] (numeric) = 0.36046115958912406 " " absolute error = 1.75970349403087300000000000000E-14 " " relative error = 4.88181166602465000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6819260753061953 " " Order of pole = 3.561004244710272 " " x[1] = -1.3310000000000737 " " y[1] (analytic) = 0.36080750162090214 " " y[1] (numeric) = 0.3608075016209198 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 4.892510829801813300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.681138857288273 " " Order of pole = 3.5614018758214065 " " x[1] = -1.3300000000000738 " " y[1] (analytic) = 0.36115424897971365 " " y[1] (numeric) = 0.3611542489797313 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 4.8878134872868534000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6803523008186874 " " Order of pole = 3.5618075450392475 " " x[1] = -1.329000000000074 " " y[1] (analytic) = 0.36150140208316234 " " y[1] (numeric) = 0.36150140208318 " " absolute error = 1.76525460915399900000000000000E-14 " " relative error = 4.8831196752811135000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6795664007292634 " " Order of pole = 3.5622211547723026 " " x[1] = -1.328000000000074 " " y[1] (analytic) = 0.36184896134871564 " " y[1] (numeric) = 0.36184896134873334 " " absolute error = 1.770805724277124700000000000000E-14 " " relative error = 4.893770366721021400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6787811516946138 " " Order of pole = 3.56264260447384 " " x[1] = -1.3270000000000741 " " y[1] (analytic) = 0.3621969271936833 " " y[1] (numeric) = 0.36219692719370106 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.904395112248843300000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6779965482333463 " " Order of pole = 3.56307179065956 " " x[1] = -1.3260000000000742 " " y[1] (analytic) = 0.36254530003521357 " " y[1] (numeric) = 0.36254530003523133 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.899682437553915000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.677212584708687 " " Order of pole = 3.5635086069150397 " " x[1] = -1.3250000000000743 " " y[1] (analytic) = 0.36289408029028936 " " y[1] (numeric) = 0.3628940802903072 " " absolute error = 1.781907954523376200000000000000E-14 " " relative error = 4.910270107183829500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6764292553292297 " " Order of pole = 3.563952943905477 " " x[1] = -1.3240000000000745 " " y[1] (analytic) = 0.36324326837572446 " " y[1] (numeric) = 0.36324326837574233 " " absolute error = 1.78745906964650200000000000000E-14 " " relative error = 4.920831919719500500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6756465541502483 " " Order of pole = 3.5644046893954098 " " x[1] = -1.3230000000000746 " " y[1] (analytic) = 0.36359286470815977 " " y[1] (numeric) = 0.36359286470817764 " " absolute error = 1.78745906964650200000000000000E-14 " " relative error = 4.916100515562147000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6748644750740298 " " Order of pole = 3.5648637282512396 " " x[1] = -1.3220000000000747 " " y[1] (analytic) = 0.36394286970405915 " " y[1] (numeric) = 0.36394286970407713 " " absolute error = 1.798561299892753600000000000000E-14 " " relative error = 4.941878106734876000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6740830118513164 " " Order of pole = 3.565329942463375 " " x[1] = -1.3210000000000748 " " y[1] (analytic) = 0.364293283779706 " " y[1] (numeric) = 0.36429328377972403 " " absolute error = 1.804112415015879400000000000000E-14 " " relative error = 4.952362547827962000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6733021580825318 " " Order of pole = 3.565803211164667 " " x[1] = -1.320000000000075 " " y[1] (analytic) = 0.3646441073511989 " " y[1] (numeric) = 0.36464410735121694 " " absolute error = 1.804112415015879400000000000000E-14 " " relative error = 4.947597886939904500000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.672521907218709 " " Order of pole = 3.566283410643642 " " x[1] = -1.319000000000075 " " y[1] (analytic) = 0.3649953408344479 " " y[1] (numeric) = 0.36499534083446594 " " absolute error = 1.804112415015879400000000000000E-14 " " relative error = 4.942836834276677600000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6717422525623409 " " Order of pole = 3.56677041435648 " " x[1] = -1.3180000000000751 " " y[1] (analytic) = 0.3653469846451705 " " y[1] (numeric) = 0.3653469846451886 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 4.953273480268552400000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6709631872696236 " " Order of pole = 3.567264092963544 " " x[1] = -1.3170000000000752 " " y[1] (analytic) = 0.36569903919888785 " " y[1] (numeric) = 0.36569903919890595 " " absolute error = 1.809663530139005200000000000000E-14 " " relative error = 4.948505016866636000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6701847043508866 " " Order of pole = 3.5677643143341875 " " x[1] = -1.3160000000000753 " " y[1] (analytic) = 0.36605150491092037 " " y[1] (numeric) = 0.3660515049109386 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 4.974069867103388000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6694067966724981 " " Order of pole = 3.5682709435775735 " " x[1] = -1.3150000000000754 " " y[1] (analytic) = 0.36640438219638444 " " y[1] (numeric) = 0.36640438219640264 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 4.9692794323878137000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6686294569579907 " " Order of pole = 3.5687838430597907 " " x[1] = -1.3140000000000756 " " y[1] (analytic) = 0.3667576714701874 " " y[1] (numeric) = 0.36675767147020566 " " absolute error = 1.826316875508382500000000000000E-14 " " relative error = 4.979628287494017000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6678526777903049 " " Order of pole = 3.569302872440886 " " x[1] = -1.3130000000000757 " " y[1] (analytic) = 0.3671113731470245 " " y[1] (numeric) = 0.36711137314704273 " " absolute error = 1.820765760385256700000000000000E-14 " " relative error = 4.9597094875512280000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6670764516123904 " " Order of pole = 3.5698278886830046 " " x[1] = -1.3120000000000758 " " y[1] (analytic) = 0.3674654876413738 " " y[1] (numeric) = 0.3674654876413922 " " absolute error = 1.83741910575463400000000000000E-14 " " relative error = 5.0002494589311040000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6663007707296487 " " Order of pole = 3.570358746091056 " " x[1] = -1.3110000000000759 " " y[1] (analytic) = 0.3678200153674933 " " y[1] (numeric) = 0.3678200153675117 " " absolute error = 1.83741910575463400000000000000E-14 " " relative error = 4.99542990861671030000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6655256273115948 " " Order of pole = 3.570895296339856 " " x[1] = -1.310000000000076 " " y[1] (analytic) = 0.36817495673941564 " " y[1] (numeric) = 0.368174956739434 " " absolute error = 1.83741910575463400000000000000E-14 " " relative error = 4.990614033140527000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.664751013393277 " " Order of pole = 3.5714373884969177 " " x[1] = -1.309000000000076 " " y[1] (analytic) = 0.36853031217094445 " " y[1] (numeric) = 0.36853031217096294 " " absolute error = 1.848521336000885600000000000000E-14 " " relative error = 5.0159275233333880000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6639769208774138 " " Order of pole = 3.571984869058223 " " x[1] = -1.3080000000000762 " " y[1] (analytic) = 0.3688860820756506 " " y[1] (numeric) = 0.3688860820756691 " " absolute error = 1.848521336000885600000000000000E-14 " " relative error = 5.011089942997073000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6632033415366179 " " Order of pole = 3.572537581985493 " " x[1] = -1.3070000000000763 " " y[1] (analytic) = 0.3692422668668673 " " y[1] (numeric) = 0.36924226686688577 " " absolute error = 1.848521336000885600000000000000E-14 " " relative error = 5.006256059703431000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6624302670148787 " " Order of pole = 3.5730953687305806 " " x[1] = -1.3060000000000764 " " y[1] (analytic) = 0.3695988669576862 " " y[1] (numeric) = 0.3695988669577048 " " absolute error = 1.859623566247137200000000000000E-14 " " relative error = 5.031464467287011000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6616576888299575 " " Order of pole = 3.573658068276064 " " x[1] = -1.3050000000000765 " " y[1] (analytic) = 0.36995588276095337 " " y[1] (numeric) = 0.369955882760972 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 5.041613793111228000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6608855983756776 " " Order of pole = 3.574225517174188 " " x[1] = -1.3040000000000767 " " y[1] (analytic) = 0.37031331468926487 " " y[1] (numeric) = 0.3703133146892836 " " absolute error = 1.870725796493388800000000000000E-14 " " relative error = 5.0517378724638650000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6601139869238495 " " Order of pole = 3.574797549579376 " " x[1] = -1.3030000000000768 " " y[1] (analytic) = 0.37067116315496235 " " y[1] (numeric) = 0.37067116315498105 " " absolute error = 1.870725796493388800000000000000E-14 " " relative error = 5.046860890312407000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6593428456268338 " " Order of pole = 3.5753739972922496 " " x[1] = -1.3020000000000769 " " y[1] (analytic) = 0.3710294285701289 " " y[1] (numeric) = 0.37102942857014765 " " absolute error = 1.876276911616514600000000000000E-14 " " relative error = 5.056949037296853000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6585721655196384 " " Order of pole = 3.5759546897955232 " " x[1] = -1.301000000000077 " " y[1] (analytic) = 0.3713881113465848 " " y[1] (numeric) = 0.3713881113466036 " " absolute error = 1.881828026739640300000000000000E-14 " " relative error = 5.06701202662756000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.657801937522667 " " Order of pole = 3.5765394543015745 " " x[1] = -1.300000000000077 " " y[1] (analytic) = 0.3717472118958831 " " y[1] (numeric) = 0.37174721189590193 " " absolute error = 1.881828026739640300000000000000E-14 " " relative error = 5.062117391930009000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6570321524439957 " " Order of pole = 3.577128115791787 " " x[1] = -1.2990000000000772 " " y[1] (analytic) = 0.37210673062930516 " " y[1] (numeric) = 0.3721067306293241 " " absolute error = 1.89293025698589200000000000000E-14 " " relative error = 5.0870626655545230000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6562628009822942 " " Order of pole = 3.577720497067432 " " x[1] = -1.2980000000000773 " " y[1] (analytic) = 0.37246666795785666 " " y[1] (numeric) = 0.37246666795787553 " " absolute error = 1.88737914186276600000000000000E-14 " " relative error = 5.0672430695900990000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6554938737289318 " " Order of pole = 3.5783164187864287 " " x[1] = -1.2970000000000774 " " y[1] (analytic) = 0.3728270242922625 " " y[1] (numeric) = 0.3728270242922815 " " absolute error = 1.898481372109017700000000000000E-14 " " relative error = 5.0921238226035370000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.654725361171207 " " Order of pole = 3.578915699519886 " " x[1] = -1.2960000000000775 " " y[1] (analytic) = 0.37318780004296326 " " y[1] (numeric) = 0.37318780004298224 " " absolute error = 1.898481372109017700000000000000E-14 " " relative error = 5.087201060405660000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6539572536949863 " " Order of pole = 3.579518155798599 " " x[1] = -1.2950000000000776 " " y[1] (analytic) = 0.37354899562010996 " " y[1] (numeric) = 0.373548995620129 " " absolute error = 1.904032487232143500000000000000E-14 " " relative error = 5.097142569133012000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6531895415873963 " " Order of pole = 3.5801236021605334 " " x[1] = -1.2940000000000778 " " y[1] (analytic) = 0.37391061143356014 " " y[1] (numeric) = 0.3739106114335792 " " absolute error = 1.904032487232143500000000000000E-14 " " relative error = 5.092213029023568000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6524222150401895 " " Order of pole = 3.5807318512103485 " " x[1] = -1.2930000000000779 " " y[1] (analytic) = 0.3742726478928729 " " y[1] (numeric) = 0.37427264789289205 " " absolute error = 1.91513471747839500000000000000E-14 " " relative error = 5.1169507797603190000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6516552641522726 " " Order of pole = 3.581342713664455 " " x[1] = -1.292000000000078 " " y[1] (analytic) = 0.37463510540730494 " " y[1] (numeric) = 0.37463510540732414 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 5.126817548273653000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6508886789330435 " " Order of pole = 3.5819559984103364 " " x[1] = -1.291000000000078 " " y[1] (analytic) = 0.37499798438580556 " " y[1] (numeric) = 0.37499798438582477 " " absolute error = 1.920685832601520800000000000000E-14 " " relative error = 5.121856416768044000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6501224493056157 " " Order of pole = 3.5825715125642184 " " x[1] = -1.2900000000000782 " " y[1] (analytic) = 0.3753612852370122 " " y[1] (numeric) = 0.37536128523703144 " " absolute error = 1.926236947724646600000000000000E-14 " " relative error = 5.1316878524336210000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.649356565109772 " " Order of pole = 3.583189061524081 " " x[1] = -1.2890000000000783 " " y[1] (analytic) = 0.37572500836924605 " " y[1] (numeric) = 0.3757250083692653 " " absolute error = 1.926236947724646600000000000000E-14 " " relative error = 5.126720087345438000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6485910161055284 " " Order of pole = 3.583808449033558 " " x[1] = -1.2880000000000784 " " y[1] (analytic) = 0.3760891541905072 " " y[1] (numeric) = 0.3760891541905265 " " absolute error = 1.931788062847772400000000000000E-14 " " relative error = 5.136516278981097000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6478257919762842 " " Order of pole = 3.584429477238924 " " x[1] = -1.2870000000000785 " " y[1] (analytic) = 0.3764537231084702 " " y[1] (numeric) = 0.37645372310848957 " " absolute error = 1.937339177970898200000000000000E-14 " " relative error = 5.146287734847769000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6470608823324338 " " Order of pole = 3.5850519467541346 " " x[1] = -1.2860000000000786 " " y[1] (analytic) = 0.37681871553047924 " " y[1] (numeric) = 0.37681871553049867 " " absolute error = 1.94289029309402400000000000000E-14 " " relative error = 5.156034488252141000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.646296276714733 " " Order of pole = 3.5856756567219925 " " x[1] = -1.2850000000000787 " " y[1] (analytic) = 0.37718413186354366 " " y[1] (numeric) = 0.37718413186356314 " " absolute error = 1.948441408217149700000000000000E-14 " " relative error = 5.165756572500908000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6455319645977349 " " Order of pole = 3.586300404876628 " " x[1] = -1.2840000000000789 " " y[1] (analytic) = 0.37754997251433314 " " y[1] (numeric) = 0.3775499725143526 " " absolute error = 1.948441408217149700000000000000E-14 " " relative error = 5.160751026523198000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6447679353938733 " " Order of pole = 3.5869259876174624 " " x[1] = -1.283000000000079 " " y[1] (analytic) = 0.37791623788917283 " " y[1] (numeric) = 0.3779162378891924 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 5.170438122093343000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.644004178456567 " " Order of pole = 3.587552200066483 " " x[1] = -1.282000000000079 " " y[1] (analytic) = 0.37828292839403893 " " y[1] (numeric) = 0.37828292839405847 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 5.1654261312709750000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6432406830843496 " " Order of pole = 3.588178836143314 " " x[1] = -1.2810000000000792 " " y[1] (analytic) = 0.37865004443455363 " " y[1] (numeric) = 0.37865004443457323 " " absolute error = 1.959543638463401300000000000000E-14 " " relative error = 5.17507832698034000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6424774385246121 " " Order of pole = 3.5888056886341317 " " x[1] = -1.2800000000000793 " " y[1] (analytic) = 0.3790175864159805 " " y[1] (numeric) = 0.3790175864160002 " " absolute error = 1.97064586870965290000000000000E-14 " " relative error = 5.199352060003949000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6417144339774623 " " Order of pole = 3.5894325492624617 " " x[1] = -1.2790000000000794 " " y[1] (analytic) = 0.3793855547432197 " " y[1] (numeric) = 0.3793855547432394 " " absolute error = 1.96509475358652700000000000000E-14 " " relative error = 5.179677320388664000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.640951658599579 " " Order of pole = 3.590059208760394 " " x[1] = -1.2780000000000795 " " y[1] (analytic) = 0.3797539498208028 " " y[1] (numeric) = 0.3797539498208225 " " absolute error = 1.97064586870965290000000000000E-14 " " relative error = 5.18927023573963000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6401891015084884 " " Order of pole = 3.5906854569471705 " " x[1] = -1.2770000000000796 " " y[1] (analytic) = 0.3801227720528883 " " y[1] (numeric) = 0.380122772052908 " " absolute error = 1.97064586870965290000000000000E-14 " " relative error = 5.184235235545077000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6394267517861207 " " Order of pole = 3.5913110827957304 " " x[1] = -1.2760000000000797 " " y[1] (analytic) = 0.3804920218432566 " " y[1] (numeric) = 0.3804920218432763 " " absolute error = 1.97064586870965290000000000000E-14 " " relative error = 5.179204176642261000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6386645984835193 " " Order of pole = 3.5919358745190486 " " x[1] = -1.2750000000000798 " " y[1] (analytic) = 0.3808616995953049 " " y[1] (numeric) = 0.38086169959532473 " " absolute error = 1.981748098955904400000000000000E-14 " " relative error = 5.2033273523215000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6379026306246778 " " Order of pole = 3.592559619642252 " " x[1] = -1.27400000000008 " " y[1] (analytic) = 0.3812318057120428 " " y[1] (numeric) = 0.38123180571206267 " " absolute error = 1.987299214079030200000000000000E-14 " " relative error = 5.212836873269971000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6371408372107112 " " Order of pole = 3.5931821050800146 " " x[1] = -1.27300000000008 " " y[1] (analytic) = 0.3816023405960866 " " y[1] (numeric) = 0.38160234059610654 " " absolute error = 1.99285032920215600000000000000E-14 " " relative error = 5.222322080334203000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6363792072242291 " " Order of pole = 3.593803117218343 " " x[1] = -1.2720000000000802 " " y[1] (analytic) = 0.38197330464965484 " " y[1] (numeric) = 0.3819733046496749 " " absolute error = 2.003952559448407600000000000000E-14 " " relative error = 5.246315737395390000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.635617729633965 " " Order of pole = 3.594422442000411 " " x[1] = -1.2710000000000803 " " y[1] (analytic) = 0.38234469827456324 " " y[1] (numeric) = 0.3823446982745833 " " absolute error = 2.003952559448407600000000000000E-14 " " relative error = 5.2412196860367110000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.634856393398594 " " Order of pole = 3.595039864999208 " " x[1] = -1.2700000000000804 " " y[1] (analytic) = 0.38271652187221933 " " y[1] (numeric) = 0.38271652187223937 " " absolute error = 2.003952559448407600000000000000E-14 " " relative error = 5.236127642583153000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.634095187471546 " " Order of pole = 3.5956551715071328 " " x[1] = -1.2690000000000805 " " y[1] (analytic) = 0.38308877584361767 " " y[1] (numeric) = 0.38308877584363776 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 5.245530021458633000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6333341008055122 " " Order of pole = 3.596268146620801 " " x[1] = -1.2680000000000806 " " y[1] (analytic) = 0.3834614605893349 " " y[1] (numeric) = 0.383461460589355 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 5.2404319106362440000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6325731223566786 " " Order of pole = 3.5968785753212416 " " x[1] = -1.2670000000000807 " " y[1] (analytic) = 0.38383457650952413 " " y[1] (numeric) = 0.3838345765095442 " " absolute error = 2.009503674571533300000000000000E-14 " " relative error = 5.235337818821206000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6318122410896667 " " Order of pole = 3.597486242566525 " " x[1] = -1.2660000000000808 " " y[1] (analytic) = 0.38420812400391025 " " y[1] (numeric) = 0.3842081240039304 " " absolute error = 2.01505478969465900000000000000E-14 " " relative error = 5.244695944206925000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6310514459818617 " " Order of pole = 3.598090933374241 " " x[1] = -1.265000000000081 " " y[1] (analytic) = 0.3845821034717847 " " y[1] (numeric) = 0.3845821034718049 " " absolute error = 2.02060590481778500000000000000E-14 " " relative error = 5.2540299888552390000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.630290726028122 " " Order of pole = 3.598692432910596 " " x[1] = -1.264000000000081 " " y[1] (analytic) = 0.3849565153119999 " " y[1] (numeric) = 0.38495651531202024 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 5.277760095623725000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.629530070245609 " " Order of pole = 3.599290526581683 " " x[1] = -1.2630000000000812 " " y[1] (analytic) = 0.38533135992296497 " " y[1] (numeric) = 0.38533135992298523 " " absolute error = 2.026157019940910700000000000000E-14 " " relative error = 5.2582198872834480000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6287694676783862 " " Order of pole = 3.599885000121432 " " x[1] = -1.2620000000000813 " " y[1] (analytic) = 0.385706637702639 " " y[1] (numeric) = 0.38570663770265934 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 5.267495906125381000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6280089074021815 " " Order of pole = 3.6004756396821875 " " x[1] = -1.2610000000000814 " " y[1] (analytic) = 0.3860823490485274 " " y[1] (numeric) = 0.3860823490485477 " " absolute error = 2.031708135064036500000000000000E-14 " " relative error = 5.262369906500614000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6272483785293117 " " Order of pole = 3.6010622319285055 " " x[1] = -1.2600000000000815 " " y[1] (analytic) = 0.3864584943576753 " " y[1] (numeric) = 0.3864584943576957 " " absolute error = 2.037259250187162300000000000000E-14 " " relative error = 5.271612035784720000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6264878702132215 " " Order of pole = 3.6016445641244488 " " x[1] = -1.2590000000000816 " " y[1] (analytic) = 0.3868350740266632 " " y[1] (numeric) = 0.3868350740266836 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 5.280830261967105000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6257273716536818 " " Order of pole = 3.6022224242325045 " " x[1] = -1.2580000000000817 " " y[1] (analytic) = 0.38721208845160093 " " y[1] (numeric) = 0.3872120884516214 " " absolute error = 2.048361480433413800000000000000E-14 " " relative error = 5.290024618354461000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6249668721014587 " " Order of pole = 3.6027956010035496 " " x[1] = -1.2570000000000818 " " y[1] (analytic) = 0.3875895380281228 " " y[1] (numeric) = 0.38758953802814333 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 5.2991951382534770000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6242063608631827 " " Order of pole = 3.6033638840705606 " " x[1] = -1.256000000000082 " " y[1] (analytic) = 0.38796742315138183 " " y[1] (numeric) = 0.38796742315140237 " " absolute error = 2.053912595556539600000000000000E-14 " " relative error = 5.294033655900844000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6234458273064052 " " Order of pole = 3.6039270640455925 " " x[1] = -1.255000000000082 " " y[1] (analytic) = 0.38834574421604445 " " y[1] (numeric) = 0.3883457442160651 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 5.3174648018132590000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6226852608644036 " " Order of pole = 3.60448493261282 " " x[1] = -1.2540000000000822 " " y[1] (analytic) = 0.3887245016162853 " " y[1] (numeric) = 0.38872450161630595 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 5.3122836796153190000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6219246510412284 " " Order of pole = 3.6050372826257657 " " x[1] = -1.2530000000000823 " " y[1] (analytic) = 0.38910369574578135 " " y[1] (numeric) = 0.389103695745802 " " absolute error = 2.065014825802791200000000000000E-14 " " relative error = 5.307106687447031000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6211639874166062 " " Order of pole = 3.6055839082023233 " " x[1] = -1.2520000000000824 " " y[1] (analytic) = 0.38948332699770655 " " y[1] (numeric) = 0.3894833269977273 " " absolute error = 2.076117056049042700000000000000E-14 " " relative error = 5.3304388458745710000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6204032596508973 " " Order of pole = 3.6061246048211153 " " x[1] = -1.2510000000000825 " " y[1] (analytic) = 0.38986339576472656 " " y[1] (numeric) = 0.3898633957647474 " " absolute error = 2.081668171172168500000000000000E-14 " " relative error = 5.3394809407252130000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6196424574901316 " " Order of pole = 3.6066591694188332 " " x[1] = -1.2500000000000826 " " y[1] (analytic) = 0.39024390243899293 " " y[1] (numeric) = 0.39024390243901375 " " absolute error = 2.081668171172168500000000000000E-14 " " relative error = 5.3342746886291110000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6188815707709696 " " Order of pole = 3.6071874004869855 " " x[1] = -1.2490000000000827 " " y[1] (analytic) = 0.39062484741213743 " " y[1] (numeric) = 0.3906248474121583 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 5.343283460135670000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6181205894256248 " " Order of pole = 3.607709098168076 " " x[1] = -1.2480000000000828 " " y[1] (analytic) = 0.39100623107526683 " " y[1] (numeric) = 0.3910062310752877 " " absolute error = 2.087219286295294300000000000000E-14 " " relative error = 5.338071673577791000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6173595034869255 " " Order of pole = 3.608224064354058 " " x[1] = -1.247000000000083 " " y[1] (analytic) = 0.3913880538189568 " " y[1] (numeric) = 0.39138805381897773 " " absolute error = 2.0927704014184200000000000000E-14 " " relative error = 5.3470472105581090000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6165983030932687 " " Order of pole = 3.6087321027832147 " " x[1] = -1.246000000000083 " " y[1] (analytic) = 0.3917703160332468 " " y[1] (numeric) = 0.39177031603326773 " " absolute error = 2.0927704014184200000000000000E-14 " " relative error = 5.341829933947373000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6158369784935607 " " Order of pole = 3.609233019137392 " " x[1] = -1.2450000000000832 " " y[1] (analytic) = 0.39215301810763376 " " y[1] (numeric) = 0.39215301810765474 " " absolute error = 2.09832151654154600000000000000E-14 " " relative error = 5.3507723252192910000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6150755200522118 " " Order of pole = 3.6097266211395187 " " x[1] = -1.2440000000000833 " " y[1] (analytic) = 0.39253616043106704 " " y[1] (numeric) = 0.392536160431088 " " absolute error = 2.09832151654154600000000000000E-14 " " relative error = 5.345549602964618000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6143139182540611 " " Order of pole = 3.610212718650857 " " x[1] = -1.2430000000000834 " " y[1] (analytic) = 0.39291974339194197 " " y[1] (numeric) = 0.39291974339196306 " " absolute error = 2.109423746787797400000000000000E-14 " " relative error = 5.3685867973389740000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.613552163709295 " " Order of pole = 3.6106911237673884 " " x[1] = -1.2420000000000835 " " y[1] (analytic) = 0.39330376737809486 " " y[1] (numeric) = 0.393303767378116 " " absolute error = 2.114974861910923200000000000000E-14 " " relative error = 5.377458944800123000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.612790247158395 " " Order of pole = 3.6111616509180955 " " x[1] = -1.2410000000000836 " " y[1] (analytic) = 0.3936882327767966 " " y[1] (numeric) = 0.3936882327768178 " " absolute error = 2.12052597703404900000000000000E-14 " " relative error = 5.386307744271064000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6120281594770107 " " Order of pole = 3.6116241169605985 " " x[1] = -1.2400000000000837 " " y[1] (analytic) = 0.3940731399747471 " " y[1] (numeric) = 0.39407313997476834 " " absolute error = 2.126077092157174800000000000000E-14 " " relative error = 5.395133229058487000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6112658916807807 " " Order of pole = 3.612078341277119 " " x[1] = -1.2390000000000838 " " y[1] (analytic) = 0.39445848935806926 " " y[1] (numeric) = 0.39445848935809064 " " absolute error = 2.137179322403426300000000000000E-14 " " relative error = 5.418008180991141000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.610503434930231 " " Order of pole = 3.6125241458715784 " " x[1] = -1.238000000000084 " " y[1] (analytic) = 0.39484428131230365 " " y[1] (numeric) = 0.394844281312325 " " absolute error = 2.137179322403426300000000000000E-14 " " relative error = 5.412714387809547000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.609740780535547 " " Order of pole = 3.6129613554643285 " " x[1] = -1.237000000000084 " " y[1] (analytic) = 0.3952305162224017 " " y[1] (numeric) = 0.3952305162224231 " " absolute error = 2.14273043752655200000000000000E-14 " " relative error = 5.421470128386564000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.608977919961328 " " Order of pole = 3.6133897975869473 " " x[1] = -1.2360000000000841 " " y[1] (analytic) = 0.3956171944727205 " " y[1] (numeric) = 0.39561719447274196 " " absolute error = 2.14828155264967800000000000000E-14 " " relative error = 5.430202687506827000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6082148448313045 " " Order of pole = 3.613809302676266 " " x[1] = -1.2350000000000843 " " y[1] (analytic) = 0.3960043164470166 " " y[1] (numeric) = 0.39600431644703815 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 5.438912098477027000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6074515469331088 " " Order of pole = 3.614219704169944 " " x[1] = -1.2340000000000844 " " y[1] (analytic) = 0.39639188252844015 " " y[1] (numeric) = 0.3963918825284617 " " absolute error = 2.153832667772803700000000000000E-14 " " relative error = 5.433594285620296000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.606688018222799 " " Order of pole = 3.6146208385968066 " " x[1] = -1.2330000000000845 " " y[1] (analytic) = 0.39677989309952844 " " y[1] (numeric) = 0.39677989309955003 " " absolute error = 2.159383782895929500000000000000E-14 " " relative error = 5.4422711948114490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6059242508295364 " " Order of pole = 3.6150125456712203 " " x[1] = -1.2320000000000846 " " y[1] (analytic) = 0.39716834854220046 " " y[1] (numeric) = 0.3971683485422221 " " absolute error = 2.164934898019055300000000000000E-14 " " relative error = 5.4509250446703800000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.605160237060078 " " Order of pole = 3.615394668382926 " " x[1] = -1.2310000000000847 " " y[1] (analytic) = 0.39755724923775043 " " y[1] (numeric) = 0.39755724923777214 " " absolute error = 2.17048601314218100000000000000E-14 " " relative error = 5.459555868503781000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.604395969403363 " " Order of pole = 3.61576705308995 " " x[1] = -1.2300000000000848 " " y[1] (analytic) = 0.39794659556684187 " " y[1] (numeric) = 0.3979465955668637 " " absolute error = 2.181588243388432600000000000000E-14 " " relative error = 5.482113096811247000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6036314405347842 " " Order of pole = 3.616129549604569 " " x[1] = -1.229000000000085 " " y[1] (analytic) = 0.3983363879095015 " " y[1] (numeric) = 0.39833638790952336 " " absolute error = 2.187139358511558400000000000000E-14 " " relative error = 5.490684318321571000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6028666433207226 " " Order of pole = 3.6164820112853633 " " x[1] = -1.228000000000085 " " y[1] (analytic) = 0.3987266266451129 " " y[1] (numeric) = 0.39872662664513475 " " absolute error = 2.187139358511558400000000000000E-14 " " relative error = 5.485310516917709000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6021015708227655 " " Order of pole = 3.616824295122864 " " x[1] = -1.2270000000000851 " " y[1] (analytic) = 0.39911731215241036 " " y[1] (numeric) = 0.3991173121524323 " " absolute error = 2.192690473634684200000000000000E-14 " " relative error = 5.4938495697158940000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.601336216301949 " " Order of pole = 3.6171562618254463 " " x[1] = -1.2260000000000852 " " y[1] (analytic) = 0.39950844480947306 " " y[1] (numeric) = 0.399508444809495 " " absolute error = 2.192690473634684200000000000000E-14 " " relative error = 5.488470899984068000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.6005705732229674 " " Order of pole = 3.617477775905794 " " x[1] = -1.2250000000000854 " " y[1] (analytic) = 0.39990002499371813 " " y[1] (numeric) = 0.3999000249937401 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 5.496977872887958000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5998046352582957 " " Order of pole = 3.617788705764685 " " x[1] = -1.2240000000000855 " " y[1] (analytic) = 0.4002920530818951 " " y[1] (numeric) = 0.40029205308191707 " " absolute error = 2.1982415887578100000000000000E-14 " " relative error = 5.49159437923709000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5990383962920864 " " Order of pole = 3.6180889237710296 " " x[1] = -1.2230000000000856 " " y[1] (analytic) = 0.40068452945007893 " " y[1] (numeric) = 0.400684529450101 " " absolute error = 2.209343819004061500000000000000E-14 " " relative error = 5.5139234400596500000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5982718504242777 " " Order of pole = 3.618378306346411 " " x[1] = -1.2220000000000857 " " y[1] (analytic) = 0.40107745447366444 " " y[1] (numeric) = 0.40107745447368653 " " absolute error = 2.209343819004061500000000000000E-14 " " relative error = 5.5085215944221850000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5975049919743411 " " Order of pole = 3.618656734042208 " " x[1] = -1.2210000000000858 " " y[1] (analytic) = 0.4014708285273592 " " y[1] (numeric) = 0.4014708285273813 " " absolute error = 2.209343819004061500000000000000E-14 " " relative error = 5.5031241674723590000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5967378154851046 " " Order of pole = 3.6189240916186094 " " x[1] = -1.220000000000086 " " y[1] (analytic) = 0.4018646519851775 " " y[1] (numeric) = 0.4018646519851997 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.525357948954944000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5959703157264966 " " Order of pole = 3.619180268122374 " " x[1] = -1.219000000000086 " " y[1] (analytic) = 0.4022589252204341 " " y[1] (numeric) = 0.40225892522045636 " " absolute error = 2.22599716437343900000000000000E-14 " " relative error = 5.533742136743425000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5952024876989528 " " Order of pole = 3.619425156957437 " " x[1] = -1.2180000000000861 " " y[1] (analytic) = 0.4026536486057375 " " y[1] (numeric) = 0.40265364860575975 " " absolute error = 2.22599716437343900000000000000E-14 " " relative error = 5.528317381653847000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5944343266371785 " " Order of pole = 3.619658655963704 " " x[1] = -1.2170000000000862 " " y[1] (analytic) = 0.40304882251298335 " " y[1] (numeric) = 0.4030488225130057 " " absolute error = 2.237099394619690400000000000000E-14 " " relative error = 5.5504426998980430000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5936658280133629 " " Order of pole = 3.6198806674842174 " " x[1] = -1.2160000000000863 " " y[1] (analytic) = 0.40344444731334855 " " y[1] (numeric) = 0.4034444473133709 " " absolute error = 2.237099394619690400000000000000E-14 " " relative error = 5.544999837070933000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5928969875405887 " " Order of pole = 3.6200910984368413 " " x[1] = -1.2150000000000865 " " y[1] (analytic) = 0.40384052337728404 " " y[1] (numeric) = 0.40384052337730647 " " absolute error = 2.242650509742816200000000000000E-14 " " relative error = 5.553307258488376000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.59212780117601 " " Order of pole = 3.6202898603813267 " " x[1] = -1.2140000000000866 " " y[1] (analytic) = 0.4042370510745086 " " y[1] (numeric) = 0.40423705107453106 " " absolute error = 2.24820162486594200000000000000E-14 " " relative error = 5.56159218678734100000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5913582651239002 " " Order of pole = 3.6204768695839213 " " x[1] = -1.2130000000000867 " " y[1] (analytic) = 0.4046340307740022 " " y[1] (numeric) = 0.40463403077402466 " " absolute error = 2.24820162486594200000000000000E-14 " " relative error = 5.556135801443791000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5905883758387747 " " Order of pole = 3.620652047083812 " " x[1] = -1.2120000000000868 " " y[1] (analytic) = 0.40503146284399927 " " y[1] (numeric) = 0.40503146284402175 " " absolute error = 2.24820162486594200000000000000E-14 " " relative error = 5.55068391250349000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589818130028181 " " Order of pole = 3.620815318752804 " " x[1] = -1.211000000000087 " " y[1] (analytic) = 0.40542934765198213 " " y[1] (numeric) = 0.4054293476520047 " " absolute error = 2.259303855112193600000000000000E-14 " " relative error = 5.5726204040156590000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890475246554714 " " Order of pole = 3.6209666153548774 " " x[1] = -1.210000000000087 " " y[1] (analytic) = 0.4058276855646745 " " y[1] (numeric) = 0.40582768556469717 " " absolute error = 2.264854970235319300000000000000E-14 " " relative error = 5.580829132157328000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5882765569424322 " " Order of pole = 3.6211058726031773 " " x[1] = -1.2090000000000871 " " y[1] (analytic) = 0.40622647694803443 " " y[1] (numeric) = 0.40622647694805714 " " absolute error = 2.27040608535844500000000000000E-14 " " relative error = 5.589015522611741000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875052243720338 " " Order of pole = 3.6212330312195427 " " x[1] = -1.2080000000000872 " " y[1] (analytic) = 0.40662572216724774 " " y[1] (numeric) = 0.40662572216727044 " " absolute error = 2.27040608535844500000000000000E-14 " " relative error = 5.583527951103430000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586733524690537 " " Order of pole = 3.6213480369809012 " " x[1] = -1.2070000000000873 " " y[1] (analytic) = 0.40702542158672117 " " y[1] (numeric) = 0.4070254215867439 " " absolute error = 2.27040608535844500000000000000E-14 " " relative error = 5.578044920407289000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859614559100585 " " Order of pole = 3.6214508407755908 " " x[1] = -1.2060000000000874 " " y[1] (analytic) = 0.40742557557007564 " " y[1] (numeric) = 0.4074255755700984 " " absolute error = 2.27595720048157100000000000000E-14 " " relative error = 5.586191287321665000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851890163106224 " " Order of pole = 3.6215413986490503 " " x[1] = -1.2050000000000876 " " y[1] (analytic) = 0.4078261844801394 " " y[1] (numeric) = 0.4078261844801623 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 5.607926900630872000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844162044421248 " " Order of pole = 3.621619671848112 " " x[1] = -1.2040000000000877 " " y[1] (analytic) = 0.40822724867894145 " " y[1] (numeric) = 0.4082272486789643 " " absolute error = 2.287059430727822500000000000000E-14 " " relative error = 5.6024173744622490000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836430191266009 " " Order of pole = 3.6216856268715816 " " x[1] = -1.2030000000000878 " " y[1] (analytic) = 0.40862876852770386 " " y[1] (numeric) = 0.4086287685277268 " " absolute error = 2.292610545850948300000000000000E-14 " " relative error = 5.610497161301838000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582869459459573 " " Order of pole = 3.621739235502151 " " x[1] = -1.2020000000000879 " " y[1] (analytic) = 0.40903074438683573 " " y[1] (numeric) = 0.40903074438685866 " " absolute error = 2.292610545850948300000000000000E-14 " " relative error = 5.604983432939066000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820955248119986 " " Order of pole = 3.621780474850823 " " x[1] = -1.201000000000088 " " y[1] (analytic) = 0.4094331766159256 " " y[1] (numeric) = 0.40943317661594864 " " absolute error = 2.303712776097199800000000000000E-14 " " relative error = 5.626590388053064000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813212148318199 " " Order of pole = 3.6218093273934002 " " x[1] = -1.200000000000088 " " y[1] (analytic) = 0.4098360655737349 " " y[1] (numeric) = 0.409836065573758 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.634603894578083000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805465294451226 " " Order of pole = 3.6218257809990178 " " x[1] = -1.1990000000000882 " " y[1] (analytic) = 0.4102394116181907 " " y[1] (numeric) = 0.41023941161821376 " " absolute error = 2.303712776097199800000000000000E-14 " " relative error = 5.6155325667277980000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797714688576858 " " Order of pole = 3.6218298289669697 " " x[1] = -1.1980000000000883 " " y[1] (analytic) = 0.4106432151063784 " " y[1] (numeric) = 0.4106432151064015 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.62352866495579000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5789960335559325 " " Order of pole = 3.621821470051284 " " x[1] = -1.1970000000000884 " " y[1] (analytic) = 0.4110474763945352 " " y[1] (numeric) = 0.4110474763945584 " " absolute error = 2.320366121466577200000000000000E-14 " " relative error = 5.6450075835994740000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.57822022430791 " " Order of pole = 3.6218007084862656 " " x[1] = -1.1960000000000885 " " y[1] (analytic) = 0.41145219583804293 " " y[1] (numeric) = 0.4114521958380661 " " absolute error = 2.314815006343451400000000000000E-14 " " relative error = 5.6259634284577150000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5774440421642646 " " Order of pole = 3.621767554011864 " " x[1] = -1.1950000000000887 " " y[1] (analytic) = 0.41185737379142 " " y[1] (numeric) = 0.4118573737914433 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 5.6608634446680350000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.576667488458769 " " Order of pole = 3.6217220218901964 " " x[1] = -1.1940000000000888 " " y[1] (analytic) = 0.4122630106083157 " " y[1] (numeric) = 0.41226301060833903 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 5.655293566775794000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.575890564809042 " " Order of pole = 3.6216641329260533 " " x[1] = -1.1930000000000889 " " y[1] (analytic) = 0.41266910664150175 " " y[1] (numeric) = 0.41266910664152506 " " absolute error = 2.331468351712828700000000000000E-14 " " relative error = 5.649728351820255000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5751132731168513 " " Order of pole = 3.621593913479046 " " x[1] = -1.192000000000089 " " y[1] (analytic) = 0.4130756622428655 " " y[1] (numeric) = 0.4130756622428889 " " absolute error = 2.337019466835954500000000000000E-14 " " relative error = 5.657606294562852000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5743356155685584 " " Order of pole = 3.621511395478784 " " x[1] = -1.191000000000089 " " y[1] (analytic) = 0.41348267776340286 " " y[1] (numeric) = 0.41348267776342623 " " absolute error = 2.337019466835954500000000000000E-14 " " relative error = 5.652037177173381000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.573557594635035 " " Order of pole = 3.6214166164293893 " " x[1] = -1.1900000000000892 " " y[1] (analytic) = 0.41389015355321057 " " y[1] (numeric) = 0.41389015355323405 " " absolute error = 2.34812169708220600000000000000E-14 " " relative error = 5.673296832320818000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.572779213071715 " " Order of pole = 3.6213096194168948 " " x[1] = -1.1890000000000893 " " y[1] (analytic) = 0.4142980899614794 " " y[1] (numeric) = 0.4142980899615029 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 5.681109493949567000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.572000473918653 " " Order of pole = 3.6211904531168813 " " x[1] = -1.1880000000000894 " " y[1] (analytic) = 0.4147064873364862 " " y[1] (numeric) = 0.4147064873365097 " " absolute error = 2.35367281220533200000000000000E-14 " " relative error = 5.675514813674953000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5712213804998538 " " Order of pole = 3.621059171787312 " " x[1] = -1.1870000000000895 " " y[1] (analytic) = 0.41511534602558675 " " y[1] (numeric) = 0.4151153460256104 " " absolute error = 2.364775042451583400000000000000E-14 " " relative error = 5.696669769240051000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5704419364231108 " " Order of pole = 3.6209158352719513 " " x[1] = -1.1860000000000896 " " y[1] (analytic) = 0.41552466637520863 " " y[1] (numeric) = 0.41552466637523233 " " absolute error = 2.370326157574709200000000000000E-14 " " relative error = 5.704417449515169000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5696621455793358 " " Order of pole = 3.6207605089933566 " " x[1] = -1.1850000000000898 " " y[1] (analytic) = 0.41593444873084323 " " y[1] (numeric) = 0.41593444873086693 " " absolute error = 2.370326157574709200000000000000E-14 " " relative error = 5.698797406195559000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5688820121416909 " " Order of pole = 3.6205932639420624 " " x[1] = -1.1840000000000899 " " y[1] (analytic) = 0.41634469343703845 " " y[1] (numeric) = 0.4163446934370622 " " absolute error = 2.37587727269783500000000000000E-14 " " relative error = 5.706515082693436000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.568101540564842 " " Order of pole = 3.6204141766682305 " " x[1] = -1.18300000000009 " " y[1] (analytic) = 0.41675540083739127 " " y[1] (numeric) = 0.41675540083741514 " " absolute error = 2.386979502944086600000000000000E-14 " " relative error = 5.727531060540312000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5673207355839285 " " Order of pole = 3.6202233292676596 " " x[1] = -1.18200000000009 " " y[1] (analytic) = 0.4171665712745403 " " y[1] (numeric) = 0.41716657127456414 " " absolute error = 2.381428387820960800000000000000E-14 " " relative error = 5.7085791427274390000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5665396022132392 " " Order of pole = 3.6200208093618045 " " x[1] = -1.1810000000000902 " " y[1] (analytic) = 0.41757820509015764 " " y[1] (numeric) = 0.4175782050901815 " " absolute error = 2.386979502944086600000000000000E-14 " " relative error = 5.7162454214503920000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.565758145745051 " " Order of pole = 3.6198067100812494 " " x[1] = -1.1800000000000903 " " y[1] (analytic) = 0.41799030262494186 " " y[1] (numeric) = 0.4179903026249658 " " absolute error = 2.392530618067212300000000000000E-14 " " relative error = 5.723890250664508000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.564976371748076 " " Order of pole = 3.6195811300412295 " " x[1] = -1.1790000000000904 " " y[1] (analytic) = 0.41840286421860995 " " y[1] (numeric) = 0.41840286421863393 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.7315136636764810000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5641942860657272 " " Order of pole = 3.6193441733134826 " " x[1] = -1.1780000000000905 " " y[1] (analytic) = 0.41881589020988985 " " y[1] (numeric) = 0.4188158902099139 " " absolute error = 2.40363284831346400000000000000E-14 " " relative error = 5.739115693792998000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5634118948146554 " " Order of pole = 3.619095949403736 " " x[1] = -1.1770000000000906 " " y[1] (analytic) = 0.4192293809365125 " " y[1] (numeric) = 0.4192293809365366 " " absolute error = 2.409183963436589700000000000000E-14 " " relative error = 5.746696374320752000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5626292043825414 " " Order of pole = 3.6188365732140255 " " x[1] = -1.1760000000000908 " " y[1] (analytic) = 0.41964333673520443 " " y[1] (numeric) = 0.4196433367352285 " " absolute error = 2.409183963436589700000000000000E-14 " " relative error = 5.7410275644547850000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5618462214262117 " " Order of pole = 3.618566165011643 " " x[1] = -1.1750000000000909 " " y[1] (analytic) = 0.4200577579416793 " " y[1] (numeric) = 0.42005775794170347 " " absolute error = 2.414735078559715500000000000000E-14 " " relative error = 5.748578696396738000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5610629528693307 " " Order of pole = 3.6182848503895 " " x[1] = -1.174000000000091 " " y[1] (analytic) = 0.4204726448906309 " " y[1] (numeric) = 0.42047264489065517 " " absolute error = 2.42583730880596700000000000000E-14 " " relative error = 5.769310651438339000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5602794059002663 " " Order of pole = 3.617992760229999 " " x[1] = -1.173000000000091 " " y[1] (analytic) = 0.4208879979157248 " " y[1] (numeric) = 0.42088799791574905 " " absolute error = 2.42583730880596700000000000000E-14 " " relative error = 5.763617211274571000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5594955879693848 " " Order of pole = 3.6176900306574424 " " x[1] = -1.1720000000000912 " " y[1] (analytic) = 0.4213038173495903 " " y[1] (numeric) = 0.4213038173496146 " " absolute error = 2.42583730880596700000000000000E-14 " " relative error = 5.7579286227854210000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5587115067865076 " " Order of pole = 3.6173768029935367 " " x[1] = -1.1710000000000913 " " y[1] (analytic) = 0.42172010352381306 " " y[1] (numeric) = 0.4217201035238373 " " absolute error = 2.42583730880596700000000000000E-14 " " relative error = 5.752244885970889000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5579271703184143 " " Order of pole = 3.6170532237140804 " " x[1] = -1.1700000000000914 " " y[1] (analytic) = 0.42213685676892637 " " y[1] (numeric) = 0.42213685676895074 " " absolute error = 2.436939539052218600000000000000E-14 " " relative error = 5.772866074061322000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5571425867854325 " " Order of pole = 3.61671944438681 " " x[1] = -1.1690000000000915 " " y[1] (analytic) = 0.4225540774144041 " " y[1] (numeric) = 0.4225540774144285 " " absolute error = 2.442490654175344400000000000000E-14 " " relative error = 5.78030312503638000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.556357764658941 " " Order of pole = 3.616375621628123 " " x[1] = -1.1680000000000916 " " y[1] (analytic) = 0.42297176578865175 " " y[1] (numeric) = 0.42297176578867623 " " absolute error = 2.448041769298470200000000000000E-14 " " relative error = 5.78771910397843000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5555727126579653 " " Order of pole = 3.616021917041053 " " x[1] = -1.1670000000000917 " " y[1] (analytic) = 0.423389922218999 " " y[1] (numeric) = 0.4233899222190235 " " absolute error = 2.448041769298470200000000000000E-14 " " relative error = 5.782002926447118000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5547874397458699 " " Order of pole = 3.615658497155355 " " x[1] = -1.1660000000000919 " " y[1] (analytic) = 0.4238085470316912 " " y[1] (numeric) = 0.4238085470317158 " " absolute error = 2.459143999544721700000000000000E-14 " " relative error = 5.802487978990273000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5540019551270723 " " Order of pole = 3.6152855333679845 " " x[1] = -1.165000000000092 " " y[1] (analytic) = 0.4242276405518816 " " y[1] (numeric) = 0.4242276405519062 " " absolute error = 2.459143999544721700000000000000E-14 " " relative error = 5.796755714327334000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.553216268243373 " " Order of pole = 3.614903201875652 " " x[1] = -1.164000000000092 " " y[1] (analytic) = 0.42464720310362286 " " y[1] (numeric) = 0.42464720310364745 " " absolute error = 2.459143999544721700000000000000E-14 " " relative error = 5.791028367952393000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5524303887704078 " " Order of pole = 3.6145116836100186 " " x[1] = -1.1630000000000922 " " y[1] (analytic) = 0.42506723500985893 " " y[1] (numeric) = 0.42506723500988364 " " absolute error = 2.470246229790973300000000000000E-14 " " relative error = 5.81142470257365000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5516443266136537 " " Order of pole = 3.614111164163525 " " x[1] = -1.1620000000000923 " " y[1] (analytic) = 0.4254877365924171 " " y[1] (numeric) = 0.4254877365924418 " " absolute error = 2.470246229790973300000000000000E-14 " " relative error = 5.805681380089386000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5508580919048471 " " Order of pole = 3.6137018337238125 " " x[1] = -1.1610000000000924 " " y[1] (analytic) = 0.4259087081719993 " " y[1] (numeric) = 0.425908708172024 " " absolute error = 2.470246229790973300000000000000E-14 " " relative error = 5.799942998097581000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5500716949976399 " " Order of pole = 3.6132838869924058 " " x[1] = -1.1600000000000925 " " y[1] (analytic) = 0.4263301500681738 " " y[1] (numeric) = 0.4263301500681986 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 5.807230252231042000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5492851464635509 " " Order of pole = 3.61285752310944 " " x[1] = -1.1590000000000926 " " y[1] (analytic) = 0.4267520625993675 " " y[1] (numeric) = 0.42675206259939225 " " absolute error = 2.47579734491409900000000000000E-14 " " relative error = 5.801488878188186000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5484984570876525 " " Order of pole = 3.6124229455729626 " " x[1] = -1.1580000000000927 " " y[1] (analytic) = 0.4271744460828566 " " y[1] (numeric) = 0.4271744460828814 " " absolute error = 2.48134846003722500000000000000E-14 " " relative error = 5.808747416403115000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.547711637864396 " " Order of pole = 3.611980362160903 " " x[1] = -1.1570000000000928 " " y[1] (analytic) = 0.4275973008347589 " " y[1] (numeric) = 0.4275973008347838 " " absolute error = 2.492450690283476400000000000000E-14 " " relative error = 5.828967314381298000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5469246999927677 " " Order of pole = 3.611529984839432 " " x[1] = -1.156000000000093 " " y[1] (analytic) = 0.42802062717002515 " " y[1] (numeric) = 0.4280206271700501 " " absolute error = 2.498001805406602200000000000000E-14 " " relative error = 5.836171546036977000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5461376548720152 " " Order of pole = 3.611072029682873 " " x[1] = -1.155000000000093 " " y[1] (analytic) = 0.42844442540243055 " " y[1] (numeric) = 0.4284444254024555 " " absolute error = 2.492450690283476400000000000000E-14 " " relative error = 5.817442222389427000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.545350514096713 " " Order of pole = 3.61060671677998 " " x[1] = -1.1540000000000932 " " y[1] (analytic) = 0.4288686958445659 " " y[1] (numeric) = 0.42886869584459086 " " absolute error = 2.498001805406602200000000000000E-14 " " relative error = 5.824630777695998000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5445632894519181 " " Order of pole = 3.6101342701420975 " " x[1] = -1.1530000000000933 " " y[1] (analytic) = 0.42929343880782966 " " y[1] (numeric) = 0.4292934388078547 " " absolute error = 2.50355292052972800000000000000E-14 " " relative error = 5.831798705058772000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5437759929086043 " " Order of pole = 3.609654917616819 " " x[1] = -1.1520000000000934 " " y[1] (analytic) = 0.4297186546024189 " " y[1] (numeric) = 0.429718654602444 " " absolute error = 2.509104035652854000000000000000E-14 " " relative error = 5.838946037784439000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5429886366181926 " " Order of pole = 3.609168890783142 " " x[1] = -1.1510000000000935 " " y[1] (analytic) = 0.430144343537321 " " y[1] (numeric) = 0.43014434353734615 " " absolute error = 2.514655150775979600000000000000E-14 " " relative error = 5.846072809179690000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5422012329075991 " " Order of pole = 3.608676424857201 " " x[1] = -1.1500000000000936 " " y[1] (analytic) = 0.4305705059203045 " " y[1] (numeric) = 0.43057050592032975 " " absolute error = 2.52575738102223100000000000000E-14 " " relative error = 5.866071517424676000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5414137942741986 " " Order of pole = 3.6081777585959927 " " x[1] = -1.1490000000000937 " " y[1] (analytic) = 0.430997142057911 " " y[1] (numeric) = 0.43099714205793627 " " absolute error = 2.52575738102223100000000000000E-14 " " relative error = 5.860264801205706000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5406263333803567 " " Order of pole = 3.6076731341923463 " " x[1] = -1.1480000000000938 " " y[1] (analytic) = 0.4314242522554459 " " y[1] (numeric) = 0.4314242522554712 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 5.867330088449852000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5398388630480175 " " Order of pole = 3.607162797170865 " " x[1] = -1.147000000000094 " " y[1] (analytic) = 0.43185183681697 " " y[1] (numeric) = 0.4318518368169953 " " absolute error = 2.53130849614535700000000000000E-14 " " relative error = 5.861520735451199000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.539051396253335 " " Order of pole = 3.606646996284688 " " x[1] = -1.146000000000094 " " y[1] (analytic) = 0.4322798960452904 " " y[1] (numeric) = 0.43227989604531575 " " absolute error = 2.536859611268482700000000000000E-14 " " relative error = 5.868557928501706000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5382639461208716 " " Order of pole = 3.606125983403196 " " x[1] = -1.1450000000000942 " " y[1] (analytic) = 0.4327084302419518 " " y[1] (numeric) = 0.4327084302419773 " " absolute error = 2.547961841514734000000000000000E-14 " " relative error = 5.888403514787138000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.537476525918353 " " Order of pole = 3.6056000134111272 " " x[1] = -1.1440000000000943 " " y[1] (analytic) = 0.43313743970722796 " " y[1] (numeric) = 0.43313743970725344 " " absolute error = 2.547961841514734000000000000000E-14 " " relative error = 5.8825712301319100000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5366891490507637 " " Order of pole = 3.605069344093973 " " x[1] = -1.1430000000000944 " " y[1] (analytic) = 0.433566924740112 " " y[1] (numeric) = 0.43356692474013747 " " absolute error = 2.547961841514734000000000000000E-14 " " relative error = 5.876744041400367000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.535901829054266 " " Order of pole = 3.6045342360197132 " " x[1] = -1.1420000000000945 " " y[1] (analytic) = 0.43399688563830796 " " y[1] (numeric) = 0.4339968856383336 " " absolute error = 2.564615186884111600000000000000E-14 " " relative error = 5.909293987472196000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5351145795906207 " " Order of pole = 3.603994952430593 " " x[1] = -1.1410000000000946 " " y[1] (analytic) = 0.43442732269822215 " " y[1] (numeric) = 0.43442732269824774 " " absolute error = 2.559064071760986000000000000000E-14 " " relative error = 5.890660964569802000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5343274144416865 " " Order of pole = 3.6034517591365116 " " x[1] = -1.1400000000000947 " " y[1] (analytic) = 0.4348582362149531 " " y[1] (numeric) = 0.43485823621497877 " " absolute error = 2.564615186884111600000000000000E-14 " " relative error = 5.897589083759257000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5335403475022815 " " Order of pole = 3.6029049243746556 " " x[1] = -1.1390000000000948 " " y[1] (analytic) = 0.4352896264822835 " " y[1] (numeric) = 0.43528962648230923 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 5.917249712439899000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5327533927751786 " " Order of pole = 3.602354718712675 " " x[1] = -1.138000000000095 " " y[1] (analytic) = 0.43572149379267056 " " y[1] (numeric) = 0.43572149379269637 " " absolute error = 2.58126853225348900000000000000E-14 " " relative error = 5.924124857337735000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5319665643645402 " " Order of pole = 3.6018014149198443 " " x[1] = -1.137000000000095 " " y[1] (analytic) = 0.43615383843723715 " " y[1] (numeric) = 0.43615383843726296 " " absolute error = 2.58126853225348900000000000000E-14 " " relative error = 5.918252471426858000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5311798764696352 " " Order of pole = 3.601245287843774 " " x[1] = -1.1360000000000952 " " y[1] (analytic) = 0.4365866607057623 " " y[1] (numeric) = 0.4365866607057881 " " absolute error = 2.58126853225348900000000000000E-14 " " relative error = 5.912385248053045000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5303933433789136 " " Order of pole = 3.600686614294336 " " x[1] = -1.1350000000000953 " " y[1] (analytic) = 0.43701996088667217 " " y[1] (numeric) = 0.4370199608866981 " " absolute error = 2.592370762499740500000000000000E-14 " " relative error = 5.93192758802153000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5296069794632756 " " Order of pole = 3.600125672910938 " " x[1] = -1.1340000000000954 " " y[1] (analytic) = 0.4374537392670311 " " y[1] (numeric) = 0.43745373926705705 " " absolute error = 2.592370762499740500000000000000E-14 " " relative error = 5.926045498761418000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5288207991703335 " " Order of pole = 3.5995627440499334 " " x[1] = -1.1330000000000955 " " y[1] (analytic) = 0.4378879961325317 " " y[1] (numeric) = 0.4378879961325577 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 5.932845614787248000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5280348170172118 " " Order of pole = 3.598998109642004 " " x[1] = -1.1320000000000956 " " y[1] (analytic) = 0.4383227317674861 " " y[1] (numeric) = 0.4383227317675121 " " absolute error = 2.597921877622866300000000000000E-14 " " relative error = 5.926961321734432000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5272490475849907 " " Order of pole = 3.5984320530829805 " " x[1] = -1.1310000000000957 " " y[1] (analytic) = 0.43875794645481603 " " y[1] (numeric) = 0.4387579464548421 " " absolute error = 2.60902410786911800000000000000E-14 " " relative error = 5.946385994715652000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5264635055115936 " " Order of pole = 3.5978648590926134 " " x[1] = -1.1300000000000958 " " y[1] (analytic) = 0.43919364047604414 " " y[1] (numeric) = 0.43919364047607024 " " absolute error = 2.60902410786911800000000000000E-14 " " relative error = 5.940486991207760000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.525678205485897 " " Order of pole = 3.597296813598252 " " x[1] = -1.129000000000096 " " y[1] (analytic) = 0.4396298141112838 " " y[1] (numeric) = 0.43962981411130997 " " absolute error = 2.614575222992243700000000000000E-14 " " relative error = 5.947219999802866000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5248931622407154 " " Order of pole = 3.5967282035953225 " " x[1] = -1.128000000000096 " " y[1] (analytic) = 0.4400664676392303 " " y[1] (numeric) = 0.44006646763925644 " " absolute error = 2.614575222992243700000000000000E-14 " " relative error = 5.941318903524573000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5241083905430313 " " Order of pole = 3.5961593169511836 " " x[1] = -1.1270000000000961 " " y[1] (analytic) = 0.4405036013371507 " " y[1] (numeric) = 0.44050360133717686 " " absolute error = 2.614575222992243700000000000000E-14 " " relative error = 5.935423036396725000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5233239051960281 " " Order of pole = 3.5955904424503906 " " x[1] = -1.1260000000000963 " " y[1] (analytic) = 0.4409412154808748 " " y[1] (numeric) = 0.44094121548090104 " " absolute error = 2.625677453238495000000000000000E-14 " " relative error = 5.954710879941275000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.522539721025452 " " Order of pole = 3.595021869519048 " " x[1] = -1.1250000000000964 " " y[1] (analytic) = 0.4413793103447854 " " y[1] (numeric) = 0.44137931034481165 " " absolute error = 2.625677453238495000000000000000E-14 " " relative error = 5.9488004799940340000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.521755852872009 " " Order of pole = 3.5944538880725645 " " x[1] = -1.1240000000000965 " " y[1] (analytic) = 0.4418178862018084 " " y[1] (numeric) = 0.4418178862018347 " " absolute error = 2.63122856836162100000000000000E-14 " " relative error = 5.955459592144623000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5209723155887298 " " Order of pole = 3.5938867884647223 " " x[1] = -1.1230000000000966 " " y[1] (analytic) = 0.4422569433234035 " " y[1] (numeric) = 0.4422569433234299 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 5.9746507963259930000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5201891240334378 " " Order of pole = 3.5933208613365153 " " x[1] = -1.1220000000000967 " " y[1] (analytic) = 0.4426964819795545 " " y[1] (numeric) = 0.44269648197958095 " " absolute error = 2.642330798607872600000000000000E-14 " " relative error = 5.9687187636831180000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5194062930605745 " " Order of pole = 3.5927563974514705 " " x[1] = -1.1210000000000968 " " y[1] (analytic) = 0.4431365024387592 " " y[1] (numeric) = 0.44313650243878566 " " absolute error = 2.647881913730998300000000000000E-14 " " relative error = 5.975318889684408000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5186238375150547 " " Order of pole = 3.5921936875724754 " " x[1] = -1.120000000000097 " " y[1] (analytic) = 0.4435770049680197 " " y[1] (numeric) = 0.4435770049680463 " " absolute error = 2.6589841439772500000000000000E-14 " " relative error = 5.9944138541828900000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.517841772226126 " " Order of pole = 3.5916330223383497 " " x[1] = -1.119000000000097 " " y[1] (analytic) = 0.44401798983283325 " " y[1] (numeric) = 0.4440179898328599 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.00096239367134000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5170601119997054 " " Order of pole = 3.59107469210916 " " x[1] = -1.1180000000000971 " " y[1] (analytic) = 0.44445945729718134 " " y[1] (numeric) = 0.44445945729720804 " " absolute error = 2.670086374223501500000000000000E-14 " " relative error = 6.0074914154390180000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5162788716127602 " " Order of pole = 3.5905189868530236 " " x[1] = -1.1170000000000972 " " y[1] (analytic) = 0.44490140762352065 " " y[1] (numeric) = 0.4449014076235473 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 5.989046591992642000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5154980658051265 " " Order of pole = 3.589966195980459 " " x[1] = -1.1160000000000974 " " y[1] (analytic) = 0.44534384107277236 " " y[1] (numeric) = 0.4453438410727992 " " absolute error = 2.68118860446975300000000000000E-14 " " relative error = 6.020491039038817000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5147177092739645 " " Order of pole = 3.5894166082322982 " " x[1] = -1.1150000000000975 " " y[1] (analytic) = 0.44578675790431327 " " y[1] (numeric) = 0.4457867579043401 " " absolute error = 2.68118860446975300000000000000E-14 " " relative error = 6.014509307262245000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.513937816666295 " " Order of pole = 3.5888705115281994 " " x[1] = -1.1140000000000976 " " y[1] (analytic) = 0.44623015837596447 " " y[1] (numeric) = 0.4462301583759914 " " absolute error = 2.692290834716004600000000000000E-14 " " relative error = 6.033412991435814000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.513158402572502 " " Order of pole = 3.5883281928347905 " " x[1] = -1.1130000000000977 " " y[1] (analytic) = 0.44667404274398254 " " y[1] (numeric) = 0.4466740427440094 " " absolute error = 2.686739719592879000000000000000E-14 " " relative error = 6.014989595293813000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5123794815195506 " " Order of pole = 3.5877899380275693 " " x[1] = -1.1120000000000978 " " y[1] (analytic) = 0.44711841126304813 " " y[1] (numeric) = 0.4471184112630751 " " absolute error = 2.697841949839130400000000000000E-14 " " relative error = 6.033842225861594000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5116010679640712 " " Order of pole = 3.587256031750062 " " x[1] = -1.111000000000098 " " y[1] (analytic) = 0.4475632641862573 " " y[1] (numeric) = 0.44756326418628434 " " absolute error = 2.703393064962256000000000000000E-14 " " relative error = 6.0402478963001220000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.510823176286147 " " Order of pole = 3.586726757287007 " " x[1] = -1.110000000000098 " " y[1] (analytic) = 0.4480086017651102 " " y[1] (numeric) = 0.4480086017651373 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 6.0466343043691710000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5100458207818512 " " Order of pole = 3.586202396411828 " " x[1] = -1.1090000000000981 " " y[1] (analytic) = 0.44845442424950144 " " y[1] (numeric) = 0.4484544242495285 " " absolute error = 2.70894418008538200000000000000E-14 " " relative error = 6.040623157233561000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5092690156571145 " " Order of pole = 3.585683229260976 " " x[1] = -1.1080000000000982 " " y[1] (analytic) = 0.44890073188770946 " " y[1] (numeric) = 0.4489007318877366 " " absolute error = 2.714495295208508000000000000000E-14 " " relative error = 6.046983447305956000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5084927750209522 " " Order of pole = 3.585169534195117 " " x[1] = -1.1070000000000983 " " y[1] (analytic) = 0.4493475249263866 " " y[1] (numeric) = 0.4493475249264139 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 6.078032011026009000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.50771711287845 " " Order of pole = 3.58466158765496 " " x[1] = -1.1060000000000985 " " y[1] (analytic) = 0.4497948036105488 " " y[1] (numeric) = 0.4497948036105761 " " absolute error = 2.73114864057788500000000000000E-14 " " relative error = 6.07198797908441000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.50694204312478 " " Order of pole = 3.584159664038147 " " x[1] = -1.1050000000000986 " " y[1] (analytic) = 0.4502425681835648 " " y[1] (numeric) = 0.45024256818359215 " " absolute error = 2.73669975570101100000000000000E-14 " " relative error = 6.078278574906434000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5061675795379037 " " Order of pole = 3.583664035548818 " " x[1] = -1.1040000000000987 " " y[1] (analytic) = 0.450690818887146 " " y[1] (numeric) = 0.4506908188871735 " " absolute error = 2.747801985947262400000000000000E-14 " " relative error = 6.09686701125216100000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5053937357724658 " " Order of pole = 3.583174972071472 " " x[1] = -1.1030000000000988 " " y[1] (analytic) = 0.45113955596133637 " " y[1] (numeric) = 0.4511395559613638 " " absolute error = 2.742250870824136700000000000000E-14 " " relative error = 6.0784979605272160000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5046205253531184 " " Order of pole = 3.5826927410329397 " " x[1] = -1.102000000000099 " " y[1] (analytic) = 0.45158877964450095 " " y[1] (numeric) = 0.45158877964452854 " " absolute error = 2.75890421619351400000000000000E-14 " " relative error = 6.109328531956384000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5038479616677483 " " Order of pole = 3.5822176072620096 " " x[1] = -1.101000000000099 " " y[1] (analytic) = 0.45203849017331676 " " y[1] (numeric) = 0.45203849017334435 " " absolute error = 2.75890421619351400000000000000E-14 " " relative error = 6.103250665968109000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.503076057961422 " " Order of pole = 3.581749832863654 " " x[1] = -1.1000000000000991 " " y[1] (analytic) = 0.4524886877827608 " " y[1] (numeric) = 0.45248868778278845 " " absolute error = 2.764455331316640000000000000000E-14 " " relative error = 6.1094462822103770000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.502304827329775 " " Order of pole = 3.581289677081511 " " x[1] = -1.0990000000000992 " " y[1] (analytic) = 0.45293937270610035 " " y[1] (numeric) = 0.4529393727061281 " " absolute error = 2.775557561562891400000000000000E-14 " " relative error = 6.127878759976719000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.501534282712366 " " Order of pole = 3.5808373961595947 " " x[1] = -1.0980000000000993 " " y[1] (analytic) = 0.4533905451748823 " " y[1] (numeric) = 0.45339054517491 " " absolute error = 2.770006446439765600000000000000E-14 " " relative error = 6.109537298293937000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5007644368868742 " " Order of pole = 3.5803932432207866 " " x[1] = -1.0970000000000995 " " y[1] (analytic) = 0.45384220541892173 " " y[1] (numeric) = 0.45384220541894954 " " absolute error = 2.78110867668601700000000000000E-14 " " relative error = 6.127919888188668000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.499995302462206 " " Order of pole = 3.579957468122995 " " x[1] = -1.0960000000000996 " " y[1] (analytic) = 0.4542943536662921 " " y[1] (numeric) = 0.45429435366631993 " " absolute error = 2.78110867668601700000000000000E-14 " " relative error = 6.121820916860694000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.499226891872429 " " Order of pole = 3.5795303173318516 " " x[1] = -1.0950000000000997 " " y[1] (analytic) = 0.4547469901433138 " " y[1] (numeric) = 0.4547469901433417 " " absolute error = 2.78665979180914300000000000000E-14 " " relative error = 6.127934548683709000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4984592173708897 " " Order of pole = 3.579112033797003 " " x[1] = -1.0940000000000998 " " y[1] (analytic) = 0.4552001150745439 " " y[1] (numeric) = 0.45520011507457175 " " absolute error = 2.78665979180914300000000000000E-14 " " relative error = 6.121834550399439000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4976922910233388 " " Order of pole = 3.5787028568078725 " " x[1] = -1.0930000000001 " " y[1] (analytic) = 0.4556537286827645 " " y[1] (numeric) = 0.45565372868279247 " " absolute error = 2.797762022055394500000000000000E-14 " " relative error = 6.1401056239424600000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4969261247025907 " " Order of pole = 3.578303021880494 " " x[1] = -1.0920000000001 " " y[1] (analytic) = 0.4561078311889729 " " y[1] (numeric) = 0.45610783118900095 " " absolute error = 2.803313137178520000000000000000E-14 " " relative error = 6.14616313399158000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4961607300819035 " " Order of pole = 3.577912760618041 " " x[1] = -1.0910000000001001 " " y[1] (analytic) = 0.4565624228123699 " " y[1] (numeric) = 0.4565624228123979 " " absolute error = 2.797762022055394500000000000000E-14 " " relative error = 6.127884999430122000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.495396118629262 " " Order of pole = 3.5775323005894926 " " x[1] = -1.0900000000001002 " " y[1] (analytic) = 0.4570175037703488 " " y[1] (numeric) = 0.45701750377037687 " " absolute error = 2.80886425230164600000000000000E-14 " " relative error = 6.146075870461846000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4946323016013305 " " Order of pole = 3.5771618652013437 " " x[1] = -1.0890000000001003 " " y[1] (analytic) = 0.45747307427848494 " " y[1] (numeric) = 0.4574730742785131 " " absolute error = 2.814415367424772000000000000000E-14 " " relative error = 6.15208965437714000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4938692900375694 " " Order of pole = 3.576801673572529 " " x[1] = -1.0880000000001004 " " y[1] (analytic) = 0.45792913455052425 " " y[1] (numeric) = 0.4579291345505524 " " absolute error = 2.814415367424772000000000000000E-14 " " relative error = 6.145962672122255000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4931070947545495 " " Order of pole = 3.5764519404129516 " " x[1] = -1.0870000000001006 " " y[1] (analytic) = 0.4583856847983721 " " y[1] (numeric) = 0.45838568479840036 " " absolute error = 2.825517597671023400000000000000E-14 " " relative error = 6.164061600034194000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4923457263399504 " " Order of pole = 3.5761128758955145 " " x[1] = -1.0860000000001007 " " y[1] (analytic) = 0.4588427252320825 " " y[1] (numeric) = 0.45884272523211084 " " absolute error = 2.831068712794149000000000000000E-14 " " relative error = 6.170019828389336000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4915851951472225 " " Order of pole = 3.5757846855413966 " " x[1] = -1.0850000000001008 " " y[1] (analytic) = 0.45930025605984665 " " y[1] (numeric) = 0.459300256059875 " " absolute error = 2.83661982791727500000000000000E-14 " " relative error = 6.175959604837810000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4908255112895963 " " Order of pole = 3.5754675700917495 " " x[1] = -1.0840000000001009 " " y[1] (analytic) = 0.4597582774879816 " " y[1] (numeric) = 0.4597582774880101 " " absolute error = 2.85327317328665230000000000000E-14 " " relative error = 6.206028935196798000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4900666846349016 " " Order of pole = 3.5751617253957626 " " x[1] = -1.083000000000101 " " y[1] (analytic) = 0.46021678972091956 " " y[1] (numeric) = 0.46021678972094815 " " absolute error = 2.85882428840977800000000000000E-14 " " relative error = 6.211907849219060000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.489308724799923 " " Order of pole = 3.5748673422890036 " " x[1] = -1.082000000000101 " " y[1] (analytic) = 0.460675792961196 " " y[1] (numeric) = 0.4606757929612246 " " absolute error = 2.85882428840977800000000000000E-14 " " relative error = 6.205718494634653000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4885516411450501 " " Order of pole = 3.5745846064775577 " " x[1] = -1.0810000000001012 " " y[1] (analytic) = 0.4611352874094384 " " y[1] (numeric) = 0.461135287409467 " " absolute error = 2.86437540353290400000000000000E-14 " " relative error = 6.2115727894613450000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4877954427688815 " " Order of pole = 3.5743136984210153 " " x[1] = -1.0800000000001013 " " y[1] (analytic) = 0.4615952732643551 " " y[1] (numeric) = 0.4615952732643838 " " absolute error = 2.869926518656029700000000000000E-14 " " relative error = 6.217408810017051000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4870401385032328 " " Order of pole = 3.574054793223457 " " x[1] = -1.0790000000001014 " " y[1] (analytic) = 0.4620557507227239 " " y[1] (numeric) = 0.4620557507227527 " " absolute error = 2.875477633779155400000000000000E-14 " " relative error = 6.223226589608463000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4862857369078082 " " Order of pole = 3.573808060517372 " " x[1] = -1.0780000000001015 " " y[1] (analytic) = 0.4625167199793805 " " y[1] (numeric) = 0.4625167199794092 " " absolute error = 2.869926518656029700000000000000E-14 " " relative error = 6.2050222071625300000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4855322462653486 " " Order of pole = 3.5735736643571947 " " x[1] = -1.0770000000001017 " " y[1] (analytic) = 0.46297818122720635 " " y[1] (numeric) = 0.46297818122723516 " " absolute error = 2.88102874890228100000000000000E-14 " " relative error = 6.222817544588387000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4847796745763358 " " Order of pole = 3.573351763103304 " " x[1] = -1.0760000000001018 " " y[1] (analytic) = 0.4634401346571185 " " y[1] (numeric) = 0.46344013465714734 " " absolute error = 2.88657986402540700000000000000E-14 " " relative error = 6.228592752677920000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4840280295544148 " " Order of pole = 3.5731425093208067 " " x[1] = -1.0750000000001019 " " y[1] (analytic) = 0.46390258045805666 " " y[1] (numeric) = 0.4639025804580856 " " absolute error = 2.89213097914853300000000000000E-14 " " relative error = 6.234349841927689000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4832773186217643 " " Order of pole = 3.572946049676819 " " x[1] = -1.074000000000102 " " y[1] (analytic) = 0.46436551881697236 " " y[1] (numeric) = 0.4643655188170013 " " absolute error = 2.89213097914853300000000000000E-14 " " relative error = 6.228134652453500000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4825275489037866 " " Order of pole = 3.572762524823723 " " x[1] = -1.073000000000102 " " y[1] (analytic) = 0.4648289499188168 " " y[1] (numeric) = 0.46482894991884577 " " absolute error = 2.897682094271658600000000000000E-14 " " relative error = 6.233867522187987000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.481778727225483 " " Order of pole = 3.5725920693167232 " " x[1] = -1.0720000000001022 " " y[1] (analytic) = 0.46529287394652946 " " y[1] (numeric) = 0.46529287394655855 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 6.251512729705337000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4810308601059154 " " Order of pole = 3.572434811491963 " " x[1] = -1.0710000000001023 " " y[1] (analytic) = 0.46575729108102637 " " y[1] (numeric) = 0.46575729108105546 " " absolute error = 2.9087843245179100000000000000E-14 " " relative error = 6.245279204897896000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4802839537548194 " " Order of pole = 3.572290873388578 " " x[1] = -1.0700000000001024 " " y[1] (analytic) = 0.46622220150118787 " " y[1] (numeric) = 0.466222201501217 " " absolute error = 2.91433543964103600000000000000E-14 " " relative error = 6.250958084486696000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4795380140678522 " " Order of pole = 3.5721603706425356 " " x[1] = -1.0690000000001025 " " y[1] (analytic) = 0.46668760538384707 " " y[1] (numeric) = 0.4666876053838764 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 6.2804084599583420000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4787930466220103 " " Order of pole = 3.572043412383838 " " x[1] = -1.0680000000001026 " " y[1] (analytic) = 0.46715350290377833 " " y[1] (numeric) = 0.46715350290380764 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 6.274144936924774000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4780490566728297 " " Order of pole = 3.5719401011699468 " " x[1] = -1.0670000000001028 " " y[1] (analytic) = 0.4676198942336844 " " y[1] (numeric) = 0.46761989423371375 " " absolute error = 2.93653990013353900000000000000E-14 " " relative error = 6.279758274497316000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4773060491494054 " " Order of pole = 3.5718505328744783 " " x[1] = -1.0660000000001029 " " y[1] (analytic) = 0.46808677954418515 " " y[1] (numeric) = 0.4680867795442146 " " absolute error = 2.947642130379790600000000000000E-14 " " relative error = 6.297212951090295000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.476564028650736 " " Order of pole = 3.571774796602803 " " x[1] = -1.065000000000103 " " y[1] (analytic) = 0.46855415900380576 " " y[1] (numeric) = 0.4685541590038352 " " absolute error = 2.94209101525666500000000000000E-14 " " relative error = 6.2790841970368000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.475822999444087 " " Order of pole = 3.5717129746487615 " " x[1] = -1.064000000000103 " " y[1] (analytic) = 0.4690220327789636 " " y[1] (numeric) = 0.46902203277899307 " " absolute error = 2.947642130379790600000000000000E-14 " " relative error = 6.2846559956148760000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4750829654521145 " " Order of pole = 3.571665142221608 " " x[1] = -1.0630000000001032 " " y[1] (analytic) = 0.4694904010339573 " " y[1] (numeric) = 0.46949040103398687 " " absolute error = 2.95874436062604200000000000000E-14 " " relative error = 6.30203376705894000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.474343930268152 " " Order of pole = 3.571631367748026 " " x[1] = -1.0620000000001033 " " y[1] (analytic) = 0.469959263930954 " " y[1] (numeric) = 0.46995926393098364 " " absolute error = 2.96429547574916800000000000000E-14 " " relative error = 6.307558342300663000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4736058971345636 " " Order of pole = 3.5716117124197204 " " x[1] = -1.0610000000001034 " " y[1] (analytic) = 0.47042862162997723 " " y[1] (numeric) = 0.47042862163000687 " " absolute error = 2.96429547574916800000000000000E-14 " " relative error = 6.301265143005647000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4728688689473808 " " Order of pole = 3.5716062302776344 " " x[1] = -1.0600000000001035 " " y[1] (analytic) = 0.47089847428889464 " " y[1] (numeric) = 0.47089847428892434 " " absolute error = 2.96984659087229400000000000000E-14 " " relative error = 6.306766220377055000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4721328482533858 " " Order of pole = 3.5716149681417804 " " x[1] = -1.0590000000001036 " " y[1] (analytic) = 0.47136882206340597 " " y[1] (numeric) = 0.4713688220634357 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 6.312249700713521000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4713978372463064 " " Order of pole = 3.5716379655228643 " " x[1] = -1.0580000000001037 " " y[1] (analytic) = 0.47183966510703046 " " y[1] (numeric) = 0.4718396651070602 " " absolute error = 2.975397705995419500000000000000E-14 " " relative error = 6.305950783769929000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4706638377636891 " " Order of pole = 3.571675254547536 " " x[1] = -1.0570000000001039 " " y[1] (analytic) = 0.4723110035710945 " " y[1] (numeric) = 0.4723110035711244 " " absolute error = 2.98649993624167100000000000000E-14 " " relative error = 6.3231640035083980000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4699308512847382 " " Order of pole = 3.5717268599033787 " " x[1] = -1.056000000000104 " " y[1] (analytic) = 0.4727828376047196 " " y[1] (numeric) = 0.4727828376047495 " " absolute error = 2.98649993624167100000000000000E-14 " " relative error = 6.316853529143118000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.46919887892814 " " Order of pole = 3.5717927987834877 " " x[1] = -1.055000000000104 " " y[1] (analytic) = 0.4732551673548093 " " y[1] (numeric) = 0.4732551673548393 " " absolute error = 2.997602166487922700000000000000E-14 " " relative error = 6.3340083178438010000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4684679214489254 " " Order of pole = 3.5718730808112085 " " x[1] = -1.0540000000001042 " " y[1] (analytic) = 0.4737279929660374 " " y[1] (numeric) = 0.47372799296606743 " " absolute error = 3.003153281611048400000000000000E-14 " " relative error = 6.339404312605929000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4677379792370477 " " Order of pole = 3.5719677080000096 " " x[1] = -1.0530000000001043 " " y[1] (analytic) = 0.47420131458083487 " " y[1] (numeric) = 0.4742013145808649 " " absolute error = 3.003153281611048400000000000000E-14 " " relative error = 6.333076668641574000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4670090523149633 " " Order of pole = 3.572076674692738 " " x[1] = -1.0520000000001044 " " y[1] (analytic) = 0.47467513233937736 " " y[1] (numeric) = 0.47467513233940745 " " absolute error = 3.00870439673417400000000000000E-14 " " relative error = 6.338449587418133000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.466281140335941 " " Order of pole = 3.572199967515864 " " x[1] = -1.0510000000001045 " " y[1] (analytic) = 0.4751494463795729 " " y[1] (numeric) = 0.47514944637960305 " " absolute error = 3.014255511857300000000000000E-14 " " relative error = 6.343805164511048000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4655542425822594 " " Order of pole = 3.5723375653312637 " " x[1] = -1.0500000000001046 " " y[1] (analytic) = 0.47562425683704906 " " y[1] (numeric) = 0.47562425683707915 " " absolute error = 3.00870439673417400000000000000E-14 " " relative error = 6.325800994134261000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4648283579638275 " " Order of pole = 3.572489439196662 " " x[1] = -1.0490000000001047 " " y[1] (analytic) = 0.4760995638451397 " " y[1] (numeric) = 0.47609956384517 " " absolute error = 3.030908857226677400000000000000E-14 " " relative error = 6.3661239946284380000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4641034850166739 " " Order of pole = 3.5726555523233934 " " x[1] = -1.0480000000001048 " " y[1] (analytic) = 0.47657536753487345 " " y[1] (numeric) = 0.4765753675349038 " " absolute error = 3.03645997234980300000000000000E-14 " " relative error = 6.37141610582215000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.463379621902078 " " Order of pole = 3.5728358600472347 " " x[1] = -1.047000000000105 " " y[1] (analytic) = 0.47705166803495985 " " y[1] (numeric) = 0.47705166803499016 " " absolute error = 3.030908857226677400000000000000E-14 " " relative error = 6.353418424698942000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4626567664049925 " " Order of pole = 3.5730303097846488 " " x[1] = -1.046000000000105 " " y[1] (analytic) = 0.47752846547177663 " " y[1] (numeric) = 0.477528465471807 " " absolute error = 3.03645997234980300000000000000E-14 " " relative error = 6.358699411457949000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4619349159338013 " " Order of pole = 3.57323884101654 " " x[1] = -1.0450000000001052 " " y[1] (analytic) = 0.4780057599693574 " " y[1] (numeric) = 0.4780057599693878 " " absolute error = 3.04201108747292900000000000000E-14 " " relative error = 6.363963245271224000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4612140675193366 " " Order of pole = 3.5734613852566746 " " x[1] = -1.0440000000001053 " " y[1] (analytic) = 0.4784835516493781 " " y[1] (numeric) = 0.47848355164940864 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 6.380811434781425000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4604942178145395 " " Order of pole = 3.5736978660334167 " " x[1] = -1.0430000000001054 " " y[1] (analytic) = 0.47896184063114466 " " y[1] (numeric) = 0.47896184063117514 " " absolute error = 3.04756220259605470000000000000E-14 " " relative error = 6.3628496971286400000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4597753630941117 " " Order of pole = 3.573948198871218 " " x[1] = -1.0420000000001055 " " y[1] (analytic) = 0.4794406270315792 " " y[1] (numeric) = 0.47944062703160967 " " absolute error = 3.04756220259605470000000000000E-14 " " relative error = 6.356495529936226000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.459057499254466 " " Order of pole = 3.5742122912783607 " " x[1] = -1.0410000000001056 " " y[1] (analytic) = 0.47991991096520753 " " y[1] (numeric) = 0.47991991096523806 " " absolute error = 3.053113317719180500000000000000E-14 " " relative error = 6.36171421097909000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.458340621814029 " " Order of pole = 3.5744900427419175 " " x[1] = -1.0400000000001057 " " y[1] (analytic) = 0.48039969254414594 " " y[1] (numeric) = 0.48039969254417664 " " absolute error = 3.06976666308855800000000000000E-14 " " relative error = 6.390026285885818000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.457624725913157 " " Order of pole = 3.5747813447148467 " " x[1] = -1.0390000000001058 " " y[1] (analytic) = 0.4808799718780884 " " y[1] (numeric) = 0.48087997187811904 " " absolute error = 3.06421554796543200000000000000E-14 " " relative error = 6.372100580521297000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4569098063149513 " " Order of pole = 3.575086080621656 " " x[1] = -1.038000000000106 " " y[1] (analytic) = 0.48136074907429227 " " y[1] (numeric) = 0.481360749074323 " " absolute error = 3.075317778211683600000000000000E-14 " " relative error = 6.38880046643987000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.456195857406001 " " Order of pole = 3.575404125862594 " " x[1] = -1.037000000000106 " " y[1] (analytic) = 0.4818420242375664 " " y[1] (numeric) = 0.4818420242375972 " " absolute error = 3.080868893334809400000000000000E-14 " " relative error = 6.393939794292048000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.455482873197062 " " Order of pole = 3.575735347816707 " " x[1] = -1.0360000000001062 " " y[1] (analytic) = 0.4823237974702569 " " y[1] (numeric) = 0.4823237974702878 " " absolute error = 3.09197112358106100000000000000E-14 " " relative error = 6.410571362636801000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4547708473243703 " " Order of pole = 3.57607960585797 " " x[1] = -1.0350000000001063 " " y[1] (analytic) = 0.4828060688722345 " " y[1] (numeric) = 0.48280606887226535 " " absolute error = 3.08642000845793500000000000000E-14 " " relative error = 6.392670282018965000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4540597730510878 " " Order of pole = 3.576436751374338 " " x[1] = -1.0340000000001064 " " y[1] (analytic) = 0.48328883854088034 " " y[1] (numeric) = 0.48328883854091126 " " absolute error = 3.09197112358106100000000000000E-14 " " relative error = 6.397770602185173000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4533496432684754 " " Order of pole = 3.576806627781231 " " x[1] = -1.0330000000001065 " " y[1] (analytic) = 0.4837721065710734 " " y[1] (numeric) = 0.4837721065711044 " " absolute error = 3.103073353827312500000000000000E-14 " " relative error = 6.414328795890228000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4526404504983061 " " Order of pole = 3.577189070560774 " " x[1] = -1.0320000000001066 " " y[1] (analytic) = 0.4842558730551768 " " y[1] (numeric) = 0.4842558730552079 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 6.419384135370594000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4519321868941515 " " Order of pole = 3.577583907277937 " " x[1] = -1.0310000000001067 " " y[1] (analytic) = 0.4847401380830241 " " y[1] (numeric) = 0.48474013808305516 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 6.412971043091149000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.451224844244295 " " Order of pole = 3.5779909576303837 " " x[1] = -1.0300000000001068 " " y[1] (analytic) = 0.4852249017419056 " " y[1] (numeric) = 0.4852249017419368 " " absolute error = 3.1197266991966900000000000000E-14 " " relative error = 6.429444754375145000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.450518413973675 " " Order of pole = 3.5784100334785123 " " x[1] = -1.029000000000107 " " y[1] (analytic) = 0.4857101641165554 " " y[1] (numeric) = 0.4857101641165867 " " absolute error = 3.130828929442941400000000000000E-14 " " relative error = 6.445878963923924000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4498128871468552 " " Order of pole = 3.578840938896853 " " x[1] = -1.028000000000107 " " y[1] (analytic) = 0.4861959252891374 " " y[1] (numeric) = 0.4861959252891686 " " absolute error = 3.1197266991966900000000000000E-14 " " relative error = 6.41660395928125000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4491082544709781 " " Order of pole = 3.579283470225345 " " x[1] = -1.0270000000001072 " " y[1] (analytic) = 0.486682185339231 " " y[1] (numeric) = 0.4866821853392624 " " absolute error = 3.13638004456606700000000000000E-14 " " relative error = 6.444411032591881000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4484045062986814 " " Order of pole = 3.579737416120068 " " x[1] = -1.0260000000001073 " " y[1] (analytic) = 0.48716894434381885 " " y[1] (numeric) = 0.4871689443438503 " " absolute error = 3.14193115968919300000000000000E-14 " " relative error = 6.449366685146866000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4477016326317 " " Order of pole = 3.58020255761841 " " x[1] = -1.0250000000001074 " " y[1] (analytic) = 0.4876562023772716 " " y[1] (numeric) = 0.48765620237730306 " " absolute error = 3.14748227481231900000000000000E-14 " " relative error = 6.454305839787705000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.446999623124585 " " Order of pole = 3.58067866820679 " " x[1] = -1.0240000000001075 " " y[1] (analytic) = 0.488143959511335 " " y[1] (numeric) = 0.48814395951136647 " " absolute error = 3.14748227481231900000000000000E-14 " " relative error = 6.447856648606614000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.446298467088405 " " Order of pole = 3.5811655138884184 " " x[1] = -1.0230000000001076 " " y[1] (analytic) = 0.4886322158151155 " " y[1] (numeric) = 0.488632215815147 " " absolute error = 3.14748227481231900000000000000E-14 " " relative error = 6.441413752390073000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.445598153494882 " " Order of pole = 3.5816628532602195 " " x[1] = -1.0220000000001077 " " y[1] (analytic) = 0.4891209713550668 " " y[1] (numeric) = 0.48912097135509836 " " absolute error = 3.153033389935444600000000000000E-14 " " relative error = 6.446326317189470000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4448986709809148 " " Order of pole = 3.5821704375980907 " " x[1] = -1.0210000000001078 " " y[1] (analytic) = 0.4896102261949756 " " y[1] (numeric) = 0.48961022619500727 " " absolute error = 3.16968673530482200000000000000E-14 " " relative error = 6.4738981453434140000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4442000078530786 " " Order of pole = 3.5826880109420216 " " x[1] = -1.020000000000108 " " y[1] (analytic) = 0.4900999803959479 " " y[1] (numeric) = 0.4900999803959796 " " absolute error = 3.16968673530482200000000000000E-14 " " relative error = 6.467428814716657000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4435021520925149 " " Order of pole = 3.583215310189569 " " x[1] = -1.019000000000108 " " y[1] (analytic) = 0.4905902340163945 " " y[1] (numeric) = 0.49059023401642626 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 6.472281000036861000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4428050913602846 " " Order of pole = 3.5837520651991888 " " x[1] = -1.0180000000001082 " " y[1] (analytic) = 0.4910809871120175 " " y[1] (numeric) = 0.4910809871120492 " " absolute error = 3.17523785042794770000000000000E-14 " " relative error = 6.46581304053554000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4421088130022661 " " Order of pole = 3.5842979988846864 " " x[1] = -1.0170000000001083 " " y[1] (analytic) = 0.49157223973579545 " " y[1] (numeric) = 0.49157223973582737 " " absolute error = 3.19189119579732500000000000000E-14 " " relative error = 6.4932291488080480000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4414133040552835 " " Order of pole = 3.584852827335311 " " x[1] = -1.0160000000001084 " " y[1] (analytic) = 0.49206399193797024 " " y[1] (numeric) = 0.4920639919380021 " " absolute error = 3.18634008067419900000000000000E-14 " " relative error = 6.475458746991327000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4407185512526932 " " Order of pole = 3.5854162599251715 " " x[1] = -1.0150000000001085 " " y[1] (analytic) = 0.4925562437660317 " " y[1] (numeric) = 0.49255624376606355 " " absolute error = 3.18634008067419900000000000000E-14 " " relative error = 6.468987290287477000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4400245410306984 " " Order of pole = 3.5859879994379398 " " x[1] = -1.0140000000001086 " " y[1] (analytic) = 0.4930489952647039 " " y[1] (numeric) = 0.4930489952647359 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 6.485039705240319000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4393312595345404 " " Order of pole = 3.586567742189686 " " x[1] = -1.0130000000001087 " " y[1] (analytic) = 0.49354224647593137 " " y[1] (numeric) = 0.49354224647596334 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 6.478558489676083000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4386386926254733 " " Order of pole = 3.5871551781681 " " x[1] = -1.0120000000001088 " " y[1] (analytic) = 0.49403599743886367 " " y[1] (numeric) = 0.4940359974388957 " " absolute error = 3.202993426043576600000000000000E-14 " " relative error = 6.483319925366254000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4379468258872685 " " Order of pole = 3.5877499911625996 " " x[1] = -1.011000000000109 " " y[1] (analytic) = 0.4945302481898417 " " y[1] (numeric) = 0.4945302481898739 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 6.5105153490570440000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4372556446337512 " " Order of pole = 3.588351858916166 " " x[1] = -1.010000000000109 " " y[1] (analytic) = 0.4950249987623835 " " y[1] (numeric) = 0.4950249987624157 " " absolute error = 3.21964677141295400000000000000E-14 " " relative error = 6.504008442932018000000000000E-12 "%" h = 1.000E-3 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.4365651339160392 " " Order of pole = 3.588960453271575 " " x[1] = -1.0090000000001091 " " y[1] (analytic) = 0.4955202491871688 " " y[1] (numeric) = 0.49552024918720106 " " absolute error = 3.2251978865360800000000000000E-14 " " relative error = 6.508710576059329000000000000E-12 "%" h = 1.000E-3 " " "Finished!" "Maximum Time Reached before Solution Completed!" "diff ( y , x , 1 ) = m1 * 2.0 * x / (x * x + 1.0) /( x * x + 1.0);" Iterations = 991 "Total Elapsed Time "= 15 Minutes 0 Seconds "Elapsed Time(since restart) "= 15 Minutes 0 Seconds "Expected Time Remaining "= 30 Minutes 23 Seconds "Optimized Time Remaining "= 30 Minutes 23 Seconds "Time to Timeout " Unknown Percent Done = 33.066666666663025 "%" (%o51) true (%o51) diffeq.max