(%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_a1 : sinh(array_x ), 1 1 array_tmp1_a1 1 array_tmp1_a2 : cosh(array_x ), array_tmp1 : --------------, 1 1 1 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp2 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_a1 : att(1, array_tmp1_a2, array_x, 1), 2 array_tmp1_a2 : att(1, array_tmp1_a1, array_x, 1), 2 array_tmp1_a1 - ats(2, array_tmp1_a2, array_tmp1, 2) 2 array_tmp1 : -----------------------------------------------------, 2 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp2 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_a1 : att(2, array_tmp1_a2, array_x, 1), 3 array_tmp1_a2 : att(2, array_tmp1_a1, array_x, 1), 3 array_tmp1_a1 - ats(3, array_tmp1_a2, array_tmp1, 2) 3 array_tmp1 : -----------------------------------------------------, 3 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp2 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_a1 : att(3, array_tmp1_a2, array_x, 1), 4 array_tmp1_a2 : att(3, array_tmp1_a1, array_x, 1), 4 array_tmp1_a1 - ats(4, array_tmp1_a2, array_tmp1, 2) 4 array_tmp1 : -----------------------------------------------------, 4 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp2 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_a1 : att(4, array_tmp1_a2, array_x, 1), 5 array_tmp1_a2 : att(4, array_tmp1_a1, array_x, 1), 5 array_tmp1_a1 - ats(5, array_tmp1_a2, array_tmp1, 2) 5 array_tmp1 : -----------------------------------------------------, 5 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp2 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_a1 : kkk att(kkk - 1, array_tmp1_a2, array_x, 1), array_tmp1_a2 : att(kkk - 1, array_tmp1_a1, array_x, 1), kkk array_tmp1_a1 - ats(kkk, array_tmp1_a2, array_tmp1, 2) kkk array_tmp1 : ---------------------------------------------------------, kkk array_tmp1_a2 1 array_tmp2 : array_tmp1 + 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_tmp2 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_a1 : sinh(array_x ), 1 1 array_tmp1_a1 1 array_tmp1_a2 : cosh(array_x ), array_tmp1 : --------------, 1 1 1 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 1 1 1 if not array_y_set_initial then (if 1 <= glob_max_terms 1, 2 1 then (temporary : array_tmp2 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_a1 : att(1, array_tmp1_a2, array_x, 1), 2 array_tmp1_a2 : att(1, array_tmp1_a1, array_x, 1), 2 array_tmp1_a1 - ats(2, array_tmp1_a2, array_tmp1, 2) 2 array_tmp1 : -----------------------------------------------------, 2 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 2 2 2 if not array_y_set_initial then (if 2 <= glob_max_terms 1, 3 1 then (temporary : array_tmp2 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_a1 : att(2, array_tmp1_a2, array_x, 1), 3 array_tmp1_a2 : att(2, array_tmp1_a1, array_x, 1), 3 array_tmp1_a1 - ats(3, array_tmp1_a2, array_tmp1, 2) 3 array_tmp1 : -----------------------------------------------------, 3 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 3 3 3 if not array_y_set_initial then (if 3 <= glob_max_terms 1, 4 1 then (temporary : array_tmp2 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_a1 : att(3, array_tmp1_a2, array_x, 1), 4 array_tmp1_a2 : att(3, array_tmp1_a1, array_x, 1), 4 array_tmp1_a1 - ats(4, array_tmp1_a2, array_tmp1, 2) 4 array_tmp1 : -----------------------------------------------------, 4 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 4 4 4 if not array_y_set_initial then (if 4 <= glob_max_terms 1, 5 1 then (temporary : array_tmp2 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_a1 : att(4, array_tmp1_a2, array_x, 1), 5 array_tmp1_a2 : att(4, array_tmp1_a1, array_x, 1), 5 array_tmp1_a1 - ats(5, array_tmp1_a2, array_tmp1, 2) 5 array_tmp1 : -----------------------------------------------------, 5 array_tmp1_a2 1 array_tmp2 : array_tmp1 + array_const_0D0 , 5 5 5 if not array_y_set_initial then (if 5 <= glob_max_terms 1, 6 1 then (temporary : array_tmp2 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_a1 : kkk att(kkk - 1, array_tmp1_a2, array_x, 1), array_tmp1_a2 : att(kkk - 1, array_tmp1_a1, array_x, 1), kkk array_tmp1_a1 - ats(kkk, array_tmp1_a2, array_tmp1, 2) kkk array_tmp1 : ---------------------------------------------------------, kkk array_tmp1_a2 1 array_tmp2 : array_tmp1 + 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_tmp2 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) (%i49) exact_soln_y(x) := log(cosh(x)) + 2.0 (%o49) exact_soln_y(x) := log(cosh(x)) + 2.0 (%i50) mainprog() := (define_variable(glob_max_terms, 30, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, 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(years_in_century, 100.0, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_disp_incr, 0.1, float), define_variable(djd_debug2, true, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_h, 0.1, float), define_variable(glob_dump, false, boolean), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_clock_sec, 0.0, float), define_variable(days_in_year, 365.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_almost_1, 0.999, float), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(hours_in_day, 24.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(sec_in_min, 60.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_look_poles, false, boolean), define_variable(djd_debug, true, boolean), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(min_in_hour, 60.0, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, glob_orig_start_sec : elapsed_time_seconds(), MAX_UNCHANGED : 10, glob_curr_iter_when_opt : 0, glob_display_flag : true, glob_no_eqs : 1, glob_iter : - 1, opt_iter : - 1, glob_max_iter : 50000, glob_max_hours : 0.0, glob_max_minutes : 15.0, omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"), omniout_str(ALWAYS, "##############temp/tanhpostode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = tanh ( x ) ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : 0.1,"), omniout_str(ALWAYS, "x_end : 10.0 ,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.00001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 10,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), 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, "2.0 + log(cosh((x)))"), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_m1, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_tmp1_a1, 1 + max_terms), array(array_tmp1_a2, 1 + max_terms), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_complex_pole, 1 + 1, 1 + 3), term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_1st_rel_error : 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_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_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_y : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_x : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp1_a1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1_a2 : 0.0, term term : 1 + term), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 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_set_initial : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), 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_tmp1_a2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_a2 : 0.0, term : 1 + term), term array(array_tmp1_a1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_a1 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, 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_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 : 0.1, x_end : 10.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 1.0E-5, 1 + 0 glob_look_poles : true, glob_max_iter : 10, glob_h : 1.0E-4, 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 ) = tanh ( x ) ;"), 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-13T19:52:19-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "tanh"), logitem_str(html_log_file, "diff ( y , x , 1 ) = tanh ( x ) ;"), 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, "tanh diffeq.max"), logitem_str(html_log_file, "tanh 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_max_terms, 30, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(glob_log10abserr, 0.0, float), define_variable(glob_iter, 0, fixnum), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, 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(years_in_century, 100.0, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_start, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), define_variable(glob_hmax, 1.0, float), define_variable(glob_disp_incr, 0.1, float), define_variable(djd_debug2, true, boolean), define_variable(glob_display_flag, true, boolean), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_h, 0.1, float), define_variable(glob_dump, false, boolean), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_clock_sec, 0.0, float), define_variable(days_in_year, 365.0, float), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_large_float, 9.0E+100, float), define_variable(glob_optimal_done, false, boolean), define_variable(glob_almost_1, 0.999, float), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(hours_in_day, 24.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_percent_done, 0.0, float), define_variable(glob_normmax, 0.0, float), define_variable(glob_not_yet_finished, true, boolean), define_variable(sec_in_min, 60.0, float), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_warned2, false, boolean), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_look_poles, false, boolean), define_variable(djd_debug, true, boolean), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_initial_pass, true, boolean), define_variable(min_in_hour, 60.0, float), ALWAYS : 1, INFO : 2, DEBUGL : 3, DEBUGMASSIVE : 4, glob_iolevel : INFO, glob_orig_start_sec : elapsed_time_seconds(), MAX_UNCHANGED : 10, glob_curr_iter_when_opt : 0, glob_display_flag : true, glob_no_eqs : 1, glob_iter : - 1, opt_iter : - 1, glob_max_iter : 50000, glob_max_hours : 0.0, glob_max_minutes : 15.0, omniout_str(ALWAYS, "##############ECHO OF PROBLEM#################"), omniout_str(ALWAYS, "##############temp/tanhpostode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = tanh ( x ) ;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : 0.1,"), omniout_str(ALWAYS, "x_end : 10.0 ,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.00001 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 10,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.0001 ,"), 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, "2.0 + log(cosh((x)))"), omniout_str(ALWAYS, ");"), omniout_str(ALWAYS, ""), omniout_str(ALWAYS, "/* END USER DEF BLOCK */"), omniout_str(ALWAYS, "#######END OF ECHO OF PROBLEM#################"), glob_unchanged_h_cnt : 0, glob_warned : false, glob_warned2 : false, glob_small_float : 1.0E-200, glob_smallish_float : 1.0E-64, glob_large_float : 1.0E+100, glob_almost_1 : 0.99, glob_log10_abserr : - 8.0, glob_log10_relerr : - 8.0, glob_hmax : 0.01, Digits : 32, max_terms : 30, glob_max_terms : max_terms, glob_html_log : true, array(array_m1, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_norms, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_tmp1_a1, 1 + max_terms), array(array_tmp1_a2, 1 + max_terms), array(array_y_higher, 1 + 2, 1 + max_terms), array(array_poles, 1 + 1, 1 + 3), array(array_y_higher_work2, 1 + 2, 1 + max_terms), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_real_pole, 1 + 1, 1 + 3), array(array_complex_pole, 1 + 1, 1 + 3), term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_last_rel_error : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_1st_rel_error : 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_tmp0 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp1 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_tmp2 : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_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_y : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_x : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp1_a1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_tmp1_a2 : 0.0, term term : 1 + term), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_poles : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 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_set_initial : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_complex_pole : 0.0, term : 1 + term), ord, term ord : 1 + ord), 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_tmp1_a2, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_a2 : 0.0, term : 1 + term), term array(array_tmp1_a1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_tmp1_a1 : 0.0, term : 1 + term), term array(array_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_1, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, 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_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 : 0.1, x_end : 10.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 1.0E-5, 1 + 0 glob_look_poles : true, glob_max_iter : 10, glob_h : 1.0E-4, 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 ) = tanh ( x ) ;"), 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-13T19:52:19-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "tanh"), logitem_str(html_log_file, "diff ( y , x , 1 ) = tanh ( x ) ;"), 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, "tanh diffeq.max"), logitem_str(html_log_file, "tanh 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/tanhpostode.ode#################" "diff ( y , x , 1 ) = tanh ( x ) ;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 32," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : 0.1," "x_end : 10.0 ," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_h : 0.00001 ," "glob_look_poles : true," "glob_max_iter : 10," "/* END SECOND INPUT BLOCK */" "/* BEGIN OVERRIDE BLOCK */" "glob_h : 0.0001 ," "glob_look_poles : true," "glob_max_iter : 1000," "glob_max_minutes : 15," "/* END OVERRIDE BLOCK */" "!" "/* BEGIN USER DEF BLOCK */" "exact_soln_y (x) := (" "2.0 + log(cosh((x)))" ");" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = 0.1 " " y[1] (analytic) = 2.0049916888216464 " " y[1] (numeric) = 2.0049916888216464 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5794783780020247 " " Order of pole = 2.1821162728738344 " " x[1] = 0.10010000000000001 " " y[1] (analytic) = 2.0050016605714074 " " y[1] (numeric) = 2.0050016605714074 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5794847054993688 " " Order of pole = 2.18211532544046 " " x[1] = 0.10020000000000001 " " y[1] (analytic) = 2.005011642221634 " " y[1] (numeric) = 2.0050116422216337 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.214895916304973600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5794910416543766 " " Order of pole = 2.182114418678175 " " x[1] = 0.10030000000000001 " " y[1] (analytic) = 2.0050216337721283 " " y[1] (numeric) = 2.005021633772128 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.214884878895693700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5794973864673776 " " Order of pole = 2.182113552594039 " " x[1] = 0.10040000000000002 " " y[1] (analytic) = 2.005031635222693 " " y[1] (numeric) = 2.005031635222692 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42974766132045500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795037399387202 " " Order of pole = 2.1821127271955305 " " x[1] = 0.10050000000000002 " " y[1] (analytic) = 2.0050416465731287 " " y[1] (numeric) = 2.0050416465731282 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.214862771599121800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795101020687137 " " Order of pole = 2.1821119424893567 " " x[1] = 0.10060000000000002 " " y[1] (analytic) = 2.005051667823239 " " y[1] (numeric) = 2.005051667823238 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42970340342583700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795164728576414 " " Order of pole = 2.1821111984818202 " " x[1] = 0.10070000000000003 " " y[1] (analytic) = 2.0050616989728236 " " y[1] (numeric) = 2.005061698972823 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.214840621002165700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579522852305774 " " Order of pole = 2.1821104951789927 " " x[1] = 0.10080000000000003 " " y[1] (analytic) = 2.0050717400216858 " " y[1] (numeric) = 2.005071740021685 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42965905893481500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795292404133214 " " Order of pole = 2.18210983258583 " " x[1] = 0.10090000000000003 " " y[1] (analytic) = 2.0050817909696255 " " y[1] (numeric) = 2.0050817909696246 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429636854218382000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795356371805522 " " Order of pole = 2.1821092107084077 " " x[1] = 0.10100000000000003 " " y[1] (analytic) = 2.0050918518164442 " " y[1] (numeric) = 2.0050918518164433 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42961462785612700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795420426076285 " " Order of pole = 2.18210862955085 " " x[1] = 0.10110000000000004 " " y[1] (analytic) = 2.0051019225619426 " " y[1] (numeric) = 2.0051019225619418 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42959237984914540000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795484566947526 " " Order of pole = 2.182108089118035 " " x[1] = 0.10120000000000004 " " y[1] (analytic) = 2.0051120032059213 " " y[1] (numeric) = 2.0051120032059204 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42957011019853240000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795548794420613 " " Order of pole = 2.1821075894136825 " " x[1] = 0.10130000000000004 " " y[1] (analytic) = 2.0051220937481813 " " y[1] (numeric) = 2.00512209374818 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64432172835807600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795613108496966 " " Order of pole = 2.1821071304415796 " " x[1] = 0.10140000000000005 " " y[1] (analytic) = 2.005132194188522 " " y[1] (numeric) = 2.0051321941885205 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64428825895619900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795677509177803 " " Order of pole = 2.1821067122051865 " " x[1] = 0.10150000000000005 " " y[1] (analytic) = 2.0051423045267436 " " y[1] (numeric) = 2.0051423045267422 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64425475709381900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795741996463901 " " Order of pole = 2.182106334707157 " " x[1] = 0.10160000000000005 " " y[1] (analytic) = 2.005152424762646 " " y[1] (numeric) = 2.005152424762645 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64422122277258300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795806570355984 " " Order of pole = 2.182105997950117 " " x[1] = 0.10170000000000005 " " y[1] (analytic) = 2.0051625548960295 " " y[1] (numeric) = 2.005162554896028 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64418765599414500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795871230854586 " " Order of pole = 2.182105701936269 " " x[1] = 0.10180000000000006 " " y[1] (analytic) = 2.0051726949266926 " " y[1] (numeric) = 2.0051726949266917 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429436037840104000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5795935977959714 " " Order of pole = 2.1821054466669842 " " x[1] = 0.10190000000000006 " " y[1] (analytic) = 2.0051828448544358 " " y[1] (numeric) = 2.0051828448544344 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6441204250722710000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796000811672313 " " Order of pole = 2.1821052321451653 " " x[1] = 0.10200000000000006 " " y[1] (analytic) = 2.0051930046790565 " " y[1] (numeric) = 2.0051930046790556 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429391173954766400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579606573199087 " " Order of pole = 2.182105058369533 " " x[1] = 0.10210000000000007 " " y[1] (analytic) = 2.0052031744003553 " " y[1] (numeric) = 2.005203174400354 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64405306434144700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579613073891602 " " Order of pole = 2.1821049253424896 " " x[1] = 0.10220000000000007 " " y[1] (analytic) = 2.0052133540181303 " " y[1] (numeric) = 2.0052133540181285 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85869244706909800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796195832446869 " " Order of pole = 2.182104833063761 " " x[1] = 0.10230000000000007 " " y[1] (analytic) = 2.0052235435321792 " " y[1] (numeric) = 2.005223543532178 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64398557381494300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796261012582689 " " Order of pole = 2.182104781533379 " " x[1] = 0.10240000000000007 " " y[1] (analytic) = 2.0052337429423015 " " y[1] (numeric) = 2.0052337429423 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64395177988246300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796326279322237 " " Order of pole = 2.18210477075052 " " x[1] = 0.10250000000000008 " " y[1] (analytic) = 2.0052439522482945 " " y[1] (numeric) = 2.0052439522482937 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42927863567070200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796391632664761 " " Order of pole = 2.182104800715102 " " x[1] = 0.10260000000000008 " " y[1] (analytic) = 2.0052541714499568 " " y[1] (numeric) = 2.005254171449956 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429256063124916700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796457072608787 " " Order of pole = 2.1821048714258993 " " x[1] = 0.10270000000000008 " " y[1] (analytic) = 2.005264400547086 " " y[1] (numeric) = 2.0052644005470848 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64385020342809700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579652259915038 " " Order of pole = 2.1821049828773305 " " x[1] = 0.10280000000000009 " " y[1] (analytic) = 2.0052746395394796 " " y[1] (numeric) = 2.0052746395394783 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64381627972988800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796588212290177 " " Order of pole = 2.1821051350717937 " " x[1] = 0.10290000000000009 " " y[1] (analytic) = 2.0052848884269343 " " y[1] (numeric) = 2.0052848884269334 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429188215729615000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796653912026164 " " Order of pole = 2.1821053280070473 " " x[1] = 0.10300000000000009 " " y[1] (analytic) = 2.005295147209248 " " y[1] (numeric) = 2.0052951472092473 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42916555668224400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796719698352628 " " Order of pole = 2.182105561674451 " " x[1] = 0.1031000000000001 " " y[1] (analytic) = 2.0053054158862182 " " y[1] (numeric) = 2.005305415886217 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64371431401839500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796785571275727 " " Order of pole = 2.182105836085924 " " x[1] = 0.1032000000000001 " " y[1] (analytic) = 2.0053156944576402 " " y[1] (numeric) = 2.0053156944576394 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429120173720791400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796851530783382 " " Order of pole = 2.182106151221795 " " x[1] = 0.1033000000000001 " " y[1] (analytic) = 2.005325982923312 " " y[1] (numeric) = 2.0053259829233108 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64364617471341300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796917576874974 " " Order of pole = 2.182106507082228 " " x[1] = 0.1034000000000001 " " y[1] (analytic) = 2.005336281283029 " " y[1] (numeric) = 2.0053362812830278 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64361205641675800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5796983709549162 " " Order of pole = 2.1821069036661314 " " x[1] = 0.1035000000000001 " " y[1] (analytic) = 2.0053465895365883 " " y[1] (numeric) = 2.005346589536587 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64357790569289700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797049928801727 " " Order of pole = 2.1821073409674447 " " x[1] = 0.10360000000000011 " " y[1] (analytic) = 2.0053569076837854 " " y[1] (numeric) = 2.005356907683784 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6435437225435100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797116234628765 " " Order of pole = 2.1821078189806187 " " x[1] = 0.10370000000000011 " " y[1] (analytic) = 2.0053672357244157 " " y[1] (numeric) = 2.0053672357244148 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.429006337980190300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797182627027007 " " Order of pole = 2.1821083377012194 " " x[1] = 0.10380000000000011 " " y[1] (analytic) = 2.0053775736582757 " " y[1] (numeric) = 2.005377573658275 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.428983505983269400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579724910599229 " " Order of pole = 2.1821088971232427 " " x[1] = 0.10390000000000012 " " y[1] (analytic) = 2.0053879214851604 " " y[1] (numeric) = 2.0053879214851595 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.428960652372701500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797315671519243 " " Order of pole = 2.182109497238603 " " x[1] = 0.10400000000000012 " " y[1] (analytic) = 2.0053982792048655 " " y[1] (numeric) = 2.0053982792048646 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42893777714961130000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797382323604947 " " Order of pole = 2.1821101380434627 " " x[1] = 0.10410000000000012 " " y[1] (analytic) = 2.0054086468171857 " " y[1] (numeric) = 2.005408646817185 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42891488031512460000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797449062243918 " " Order of pole = 2.1821108195294947 " " x[1] = 0.10420000000000013 " " y[1] (analytic) = 2.0054190243219154 " " y[1] (numeric) = 2.005419024321915 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.214445980935185500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797515887431761 " " Order of pole = 2.1821115416903076 " " x[1] = 0.10430000000000013 " " y[1] (analytic) = 2.0054294117188505 " " y[1] (numeric) = 2.0054294117188496 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42886902181647450000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797582799162537 " " Order of pole = 2.1821123045167994 " " x[1] = 0.10440000000000013 " " y[1] (analytic) = 2.0054398090077843 " " y[1] (numeric) = 2.0054398090077834 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42884606015456700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797649797431652 " " Order of pole = 2.1821131080021807 " " x[1] = 0.10450000000000013 " " y[1] (analytic) = 2.0054502161885117 " " y[1] (numeric) = 2.005450216188511 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.428823076885777000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797716882233155 " " Order of pole = 2.1821139521373496 " " x[1] = 0.10460000000000014 " " y[1] (analytic) = 2.0054606332608267 " " y[1] (numeric) = 2.005460633260826 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42880007201123800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579778405356129 " " Order of pole = 2.1821148369134917 " " x[1] = 0.10470000000000014 " " y[1] (analytic) = 2.005471060224523 " " y[1] (numeric) = 2.0054710602245223 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.428777045532081000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797851311410287 " " Order of pole = 2.182115762321807 " " x[1] = 0.10480000000000014 " " y[1] (analytic) = 2.005481497079395 " " y[1] (numeric) = 2.005481497079394 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.428753997449437000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797918655773742 " " Order of pole = 2.182116728352348 " " x[1] = 0.10490000000000015 " " y[1] (analytic) = 2.005491943825236 " " y[1] (numeric) = 2.0054919438252345 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64309639164666300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5797986086645726 " " Order of pole = 2.1821177349960195 " " x[1] = 0.10500000000000015 " " y[1] (analytic) = 2.0055024004618383 " " y[1] (numeric) = 2.0055024004618374 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42870783647823400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798053604018876 " " Order of pole = 2.1821187822412185 " " x[1] = 0.10510000000000015 " " y[1] (analytic) = 2.0055128669889966 " " y[1] (numeric) = 2.0055128669889952 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64302708538791700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579812120788688 " " Order of pole = 2.1821198700781608 " " x[1] = 0.10520000000000015 " " y[1] (analytic) = 2.005523343406503 " " y[1] (numeric) = 2.0055233434065016 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6429923836600700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579818889824262 " " Order of pole = 2.1821209984956695 " " x[1] = 0.10530000000000016 " " y[1] (analytic) = 2.00553382971415 " " y[1] (numeric) = 2.0055338297141487 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6429576495355200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798256675078854 " " Order of pole = 2.1821221674823406 " " x[1] = 0.10540000000000016 " " y[1] (analytic) = 2.005544325911731 " " y[1] (numeric) = 2.0055443259117296 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64292288301597100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798324538387523 " " Order of pole = 2.182123377025338 " " x[1] = 0.10550000000000016 " " y[1] (analytic) = 2.0055548319990377 " " y[1] (numeric) = 2.0055548319990364 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64288808410313800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798392488161526 " " Order of pole = 2.18212462711352 " " x[1] = 0.10560000000000017 " " y[1] (analytic) = 2.005565347975863 " " y[1] (numeric) = 2.0055653479758613 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85713767039830700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798460524393096 " " Order of pole = 2.1821259177345347 " " x[1] = 0.10570000000000017 " " y[1] (analytic) = 2.005575873841998 " " y[1] (numeric) = 2.0055758738419964 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85709118547261800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579852864707375 " " Order of pole = 2.1821272488748242 " " x[1] = 0.10580000000000017 " " y[1] (analytic) = 2.0055864095972353 " " y[1] (numeric) = 2.0055864095972336 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85704465736273600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798596856194898 " " Order of pole = 2.1821286205206114 " " x[1] = 0.10590000000000017 " " y[1] (analytic) = 2.005596955241366 " " y[1] (numeric) = 2.0055969552413644 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8569980860709500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798665151748637 " " Order of pole = 2.1821300326593445 " " x[1] = 0.10600000000000018 " " y[1] (analytic) = 2.0056075107741824 " " y[1] (numeric) = 2.00560751077418 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10711893394994380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798733533725917 " " Order of pole = 2.182131485276443 " " x[1] = 0.10610000000000018 " " y[1] (analytic) = 2.0056180761954745 " " y[1] (numeric) = 2.0056180761954723 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1071131017438540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798802002117498 " " Order of pole = 2.182132978356986 " " x[1] = 0.10620000000000018 " " y[1] (analytic) = 2.005628651505034 " " y[1] (numeric) = 2.005628651505032 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10710726414088600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798870556914648 " " Order of pole = 2.182134511886975 " " x[1] = 0.10630000000000019 " " y[1] (analytic) = 2.005639236702652 " " y[1] (numeric) = 2.00563923670265 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10710142114132730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5798939198107433 " " Order of pole = 2.1821360858502743 " " x[1] = 0.10640000000000019 " " y[1] (analytic) = 2.005649831788119 " " y[1] (numeric) = 2.0056498317881166 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1070955727454650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799007925686512 " " Order of pole = 2.1821377002317988 " " x[1] = 0.10650000000000019 " " y[1] (analytic) = 2.005660436761225 " " y[1] (numeric) = 2.0056604367612225 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32850766274430430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799076739642113 " " Order of pole = 2.1821393550157033 " " x[1] = 0.1066000000000002 " " y[1] (analytic) = 2.0056710516217606 " " y[1] (numeric) = 2.0056710516217584 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10708385976598110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799145639964223 " " Order of pole = 2.1821410501857237 " " x[1] = 0.1067000000000002 " " y[1] (analytic) = 2.005681676369516 " " y[1] (numeric) = 2.0056816763695138 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10707799518293560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799214626642575 " " Order of pole = 2.182142785725155 " " x[1] = 0.1068000000000002 " " y[1] (analytic) = 2.0056923110042812 " " y[1] (numeric) = 2.005692311004279 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10707212520473860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799283699666398 " " Order of pole = 2.182144561616404 " " x[1] = 0.1069000000000002 " " y[1] (analytic) = 2.005702955525846 " " y[1] (numeric) = 2.0057029555258437 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1070662498316790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799352859025246 " " Order of pole = 2.1821463778424324 " " x[1] = 0.1070000000000002 " " y[1] (analytic) = 2.0057136099339994 " " y[1] (numeric) = 2.005713609933997 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10706036906404580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.579942210470823 " " Order of pole = 2.1821482343854477 " " x[1] = 0.10710000000000021 " " y[1] (analytic) = 2.005724274228531 " " y[1] (numeric) = 2.0057242742285286 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10705448290212840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799491436704074 " " Order of pole = 2.1821501312269653 " " x[1] = 0.10720000000000021 " " y[1] (analytic) = 2.0057349484092297 " " y[1] (numeric) = 2.0057349484092275 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1070485913462160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799560855001598 " " Order of pole = 2.182152068348671 " " x[1] = 0.10730000000000021 " " y[1] (analytic) = 2.005745632475885 " " y[1] (numeric) = 2.005745632475883 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10704269439659830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799630359589087 " " Order of pole = 2.182154045731316 " " x[1] = 0.10740000000000022 " " y[1] (analytic) = 2.0057563264282856 " " y[1] (numeric) = 2.0057563264282834 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10703679205356540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799699950455006 " " Order of pole = 2.182156063355965 " " x[1] = 0.10750000000000022 " " y[1] (analytic) = 2.0057670302662194 " " y[1] (numeric) = 2.005767030266217 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10703088431740750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799769627587252 " " Order of pole = 2.1821581212026757 " " x[1] = 0.10760000000000022 " " y[1] (analytic) = 2.005777743989475 " " y[1] (numeric) = 2.0057777439894733 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85619976950732100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799839390973618 " " Order of pole = 2.182160219251344 " " x[1] = 0.10770000000000023 " " y[1] (analytic) = 2.0057884675978412 " " y[1] (numeric) = 2.0057884675978395 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85615242133503200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799909240602028 " " Order of pole = 2.182162357482081 " " x[1] = 0.10780000000000023 " " y[1] (analytic) = 2.0057992010911057 " " y[1] (numeric) = 2.005799201091104 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85610503002471900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5799979176459267 " " Order of pole = 2.182164535873003 " " x[1] = 0.10790000000000023 " " y[1] (analytic) = 2.005809944469056 " " y[1] (numeric) = 2.0058099444690543 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85605759557871500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800049198533108 " " Order of pole = 2.182166754403955 " " x[1] = 0.10800000000000023 " " y[1] (analytic) = 2.00582069773148 " " y[1] (numeric) = 2.0058206977314783 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8560101179993500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580011930681 " " Order of pole = 2.1821690130524765 " " x[1] = 0.10810000000000024 " " y[1] (analytic) = 2.0058314608781647 " " y[1] (numeric) = 2.0058314608781633 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64197194796672200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800189501277382 " " Order of pole = 2.1821713117978163 " " x[1] = 0.10820000000000024 " " y[1] (analytic) = 2.005842233908898 " " y[1] (numeric) = 2.0058422339088966 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64193627508741200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800259781921144 " " Order of pole = 2.18217365061653 " " x[1] = 0.10830000000000024 " " y[1] (analytic) = 2.0058530168234663 " " y[1] (numeric) = 2.005853016823465 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64190056986333800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800330148727952 " " Order of pole = 2.1821760294865236 " " x[1] = 0.10840000000000025 " " y[1] (analytic) = 2.005863809621657 " " y[1] (numeric) = 2.0058638096216557 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64186483229625700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800400601683817 " " Order of pole = 2.1821784483845406 " " x[1] = 0.10850000000000025 " " y[1] (analytic) = 2.0058746123032565 " " y[1] (numeric) = 2.005874612303255 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64182906238792400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800471140774655 " " Order of pole = 2.1821809072871936 " " x[1] = 0.10860000000000025 " " y[1] (analytic) = 2.005885424868051 " " y[1] (numeric) = 2.0058854248680498 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64179326014009800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800541765986327 " " Order of pole = 2.182183406170971 " " x[1] = 0.10870000000000025 " " y[1] (analytic) = 2.005896247315827 " " y[1] (numeric) = 2.005896247315826 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42783828370302600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800612477304112 " " Order of pole = 2.1821859450113408 " " x[1] = 0.10880000000000026 " " y[1] (analytic) = 2.005907079646371 " " y[1] (numeric) = 2.0059070796463696 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64172155863300700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800683274713412 " " Order of pole = 2.182188523783992 " " x[1] = 0.10890000000000026 " " y[1] (analytic) = 2.0059179218594685 " " y[1] (numeric) = 2.005917921859467 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64168565937726600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800754158199348 " " Order of pole = 2.1821911424641343 " " x[1] = 0.10900000000000026 " " y[1] (analytic) = 2.005928773954905 " " y[1] (numeric) = 2.0059287739549037 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64164972778908100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800825127746438 " " Order of pole = 2.1821938010258926 " " x[1] = 0.10910000000000027 " " y[1] (analytic) = 2.0059396359324664 " " y[1] (numeric) = 2.005939635932465 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64161376387021600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5800896183339668 " " Order of pole = 2.1821964994442276 " " x[1] = 0.10920000000000027 " " y[1] (analytic) = 2.0059505077919373 " " y[1] (numeric) = 2.0059505077919364 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.427718511748294000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580096732496343 " " Order of pole = 2.1821992376930694 " " x[1] = 0.10930000000000027 " " y[1] (analytic) = 2.005961389533104 " " y[1] (numeric) = 2.0059613895331028 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64154173904752400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580103855260216 " " Order of pole = 2.182202015746409 " " x[1] = 0.10940000000000027 " " y[1] (analytic) = 2.005972281155751 " " y[1] (numeric) = 2.0059722811557497 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64150567814723400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580110986623929 " " Order of pole = 2.1822048335764563 " " x[1] = 0.10950000000000028 " " y[1] (analytic) = 2.005983182659662 " " y[1] (numeric) = 2.0059831826596612 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.427646389948897000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801181265859108 " " Order of pole = 2.1822076911569823 " " x[1] = 0.10960000000000028 " " y[1] (analytic) = 2.0059940940446235 " " y[1] (numeric) = 2.005994094044622 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6414334593776300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801252751444936 " " Order of pole = 2.1822105884600127 " " x[1] = 0.10970000000000028 " " y[1] (analytic) = 2.0060050153104183 " " y[1] (numeric) = 2.006005015310417 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64139730151186400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801324322980217 " " Order of pole = 2.1822135254577866 " " x[1] = 0.10980000000000029 " " y[1] (analytic) = 2.0060159464568312 " " y[1] (numeric) = 2.00601594645683 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64136111132782500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801395980448412 " " Order of pole = 2.1822165021226105 " " x[1] = 0.10990000000000029 " " y[1] (analytic) = 2.006026887483646 " " y[1] (numeric) = 2.0060268874836447 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64132488882728900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580146772383201 " " Order of pole = 2.182219518425047 " " x[1] = 0.11000000000000029 " " y[1] (analytic) = 2.0060378383906468 " " y[1] (numeric) = 2.0060378383906454 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64128863401203700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801539553114337 " " Order of pole = 2.182222574337157 " " x[1] = 0.1101000000000003 " " y[1] (analytic) = 2.006048799177617 " " y[1] (numeric) = 2.0060487991776155 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64125234688385100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801611468277366 " " Order of pole = 2.182225669828597 " " x[1] = 0.1102000000000003 " " y[1] (analytic) = 2.00605976984434 " " y[1] (numeric) = 2.0060597698443385 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64121602744451200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801683469303698 " " Order of pole = 2.182228804870171 " " x[1] = 0.1103000000000003 " " y[1] (analytic) = 2.006070750390599 " " y[1] (numeric) = 2.0060707503905975 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64117967569580500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5801755556175558 " " Order of pole = 2.1822319794319647 " " x[1] = 0.1104000000000003 " " y[1] (analytic) = 2.0060817408161764 " " y[1] (numeric) = 2.0060817408161755 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42742886109301300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580182772887468 " " Order of pole = 2.1822351934832582 " " x[1] = 0.1105000000000003 " " y[1] (analytic) = 2.0060927411208564 " " y[1] (numeric) = 2.0060927411208556 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.427404583518291000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580189998738304 " " Order of pole = 2.1822384469937077 " " x[1] = 0.11060000000000031 " " y[1] (analytic) = 2.006103751304421 " " y[1] (numeric) = 2.00610375130442 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42738028440756600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58019723316818 " " Order of pole = 2.1822417399315874 " " x[1] = 0.11070000000000031 " " y[1] (analytic) = 2.0061147713666525 " " y[1] (numeric) = 2.0061147713666516 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42735596376203100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802044761752496 " " Order of pole = 2.18224507226579 " " x[1] = 0.11080000000000031 " " y[1] (analytic) = 2.0061258013073333 " " y[1] (numeric) = 2.0061258013073324 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42733162158288100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802117277576224 " " Order of pole = 2.182248443964454 " " x[1] = 0.11090000000000032 " " y[1] (analytic) = 2.0061368411262457 " " y[1] (numeric) = 2.006136841126245 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.427307257871311000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802189879133468 " " Order of pole = 2.1822518549946537 " " x[1] = 0.11100000000000032 " " y[1] (analytic) = 2.006147890823171 " " y[1] (numeric) = 2.0061478908231702 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.42728287262851800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802262566405578 " " Order of pole = 2.1822553053249543 " " x[1] = 0.11110000000000032 " " y[1] (analytic) = 2.006158950397892 " " y[1] (numeric) = 2.0061589503978907 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6408876987835500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802335339372484 " " Order of pole = 2.1822587949214522 " " x[1] = 0.11120000000000033 " " y[1] (analytic) = 2.006170019850189 " " y[1] (numeric) = 2.0061700198501877 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64085105633108400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802408198014728 " " Order of pole = 2.182262323751317 " " x[1] = 0.11130000000000033 " " y[1] (analytic) = 2.006181099179844 " " y[1] (numeric) = 2.0061810991798428 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64081438158717600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580248114231198 " " Order of pole = 2.182265891780162 " " x[1] = 0.11140000000000033 " " y[1] (analytic) = 2.0061921883866383 " " y[1] (numeric) = 2.006192188386637 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6407776745536300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802554172244578 " " Order of pole = 2.1822694989748292 " " x[1] = 0.11150000000000033 " " y[1] (analytic) = 2.006203287470352 " " y[1] (numeric) = 2.006203287470351 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6407409352322490000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802627287791915 " " Order of pole = 2.1822731453004494 " " x[1] = 0.11160000000000034 " " y[1] (analytic) = 2.006214396430767 " " y[1] (numeric) = 2.0062143964307655 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64070416362483500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802700488933499 " " Order of pole = 2.182276830722376 " " x[1] = 0.11170000000000034 " " y[1] (analytic) = 2.0062255152676625 " " y[1] (numeric) = 2.006225515267661 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64066735973319600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580277377564846 " " Order of pole = 2.1822805552052884 " " x[1] = 0.11180000000000034 " " y[1] (analytic) = 2.0062366439808197 " " y[1] (numeric) = 2.0062366439808184 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64063052355913900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802847147915646 " " Order of pole = 2.1822843187133785 " " x[1] = 0.11190000000000035 " " y[1] (analytic) = 2.006247782570019 " " y[1] (numeric) = 2.006247782570018 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64059365510446900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58029206057143 " " Order of pole = 2.1822881212115455 " " x[1] = 0.11200000000000035 " " y[1] (analytic) = 2.00625893103504 " " y[1] (numeric) = 2.0062589310350387 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64055675437100100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5802994149022644 " " Order of pole = 2.182291962662891 " " x[1] = 0.11210000000000035 " " y[1] (analytic) = 2.0062700893756626 " " y[1] (numeric) = 2.0062700893756613 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64051982136054400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803067777819453 " " Order of pole = 2.182295843031465 " " x[1] = 0.11220000000000036 " " y[1] (analytic) = 2.0062812575916666 " " y[1] (numeric) = 2.0062812575916653 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64048285607491300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803141492082544 " " Order of pole = 2.1822997622796443 " " x[1] = 0.11230000000000036 " " y[1] (analytic) = 2.006292435682831 " " y[1] (numeric) = 2.0062924356828296 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.64044585851592300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58032152917901 " " Order of pole = 2.182303720370477 " " x[1] = 0.11240000000000036 " " y[1] (analytic) = 2.0063036236489356 " " y[1] (numeric) = 2.0063036236489338 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85387843824718500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803289176919904 " " Order of pole = 2.182307717266273 " " x[1] = 0.11250000000000036 " " y[1] (analytic) = 2.0063148214897586 " " y[1] (numeric) = 2.006314821489757 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85382902211350600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803363147449507 " " Order of pole = 2.182311752928964 " " x[1] = 0.11260000000000037 " " y[1] (analytic) = 2.0063260292050793 " " y[1] (numeric) = 2.0063260292050775 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85377956295595600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803437203356185 " " Order of pole = 2.1823158273199645 " " x[1] = 0.11270000000000037 " " y[1] (analytic) = 2.006337246794677 " " y[1] (numeric) = 2.0063372467946747 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10671625759711940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803511344617218 " " Order of pole = 2.182319940400756 " " x[1] = 0.11280000000000037 " " y[1] (analytic) = 2.0063484742583286 " " y[1] (numeric) = 2.006348474258327 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85368051557894300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803585571209617 " " Order of pole = 2.1823240921322657 " " x[1] = 0.11290000000000038 " " y[1] (analytic) = 2.0063597115958145 " " y[1] (numeric) = 2.0063597115958123 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10670386592054280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803659883110153 " " Order of pole = 2.1823282824750834 " " x[1] = 0.11300000000000038 " " y[1] (analytic) = 2.0063709588069107 " " y[1] (numeric) = 2.006370958806909 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85358129613559500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803734280295358 " " Order of pole = 2.182332511389326 " " x[1] = 0.11310000000000038 " " y[1] (analytic) = 2.0063822158913966 " " y[1] (numeric) = 2.006382215891395 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85353162189513100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580380876274123 " " Order of pole = 2.1823367788341805 " " x[1] = 0.11320000000000038 " " y[1] (analytic) = 2.0063934828490493 " " y[1] (numeric) = 2.0063934828490475 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.85348190464539400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803883330424324 " " Order of pole = 2.1823410847698277 " " x[1] = 0.11330000000000039 " " y[1] (analytic) = 2.006404759679646 " " y[1] (numeric) = 2.0064047596796444 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8534321443888200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5803957983320724 " " Order of pole = 2.1823454291556104 " " x[1] = 0.11340000000000039 " " y[1] (analytic) = 2.0064160463829652 " " y[1] (numeric) = 2.006416046382963 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10667279264098150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804032721405905 " " Order of pole = 2.1823498119498055 " " x[1] = 0.11350000000000039 " " y[1] (analytic) = 2.0064273429587827 " " y[1] (numeric) = 2.0064273429587804 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1066665618581170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804107544655386 " " Order of pole = 2.182354233110779 " " x[1] = 0.1136000000000004 " " y[1] (analytic) = 2.006438649406876 " " y[1] (numeric) = 2.0064386494068738 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10666032570031480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804182453044486 " " Order of pole = 2.1823586925965337 " " x[1] = 0.1137000000000004 " " y[1] (analytic) = 2.0064499657270223 " " y[1] (numeric) = 2.0064499657270196 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32798490100145660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804257446548637 " " Order of pole = 2.182363190365262 " " x[1] = 0.1138000000000004 " " y[1] (analytic) = 2.0064612919189972 " " y[1] (numeric) = 2.0064612919189946 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32797740471334520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804332525142433 " " Order of pole = 2.182367726373709 " " x[1] = 0.1139000000000004 " " y[1] (analytic) = 2.006472627982578 " " y[1] (numeric) = 2.0064726279825753 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32796990197641070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804407688800737 " " Order of pole = 2.1823723005790754 " " x[1] = 0.1140000000000004 " " y[1] (analytic) = 2.00648397391754 " " y[1] (numeric) = 2.0064839739175375 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32796239279102220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580448293749817 " " Order of pole = 2.182376912938139 " " x[1] = 0.11410000000000041 " " y[1] (analytic) = 2.0064953297236605 " " y[1] (numeric) = 2.0064953297236574 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54928069001713830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804558271208828 " " Order of pole = 2.182381563406768 " " x[1] = 0.11420000000000041 " " y[1] (analytic) = 2.006506695400714 " " y[1] (numeric) = 2.006506695400711 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32794735507635510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804633689907304 " " Order of pole = 2.18238625194169 " " x[1] = 0.11430000000000042 " " y[1] (analytic) = 2.0065180709484767 " " y[1] (numeric) = 2.006518070948474 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32793982654781480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804709193566944 " " Order of pole = 2.182390978497459 " " x[1] = 0.11440000000000042 " " y[1] (analytic) = 2.0065294563667244 " " y[1] (numeric) = 2.0065294563667213 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54925434016767750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804784782162002 " " Order of pole = 2.1823957430301917 " " x[1] = 0.11450000000000042 " " y[1] (analytic) = 2.0065408516552314 " " y[1] (numeric) = 2.0065408516552283 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5492455418418610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804860455665508 " " Order of pole = 2.182400545493902 " " x[1] = 0.11460000000000042 " " y[1] (analytic) = 2.0065522568137735 " " y[1] (numeric) = 2.0065522568137704 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5492367359954320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5804936214051042 " " Order of pole = 2.182405385843545 " " x[1] = 0.11470000000000043 " " y[1] (analytic) = 2.0065636718421254 " " y[1] (numeric) = 2.0065636718421223 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54922792262882280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805012057291883 " " Order of pole = 2.1824102640335354 " " x[1] = 0.11480000000000043 " " y[1] (analytic) = 2.0065750967400615 " " y[1] (numeric) = 2.0065750967400584 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54921910174246530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805087985360777 " " Order of pole = 2.1824151800173794 " " x[1] = 0.11490000000000043 " " y[1] (analytic) = 2.0065865315073568 " " y[1] (numeric) = 2.0065865315073537 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54921027333679240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805163998230447 " " Order of pole = 2.182420133748529 " " x[1] = 0.11500000000000044 " " y[1] (analytic) = 2.006597976143785 " " y[1] (numeric) = 2.006597976143782 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54920143741223730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580524009587346 " " Order of pole = 2.18242512518016 " " x[1] = 0.11510000000000044 " " y[1] (analytic) = 2.006609430649121 " " y[1] (numeric) = 2.006609430649118 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54919259396923360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580531627826198 " " Order of pole = 2.1824301542647433 " " x[1] = 0.11520000000000044 " " y[1] (analytic) = 2.0066208950231377 " " y[1] (numeric) = 2.0066208950231346 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54918374300821480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805392545368613 " " Order of pole = 2.182435220955533 " " x[1] = 0.11530000000000044 " " y[1] (analytic) = 2.00663236926561 " " y[1] (numeric) = 2.0066323692656063 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77048558231955950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805468897164614 " " Order of pole = 2.1824403252034124 " " x[1] = 0.11540000000000045 " " y[1] (analytic) = 2.00664385337631 " " y[1] (numeric) = 2.0066438533763065 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77047544975299300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805545333622264 " " Order of pole = 2.182445466961056 " " x[1] = 0.11550000000000045 " " y[1] (analytic) = 2.006655347355012 " " y[1] (numeric) = 2.0066553473550086 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77046530859589820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805621854712986 " " Order of pole = 2.1824506461796496 " " x[1] = 0.11560000000000045 " " y[1] (analytic) = 2.00666685120149 " " y[1] (numeric) = 2.006666851201486 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99176205370486970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805698460407898 " " Order of pole = 2.182455862809821 " " x[1] = 0.11570000000000046 " " y[1] (analytic) = 2.0066783649155147 " " y[1] (numeric) = 2.006678364915511 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77044500051211640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805775150678472 " " Order of pole = 2.1824611168028376 " " x[1] = 0.11580000000000046 " " y[1] (analytic) = 2.0066898884968607 " " y[1] (numeric) = 2.006689888496857 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77043483358642480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805851925495165 " " Order of pole = 2.1824664081081693 " " x[1] = 0.11590000000000046 " " y[1] (analytic) = 2.0067014219452997 " " y[1] (numeric) = 2.0067014219452965 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54912157581317320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5805928784829368 " " Order of pole = 2.182471736676959 " " x[1] = 0.11600000000000046 " " y[1] (analytic) = 2.0067129652606046 " " y[1] (numeric) = 2.0067129652606015 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54911266472369270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806005728651122 " " Order of pole = 2.1824771024579306 " " x[1] = 0.11610000000000047 " " y[1] (analytic) = 2.0067245184425477 " " y[1] (numeric) = 2.006724518442544 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77040428128013380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806082756931077 " " Order of pole = 2.182482505400923 " " x[1] = 0.11620000000000047 " " y[1] (analytic) = 2.0067360814909003 " " y[1] (numeric) = 2.006736081490897 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54909482000288370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806159869639262 " " Order of pole = 2.1824879454546746 " " x[1] = 0.11630000000000047 " " y[1] (analytic) = 2.006747654405435 " " y[1] (numeric) = 2.006747654405432 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54908588637243020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806237066745472 " " Order of pole = 2.182493422567493 " " x[1] = 0.11640000000000048 " " y[1] (analytic) = 2.006759237185923 " " y[1] (numeric) = 2.00675923718592 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54907694522919440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806314348219825 " " Order of pole = 2.1824989366882726 " " x[1] = 0.11650000000000048 " " y[1] (analytic) = 2.0067708298321363 " " y[1] (numeric) = 2.0067708298321327 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.770363424655560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580639171403165 " " Order of pole = 2.1825044877645006 " " x[1] = 0.11660000000000048 " " y[1] (analytic) = 2.0067824323438455 " " y[1] (numeric) = 2.006782432343842 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77035318903557800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806469164150347 " " Order of pole = 2.182510075743828 " " x[1] = 0.11670000000000048 " " y[1] (analytic) = 2.0067940447208215 " " y[1] (numeric) = 2.0067940447208183 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5490500767271811000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806546698545136 " " Order of pole = 2.1825157005735676 " " x[1] = 0.11680000000000049 " " y[1] (analytic) = 2.0068056669628356 " " y[1] (numeric) = 2.006805666962833 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32774951903189000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806624317185118 " " Order of pole = 2.1825213622008235 " " x[1] = 0.11690000000000049 " " y[1] (analytic) = 2.006817299069659 " " y[1] (numeric) = 2.006817299069656 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54903212683664140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806702020038779 " " Order of pole = 2.1825270605716156 " " x[1] = 0.11700000000000049 " " y[1] (analytic) = 2.0068289410410616 " " y[1] (numeric) = 2.0068289410410585 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5490231406259320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806779807075149 " " Order of pole = 2.182532795632927 " " x[1] = 0.1171000000000005 " " y[1] (analytic) = 2.006840592876814 " " y[1] (numeric) = 2.0068405928768107 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54901414690551630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5806857678262314 " " Order of pole = 2.1825385673300985 " " x[1] = 0.1172000000000005 " " y[1] (analytic) = 2.006852254576686 " " y[1] (numeric) = 2.0068522545766827 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54900514567583550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580693563356853 " " Order of pole = 2.1825443756087353 " " x[1] = 0.1173000000000005 " " y[1] (analytic) = 2.006863926140447 " " y[1] (numeric) = 2.0068639261404444 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32771097451771240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807013672961996 " " Order of pole = 2.1825502204143667 " " x[1] = 0.1174000000000005 " " y[1] (analytic) = 2.0068756075678684 " " y[1] (numeric) = 2.0068756075678653 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54898712069044430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807091796410315 " " Order of pole = 2.182556101691482 " " x[1] = 0.1175000000000005 " " y[1] (analytic) = 2.006887298858718 " " y[1] (numeric) = 2.0068872988587154 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32769551165910050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807170003881137 " " Order of pole = 2.1825620193846333 " " x[1] = 0.11760000000000051 " " y[1] (analytic) = 2.0068990000127664 " " y[1] (numeric) = 2.006899000012764 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32768777057710730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580724829534206 " " Order of pole = 2.1825679734382994 " " x[1] = 0.11770000000000051 " " y[1] (analytic) = 2.0069107110297826 " " y[1] (numeric) = 2.0069107110297795 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54896002690391050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807326670760344 " " Order of pole = 2.182573963796358 " " x[1] = 0.11780000000000052 " " y[1] (analytic) = 2.0069224319095347 " " y[1] (numeric) = 2.006922431909532 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32767226910964350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807405130102672 " " Order of pole = 2.182579990401681 " " x[1] = 0.11790000000000052 " " y[1] (analytic) = 2.0069341626517927 " " y[1] (numeric) = 2.0069341626517896 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54894192684575400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807483673336358 " " Order of pole = 2.1825860531982357 " " x[1] = 0.11800000000000052 " " y[1] (analytic) = 2.0069459032563244 " " y[1] (numeric) = 2.0069459032563213 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5489328655578660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807562300427922 " " Order of pole = 2.1825921521286133 " " x[1] = 0.11810000000000052 " " y[1] (analytic) = 2.006957653722899 " " y[1] (numeric) = 2.0069576537228953 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7701986248739382000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807641011343896 " " Order of pole = 2.18259828713542 " " x[1] = 0.11820000000000053 " " y[1] (analytic) = 2.0069694140512833 " " y[1] (numeric) = 2.00696941405128 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5489147204666890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580771980605043 " " Order of pole = 2.182604458160572 " " x[1] = 0.11830000000000053 " " y[1] (analytic) = 2.0069811842412464 " " y[1] (numeric) = 2.0069811842412437 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32763340285510570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807798684513692 " " Order of pole = 2.1826106651460506 " " x[1] = 0.11840000000000053 " " y[1] (analytic) = 2.0069929642925564 " " y[1] (numeric) = 2.0069929642925537 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32762561030680850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807877646699584 " " Order of pole = 2.182616908033342 " " x[1] = 0.11850000000000054 " " y[1] (analytic) = 2.0070047542049805 " " y[1] (numeric) = 2.007004754204978 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3276178113269380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5807956692574072 " " Order of pole = 2.1826231867640793 " " x[1] = 0.11860000000000054 " " y[1] (analytic) = 2.0070165539782865 " " y[1] (numeric) = 2.0070165539782834 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54887834023518970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580803582210233 " " Order of pole = 2.182629501278477 " " x[1] = 0.11870000000000054 " " y[1] (analytic) = 2.0070283636122412 " " y[1] (numeric) = 2.007028363612238 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5488692264196750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808115035249872 " " Order of pole = 2.1826358515173467 " " x[1] = 0.11880000000000054 " " y[1] (analytic) = 2.007040183106612 " " y[1] (numeric) = 2.007040183106609 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5488601051019970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808194331981809 " " Order of pole = 2.182642237420822 " " x[1] = 0.11890000000000055 " " y[1] (analytic) = 2.0070520124611657 " " y[1] (numeric) = 2.0070520124611626 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54885097628260250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808273712263232 " " Order of pole = 2.1826486589289686 " " x[1] = 0.11900000000000055 " " y[1] (analytic) = 2.007063851675669 " " y[1] (numeric) = 2.007063851675666 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54884183996193830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808353176058838 " " Order of pole = 2.1826551159811736 " " x[1] = 0.11910000000000055 " " y[1] (analytic) = 2.0070757007498887 " " y[1] (numeric) = 2.0070757007498856 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54883269614045280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808432723333208 " " Order of pole = 2.1826616085166357 " " x[1] = 0.11920000000000056 " " y[1] (analytic) = 2.007087559683591 " " y[1] (numeric) = 2.0070875596835878 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5488235448185930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808512354050728 " " Order of pole = 2.182668136474188 " " x[1] = 0.11930000000000056 " " y[1] (analytic) = 2.007099428476542 " " y[1] (numeric) = 2.007099428476539 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54881438599680730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808592068175824 " " Order of pole = 2.182674699792752 " " x[1] = 0.11940000000000056 " " y[1] (analytic) = 2.0071113071285076 " " y[1] (numeric) = 2.0071113071285045 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5488052196755450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580867186567214 " " Order of pole = 2.1826812984098574 " " x[1] = 0.11950000000000056 " " y[1] (analytic) = 2.0071231956392537 " " y[1] (numeric) = 2.0071231956392506 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54879604585525440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580875174650375 " " Order of pole = 2.1826879322638213 " " x[1] = 0.11960000000000057 " " y[1] (analytic) = 2.0071350940085457 " " y[1] (numeric) = 2.0071350940085426 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54878686453638530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580883171063448 " " Order of pole = 2.1826946012924964 " " x[1] = 0.11970000000000057 " " y[1] (analytic) = 2.0071470022361497 " " y[1] (numeric) = 2.007147002236146 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.77003162939358440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808911758027586 " " Order of pole = 2.1827013054327544 " " x[1] = 0.11980000000000057 " " y[1] (analytic) = 2.00715892032183 " " y[1] (numeric) = 2.0071589203218267 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54876847940470900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5808991888646449 " " Order of pole = 2.18270804462167 " " x[1] = 0.11990000000000058 " " y[1] (analytic) = 2.007170848265352 " " y[1] (numeric) = 2.007170848265349 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5487592755928029000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58090721024541 " " Order of pole = 2.182714818795727 " " x[1] = 0.12000000000000058 " " y[1] (analytic) = 2.0071827860664806 " " y[1] (numeric) = 2.0071827860664775 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54875006428411870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809152399413542 " " Order of pole = 2.1827216278913326 " " x[1] = 0.12010000000000058 " " y[1] (analytic) = 2.0071947337249805 " " y[1] (numeric) = 2.0071947337249774 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54874084547910740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580923277948729 " " Order of pole = 2.1827284718440616 " " x[1] = 0.12020000000000058 " " y[1] (analytic) = 2.007206691240616 " " y[1] (numeric) = 2.007206691240613 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5487316191782210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809313242638305 " " Order of pole = 2.1827353505902707 " " x[1] = 0.12030000000000059 " " y[1] (analytic) = 2.007218658613151 " " y[1] (numeric) = 2.007218658613148 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54872238538191070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809393788828552 " " Order of pole = 2.18274226406454 " " x[1] = 0.12040000000000059 " " y[1] (analytic) = 2.0072306358423506 " " y[1] (numeric) = 2.0072306358423475 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54871314409062850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809474418020613 " " Order of pole = 2.1827492122025838 " " x[1] = 0.12050000000000059 " " y[1] (analytic) = 2.007242622927978 " " y[1] (numeric) = 2.0072426229279747 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54870389530482770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580955513017613 " " Order of pole = 2.1827561949384204 " " x[1] = 0.1206000000000006 " " y[1] (analytic) = 2.0072546198697965 " " y[1] (numeric) = 2.0072546198697934 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54869463902496040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.580963592525705 " " Order of pole = 2.1827632122066234 " " x[1] = 0.1207000000000006 " " y[1] (analytic) = 2.0072666266675703 " " y[1] (numeric) = 2.007266626667567 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.548685375251479800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809716803225065 " " Order of pole = 2.1827702639413253 " " x[1] = 0.1208000000000006 " " y[1] (analytic) = 2.007278643321063 " " y[1] (numeric) = 2.0072786433210594 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76991554741124520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809797764041666 " " Order of pole = 2.1827773500763 " " x[1] = 0.1209000000000006 " " y[1] (analytic) = 2.007290669830037 " " y[1] (numeric) = 2.0072906698300335 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.769904943114850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809878807667885 " " Order of pole = 2.1827844705445116 " " x[1] = 0.12100000000000061 " " y[1] (analytic) = 2.007302706194255 " " y[1] (numeric) = 2.007302706194252 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5486575389738969000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5809959934065085 " " Order of pole = 2.182791625279517 " " x[1] = 0.12110000000000061 " " y[1] (analytic) = 2.007314752413481 " " y[1] (numeric) = 2.007314752413478 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54864824523050280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581004114319407 " " Order of pole = 2.1827988142138715 " " x[1] = 0.12120000000000061 " " y[1] (analytic) = 2.0073268084874765 " " y[1] (numeric) = 2.0073268084874734 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54863894399576680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581012243501568 " " Order of pole = 2.1828060372802405 " " x[1] = 0.12130000000000062 " " y[1] (analytic) = 2.0073388744160043 " " y[1] (numeric) = 2.0073388744160012 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5486296352701440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581020380949023 " " Order of pole = 2.1828132944102983 " " x[1] = 0.12140000000000062 " " y[1] (analytic) = 2.0073509501988265 " " y[1] (numeric) = 2.0073509501988234 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54862031905409040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581028526657833 " " Order of pole = 2.182820585536305 " " x[1] = 0.12150000000000062 " " y[1] (analytic) = 2.0073630358357053 " " y[1] (numeric) = 2.007363035835702 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54861099534806170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810366806239997 " " Order of pole = 2.1828279105894417 " " x[1] = 0.12160000000000062 " " y[1] (analytic) = 2.007375131326402 " " y[1] (numeric) = 2.007375131326399 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32737285498786970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810448428435266 " " Order of pole = 2.1828352695009343 " " x[1] = 0.12170000000000063 " " y[1] (analytic) = 2.007387236670679 " " y[1] (numeric) = 2.007387236670676 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5485923254679050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810530133124028 " " Order of pole = 2.182842662201761 " " x[1] = 0.12180000000000063 " " y[1] (analytic) = 2.007399351868297 " " y[1] (numeric) = 2.007399351868294 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54858297929469040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810611920266109 " " Order of pole = 2.182850088622775 " " x[1] = 0.12190000000000063 " " y[1] (analytic) = 2.007411476919018 " " y[1] (numeric) = 2.007411476919015 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54857362563332850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810693789820727 " " Order of pole = 2.182857548693768 " " x[1] = 0.12200000000000064 " " y[1] (analytic) = 2.007423611822602 " " y[1] (numeric) = 2.007423611822599 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54856426448427680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581077574174727 " " Order of pole = 2.182865042344833 " " x[1] = 0.12210000000000064 " " y[1] (analytic) = 2.007435756578811 " " y[1] (numeric) = 2.0074357565788077 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54855489584799360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810857776004825 " " Order of pole = 2.182872569505541 " " x[1] = 0.12220000000000064 " " y[1] (analytic) = 2.007447911187405 " " y[1] (numeric) = 2.0074479111874015 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76976630825707030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5810939892552478 " " Order of pole = 2.182880130105456 " " x[1] = 0.12230000000000064 " " y[1] (analytic) = 2.0074600756481447 " " y[1] (numeric) = 2.007460075648141 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76975558413207470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811022091348794 " " Order of pole = 2.182887724073211 " " x[1] = 0.12240000000000065 " " y[1] (analytic) = 2.0074722499607907 " " y[1] (numeric) = 2.0074722499607867 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99096295788329210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581110437235248 " " Order of pole = 2.1828953513377094 " " x[1] = 0.12250000000000065 " " y[1] (analytic) = 2.0074844341251024 " " y[1] (numeric) = 2.0074844341250984 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99095087399392050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811186735522014 " " Order of pole = 2.18290301182747 " " x[1] = 0.12260000000000065 " " y[1] (analytic) = 2.0074966281408404 " " y[1] (numeric) = 2.0074966281408364 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99093878048105940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811269180815597 " " Order of pole = 2.1829107054704906 " " x[1] = 0.12270000000000066 " " y[1] (analytic) = 2.007508832007764 " " y[1] (numeric) = 2.00750883200776 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9909266773453010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581135170819119 " " Order of pole = 2.1829184321943664 " " x[1] = 0.12280000000000066 " " y[1] (analytic) = 2.007521045725633 " " y[1] (numeric) = 2.007521045725629 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9909145645872370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811434317606716 " " Order of pole = 2.182926191926626 " " x[1] = 0.12290000000000066 " " y[1] (analytic) = 2.007533269294207 " " y[1] (numeric) = 2.007533269294203 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99090244220746030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811517009020046 " " Order of pole = 2.1829339845946976 " " x[1] = 0.12300000000000066 " " y[1] (analytic) = 2.0075455027132447 " " y[1] (numeric) = 2.0075455027132407 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99089031020656370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811599782388563 " " Order of pole = 2.182941810125172 " " x[1] = 0.12310000000000067 " " y[1] (analytic) = 2.0075577459825054 " " y[1] (numeric) = 2.0075577459825014 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99087816858514070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811682637669666 " " Order of pole = 2.1829496684446603 " " x[1] = 0.12320000000000067 " " y[1] (analytic) = 2.0075699991017477 " " y[1] (numeric) = 2.0075699991017437 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99086601734378560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581176557482073 " " Order of pole = 2.182957559479725 " " x[1] = 0.12330000000000067 " " y[1] (analytic) = 2.0075822620707306 " " y[1] (numeric) = 2.0075822620707267 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9908538564830920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581184859379844 " " Order of pole = 2.1829654831557264 " " x[1] = 0.12340000000000068 " " y[1] (analytic) = 2.007594534889212 " " y[1] (numeric) = 2.007594534889208 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99084168600365540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5811931694559898 " " Order of pole = 2.1829734393987437 " " x[1] = 0.12350000000000068 " " y[1] (analytic) = 2.007606817556951 " " y[1] (numeric) = 2.0076068175569466 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21203278434007830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812014877061749 " " Order of pole = 2.1829814281340916 " " x[1] = 0.12360000000000068 " " y[1] (analytic) = 2.0076191100737044 " " y[1] (numeric) = 2.0076191100737 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2120192402121489000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812098141260678 " " Order of pole = 2.1829894492871134 " " x[1] = 0.12370000000000068 " " y[1] (analytic) = 2.007631412439231 " " y[1] (numeric) = 2.0076314124392267 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21200568539871220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812181487112664 " " Order of pole = 2.1829975027819337 " " x[1] = 0.12380000000000069 " " y[1] (analytic) = 2.007643724653288 " " y[1] (numeric) = 2.007643724653284 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9907929079103890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581226491457391 " " Order of pole = 2.1830055885430646 " " x[1] = 0.12390000000000069 " " y[1] (analytic) = 2.0076560467156335 " " y[1] (numeric) = 2.007656046715629 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21197854371797120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812348423600808 " " Order of pole = 2.183013706495373 " " x[1] = 0.12400000000000069 " " y[1] (analytic) = 2.007668378626024 " " y[1] (numeric) = 2.0076683786260197 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2119649568519940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581243201414863 " " Order of pole = 2.183021856561723 " " x[1] = 0.1241000000000007 " " y[1] (analytic) = 2.007680720384217 " " y[1] (numeric) = 2.007680720384213 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99075622337284850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812515686173503 " " Order of pole = 2.183030038666523 " " x[1] = 0.1242000000000007 " " y[1] (analytic) = 2.0076930719899697 " " y[1] (numeric) = 2.0076930719899653 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21193775107214830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812599439630621 " " Order of pole = 2.1830382527324907 " " x[1] = 0.1243000000000007 " " y[1] (analytic) = 2.0077054334430384 " " y[1] (numeric) = 2.007705433443034 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.211924132159609800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812683274475419 " " Order of pole = 2.183046498682824 " " x[1] = 0.1244000000000007 " " y[1] (analytic) = 2.0077178047431796 " " y[1] (numeric) = 2.007717804743175 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2119105025662159000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812767190663264 " " Order of pole = 2.1830547764405637 " " x[1] = 0.12450000000000071 " " y[1] (analytic) = 2.0077301858901504 " " y[1] (numeric) = 2.0077301858901455 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.4330865485218950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5812851188148758 " " Order of pole = 2.18306308592744 " " x[1] = 0.12460000000000071 " " y[1] (analytic) = 2.007742576883706 " " y[1] (numeric) = 2.007742576883701 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.43307153247347830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581293526688695 " " Order of pole = 2.1830714270659293 " " x[1] = 0.12470000000000071 " " y[1] (analytic) = 2.0077549777236032 " " y[1] (numeric) = 2.0077549777235983 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.43305650467832040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581301942683244 " " Order of pole = 2.1830797997777616 " " x[1] = 0.12480000000000072 " " y[1] (analytic) = 2.0077673884095972 " " y[1] (numeric) = 2.0077673884095923 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.43304146513715650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581310366793955 " " Order of pole = 2.183088203984145 " " x[1] = 0.12490000000000072 " " y[1] (analytic) = 2.007779808941444 " " y[1] (numeric) = 2.007779808941439 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.4330264138507218000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813187990162858 " " Order of pole = 2.1830966396067737 " " x[1] = 0.12500000000000072 " " y[1] (analytic) = 2.0077922393188983 " " y[1] (numeric) = 2.007792239318894 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21182850074522990000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813272393456272 " " Order of pole = 2.1831051065661278 " " x[1] = 0.1251000000000007 " " y[1] (analytic) = 2.0078046795417164 " " y[1] (numeric) = 2.007804679541712 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2118147964045312000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581335687777396 " " Order of pole = 2.1831136047831663 " " x[1] = 0.1252000000000007 " " y[1] (analytic) = 2.0078171296096525 " " y[1] (numeric) = 2.007817129609648 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2118010813883220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581344144306964 " " Order of pole = 2.1831221341780562 " " x[1] = 0.1253000000000007 " " y[1] (analytic) = 2.007829589522462 " " y[1] (numeric) = 2.0078295895224576 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21178735569727250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813526089297067 " " Order of pole = 2.18313069467105 " " x[1] = 0.12540000000000068 " " y[1] (analytic) = 2.0078420592799 " " y[1] (numeric) = 2.007842059279895 " " absolute error = 4.884981308350689000000000000000E-15 " " relative error = 2.4329509812652580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813610816409727 " " Order of pole = 2.1831392861818877 " " x[1] = 0.12550000000000067 " " y[1] (analytic) = 2.0078545388817193 " " y[1] (numeric) = 2.007854538881715 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21175987229333570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813695624360664 " " Order of pole = 2.1831479086295573 " " x[1] = 0.12560000000000066 " " y[1] (analytic) = 2.007867028327676 " " y[1] (numeric) = 2.0078670283276714 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21174611458179200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813780513103322 " " Order of pole = 2.183156561933771 " " x[1] = 0.12570000000000064 " " y[1] (analytic) = 2.007879527617523 " " y[1] (numeric) = 2.0078795276175185 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21173234619809480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813865482590743 " " Order of pole = 2.1831652460134876 " " x[1] = 0.12580000000000063 " " y[1] (analytic) = 2.0078920367510147 " " y[1] (numeric) = 2.0078920367510102 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21171856714291630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5813950532775685 " " Order of pole = 2.183173960787215 " " x[1] = 0.12590000000000062 " " y[1] (analytic) = 2.007904555727905 " " y[1] (numeric) = 2.0079045557279005 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21170477741693020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814035663610737 " " Order of pole = 2.183182706173149 " " x[1] = 0.1260000000000006 " " y[1] (analytic) = 2.0079170845479473 " " y[1] (numeric) = 2.007917084547943 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21169097702081000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814120875048365 " " Order of pole = 2.1831914820892386 " " x[1] = 0.1261000000000006 " " y[1] (analytic) = 2.0079296232108947 " " y[1] (numeric) = 2.0079296232108903 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21167716595523100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581420616704117 " " Order of pole = 2.183200288453726 " " x[1] = 0.1262000000000006 " " y[1] (analytic) = 2.007942171716501 " " y[1] (numeric) = 2.0079421717164965 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21166334422086660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814291539541085 " " Order of pole = 2.1832091251836516 " " x[1] = 0.12630000000000058 " " y[1] (analytic) = 2.007954730064518 " " y[1] (numeric) = 2.007954730064514 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99048456063655450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814376992500312 " " Order of pole = 2.1832179921965214 " " x[1] = 0.12640000000000057 " " y[1] (analytic) = 2.0079672982547 " " y[1] (numeric) = 2.0079672982546954 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21163566874848730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814462525870705 " " Order of pole = 2.183226889409255 " " x[1] = 0.12650000000000056 " " y[1] (analytic) = 2.0079798762867984 " " y[1] (numeric) = 2.007979876286794 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21162181501182360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814548139603888 " " Order of pole = 2.1832358167383568 " " x[1] = 0.12660000000000055 " " y[1] (analytic) = 2.007992464160566 " " y[1] (numeric) = 2.0079924641605618 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.211607950609080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814633833651455 " " Order of pole = 2.1832447741002703 " " x[1] = 0.12670000000000053 " " y[1] (analytic) = 2.0080050618757554 " " y[1] (numeric) = 2.008005061875751 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21159407554093360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814719607964858 " " Order of pole = 2.1832537614112084 " " x[1] = 0.12680000000000052 " " y[1] (analytic) = 2.0080176694321183 " " y[1] (numeric) = 2.008017669432114 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21158018980806170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581480546249519 " " Order of pole = 2.183262778586748 " " x[1] = 0.1269000000000005 " " y[1] (analytic) = 2.0080302868294067 " " y[1] (numeric) = 2.008030286829402 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21156629341114350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814891397193656 " " Order of pole = 2.183271825542654 " " x[1] = 0.1270000000000005 " " y[1] (analytic) = 2.008042914067372 " " y[1] (numeric) = 2.0080429140673677 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2115523863508570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5814977412011064 " " Order of pole = 2.183280902194017 " " x[1] = 0.1271000000000005 " " y[1] (analytic) = 2.0080555511457656 " " y[1] (numeric) = 2.0080555511457616 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99038462176509470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815063506898401 " " Order of pole = 2.183290008456222 " " x[1] = 0.12720000000000048 " " y[1] (analytic) = 2.00806819806434 " " y[1] (numeric) = 2.0080681980643353 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21152454024289930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815149681806053 " " Order of pole = 2.183299144243609 " " x[1] = 0.12730000000000047 " " y[1] (analytic) = 2.0080808548228446 " " y[1] (numeric) = 2.00808085482284 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21151060119658740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815235936684486 " " Order of pole = 2.183308309470654 " " x[1] = 0.12740000000000046 " " y[1] (analytic) = 2.0080935214210314 " " y[1] (numeric) = 2.008093521421027 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.2114966514896278000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815322271484018 " " Order of pole = 2.1833175040515798 " " x[1] = 0.12750000000000045 " " y[1] (analytic) = 2.0081061978586505 " " y[1] (numeric) = 2.008106197858646 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21148269112270230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815408686154897 " " Order of pole = 2.183326727900493 " " x[1] = 0.12760000000000044 " " y[1] (analytic) = 2.008118884135453 " " y[1] (numeric) = 2.0081188841354485 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21146872009649220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815495180647012 " " Order of pole = 2.1833359809308703 " " x[1] = 0.12770000000000042 " " y[1] (analytic) = 2.008131580251189 " " y[1] (numeric) = 2.0081315802511845 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 2.21145473841167950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815581754910155 " " Order of pole = 2.1833452630559975 " " x[1] = 0.1278000000000004 " " y[1] (analytic) = 2.0081442862056083 " " y[1] (numeric) = 2.0081442862056043 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99029667146205370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815668408894086 " " Order of pole = 2.1833545741891243 " " x[1] = 0.1279000000000004 " " y[1] (analytic) = 2.0081570019984616 " " y[1] (numeric) = 2.0081570019984576 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99028406876208240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815755142548331 " " Order of pole = 2.183363914243106 " " x[1] = 0.1280000000000004 " " y[1] (analytic) = 2.0081697276294985 " " y[1] (numeric) = 2.0081697276294945 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99027145647121430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5815841955822203 " " Order of pole = 2.1833732831303756 " " x[1] = 0.12810000000000038 " " y[1] (analytic) = 2.008182463098468 " " y[1] (numeric) = 2.0081824630984646 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7691189640800578000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581592884866491 " " Order of pole = 2.1833826807632413 " " x[1] = 0.12820000000000037 " " y[1] (analytic) = 2.008195208405121 " " y[1] (numeric) = 2.008195208405117 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99024620311925030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581601582102572 " " Order of pole = 2.183392107054086 " " x[1] = 0.12830000000000036 " " y[1] (analytic) = 2.008207963549205 " " y[1] (numeric) = 2.008207963549201 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99023356205938780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816102872853286 " " Order of pole = 2.1834015619142058 " " x[1] = 0.12840000000000035 " " y[1] (analytic) = 2.00822072853047 " " y[1] (numeric) = 2.008220728530466 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99022091141109410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816190004096295 " " Order of pole = 2.183411045254985 " " x[1] = 0.12850000000000034 " " y[1] (analytic) = 2.0082335033486642 " " y[1] (numeric) = 2.0082335033486602 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.99020825117498770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816277214703685 " " Order of pole = 2.18342055698821 " " x[1] = 0.12860000000000033 " " y[1] (analytic) = 2.008246288003537 " " y[1] (numeric) = 2.008246288003533 " " absolute error = 3.9968028886505635000000000000000E-15 " " relative error = 1.9901955813516850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816364504623792 " " Order of pole = 2.1834300970246723 " " x[1] = 0.12870000000000031 " " y[1] (analytic) = 2.0082590824948365 " " y[1] (numeric) = 2.008259082494833 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7690514683927170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816451873804824 " " Order of pole = 2.1834396652748858 " " x[1] = 0.1288000000000003 " " y[1] (analytic) = 2.0082718868223113 " " y[1] (numeric) = 2.0082718868223077 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76904018928530640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816539322195018 " " Order of pole = 2.183449261649425 " " x[1] = 0.1289000000000003 " " y[1] (analytic) = 2.008284700985709 " " y[1] (numeric) = 2.0082847009857057 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7690289016575950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816626849742492 " " Order of pole = 2.1834588860586948 " " x[1] = 0.12900000000000028 " " y[1] (analytic) = 2.0082975249847785 " " y[1] (numeric) = 2.008297524984775 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76901760551013400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816714456394896 " " Order of pole = 2.1834685384122245 " " x[1] = 0.12910000000000027 " " y[1] (analytic) = 2.0083103588192666 " " y[1] (numeric) = 2.008310358819263 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76900630084347420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816802142100062 " " Order of pole = 2.1834782186199 " " x[1] = 0.12920000000000026 " " y[1] (analytic) = 2.008323202488921 " " y[1] (numeric) = 2.0083232024889175 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76899498765816800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816889906805656 " " Order of pole = 2.1834879265913187 " " x[1] = 0.12930000000000025 " " y[1] (analytic) = 2.0083360559934893 " " y[1] (numeric) = 2.0083360559934857 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.7689836659547670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5816977750458914 " " Order of pole = 2.183497662235304 " " x[1] = 0.12940000000000024 " " y[1] (analytic) = 2.008348919332718 " " y[1] (numeric) = 2.008348919332715 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54785079376709660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817065673007225 " " Order of pole = 2.1835074254609523 " " x[1] = 0.12950000000000023 " " y[1] (analytic) = 2.0083617925063555 " " y[1] (numeric) = 2.0083617925063524 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54784087237140630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817153674398001 " " Order of pole = 2.183517216177421 " " x[1] = 0.12960000000000022 " " y[1] (analytic) = 2.0083746755141476 " " y[1] (numeric) = 2.0083746755141445 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54783094352383470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817241754577553 " " Order of pole = 2.1835270342919024 " " x[1] = 0.1297000000000002 " " y[1] (analytic) = 2.0083875683558405 " " y[1] (numeric) = 2.008387568355838 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32670372047845740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581732991349341 " " Order of pole = 2.183536879713781 " " x[1] = 0.1298000000000002 " " y[1] (analytic) = 2.0084004710311816 " " y[1] (numeric) = 2.008400471031179 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32669519726427460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817418151091682 " " Order of pole = 2.1835467523498906 " " x[1] = 0.12990000000000018 " " y[1] (analytic) = 2.0084133835399167 " " y[1] (numeric) = 2.008413383539914 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32668666766401200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817506467319569 " " Order of pole = 2.1835566521090257 " " x[1] = 0.13000000000000017 " " y[1] (analytic) = 2.008426305881792 " " y[1] (numeric) = 2.0084263058817893 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3266781316780860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817594862122824 " " Order of pole = 2.183566578897409 " " x[1] = 0.13010000000000016 " " y[1] (analytic) = 2.0084392380565532 " " y[1] (numeric) = 2.0084392380565506 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32666958930691250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581768333544814 " " Order of pole = 2.1835765326229613 " " x[1] = 0.13020000000000015 " " y[1] (analytic) = 2.008452180063946 " " y[1] (numeric) = 2.0084521800639434 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32666104055090860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581777188724154 " " Order of pole = 2.1835865131923526 " " x[1] = 0.13030000000000014 " " y[1] (analytic) = 2.008465131903716 " " y[1] (numeric) = 2.0084651319037135 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32665248541049160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581786051744893 " " Order of pole = 2.183596520512122 " " x[1] = 0.13040000000000013 " " y[1] (analytic) = 2.008478093575609 " " y[1] (numeric) = 2.008478093575606 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32664392388607830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5817949226016315 " " Order of pole = 2.1836065544889465 " " x[1] = 0.13050000000000012 " " y[1] (analytic) = 2.008491065079369 " " y[1] (numeric) = 2.008491065079366 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3266353559780870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818038012889142 " " Order of pole = 2.1836166150285443 " " x[1] = 0.1306000000000001 " " y[1] (analytic) = 2.0085040464147417 " " y[1] (numeric) = 2.0085040464147386 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54773124530142440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818126878013261 " " Order of pole = 2.183626702037312 " " x[1] = 0.1307000000000001 " " y[1] (analytic) = 2.0085170375814716 " " y[1] (numeric) = 2.0085170375814685 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54772123451521530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818215821333965 " " Order of pole = 2.1836368154207015 " " x[1] = 0.13080000000000008 " " y[1] (analytic) = 2.0085300385793032 " " y[1] (numeric) = 2.0085300385793 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5477112162829620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818304842796527 " " Order of pole = 2.1836469550841144 " " x[1] = 0.13090000000000007 " " y[1] (analytic) = 2.008543049407981 " " y[1] (numeric) = 2.008543049407978 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32660102051870320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818393942346027 " " Order of pole = 2.1836571209326223 " " x[1] = 0.13100000000000006 " " y[1] (analytic) = 2.0085560700672493 " " y[1] (numeric) = 2.0085560700672462 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54769115748227880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818483119927287 " " Order of pole = 2.183667312870842 " " x[1] = 0.13110000000000005 " " y[1] (analytic) = 2.008569100556852 " " y[1] (numeric) = 2.008569100556849 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32658381449842320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818572375485833 " " Order of pole = 2.1836775308046192 " " x[1] = 0.13120000000000004 " " y[1] (analytic) = 2.0085821408765328 " " y[1] (numeric) = 2.00858214087653 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32657520191710430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818661708965718 " " Order of pole = 2.1836877746372245 " " x[1] = 0.13130000000000003 " " y[1] (analytic) = 2.0085951910260356 " " y[1] (numeric) = 2.008595191026033 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32656658295555870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58187511203119 " " Order of pole = 2.1836980442735197 " " x[1] = 0.13140000000000002 " " y[1] (analytic) = 2.0086082510051035 " " y[1] (numeric) = 2.008608251005101 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32655795761420750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5818840609468776 " " Order of pole = 2.183708339617379 " " x[1] = 0.1315 " " y[1] (analytic) = 2.00862132081348 " " y[1] (numeric) = 2.0086213208134773 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32654932589347130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581893017638054 " " Order of pole = 2.183718660572321 " " x[1] = 0.1316 " " y[1] (analytic) = 2.0086344004509082 " " y[1] (numeric) = 2.0086344004509056 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32654068779377050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819019820991485 " " Order of pole = 2.183729007042057 " " x[1] = 0.13169999999999998 " " y[1] (analytic) = 2.0086474899171307 " " y[1] (numeric) = 2.008647489917128 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32653204331552670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819109543245362 " " Order of pole = 2.1837393789292996 " " x[1] = 0.13179999999999997 " " y[1] (analytic) = 2.0086605892118907 " " y[1] (numeric) = 2.008660589211888 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32652339245916160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.581919934308652 " " Order of pole = 2.1837497761378657 " " x[1] = 0.13189999999999996 " " y[1] (analytic) = 2.0086736983349303 " " y[1] (numeric) = 2.0086736983349276 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32651473522509670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819289220458617 " " Order of pole = 2.1837601985703436 " " x[1] = 0.13199999999999995 " " y[1] (analytic) = 2.0086868172859917 " " y[1] (numeric) = 2.008686817285989 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32650607161375420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819379175305246 " " Order of pole = 2.183770646129201 " " x[1] = 0.13209999999999994 " " y[1] (analytic) = 2.008699946064817 " " y[1] (numeric) = 2.008699946064815 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10541450135463040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819469207569776 " " Order of pole = 2.183781118716496 " " x[1] = 0.13219999999999993 " " y[1] (analytic) = 2.008713084671149 " " y[1] (numeric) = 2.0087130846711467 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1054072710507720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819559317195944 " " Order of pole = 2.1837916162349913 " " x[1] = 0.13229999999999992 " " y[1] (analytic) = 2.0087262331047286 " " y[1] (numeric) = 2.0087262331047264 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10540003543357230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819649504126612 " " Order of pole = 2.1838021385858504 " " x[1] = 0.1323999999999999 " " y[1] (analytic) = 2.0087393913652978 " " y[1] (numeric) = 2.0087393913652956 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10539279450338380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58197397683051 " " Order of pole = 2.1838126856710964 " " x[1] = 0.1324999999999999 " " y[1] (analytic) = 2.008752559452598 " " y[1] (numeric) = 2.0087525594525957 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.105385548260560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819830109674309 " " Order of pole = 2.183823257391964 " " x[1] = 0.13259999999999988 " " y[1] (analytic) = 2.0087657373663697 " " y[1] (numeric) = 2.0087657373663674 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10537829670545410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5819920528177245 " " Order of pole = 2.1838338536499293 " " x[1] = 0.13269999999999987 " " y[1] (analytic) = 2.0087789251063546 " " y[1] (numeric) = 2.0087789251063524 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10537103983841910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820011023756548 " " Order of pole = 2.1838444743457757 " " x[1] = 0.13279999999999986 " " y[1] (analytic) = 2.008792122672294 " " y[1] (numeric) = 2.008792122672291 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32643653319177070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820101596354628 " " Order of pole = 2.1838551193799205 " " x[1] = 0.13289999999999985 " " y[1] (analytic) = 2.008805330063927 " " y[1] (numeric) = 2.0088053300639244 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32642781220397350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820192245914213 " " Order of pole = 2.183865788653339 " " x[1] = 0.13299999999999984 " " y[1] (analytic) = 2.008818547280996 " " y[1] (numeric) = 2.0088185472809927 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54748893231699160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582028297237753 " " Order of pole = 2.183876482066097 " " x[1] = 0.13309999999999983 " " y[1] (analytic) = 2.0088317743232396 " " y[1] (numeric) = 2.0088317743232365 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5474787429612968000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820373775686916 " " Order of pole = 2.183887199518498 " " x[1] = 0.13319999999999982 " " y[1] (analytic) = 2.0088450111903984 " " y[1] (numeric) = 2.0088450111903957 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32640161100404100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820464655784177 " " Order of pole = 2.1838979409098656 " " x[1] = 0.1332999999999998 " " y[1] (analytic) = 2.008858257882213 " " y[1] (numeric) = 2.00885825788221 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54745834194774170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820555612611569 " " Order of pole = 2.1839087061403646 " " x[1] = 0.1333999999999998 " " y[1] (analytic) = 2.008871514398422 " " y[1] (numeric) = 2.008871514398419 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54744813029087570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820646646110648 " " Order of pole = 2.1839194951088885 " " x[1] = 0.13349999999999979 " " y[1] (analytic) = 2.008884780738766 " " y[1] (numeric) = 2.0088847807387626 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76850046994432020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582073775622328 " " Order of pole = 2.1839303077149275 " " x[1] = 0.13359999999999977 " " y[1] (analytic) = 2.0088980569029835 " " y[1] (numeric) = 2.0088980569029804 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54742768467945440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582082894289129 " " Order of pole = 2.1839411438578473 " " x[1] = 0.13369999999999976 " " y[1] (analytic) = 2.0089113428908143 " " y[1] (numeric) = 2.008911342890811 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5474174507258950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5820920206055589 " " Order of pole = 2.18395200343544 " " x[1] = 0.13379999999999975 " " y[1] (analytic) = 2.008924638701997 " " y[1] (numeric) = 2.008924638701994 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54740720934110180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821011545658015 " " Order of pole = 2.1839628863471177 " " x[1] = 0.13389999999999974 " " y[1] (analytic) = 2.00893794433627 " " y[1] (numeric) = 2.0089379443362674 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3263402518790630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821102961639288 " " Order of pole = 2.1839737924903453 " " x[1] = 0.13399999999999973 " " y[1] (analytic) = 2.008951259793373 " " y[1] (numeric) = 2.00895125979337 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5473867042798090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821194453940914 " " Order of pole = 2.183984721763945 " " x[1] = 0.13409999999999972 " " y[1] (analytic) = 2.0089645850730435 " " y[1] (numeric) = 2.0089645850730404 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54737644060430900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582128602250362 " " Order of pole = 2.183995674065379 " " x[1] = 0.1341999999999997 " " y[1] (analytic) = 2.00897792017502 " " y[1] (numeric) = 2.008977920175017 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54736616949957250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821377667268457 " " Order of pole = 2.184006649292712 " " x[1] = 0.1342999999999997 " " y[1] (analytic) = 2.0089912650990405 " " y[1] (numeric) = 2.0089912650990374 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54735589096610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821469388175948 " " Order of pole = 2.1840176473430404 " " x[1] = 0.1343999999999997 " " y[1] (analytic) = 2.009004619844843 " " y[1] (numeric) = 2.00900461984484 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54734560500439240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821561185166721 " " Order of pole = 2.1840286681136583 " " x[1] = 0.13449999999999968 " " y[1] (analytic) = 2.009017984412165 " " y[1] (numeric) = 2.009017984412162 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5473353116149510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821653058181222 " " Order of pole = 2.1840397115015655 " " x[1] = 0.13459999999999966 " " y[1] (analytic) = 2.009031358800744 " " y[1] (numeric) = 2.009031358800741 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54732501079827700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582174500715989 " " Order of pole = 2.1840507774037157 " " x[1] = 0.13469999999999965 " " y[1] (analytic) = 2.0090447430103175 " " y[1] (numeric) = 2.0090447430103144 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54731470255487170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821837032043033 " " Order of pole = 2.1840618657168527 " " x[1] = 0.13479999999999964 " " y[1] (analytic) = 2.0090581370406224 " " y[1] (numeric) = 2.0090581370406193 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54730438688523800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5821929132770611 " " Order of pole = 2.184072976337106 " " x[1] = 0.13489999999999963 " " y[1] (analytic) = 2.0090715408913957 " " y[1] (numeric) = 2.0090715408913926 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54729406378987720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582202130928255 " " Order of pole = 2.184084109160562 " " x[1] = 0.13499999999999962 " " y[1] (analytic) = 2.0090849545623737 " " y[1] (numeric) = 2.009084954562371 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32624319994510850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582211356151907 " " Order of pole = 2.184095264083812 " " x[1] = 0.1350999999999996 " " y[1] (analytic) = 2.009098378053294 " " y[1] (numeric) = 2.009098378053291 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32623433884913320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582220588941962 " " Order of pole = 2.184106441002072 " " x[1] = 0.1351999999999996 " " y[1] (analytic) = 2.009111811363892 " " y[1] (numeric) = 2.0091118113638893 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32622547138954270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822298292923933 " " Order of pole = 2.184117639811113 " " x[1] = 0.1352999999999996 " " y[1] (analytic) = 2.0091252544939042 " " y[1] (numeric) = 2.0091252544939016 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32621659756676950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822390771971726 " " Order of pole = 2.1841288604066342 " " x[1] = 0.13539999999999958 " " y[1] (analytic) = 2.009138707443067 " " y[1] (numeric) = 2.009138707443064 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32620771738124530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822483326502284 " " Order of pole = 2.1841401026835747 " " x[1] = 0.13549999999999957 " " y[1] (analytic) = 2.0091521702111153 " " y[1] (numeric) = 2.0091521702111126 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3261988308334030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822575956454716 " " Order of pole = 2.1841513665366143 " " x[1] = 0.13559999999999955 " " y[1] (analytic) = 2.0091656427977855 " " y[1] (numeric) = 2.009165642797783 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3261899379236750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822668661768302 " " Order of pole = 2.1841626518606745 " " x[1] = 0.13569999999999954 " " y[1] (analytic) = 2.0091791252028126 " " y[1] (numeric) = 2.00917912520281 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32618103865249410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822761442382587 " " Order of pole = 2.184173958551199 " " x[1] = 0.13579999999999953 " " y[1] (analytic) = 2.0091926174259322 " " y[1] (numeric) = 2.0091926174259296 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32617213302029390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822854298235771 " " Order of pole = 2.1841852865012186 " " x[1] = 0.13589999999999952 " " y[1] (analytic) = 2.009206119466879 " " y[1] (numeric) = 2.0092061194668767 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10513601752292310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5822947229267181 " " Order of pole = 2.184196635605794 " " x[1] = 0.1359999999999995 " " y[1] (analytic) = 2.0092196313253883 " " y[1] (numeric) = 2.009219631325386 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10512858556214110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823040235415597 " " Order of pole = 2.1842080057589897 " " x[1] = 0.1360999999999995 " " y[1] (analytic) = 2.009233153001195 " " y[1] (numeric) = 2.009233153001192 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3261453779619128000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823133316619353 " " Order of pole = 2.1842193968540897 " " x[1] = 0.1361999999999995 " " y[1] (analytic) = 2.0092466844940327 " " y[1] (numeric) = 2.00924668449403 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32613644688997330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823226472817167 " " Order of pole = 2.184230808785088 " " x[1] = 0.13629999999999948 " " y[1] (analytic) = 2.009260225803636 " " y[1] (numeric) = 2.0092602258036334 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32612750945918500000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823319703947347 " " Order of pole = 2.1842422414452436 " " x[1] = 0.13639999999999947 " " y[1] (analytic) = 2.0092737769297395 " " y[1] (numeric) = 2.009273776929737 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3261185656699830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823413009948277 " " Order of pole = 2.184253694727925 " " x[1] = 0.13649999999999946 " " y[1] (analytic) = 2.009287337872077 " " y[1] (numeric) = 2.0092873378720744 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32610961552280250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823506390758026 " " Order of pole = 2.184265168525986 " " x[1] = 0.13659999999999944 " " y[1] (analytic) = 2.009300908630382 " " y[1] (numeric) = 2.0093009086303795 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32610065901807960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823599846314629 " " Order of pole = 2.184276662732181 " " x[1] = 0.13669999999999943 " " y[1] (analytic) = 2.009314489204389 " " y[1] (numeric) = 2.0093144892043857 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54710697884895750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823693376556103 " " Order of pole = 2.1842881772392957 " " x[1] = 0.13679999999999942 " " y[1] (analytic) = 2.0093280795938298 " " y[1] (numeric) = 2.0093280795938266 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5470965147607070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823786981420602 " " Order of pole = 2.184299711940291 " " x[1] = 0.1368999999999994 " " y[1] (analytic) = 2.0093416797984385 " " y[1] (numeric) = 2.009341679798436 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3260737513630141000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823880660845515 " " Order of pole = 2.1843112667268336 " " x[1] = 0.1369999999999994 " " y[1] (analytic) = 2.0093552898179485 " " y[1] (numeric) = 2.009355289817946 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32606476943248170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5823974414768567 " " Order of pole = 2.1843228414911486 " " x[1] = 0.1370999999999994 " " y[1] (analytic) = 2.009368909652092 " " y[1] (numeric) = 2.0093689096520895 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32605578114658950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824068243127272 " " Order of pole = 2.184334436125134 " " x[1] = 0.13719999999999938 " " y[1] (analytic) = 2.0093825393006024 " " y[1] (numeric) = 2.0093825393005997 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3260467865057740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582416214585918 " " Order of pole = 2.1843460505207126 " " x[1] = 0.13729999999999937 " " y[1] (analytic) = 2.0093961787632115 " " y[1] (numeric) = 2.009396178763209 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3260377855104732000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824256122901588 " " Order of pole = 2.184357684569381 " " x[1] = 0.13739999999999936 " " y[1] (analytic) = 2.0094098280396513 " " y[1] (numeric) = 2.009409828039649 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10502398180093770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824350174191775 " " Order of pole = 2.184369338162586 " " x[1] = 0.13749999999999934 " " y[1] (analytic) = 2.009423487129655 " " y[1] (numeric) = 2.0094234871296526 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10501647038180680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824444299666578 " " Order of pole = 2.184381011191043 " " x[1] = 0.13759999999999933 " " y[1] (analytic) = 2.0094371560329534 " " y[1] (numeric) = 2.009437156032951 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10500895366836720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824538499263132 " " Order of pole = 2.184392703545946 " " x[1] = 0.13769999999999932 " " y[1] (analytic) = 2.0094508347492788 " " y[1] (numeric) = 2.0094508347492765 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10500143166098420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582463277291867 " " Order of pole = 2.1844044151187063 " " x[1] = 0.1377999999999993 " " y[1] (analytic) = 2.009464523278363 " " y[1] (numeric) = 2.0094645232783606 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10499390436002430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824727120569713 " " Order of pole = 2.1844161457994424 " " x[1] = 0.1378999999999993 " " y[1] (analytic) = 2.0094782216199363 " " y[1] (numeric) = 2.009478221619934 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10498637176585350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582482154215295 " " Order of pole = 2.18442789547861 " " x[1] = 0.1379999999999993 " " y[1] (analytic) = 2.009491929773731 " " y[1] (numeric) = 2.009491929773729 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1049788338788380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5824916037605101 " " Order of pole = 2.1844396640466783 " " x[1] = 0.13809999999999928 " " y[1] (analytic) = 2.009505647739478 " " y[1] (numeric) = 2.0095056477394757 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10497129069934430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825010606862617 " " Order of pole = 2.184451451393695 " " x[1] = 0.13819999999999927 " " y[1] (analytic) = 2.009519375516907 " " y[1] (numeric) = 2.009519375516905 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83970993782192100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825105249861984 " " Order of pole = 2.1844632574097176 " " x[1] = 0.13829999999999926 " " y[1] (analytic) = 2.00953311310575 " " y[1] (numeric) = 2.009533113105748 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83964950771513500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825199966539374 " " Order of pole = 2.18447508198431 " " x[1] = 0.13839999999999925 " " y[1] (analytic) = 2.0095468605057367 " " y[1] (numeric) = 2.009546860505735 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83958903527733700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825294756831214 " " Order of pole = 2.1844869250074446 " " x[1] = 0.13849999999999923 " " y[1] (analytic) = 2.0095606177165974 " " y[1] (numeric) = 2.0095606177165957 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83952852051146700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825389620673362 " " Order of pole = 2.184498786368085 " " x[1] = 0.13859999999999922 " " y[1] (analytic) = 2.0095743847380625 " " y[1] (numeric) = 2.0095743847380607 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8394679634204700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825484558002063 " " Order of pole = 2.184510665955937 " " x[1] = 0.1386999999999992 " " y[1] (analytic) = 2.0095881615698614 " " y[1] (numeric) = 2.0095881615698596 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8394073640072900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825579568752968 " " Order of pole = 2.1845225636596055 " " x[1] = 0.1387999999999992 " " y[1] (analytic) = 2.009601948211724 " " y[1] (numeric) = 2.0096019482117224 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83934672227487300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825674652862243 " " Order of pole = 2.1845344793686365 " " x[1] = 0.1388999999999992 " " y[1] (analytic) = 2.00961574466338 " " y[1] (numeric) = 2.0096157446633782 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8392860382261710000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825769810265369 " " Order of pole = 2.1845464129713434 " " x[1] = 0.13899999999999918 " " y[1] (analytic) = 2.0096295509245583 " " y[1] (numeric) = 2.0096295509245565 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83922531186413200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5825865040898075 " " Order of pole = 2.1845583643565085 " " x[1] = 0.13909999999999917 " " y[1] (analytic) = 2.0096433669949882 " " y[1] (numeric) = 2.0096433669949865 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8391645431917100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582596034469589 " " Order of pole = 2.1845703334125517 " " x[1] = 0.13919999999999916 " " y[1] (analytic) = 2.009657192874399 " " y[1] (numeric) = 2.009657192874397 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83910373221185700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58260557215942 " " Order of pole = 2.184582320027637 " " x[1] = 0.13929999999999915 " " y[1] (analytic) = 2.0096710285625194 " " y[1] (numeric) = 2.0096710285625172 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10488035986594140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826151171528469 " " Order of pole = 2.184594324090071 " " x[1] = 0.13939999999999914 " " y[1] (analytic) = 2.009684874059077 " " y[1] (numeric) = 2.0096848740590754 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83898198334169500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582624669443385 " " Order of pole = 2.1846063454876194 " " x[1] = 0.13949999999999912 " " y[1] (analytic) = 2.009698729363802 " " y[1] (numeric) = 2.0096987293638 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10486513068216260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826342290245659 " " Order of pole = 2.18461838410834 " " x[1] = 0.1395999999999991 " " y[1] (analytic) = 2.009712594476421 " " y[1] (numeric) = 2.0097125944764187 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10485750815966470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826437958898736 " " Order of pole = 2.184630439839445 " " x[1] = 0.1396999999999991 " " y[1] (analytic) = 2.0097264693966626 " " y[1] (numeric) = 2.0097264693966603 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10484988035058850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826533700328178 " " Order of pole = 2.1846425125686117 " " x[1] = 0.1397999999999991 " " y[1] (analytic) = 2.0097403541242547 " " y[1] (numeric) = 2.0097403541242524 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10484224725530460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826629514468877 " " Order of pole = 2.1846546021831372 " " x[1] = 0.13989999999999908 " " y[1] (analytic) = 2.009754248658925 " " y[1] (numeric) = 2.009754248658923 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1048346088741841000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826725401255677 " " Order of pole = 2.184666708570269 " " x[1] = 0.13999999999999907 " " y[1] (analytic) = 2.009768153000401 " " y[1] (numeric) = 2.009768153000399 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10482696520759830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826821360623287 " " Order of pole = 2.1846788316169885 " " x[1] = 0.14009999999999906 " " y[1] (analytic) = 2.00978206714841 " " y[1] (numeric) = 2.0097820671484077 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10481931625591860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5826917392506288 " " Order of pole = 2.184690971210067 " " x[1] = 0.14019999999999905 " " y[1] (analytic) = 2.0097959911026786 " " y[1] (numeric) = 2.0097959911026764 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10481166201951710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827013496839322 " " Order of pole = 2.184703127236393 " " x[1] = 0.14029999999999904 " " y[1] (analytic) = 2.0098099248629344 " " y[1] (numeric) = 2.009809924862932 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10480400249876560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827109673556676 " " Order of pole = 2.1847152995822263 " " x[1] = 0.14039999999999903 " " y[1] (analytic) = 2.009823868428904 " " y[1] (numeric) = 2.0098238684289016 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1047963376940360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827205922592764 " " Order of pole = 2.1847274881340404 " " x[1] = 0.14049999999999901 " " y[1] (analytic) = 2.0098378218003137 " " y[1] (numeric) = 2.009837821800311 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32574640112684130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582730224388196 " " Order of pole = 2.1847396927782583 " " x[1] = 0.140599999999999 " " y[1] (analytic) = 2.0098517849768895 " " y[1] (numeric) = 2.0098517849768873 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10478099223413380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827398637358323 " " Order of pole = 2.1847519134007456 " " x[1] = 0.140699999999999 " " y[1] (analytic) = 2.0098657579583588 " " y[1] (numeric) = 2.009865757958356 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3257279738956480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827495102956124 " " Order of pole = 2.1847641498877124 " " x[1] = 0.14079999999999898 " " y[1] (analytic) = 2.009879740744446 " " y[1] (numeric) = 2.0098797407444438 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10476562564279330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827591640609235 " " Order of pole = 2.184776402124733 " " x[1] = 0.14089999999999897 " " y[1] (analytic) = 2.0098937333348785 " " y[1] (numeric) = 2.009893733334876 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.325709521308520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827688250251792 " " Order of pole = 2.184788669997797 " " x[1] = 0.14099999999999896 " " y[1] (analytic) = 2.0099077357293806 " " y[1] (numeric) = 2.0099077357293784 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10475023792300080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827784931817246 " " Order of pole = 2.184800953391697 " " x[1] = 0.14109999999999895 " " y[1] (analytic) = 2.009921747927679 " " y[1] (numeric) = 2.0099217479276765 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3256910433690430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5827881685239786 " " Order of pole = 2.184813252192548 " " x[1] = 0.14119999999999894 " " y[1] (analytic) = 2.009935769929498 " " y[1] (numeric) = 2.0099357699294953 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3256817948932960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58279785104528 " " Order of pole = 2.184825566285035 " " x[1] = 0.14129999999999893 " " y[1] (analytic) = 2.0099498017345625 " " y[1] (numeric) = 2.0099498017345603 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10472711673400740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5828075407390316 " " Order of pole = 2.1848378955549883 " " x[1] = 0.14139999999999892 " " y[1] (analytic) = 2.0099638433425984 " " y[1] (numeric) = 2.009963843342596 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10471939911002570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5828172375985514 " " Order of pole = 2.184850239886739 " " x[1] = 0.1414999999999989 " " y[1] (analytic) = 2.0099778947533298 " " y[1] (numeric) = 2.0099778947533276 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10471167620617660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58282694161718 " " Order of pole = 2.1848625991650046 " " x[1] = 0.1415999999999989 " " y[1] (analytic) = 2.0099919559664814 " " y[1] (numeric) = 2.0099919559664787 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32564473762740250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582836652788266 " " Order of pole = 2.1848749732746775 " " x[1] = 0.14169999999999888 " " y[1] (analytic) = 2.010006026981777 " " y[1] (numeric) = 2.0100060269817743 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3256354574724530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582846371105145 " " Order of pole = 2.1848873621003975 " " x[1] = 0.14179999999999887 " " y[1] (analytic) = 2.0100201077989412 " " y[1] (numeric) = 2.0100201077989386 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3256261709830142000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5828560965611274 " " Order of pole = 2.1848997655263744 " " x[1] = 0.14189999999999886 " " y[1] (analytic) = 2.0100341984176984 " " y[1] (numeric) = 2.0100341984176957 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32561687815953650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5828658291495297 " " Order of pole = 2.184912183436925 " " x[1] = 0.14199999999999885 " " y[1] (analytic) = 2.0100482988377717 " " y[1] (numeric) = 2.010048298837769 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32560757900247180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58287556886367 " " Order of pole = 2.1849246157163975 " " x[1] = 0.14209999999999884 " " y[1] (analytic) = 2.0100624090588846 " " y[1] (numeric) = 2.0100624090588823 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10466522792689330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582885315696829 " " Order of pole = 2.184937062248469 " " x[1] = 0.14219999999999883 " " y[1] (analytic) = 2.010076529080761 " " y[1] (numeric) = 2.010076529080759 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10465746807449030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5828950696423012 " " Order of pole = 2.184949522917087 " " x[1] = 0.14229999999999882 " " y[1] (analytic) = 2.010090658903124 " " y[1] (numeric) = 2.0100906589031218 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10464970294522780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582904830693368 " " Order of pole = 2.1849619976059493 " " x[1] = 0.1423999999999988 " " y[1] (analytic) = 2.010104798525697 " " y[1] (numeric) = 2.0101047985256946 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10464193253948250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829145988433089 " " Order of pole = 2.1849744861987404 " " x[1] = 0.1424999999999988 " " y[1] (analytic) = 2.0101189479482016 " " y[1] (numeric) = 2.0101189479482 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8370732548610610000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829243740853989 " " Order of pole = 2.1849869885790625 " " x[1] = 0.14259999999999878 " " y[1] (analytic) = 2.010133107170362 " " y[1] (numeric) = 2.01013310717036 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10462637590005450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.582934156412886 " " Order of pole = 2.184999504630021 " " x[1] = 0.14269999999999877 " " y[1] (analytic) = 2.0101472761919 " " y[1] (numeric) = 2.0101472761918977 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10461858966712690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829439458190229 " " Order of pole = 2.1850120342348447 " " x[1] = 0.14279999999999876 " " y[1] (analytic) = 2.0101614550125375 " " y[1] (numeric) = 2.0101614550125357 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8368863852738190000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829537422970696 " " Order of pole = 2.1850245772768666 " " x[1] = 0.14289999999999875 " " y[1] (analytic) = 2.0101756436319977 " " y[1] (numeric) = 2.0101756436319955 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10460300137673430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829635458402396 " " Order of pole = 2.1850371336386125 " " x[1] = 0.14299999999999874 " " y[1] (analytic) = 2.0101898420500013 " " y[1] (numeric) = 2.0101898420499995 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83676159456020800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829733564418056 " " Order of pole = 2.1850497032036422 " " x[1] = 0.14309999999999873 " " y[1] (analytic) = 2.010204050266271 " " y[1] (numeric) = 2.0102040502662692 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83669913591585200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829831740949583 " " Order of pole = 2.185062285854098 " " x[1] = 0.14319999999999872 " " y[1] (analytic) = 2.010218268280528 " " y[1] (numeric) = 2.0102182682805263 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83663663508383800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5829929987929139 " " Order of pole = 2.185074881472538 " " x[1] = 0.1432999999999987 " " y[1] (analytic) = 2.010232496092494 " " y[1] (numeric) = 2.010232496092492 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83657409206719600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830028305289148 " " Order of pole = 2.1850874899420276 " " x[1] = 0.1433999999999987 " " y[1] (analytic) = 2.0102467337018894 " " y[1] (numeric) = 2.0102467337018877 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83651150686896800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583012669296132 " " Order of pole = 2.185100111144333 " " x[1] = 0.14349999999999868 " " y[1] (analytic) = 2.010260981108436 " " y[1] (numeric) = 2.010260981108434 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83644887949218700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830225150877741 " " Order of pole = 2.1851127449619128 " " x[1] = 0.14359999999999867 " " y[1] (analytic) = 2.0102752383118547 " " y[1] (numeric) = 2.0102752383118525 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10454827624248660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830323678970433 " " Order of pole = 2.1851253912771007 " " x[1] = 0.14369999999999866 " " y[1] (analytic) = 2.0102895053118655 " " y[1] (numeric) = 2.0102895053118632 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10454043727689120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583042227717105 " " Order of pole = 2.1851380499716093 " " x[1] = 0.14379999999999865 " " y[1] (analytic) = 2.010303782108189 " " y[1] (numeric) = 2.010303782108187 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8362607443209400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583052094541147 " " Order of pole = 2.1851507209275027 " " x[1] = 0.14389999999999864 " " y[1] (analytic) = 2.010318068700546 " " y[1] (numeric) = 2.010318068700544 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83619794826036500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830619683623368 " " Order of pole = 2.1851634040265324 " " x[1] = 0.14399999999999863 " " y[1] (analytic) = 2.010332365088656 " " y[1] (numeric) = 2.0103323650886544 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83613511003645700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830718491738447 " " Order of pole = 2.1851760991504854 " " x[1] = 0.14409999999999862 " " y[1] (analytic) = 2.0103466712722393 " " y[1] (numeric) = 2.010346671272238 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62705417223920000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830817369688122 " " Order of pole = 2.1851888061806335 " " x[1] = 0.1441999999999986 " " y[1] (analytic) = 2.010360987251016 " " y[1] (numeric) = 2.010360987251014 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83600930711083600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5830916317404053 " " Order of pole = 2.1852015249987033 " " x[1] = 0.1442999999999986 " " y[1] (analytic) = 2.0103753130247046 " " y[1] (numeric) = 2.010375313024703 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83594634241522600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831015334817706 " " Order of pole = 2.1852142554860627 " " x[1] = 0.14439999999999859 " " y[1] (analytic) = 2.0103896485930255 " " y[1] (numeric) = 2.0103896485930237 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83588333556848800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831114421860406 " " Order of pole = 2.185226997523852 " " x[1] = 0.14449999999999857 " " y[1] (analytic) = 2.010403993955697 " " y[1] (numeric) = 2.0104039939556952 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83582028657368300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831213578463457 " " Order of pole = 2.1852397509931585 " " x[1] = 0.14459999999999856 " " y[1] (analytic) = 2.010418349112439 " " y[1] (numeric) = 2.010418349112437 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83575719543386400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583131280455827 " " Order of pole = 2.185252515775261 " " x[1] = 0.14469999999999855 " " y[1] (analytic) = 2.0104327140629694 " " y[1] (numeric) = 2.0104327140629676 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83569406215209700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831412100075646 " " Order of pole = 2.185265291750383 " " x[1] = 0.14479999999999854 " " y[1] (analytic) = 2.0104470888070076 " " y[1] (numeric) = 2.010447088807006 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83563088673144000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831511464947283 " " Order of pole = 2.1852780788003088 " " x[1] = 0.14489999999999853 " " y[1] (analytic) = 2.0104614733442716 " " y[1] (numeric) = 2.01046147334427 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83556766917496200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831610899103943 " " Order of pole = 2.185290876805201 " " x[1] = 0.14499999999999852 " " y[1] (analytic) = 2.01047586767448 " " y[1] (numeric) = 2.010475867674478 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83550440948572400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831710402476684 " " Order of pole = 2.185303685645728 " " x[1] = 0.1450999999999985 " " y[1] (analytic) = 2.0104902717973503 " " y[1] (numeric) = 2.0104902717973485 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.835441107666799000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58318099749965 " " Order of pole = 2.185316505202451 " " x[1] = 0.1451999999999985 " " y[1] (analytic) = 2.0105046857126005 " " y[1] (numeric) = 2.010504685712599 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62653332279094300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5831909616594342 " " Order of pole = 2.1853293353558527 " " x[1] = 0.14529999999999849 " " y[1] (analytic) = 2.010519109419949 " " y[1] (numeric) = 2.0105191094199477 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62648578323912600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832009327201078 " " Order of pole = 2.185342175986289 " " x[1] = 0.14539999999999847 " " y[1] (analytic) = 2.010533542919113 " " y[1] (numeric) = 2.0105335429191116 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62643821209695300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832109106747347 " " Order of pole = 2.1853550269736957 " " x[1] = 0.14549999999999846 " " y[1] (analytic) = 2.0105479862098097 " " y[1] (numeric) = 2.0105479862098083 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62639060936673200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832208955164078 " " Order of pole = 2.1853678881985275 " " x[1] = 0.14559999999999845 " " y[1] (analytic) = 2.010562439291756 " " y[1] (numeric) = 2.0105624392917547 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62634297505077600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832308872381922 " " Order of pole = 2.185380759540756 " " x[1] = 0.14569999999999844 " " y[1] (analytic) = 2.0105769021646696 " " y[1] (numeric) = 2.0105769021646682 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62629530915138800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832408858331408 " " Order of pole = 2.185393640880143 " " x[1] = 0.14579999999999843 " " y[1] (analytic) = 2.0105913748282664 " " y[1] (numeric) = 2.010591374828265 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62624761167088300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58325089129433 " " Order of pole = 2.185406532096845 " " x[1] = 0.14589999999999842 " " y[1] (analytic) = 2.010605857282264 " " y[1] (numeric) = 2.0106058572822625 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62619988261157300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583260903614788 " " Order of pole = 2.185419433070205 " " x[1] = 0.1459999999999984 " " y[1] (analytic) = 2.0106203495263775 " " y[1] (numeric) = 2.0106203495263766 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.417434747983849400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58327092278759 " " Order of pole = 2.185432343680361 " " x[1] = 0.1460999999999984 " " y[1] (analytic) = 2.0106348515603245 " " y[1] (numeric) = 2.0106348515603236 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41740288651053200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832809488057484 " " Order of pole = 2.185445263806372 " " x[1] = 0.1461999999999984 " " y[1] (analytic) = 2.0106493633838207 " " y[1] (numeric) = 2.0106493633838194 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62605650598396300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5832909816623257 " " Order of pole = 2.1854581933281843 " " x[1] = 0.14629999999999838 " " y[1] (analytic) = 2.0106638849965814 " " y[1] (numeric) = 2.01066388499658 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62600865063258900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833010213503402 " " Order of pole = 2.1854711321249347 " " x[1] = 0.14639999999999836 " " y[1] (analytic) = 2.010678416398323 " " y[1] (numeric) = 2.0106784163983216 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62596076371399600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583311067862827 " " Order of pole = 2.185484080076108 " " x[1] = 0.14649999999999835 " " y[1] (analytic) = 2.0106929575887604 " " y[1] (numeric) = 2.010692957588759 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62591284523050300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833211211928049 " " Order of pole = 2.185497037060859 " " x[1] = 0.14659999999999834 " " y[1] (analytic) = 2.010707508567609 " " y[1] (numeric) = 2.010707508567608 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.417243263456291000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833311813332898 " " Order of pole = 2.185510002958317 " " x[1] = 0.14669999999999833 " " y[1] (analytic) = 2.010722069334584 " " y[1] (numeric) = 2.0107220693345833 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.417211275718745000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833412482773035 " " Order of pole = 2.185522977647711 " " x[1] = 0.14679999999999832 " " y[1] (analytic) = 2.0107366398894015 " " y[1] (numeric) = 2.0107366398894 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6257689004138700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833513220178501 " " Order of pole = 2.185535961007961 " " x[1] = 0.1468999999999983 " " y[1] (analytic) = 2.0107512202317745 " " y[1] (numeric) = 2.010751220231773 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62572085569402500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833614025479212 " " Order of pole = 2.185548952917774 " " x[1] = 0.1469999999999983 " " y[1] (analytic) = 2.0107658103614185 " " y[1] (numeric) = 2.010765810361417 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6256727794209090000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833714898605247 " " Order of pole = 2.18556195325613 " " x[1] = 0.1470999999999983 " " y[1] (analytic) = 2.010780410278048 " " y[1] (numeric) = 2.0107804102780467 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62562467159685400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833815839486554 " " Order of pole = 2.185574961901807 " " x[1] = 0.14719999999999828 " " y[1] (analytic) = 2.010795019981377 " " y[1] (numeric) = 2.0107950199813756 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62557653222418800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5833916848053011 " " Order of pole = 2.185587978733434 " " x[1] = 0.14729999999999827 " " y[1] (analytic) = 2.0108096394711192 " " y[1] (numeric) = 2.010809639471118 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62552836130524700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583401792423455 " " Order of pole = 2.185601003629756 " " x[1] = 0.14739999999999825 " " y[1] (analytic) = 2.010824268746989 " " y[1] (numeric) = 2.0108242687469877 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62548015884236300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583411906796097 " " Order of pole = 2.185614036469289 " " x[1] = 0.14749999999999824 " " y[1] (analytic) = 2.0108389078087 " " y[1] (numeric) = 2.0108389078086986 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62543192483787200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834220279161766 " " Order of pole = 2.185627077129986 " " x[1] = 0.14759999999999823 " " y[1] (analytic) = 2.0108535566559653 " " y[1] (numeric) = 2.010853556655964 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62538365929411200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834321557767 " " Order of pole = 2.1856401254908313 " " x[1] = 0.14769999999999822 " " y[1] (analytic) = 2.010868215288499 " " y[1] (numeric) = 2.0108682152884976 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62533536221341800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834422903706298 " " Order of pole = 2.1856531814300446 " " x[1] = 0.1477999999999982 " " y[1] (analytic) = 2.0108828837060133 " " y[1] (numeric) = 2.010882883706012 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62528703359813600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834524316909184 " " Order of pole = 2.1856662448256543 " " x[1] = 0.1478999999999982 " " y[1] (analytic) = 2.0108975619082217 " " y[1] (numeric) = 2.0108975619082203 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62523867345060400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834625797305335 " " Order of pole = 2.185679315555955 " " x[1] = 0.1479999999999982 " " y[1] (analytic) = 2.0109122498948366 " " y[1] (numeric) = 2.0109122498948353 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62519028177316300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834727344824349 " " Order of pole = 2.1856923934991137 " " x[1] = 0.14809999999999818 " " y[1] (analytic) = 2.010926947665571 " " y[1] (numeric) = 2.0109269476655696 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6251418585681610000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5834828959395681 " " Order of pole = 2.1857054785330448 " " x[1] = 0.14819999999999817 " " y[1] (analytic) = 2.010941655220137 " " y[1] (numeric) = 2.010941655220136 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6250934038379390000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583493064094881 " " Order of pole = 2.185718570535716 " " x[1] = 0.14829999999999816 " " y[1] (analytic) = 2.010956372558247 " " y[1] (numeric) = 2.0109563725582458 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62504491758484900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835032389413208 " " Order of pole = 2.1857316693850812 " " x[1] = 0.14839999999999814 " " y[1] (analytic) = 2.010971099679613 " " y[1] (numeric) = 2.0109710996796117 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62499639981123500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835134204718149 " " Order of pole = 2.1857447749587244 " " x[1] = 0.14849999999999813 " " y[1] (analytic) = 2.010985836583947 " " y[1] (numeric) = 2.0109858365839455 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62494785051945100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835236086793427 " " Order of pole = 2.185757887135196 " " x[1] = 0.14859999999999812 " " y[1] (analytic) = 2.0110005832709597 " " y[1] (numeric) = 2.0110005832709588 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41659951314123100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835338035568023 " " Order of pole = 2.185771005791569 " " x[1] = 0.1486999999999981 " " y[1] (analytic) = 2.011015339740364 " " y[1] (numeric) = 2.011015339740363 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41656710492718200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835440050971246 " " Order of pole = 2.185784130805523 " " x[1] = 0.1487999999999981 " " y[1] (analytic) = 2.0110301059918703 " " y[1] (numeric) = 2.0110301059918694 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41653467570572400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835542132932623 " " Order of pole = 2.185797262055125 " " x[1] = 0.1488999999999981 " " y[1] (analytic) = 2.01104488202519 " " y[1] (numeric) = 2.011044882025189 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41650222547842700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835644281380918 " " Order of pole = 2.1858103994170683 " " x[1] = 0.14899999999999808 " " y[1] (analytic) = 2.011059667840034 " " y[1] (numeric) = 2.011059667840033 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41646975424686300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583574649624587 " " Order of pole = 2.1858235427698105 " " x[1] = 0.14909999999999807 " " y[1] (analytic) = 2.0110744634361124 " " y[1] (numeric) = 2.011074463436112 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.208218631006302300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835848777456343 " " Order of pole = 2.185836691990229 " " x[1] = 0.14919999999999806 " " y[1] (analytic) = 2.011089268813137 " " y[1] (numeric) = 2.0110892688131363 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41640474877722300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5835951124941665 " " Order of pole = 2.1858498469560566 " " x[1] = 0.14929999999999805 " " y[1] (analytic) = 2.0111040839708174 " " y[1] (numeric) = 2.011104083970817 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.208186107271147600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836053538630626 " " Order of pole = 2.1858630075440537 " " x[1] = 0.14939999999999803 " " y[1] (analytic) = 2.0111189089088644 " " y[1] (numeric) = 2.0111189089088635 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41633965930939340000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836156018452676 " " Order of pole = 2.1858761736321703 " " x[1] = 0.14949999999999802 " " y[1] (analytic) = 2.0111337436269867 " " y[1] (numeric) = 2.0111337436269863 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.208153541540048300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836258564336547 " " Order of pole = 2.185889345097067 " " x[1] = 0.149599999999998 " " y[1] (analytic) = 2.011148588124896 " " y[1] (numeric) = 2.011148588124895 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41627448585597940000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836361176211418 " " Order of pole = 2.1859025218162174 " " x[1] = 0.149699999999998 " " y[1] (analytic) = 2.0111634424023004 " " y[1] (numeric) = 2.0111634424022995 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41624186763862060000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836463854006428 " " Order of pole = 2.1859157036670034 " " x[1] = 0.149799999999998 " " y[1] (analytic) = 2.01117830645891 " " y[1] (numeric) = 2.011178306458909 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.416209228429599500000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583656659765023 " " Order of pole = 2.1859288905259753 " " x[1] = 0.14989999999999798 " " y[1] (analytic) = 2.011193180294434 " " y[1] (numeric) = 2.011193180294433 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.416176568230496500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836669407071937 " " Order of pole = 2.1859420822704756 " " x[1] = 0.14999999999999797 " " y[1] (analytic) = 2.0112080639085814 " " y[1] (numeric) = 2.0112080639085805 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.416143887042892600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836772282200553 " " Order of pole = 2.185955278777673 " " x[1] = 0.15009999999999796 " " y[1] (analytic) = 2.0112229573010616 " " y[1] (numeric) = 2.0112229573010607 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.416111184868367600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836875222964693 " " Order of pole = 2.1859684799240497 " " x[1] = 0.15019999999999795 " " y[1] (analytic) = 2.011237860471583 " " y[1] (numeric) = 2.011237860471582 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41607846170850500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5836978229293435 " " Order of pole = 2.1859816855869028 " " x[1] = 0.15029999999999794 " " y[1] (analytic) = 2.0112527734198538 " " y[1] (numeric) = 2.011252773419853 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.416045717564890000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5837081301115528 " " Order of pole = 2.185994895642942 " " x[1] = 0.15039999999999792 " " y[1] (analytic) = 2.011267696145583 " " y[1] (numeric) = 2.0112676961455818 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62401942865865700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5837184438359764 " " Order of pole = 2.186008109968988 " " x[1] = 0.1504999999999979 " " y[1] (analytic) = 2.011282628648478 " " y[1] (numeric) = 2.0112826286484773 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.415980166332737500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5837287640954967 " " Order of pole = 2.1860213284418784 " " x[1] = 0.1505999999999979 " " y[1] (analytic) = 2.011297570928248 " " y[1] (numeric) = 2.0112975709282472 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41594735924737300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5837390908829725 " " Order of pole = 2.186034550938075 " " x[1] = 0.1506999999999979 " " y[1] (analytic) = 2.0113125229846 " " y[1] (numeric) = 2.011312522984599 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.415914531184599300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5837494241913193 " " Order of pole = 2.186047777334988 " " x[1] = 0.15079999999999788 " " y[1] (analytic) = 2.0113274848172416 " " y[1] (numeric) = 2.0113274848172407 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41588168214600450000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583759764013373 " " Order of pole = 2.186061007508698 " " x[1] = 0.15089999999999787 " " y[1] (analytic) = 2.0113424564258806 " " y[1] (numeric) = 2.0113424564258797 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41584881213317740000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583770110342021 " " Order of pole = 2.1860742413361436 " " x[1] = 0.15099999999999786 " " y[1] (analytic) = 2.011357437810224 " " y[1] (numeric) = 2.011357437810223 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4158159211477100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583780463170113 " " Order of pole = 2.1860874786936115 " " x[1] = 0.15109999999999785 " " y[1] (analytic) = 2.0113724289699793 " " y[1] (numeric) = 2.011372428969978 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62367451378678800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583790822490531 " " Order of pole = 2.186100719457972 " " x[1] = 0.15119999999999784 " " y[1] (analytic) = 2.0113874299048526 " " y[1] (numeric) = 2.0113874299048518 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.41575007626521700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838011882961391 " " Order of pole = 2.1861139635057683 " " x[1] = 0.15129999999999783 " " y[1] (analytic) = 2.011402440614552 " " y[1] (numeric) = 2.0114024406145505 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62357568355706500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838115605797896 " " Order of pole = 2.186127210713355 " " x[1] = 0.15139999999999781 " " y[1] (analytic) = 2.0114174610987825 " " y[1] (numeric) = 2.011417461098781 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62352622126689900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583821939334347 " " Order of pole = 2.186140460957276 " " x[1] = 0.1514999999999978 " " y[1] (analytic) = 2.011432491357251 " " y[1] (numeric) = 2.01143249135725 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4156511516864805000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838323245526817 " " Order of pole = 2.186153714114205 " " x[1] = 0.1515999999999978 " " y[1] (analytic) = 2.0114475313896647 " " y[1] (numeric) = 2.0114475313896634 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62342720234792100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838427162276298 " " Order of pole = 2.1861669700602206 " " x[1] = 0.15169999999999778 " " y[1] (analytic) = 2.0114625811957283 " " y[1] (numeric) = 2.011462581195727 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62337764572389800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838531143520642 " " Order of pole = 2.186180228672008 " " x[1] = 0.15179999999999777 " " y[1] (analytic) = 2.0114776407751482 " " y[1] (numeric) = 2.011477640775147 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62332805766004700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838635189188257 " " Order of pole = 2.1861934898257616 " " x[1] = 0.15189999999999776 " " y[1] (analytic) = 2.01149271012763 " " y[1] (numeric) = 2.0114927101276288 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.62327843815876800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838739299207751 " " Order of pole = 2.1862067533979435 " " x[1] = 0.15199999999999775 " " y[1] (analytic) = 2.0115077892528794 " " y[1] (numeric) = 2.0115077892528777 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83097171629661200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838843473507669 " " Order of pole = 2.186220019264983 " " x[1] = 0.15209999999999774 " " y[1] (analytic) = 2.011522878150601 " " y[1] (numeric) = 2.011522878150599 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83090547313803100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5838947712016394 " " Order of pole = 2.1862332873029793 " " x[1] = 0.15219999999999773 " " y[1] (analytic) = 2.0115379768205 " " y[1] (numeric) = 2.0115379768204984 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8308391880724800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583905201466261 " " Order of pole = 2.1862465573885714 " " x[1] = 0.15229999999999771 " " y[1] (analytic) = 2.0115530852622823 " " y[1] (numeric) = 2.0115530852622805 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83077286110316700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839156381374673 " " Order of pole = 2.1862598293978586 " " x[1] = 0.1523999999999977 " " y[1] (analytic) = 2.0115682034756515 " " y[1] (numeric) = 2.0115682034756497 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83070649223329700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583926081208095 " " Order of pole = 2.1862731032069043 " " x[1] = 0.1524999999999977 " " y[1] (analytic) = 2.0115833314603124 " " y[1] (numeric) = 2.0115833314603107 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83064008146608200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839365306710091 " " Order of pole = 2.1862863786923086 " " x[1] = 0.15259999999999768 " " y[1] (analytic) = 2.01159846921597 " " y[1] (numeric) = 2.011598469215968 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83057362880472900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839469865190328 " " Order of pole = 2.1862996557299432 " " x[1] = 0.15269999999999767 " " y[1] (analytic) = 2.0116136167423275 " " y[1] (numeric) = 2.0116136167423257 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83050713425245400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839574487450374 " " Order of pole = 2.1863129341965006 " " x[1] = 0.15279999999999766 " " y[1] (analytic) = 2.0116287740390897 " " y[1] (numeric) = 2.011628774039088 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8304405978124700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839679173418533 " " Order of pole = 2.1863262139679804 " " x[1] = 0.15289999999999765 " " y[1] (analytic) = 2.01164394110596 " " y[1] (numeric) = 2.0116439411059583 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83037401948799300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.583978392302298 " " Order of pole = 2.1863394949201442 " " x[1] = 0.15299999999999764 " " y[1] (analytic) = 2.011659117942642 " " y[1] (numeric) = 2.0116591179426404 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83030739928224500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839888736192487 " " Order of pole = 2.186352776929809 " " x[1] = 0.15309999999999763 " " y[1] (analytic) = 2.01167430454884 " " y[1] (numeric) = 2.011674304548838 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10378009214980480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5839993612855148 " " Order of pole = 2.186366059872608 " " x[1] = 0.15319999999999762 " " y[1] (analytic) = 2.011689500924256 " " y[1] (numeric) = 2.011689500924254 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83017403323980400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840098552939796 " " Order of pole = 2.1863793436254575 " " x[1] = 0.1532999999999976 " " y[1] (analytic) = 2.011704707068594 " " y[1] (numeric) = 2.011704707068592 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8301072874095610000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840203556374424 " " Order of pole = 2.186392628063821 " " x[1] = 0.1533999999999976 " " y[1] (analytic) = 2.0117199229815563 " " y[1] (numeric) = 2.0117199229815546 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.83004049971093500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840308623087729 " " Order of pole = 2.1864059130643945 " " x[1] = 0.15349999999999758 " " y[1] (analytic) = 2.011735148662846 " " y[1] (numeric) = 2.011735148662844 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82997367014715700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584041375300786 " " Order of pole = 2.1864191985029073 " " x[1] = 0.15359999999999757 " " y[1] (analytic) = 2.011750384112166 " " y[1] (numeric) = 2.0117503841121636 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10373834984018150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840518946063187 " " Order of pole = 2.186432484255473 " " x[1] = 0.15369999999999756 " " y[1] (analytic) = 2.0117656293292177 " " y[1] (numeric) = 2.0117656293292154 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1037299856796319000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840624202182267 " " Order of pole = 2.1864457701985707 " " x[1] = 0.15379999999999755 " " y[1] (analytic) = 2.0117808843137035 " " y[1] (numeric) = 2.0117808843137017 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82977293029720200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840729521293413 " " Order of pole = 2.1864590562081965 " " x[1] = 0.15389999999999754 " " y[1] (analytic) = 2.0117961490653262 " " y[1] (numeric) = 2.0117961490653244 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82970593330512100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840834903324965 " " Order of pole = 2.186472342160446 " " x[1] = 0.15399999999999753 " " y[1] (analytic) = 2.0118114235837874 " " y[1] (numeric) = 2.011811423583785 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10370486180800660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5840940348205397 " " Order of pole = 2.186485627931628 " " x[1] = 0.15409999999999752 " " y[1] (analytic) = 2.011826707868788 " " y[1] (numeric) = 2.011826707868786 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10369647672215470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841045855862992 " " Order of pole = 2.186498913397724 " " x[1] = 0.1541999999999975 " " y[1] (analytic) = 2.01184200192003 " " y[1] (numeric) = 2.011842001920028 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10368808640598950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841151426226188 " " Order of pole = 2.1865121984349827 " " x[1] = 0.1542999999999975 " " y[1] (analytic) = 2.0118573057372147 " " y[1] (numeric) = 2.0118573057372124 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10367969085991630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841257059223373 " " Order of pole = 2.1865254829195884 " " x[1] = 0.15439999999999748 " " y[1] (analytic) = 2.011872619320043 " " y[1] (numeric) = 2.011872619320041 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10367129008434040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841362754782893 " " Order of pole = 2.186538766727633 " " x[1] = 0.15449999999999747 " " y[1] (analytic) = 2.0118879426682157 " " y[1] (numeric) = 2.011887942668214 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82930307263734600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841468512833254 " " Order of pole = 2.1865520497354893 " " x[1] = 0.15459999999999746 " " y[1] (analytic) = 2.011903275781434 " " y[1] (numeric) = 2.011903275781432 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82923578277044300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584157433330253 " " Order of pole = 2.1865653318187945 " " x[1] = 0.15469999999999745 " " y[1] (analytic) = 2.0119186186593985 " " y[1] (numeric) = 2.0119186186593963 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10364605638465770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58416802161195 " " Order of pole = 2.1865786128543903 " " x[1] = 0.15479999999999744 " " y[1] (analytic) = 2.0119339713018087 " " y[1] (numeric) = 2.0119339713018065 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10363763469513270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841786161212332 " " Order of pole = 2.186591892718102 " " x[1] = 0.15489999999999743 " " y[1] (analytic) = 2.0119493337083654 " " y[1] (numeric) = 2.011949333708363 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10362920777813660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841892168509542 " " Order of pole = 2.186605171286317 " " x[1] = 0.15499999999999742 " " y[1] (analytic) = 2.0119647058787686 " " y[1] (numeric) = 2.0119647058787664 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10362077563407640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5841998237939507 " " Order of pole = 2.186618448435187 " " x[1] = 0.1550999999999974 " " y[1] (analytic) = 2.0119800878127183 " " y[1] (numeric) = 2.011980087812716 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10361233826335930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842104369430703 " " Order of pole = 2.186631724041092 " " x[1] = 0.1551999999999974 " " y[1] (analytic) = 2.0119954795099138 " " y[1] (numeric) = 2.0119954795099115 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10360389566639300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842210562911392 " " Order of pole = 2.1866449979799647 " " x[1] = 0.15529999999999738 " " y[1] (analytic) = 2.0120108809700543 " " y[1] (numeric) = 2.012010880970052 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1035954478435850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842316818310178 " " Order of pole = 2.1866582701283868 " " x[1] = 0.15539999999999737 " " y[1] (analytic) = 2.01202629219284 " " y[1] (numeric) = 2.0120262921928376 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10358699479534320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842423135555395 " " Order of pole = 2.186671540362454 " " x[1] = 0.15549999999999736 " " y[1] (analytic) = 2.0120417131779686 " " y[1] (numeric) = 2.0120417131779664 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10357853652207590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584252951457541 " " Order of pole = 2.1866848085583364 " " x[1] = 0.15559999999999735 " " y[1] (analytic) = 2.0120571439251407 " " y[1] (numeric) = 2.012057143925138 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32428408762902930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842635955298974 " " Order of pole = 2.1866980745928437 " " x[1] = 0.15569999999999734 " " y[1] (analytic) = 2.0120725844340535 " " y[1] (numeric) = 2.0120725844340512 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10356160430209820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584274245765436 " " Order of pole = 2.1867113383420005 " " x[1] = 0.15579999999999733 " " y[1] (analytic) = 2.0120880347044063 " " y[1] (numeric) = 2.012088034704404 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10355313035620560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584284902157014 " " Order of pole = 2.186724599682311 " " x[1] = 0.15589999999999732 " " y[1] (analytic) = 2.012103494735898 " " y[1] (numeric) = 2.0121034947358956 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1035446511869221000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5842955646974757 " " Order of pole = 2.1867378584900905 " " x[1] = 0.1559999999999973 " " y[1] (analytic) = 2.012118964528226 " " y[1] (numeric) = 2.012118964528223 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32424340015358850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584306233379665 " " Order of pole = 2.1867511146416163 " " x[1] = 0.1560999999999973 " " y[1] (analytic) = 2.012134444081088 " " y[1] (numeric) = 2.0121344440810853 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3242332126157852000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5843169081964497 " " Order of pole = 2.1867643680136197 " " x[1] = 0.15619999999999729 " " y[1] (analytic) = 2.0121499333941824 " " y[1] (numeric) = 2.01214993339418 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10351918234282250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584327589140671 " " Order of pole = 2.186777618482349 " " x[1] = 0.15629999999999727 " " y[1] (analytic) = 2.0121654324672074 " " y[1] (numeric) = 2.0121654324672047 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32421281874088640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5843382762051847 " " Order of pole = 2.1867908659243085 " " x[1] = 0.15639999999999726 " " y[1] (analytic) = 2.012180941299859 " " y[1] (numeric) = 2.0121809412998566 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10350217700398060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5843489693828572 " " Order of pole = 2.1868041102161975 " " x[1] = 0.15649999999999725 " " y[1] (analytic) = 2.012196459891836 " " y[1] (numeric) = 2.0121964598918334 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32419239980354870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584359668666532 " " Order of pole = 2.1868173512343283 " " x[1] = 0.15659999999999724 " " y[1] (analytic) = 2.012211988242834 " " y[1] (numeric) = 2.0122119882428318 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10348515078141430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5843703740490935 " " Order of pole = 2.1868305888557096 " " x[1] = 0.15669999999999723 " " y[1] (analytic) = 2.0122275263525515 " " y[1] (numeric) = 2.012227526352549 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32417195580771360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584381085523385 " " Order of pole = 2.186843822956643 " " x[1] = 0.15679999999999722 " " y[1] (analytic) = 2.012243074220684 " " y[1] (numeric) = 2.0122430742206814 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32416172441409240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5843918030822557 " " Order of pole = 2.186857053413526 " " x[1] = 0.1568999999999972 " " y[1] (analytic) = 2.012258631846929 " " y[1] (numeric) = 2.012258631846926 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54484340121688130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844025267186068 " " Order of pole = 2.186870280103687 " " x[1] = 0.1569999999999972 " " y[1] (analytic) = 2.012274199230982 " " y[1] (numeric) = 2.0122741992309794 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32414124283791150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844132564252746 " " Order of pole = 2.1868835029033136 " " x[1] = 0.1570999999999972 " " y[1] (analytic) = 2.01228977637254 " " y[1] (numeric) = 2.0122897763725374 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.324130992656340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844239921951477 " " Order of pole = 2.186896721689493 " " x[1] = 0.15719999999999718 " " y[1] (analytic) = 2.0123053632712984 " " y[1] (numeric) = 2.0123053632712957 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32412073621310720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584434734021088 " " Order of pole = 2.1869099363388784 " " x[1] = 0.15729999999999716 " " y[1] (analytic) = 2.0123209599269534 " " y[1] (numeric) = 2.0123209599269507 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32411047350870780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844454818959723 " " Order of pole = 2.1869231467283647 " " x[1] = 0.15739999999999715 " " y[1] (analytic) = 2.0123365663392003 " " y[1] (numeric) = 2.0123365663391977 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32410020454363730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844562358126801 " " Order of pole = 2.1869363527349037 " " x[1] = 0.15749999999999714 " " y[1] (analytic) = 2.012352182507735 " " y[1] (numeric) = 2.0123521825077324 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32408992931839050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844669957640691 " " Order of pole = 2.1869495542350528 " " x[1] = 0.15759999999999713 " " y[1] (analytic) = 2.0123678084322525 " " y[1] (numeric) = 2.01236780843225 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32407964783346350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5844777617430392 " " Order of pole = 2.1869627511061402 " " x[1] = 0.15769999999999712 " " y[1] (analytic) = 2.012383444112448 " " y[1] (numeric) = 2.0123834441124453 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32406936008935220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584488533742487 " " Order of pole = 2.18697594322542 " " x[1] = 0.1577999999999971 " " y[1] (analytic) = 2.0123990895480164 " " y[1] (numeric) = 2.0123990895480137 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32405906608655250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584499311755249 " " Order of pole = 2.1869891304690974 " " x[1] = 0.1578999999999971 " " y[1] (analytic) = 2.0124147447386527 " " y[1] (numeric) = 2.01241474473865 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32404876582556150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845100957742513 " " Order of pole = 2.187002312714938 " " x[1] = 0.1579999999999971 " " y[1] (analytic) = 2.012430409684051 " " y[1] (numeric) = 2.012430409684048 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3240384593068760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845208857923911 " " Order of pole = 2.1870154898402347 " " x[1] = 0.15809999999999708 " " y[1] (analytic) = 2.012446084383906 " " y[1] (numeric) = 2.012446084383903 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32402814653099250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845316818025335 " " Order of pole = 2.1870286617216834 " " x[1] = 0.15819999999999707 " " y[1] (analytic) = 2.012461768837912 " " y[1] (numeric) = 2.012461768837909 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54468746541480930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845424837975766 " " Order of pole = 2.187041828236584 " " x[1] = 0.15829999999999705 " " y[1] (analytic) = 2.0124774630457627 " " y[1] (numeric) = 2.0124774630457596 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54467541924455830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845532917704404 " " Order of pole = 2.18705498926262 " " x[1] = 0.15839999999999704 " " y[1] (analytic) = 2.0124931670071518 " " y[1] (numeric) = 2.012493167007149 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32399717066513000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584564105714012 " " Order of pole = 2.1870681446769034 " " x[1] = 0.15849999999999703 " " y[1] (analytic) = 2.0125088807217737 " " y[1] (numeric) = 2.012508880721771 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32398683286543140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584574925621183 " " Order of pole = 2.1870812943566094 " " x[1] = 0.15859999999999702 " " y[1] (analytic) = 2.0125246041893217 " " y[1] (numeric) = 2.0125246041893186 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54463923694619600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845857514848813 " " Order of pole = 2.187094438179571 " " x[1] = 0.158699999999997 " " y[1] (analytic) = 2.0125403374094883 " " y[1] (numeric) = 2.0125403374094857 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32396613850240930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5845965832980182 " " Order of pole = 2.187107576023319 " " x[1] = 0.158799999999997 " " y[1] (analytic) = 2.0125560803819678 " " y[1] (numeric) = 2.012556080381965 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32395578194008270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846074210534884 " " Order of pole = 2.1871207077651036 " " x[1] = 0.158899999999997 " " y[1] (analytic) = 2.012571833106452 " " y[1] (numeric) = 2.0125718331064495 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3239454191245450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846182647442073 " " Order of pole = 2.187133833282534 " " x[1] = 0.15899999999999698 " " y[1] (analytic) = 2.0125875955826347 " " y[1] (numeric) = 2.012587595582632 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32393505005629570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846291143631248 " " Order of pole = 2.18714695245383 " " x[1] = 0.15909999999999697 " " y[1] (analytic) = 2.012603367810208 " " y[1] (numeric) = 2.0126033678102053 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3239246747358350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584639969903139 " " Order of pole = 2.1871600651563234 " " x[1] = 0.15919999999999696 " " y[1] (analytic) = 2.012619149788864 " " y[1] (numeric) = 2.0126191497888613 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32391429316366270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846508313571601 " " Order of pole = 2.1871731712675277 " " x[1] = 0.15929999999999694 " " y[1] (analytic) = 2.0126349415182956 " " y[1] (numeric) = 2.0126349415182925 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54455455623032560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846616987181534 " " Order of pole = 2.1871862706659293 " " x[1] = 0.15939999999999693 " " y[1] (analytic) = 2.012650742998194 " " y[1] (numeric) = 2.0126507429981912 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32389351126618540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584672571979031 " " Order of pole = 2.187199363229123 " " x[1] = 0.15949999999999692 " " y[1] (analytic) = 2.0126665542282516 " " y[1] (numeric) = 2.012666554228249 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32388311094188200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846834511327295 " " Order of pole = 2.1872124488350835 " " x[1] = 0.1595999999999969 " " y[1] (analytic) = 2.01268237520816 " " y[1] (numeric) = 2.0126823752081573 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32387270436787020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5846943361722021 " " Order of pole = 2.1872255273621057 " " x[1] = 0.1596999999999969 " " y[1] (analytic) = 2.012698205937611 " " y[1] (numeric) = 2.012698205937608 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32386229154465200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847052270903776 " " Order of pole = 2.187238598688076 " " x[1] = 0.1597999999999969 " " y[1] (analytic) = 2.012714046416295 " " y[1] (numeric) = 2.0127140464162925 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3238518724727290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847161238802243 " " Order of pole = 2.1872516626915335 " " x[1] = 0.15989999999999688 " " y[1] (analytic) = 2.0127298966439047 " " y[1] (numeric) = 2.0127298966439016 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54448168834470320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847270265346511 " " Order of pole = 2.1872647192500025 " " x[1] = 0.15999999999999687 " " y[1] (analytic) = 2.0127457566201294 " " y[1] (numeric) = 2.0127457566201263 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54446951818223930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847379350466688 " " Order of pole = 2.1872777682428044 " " x[1] = 0.16009999999999686 " " y[1] (analytic) = 2.012761626344661 " " y[1] (numeric) = 2.0127616263446577 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.5444573407313780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847488494091937 " " Order of pole = 2.187290809547587 " " x[1] = 0.16019999999999684 " " y[1] (analytic) = 2.0127775058171897 " " y[1] (numeric) = 2.012777505817186 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76508017827737780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847597696152098 " " Order of pole = 2.1873038430431997 " " x[1] = 0.16029999999999683 " " y[1] (analytic) = 2.0127933950374057 " " y[1] (numeric) = 2.012793395037402 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76506624453349660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847706956576846 " " Order of pole = 2.1873168686081996 " " x[1] = 0.16039999999999682 " " y[1] (analytic) = 2.0128092940049993 " " y[1] (numeric) = 2.012809294004996 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54442076465427800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847816275295745 " " Order of pole = 2.1873298861209527 " " x[1] = 0.1604999999999968 " " y[1] (analytic) = 2.012825202719661 " " y[1] (numeric) = 2.012825202719658 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54440855805569740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5847925652238712 " " Order of pole = 2.187342895460443 " " x[1] = 0.1605999999999968 " " y[1] (analytic) = 2.0128411211810806 " " y[1] (numeric) = 2.012841121181077 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 1.76502439333903550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848035087335473 " " Order of pole = 2.1873558965053412 " " x[1] = 0.1606999999999968 " " y[1] (analytic) = 2.012857049388947 " " y[1] (numeric) = 2.012857049388944 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54438412300274330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848144580515777 " " Order of pole = 2.187368889134323 " " x[1] = 0.16079999999999678 " " y[1] (analytic) = 2.0128729873429507 " " y[1] (numeric) = 2.0128729873429476 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54437189454954660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848254131709716 " " Order of pole = 2.187381873226691 " " x[1] = 0.16089999999999677 " " y[1] (analytic) = 2.0128889350427808 " " y[1] (numeric) = 2.0128889350427777 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54435965881265570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848363740847091 " " Order of pole = 2.1873948486612633 " " x[1] = 0.16099999999999676 " " y[1] (analytic) = 2.0129048924881263 " " y[1] (numeric) = 2.012904892488123 " " absolute error = 3.1086244689504383000000000000000E-15 " " relative error = 1.54434741579265930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848473407857824 " " Order of pole = 2.1874078153170196 " " x[1] = 0.16109999999999675 " " y[1] (analytic) = 2.0129208596786756 " " y[1] (numeric) = 2.012920859678673 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32371585613441260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848583132672067 " " Order of pole = 2.187420773073395 " " x[1] = 0.16119999999999673 " " y[1] (analytic) = 2.0129368366141187 " " y[1] (numeric) = 2.012936836614116 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32370534963346640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848692915219886 " " Order of pole = 2.18743372180964 " " x[1] = 0.16129999999999672 " " y[1] (analytic) = 2.0129528232941434 " " y[1] (numeric) = 2.0129528232941407 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3236948368913760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848802755431342 " " Order of pole = 2.187446661405012 " " x[1] = 0.1613999999999967 " " y[1] (analytic) = 2.0129688197184383 " " y[1] (numeric) = 2.0129688197184357 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32368431790864720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5848912653236618 " " Order of pole = 2.1874595917389925 " " x[1] = 0.1614999999999967 " " y[1] (analytic) = 2.012984825886692 " " y[1] (numeric) = 2.012984825886689 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32367379268578700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849022608565808 " " Order of pole = 2.1874725126909063 " " x[1] = 0.1615999999999967 " " y[1] (analytic) = 2.013000841798592 " " y[1] (numeric) = 2.0130008417985894 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32366326122330150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849132621349264 " " Order of pole = 2.187485424140519 " " x[1] = 0.16169999999999668 " " y[1] (analytic) = 2.0130168674538265 " " y[1] (numeric) = 2.013016867453824 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32365272352169850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849242691517371 " " Order of pole = 2.1874983259676775 " " x[1] = 0.16179999999999667 " " y[1] (analytic) = 2.0130329028520833 " " y[1] (numeric) = 2.0130329028520806 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32364217958148540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849352819000269 " " Order of pole = 2.1875112180517746 " " x[1] = 0.16189999999999666 " " y[1] (analytic) = 2.01304894799305 " " y[1] (numeric) = 2.013048947993047 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3236316294031690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849463003728705 " " Order of pole = 2.187524100273304 " " x[1] = 0.16199999999999665 " " y[1] (analytic) = 2.013065002876413 " " y[1] (numeric) = 2.0130650028764108 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10301756082271510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.584957324563289 " " Order of pole = 2.187536972511783 " " x[1] = 0.16209999999999664 " " y[1] (analytic) = 2.013081067501861 " " y[1] (numeric) = 2.0130810675018584 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32361051033426020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849683544643443 " " Order of pole = 2.1875498346474878 " " x[1] = 0.16219999999999662 " " y[1] (analytic) = 2.01309714186908 " " y[1] (numeric) = 2.0130971418690775 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32359994144468420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849793900690867 " " Order of pole = 2.187562686560458 " " x[1] = 0.1622999999999966 " " y[1] (analytic) = 2.013113225977757 " " y[1] (numeric) = 2.013113225977755 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10299113859919920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5849904313705747 " " Order of pole = 2.187575528130907 " " x[1] = 0.1623999999999966 " " y[1] (analytic) = 2.0131293198275793 " " y[1] (numeric) = 2.0131293198275766 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32357878495783260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850014783618922 " " Order of pole = 2.187588359239463 " " x[1] = 0.1624999999999966 " " y[1] (analytic) = 2.013145423418232 " " y[1] (numeric) = 2.0131454234182296 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32356819736157570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585012531036105 " " Order of pole = 2.1876011797664816 " " x[1] = 0.16259999999999658 " " y[1] (analytic) = 2.013161536749403 " " y[1] (numeric) = 2.0131615367494002 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3235576035307770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850235893862847 " " Order of pole = 2.187613989592389 " " x[1] = 0.16269999999999657 " " y[1] (analytic) = 2.013177659820777 " " y[1] (numeric) = 2.0131776598207742 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32354700346594630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850346534055055 " " Order of pole = 2.1876267885976723 " " x[1] = 0.16279999999999656 " " y[1] (analytic) = 2.0131937926320407 " " y[1] (numeric) = 2.013193792632038 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32353639716759420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850457230868964 " " Order of pole = 2.1876395766637664 " " x[1] = 0.16289999999999655 " " y[1] (analytic) = 2.0132099351828794 " " y[1] (numeric) = 2.0132099351828767 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32352578463623080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850567984235129 " " Order of pole = 2.1876523536708596 " " x[1] = 0.16299999999999654 " " y[1] (analytic) = 2.013226087472979 " " y[1] (numeric) = 2.0132260874729764 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32351516587236680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850678794084778 " " Order of pole = 2.1876651195002736 " " x[1] = 0.16309999999999653 " " y[1] (analytic) = 2.013242249502025 " " y[1] (numeric) = 2.013242249502022 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3235045408765130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585078966034897 " " Order of pole = 2.1876778740330813 " " x[1] = 0.16319999999999651 " " y[1] (analytic) = 2.0132584212697022 " " y[1] (numeric) = 2.0132584212696996 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32349390964918070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5850900582958762 " " Order of pole = 2.1876906171503165 " " x[1] = 0.1632999999999965 " " y[1] (analytic) = 2.013274602775696 " " y[1] (numeric) = 2.0132746027756934 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32348327219088180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851011561845185 " " Order of pole = 2.1877033487329847 " " x[1] = 0.1633999999999965 " " y[1] (analytic) = 2.0132907940196905 " " y[1] (numeric) = 2.0132907940196882 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10289385708510640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585112259693986 " " Order of pole = 2.187716068663125 " " x[1] = 0.16349999999999648 " " y[1] (analytic) = 2.0133069950013716 " " y[1] (numeric) = 2.013306995001369 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32346197858343030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851233688173976 " " Order of pole = 2.1877287768220413 " " x[1] = 0.16359999999999647 " " y[1] (analytic) = 2.0133232057204227 " " y[1] (numeric) = 2.01332320572042 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32345132243530230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851344835478736 " " Order of pole = 2.187741473091034 " " x[1] = 0.16369999999999646 " " y[1] (analytic) = 2.0133394261765285 " " y[1] (numeric) = 2.013339426176526 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.3234406600582560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851456038785747 " " Order of pole = 2.1877541573521313 " " x[1] = 0.16379999999999645 " " y[1] (analytic) = 2.0133556563693733 " " y[1] (numeric) = 2.0133556563693706 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 1.32342999145280470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851567298026534 " " Order of pole = 2.1877668294872272 " " x[1] = 0.16389999999999644 " " y[1] (analytic) = 2.0133718962986404 " " y[1] (numeric) = 2.013371896298638 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10284943051621790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851678613132385 " " Order of pole = 2.1877794893777818 " " x[1] = 0.16399999999999643 " " y[1] (analytic) = 2.0133881459640146 " " y[1] (numeric) = 2.0133881459640124 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10284052963228240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851789984035396 " " Order of pole = 2.1877921369066904 " " x[1] = 0.16409999999999642 " " y[1] (analytic) = 2.0134044053651787 " " y[1] (numeric) = 2.0134044053651765 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1028316235592930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5851901410666835 " " Order of pole = 2.1878047719553884 " " x[1] = 0.1641999999999964 " " y[1] (analytic) = 2.0134206745018166 " " y[1] (numeric) = 2.0134206745018144 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10282271229767760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585201289295861 " " Order of pole = 2.187817394406448 " " x[1] = 0.1642999999999964 " " y[1] (analytic) = 2.0134369533736107 " " y[1] (numeric) = 2.013436953373609 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82251036678292300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852124430842616 " " Order of pole = 2.187830004142409 " " x[1] = 0.16439999999999638 " " y[1] (analytic) = 2.0134532419802453 " " y[1] (numeric) = 2.013453241980243 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10280487421028420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852236024250779 " " Order of pole = 2.1878426010458796 " " x[1] = 0.16449999999999637 " " y[1] (analytic) = 2.0134695403214025 " " y[1] (numeric) = 2.0134695403214002 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10279594738536340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852347673114924 " " Order of pole = 2.1878551849992647 " " x[1] = 0.16459999999999636 " " y[1] (analytic) = 2.0134858483967646 " " y[1] (numeric) = 2.013485848396763 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8222961229882600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852459377367027 " " Order of pole = 2.1878677558852857 " " x[1] = 0.16469999999999635 " " y[1] (analytic) = 2.013502166206015 " " y[1] (numeric) = 2.013502166206013 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10277807817522070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852571136939344 " " Order of pole = 2.1878803135871188 " " x[1] = 0.16479999999999634 " " y[1] (analytic) = 2.013518493748835 " " y[1] (numeric) = 2.0135184937488333 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82215308632686400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852682951763999 " " Order of pole = 2.1878928579877233 " " x[1] = 0.16489999999999633 " " y[1] (analytic) = 2.0135348310249084 " " y[1] (numeric) = 2.013534831024906 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10276018822087370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852794821773217 " " Order of pole = 2.187905388970247 " " x[1] = 0.16499999999999632 " " y[1] (analytic) = 2.0135511780339157 " " y[1] (numeric) = 2.0135511780339135 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10275123546569850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5852906746899278 " " Order of pole = 2.1879179064179013 " " x[1] = 0.1650999999999963 " " y[1] (analytic) = 2.0135675347755386 " " y[1] (numeric) = 2.013567534775537 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82193822020610300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853018727074548 " " Order of pole = 2.187930410214097 " " x[1] = 0.1651999999999963 " " y[1] (analytic) = 2.01358390124946 " " y[1] (numeric) = 2.013583901249458 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10273331440149670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853130762231495 " " Order of pole = 2.1879429002423905 " " x[1] = 0.16529999999999628 " " y[1] (analytic) = 2.0136002774553603 " " y[1] (numeric) = 2.013600277455358 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10272434609333160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853242852302771 " " Order of pole = 2.1879553763866824 " " x[1] = 0.16539999999999627 " " y[1] (analytic) = 2.0136166633929213 " " y[1] (numeric) = 2.013616663392919 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.1027153726016980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853354997220737 " " Order of pole = 2.18796783853038 " " x[1] = 0.16549999999999626 " " y[1] (analytic) = 2.0136330590618234 " " y[1] (numeric) = 2.0136330590618217 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82165115141622200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585346719691821 " " Order of pole = 2.18798028655765 " " x[1] = 0.16559999999999625 " " y[1] (analytic) = 2.0136494644617486 " " y[1] (numeric) = 2.0136494644617464 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10269741006975190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853579451327784 " " Order of pole = 2.1879927203523017 " " x[1] = 0.16569999999999624 " " y[1] (analytic) = 2.0136658795923768 " " y[1] (numeric) = 2.0136658795923745 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10268842103030240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853691760382551 " " Order of pole = 2.18800513979901 " " x[1] = 0.16579999999999623 " " y[1] (analytic) = 2.0136823044533885 " " y[1] (numeric) = 2.0136823044533863 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10267942680911140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853804124015267 " " Order of pole = 2.188017544781875 " " x[1] = 0.16589999999999622 " " y[1] (analytic) = 2.013698739044464 " " y[1] (numeric) = 2.0136987390444623 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82136341925288900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5853916542158752 " " Order of pole = 2.188029935185085 " " x[1] = 0.1659999999999962 " " y[1] (analytic) = 2.013715183365284 " " y[1] (numeric) = 2.0137151833652824 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82129138258587000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854029014746278 " " Order of pole = 2.1880423108936498 " " x[1] = 0.1660999999999962 " " y[1] (analytic) = 2.0137316374155287 " " y[1] (numeric) = 2.013731637415527 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82121930447529400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854141541710862 " " Order of pole = 2.1880546717921376 " " x[1] = 0.16619999999999618 " " y[1] (analytic) = 2.013748101194877 " " y[1] (numeric) = 2.0137481011948757 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61586038869347200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854254122985618 " " Order of pole = 2.1880670177652455 " " x[1] = 0.16629999999999617 " " y[1] (analytic) = 2.0137645747030093 " " y[1] (numeric) = 2.013764574703008 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61580626795300000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854366758504048 " " Order of pole = 2.188079348698409 " " x[1] = 0.16639999999999616 " " y[1] (analytic) = 2.013781057939605 " " y[1] (numeric) = 2.0137810579396036 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61575211613766100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854479448199303 " " Order of pole = 2.1880916644764135 " " x[1] = 0.16649999999999615 " " y[1] (analytic) = 2.013797550904343 " " y[1] (numeric) = 2.0137975509043415 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61569793325005300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854592192004864 " " Order of pole = 2.1881039649846343 " " x[1] = 0.16659999999999614 " " y[1] (analytic) = 2.0138140535969025 " " y[1] (numeric) = 2.013814053596901 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61564371929277900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854704989854471 " " Order of pole = 2.1881162501089264 " " x[1] = 0.16669999999999613 " " y[1] (analytic) = 2.0138305660169626 " " y[1] (numeric) = 2.0138305660169613 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61558947426844300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854817841681448 " " Order of pole = 2.1881285197343807 " " x[1] = 0.16679999999999612 " " y[1] (analytic) = 2.0138470881642023 " " y[1] (numeric) = 2.013847088164201 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61553519817965100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5854930747419493 " " Order of pole = 2.1881407737467704 " " x[1] = 0.1668999999999961 " " y[1] (analytic) = 2.0138636200382996 " " y[1] (numeric) = 2.013863620038298 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61548089102901100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855043707002605 " " Order of pole = 2.1881530120323873 " " x[1] = 0.1669999999999961 " " y[1] (analytic) = 2.0138801616389337 " " y[1] (numeric) = 2.013880161638932 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8205687370921700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855156720364363 " " Order of pole = 2.188165234476788 " " x[1] = 0.16709999999999608 " " y[1] (analytic) = 2.013896712965782 " " y[1] (numeric) = 2.01389671296578 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8204962447368210000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855269787438873 " " Order of pole = 2.1881774409664807 " " x[1] = 0.16719999999999607 " " y[1] (analytic) = 2.0139132740185226 " " y[1] (numeric) = 2.013913274018521 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8204237109761110000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855382908160027 " " Order of pole = 2.1881896313875693 " " x[1] = 0.16729999999999606 " " y[1] (analytic) = 2.013929844796834 " " y[1] (numeric) = 2.013929844796832 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82035113581352200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855496082462106 " " Order of pole = 2.1882018056268464 " " x[1] = 0.16739999999999605 " " y[1] (analytic) = 2.013946425300393 " " y[1] (numeric) = 2.0139464253003916 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61520888943940800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855609310279013 " " Order of pole = 2.1882139635704725 " " x[1] = 0.16749999999999604 " " y[1] (analytic) = 2.013963015528878 " " y[1] (numeric) = 2.0139630155288764 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82020586129665800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855722591545336 " " Order of pole = 2.188226105105766 " " x[1] = 0.16759999999999603 " " y[1] (analytic) = 2.0139796154819662 " " y[1] (numeric) = 2.0139796154819645 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.82013316194935600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855835926195176 " " Order of pole = 2.1882382301192393 " " x[1] = 0.16769999999999602 " " y[1] (analytic) = 2.013996225159334 " " y[1] (numeric) = 2.0139962251593326 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61504531591059700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5855949314163158 " " Order of pole = 2.188250338498296 " " x[1] = 0.167799999999996 " " y[1] (analytic) = 2.0140128445606593 " " y[1] (numeric) = 2.0140128445606575 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81998763909446900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856062755383757 " " Order of pole = 2.1882624301300986 " " x[1] = 0.167899999999996 " " y[1] (analytic) = 2.014029473685618 " " y[1] (numeric) = 2.0140294736856164 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81991481559386900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856176249791487 " " Order of pole = 2.1882745049018624 " " x[1] = 0.16799999999999599 " " y[1] (analytic) = 2.0140461125338875 " " y[1] (numeric) = 2.0140461125338858 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81984195071582400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856289797321088 " " Order of pole = 2.188286562701208 " " x[1] = 0.16809999999999597 " " y[1] (analytic) = 2.014062761105144 " " y[1] (numeric) = 2.014062761105142 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81976904446383300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585640339790758 " " Order of pole = 2.188298603416264 " " x[1] = 0.16819999999999596 " " y[1] (analytic) = 2.014079419399063 " " y[1] (numeric) = 2.0140794193990614 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81969609684139700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856517051485557 " " Order of pole = 2.1883106269343813 " " x[1] = 0.16829999999999595 " " y[1] (analytic) = 2.014096087415322 " " y[1] (numeric) = 2.01409608741532 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81962310785201500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856630757990129 " " Order of pole = 2.1883226331438586 " " x[1] = 0.16839999999999594 " " y[1] (analytic) = 2.014112765153596 " " y[1] (numeric) = 2.014112765153594 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81955007749919000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585674451735651 " " Order of pole = 2.1883346219331408 " " x[1] = 0.16849999999999593 " " y[1] (analytic) = 2.014129452613561 " " y[1] (numeric) = 2.0141294526135587 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10243462572330350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856858329519636 " " Order of pole = 2.1883465931902215 " " x[1] = 0.16859999999999592 " " y[1] (analytic) = 2.014146149794892 " " y[1] (numeric) = 2.01414614979489 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81940389271723700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5856972194414707 " " Order of pole = 2.188358546803535 " " x[1] = 0.1686999999999959 " " y[1] (analytic) = 2.014162856697265 " " y[1] (numeric) = 2.014162856697263 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81933073829512400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585708611197741 " " Order of pole = 2.188370482662396 " " x[1] = 0.1687999999999959 " " y[1] (analytic) = 2.0141795733203547 " " y[1] (numeric) = 2.014179573320353 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.819257542523600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857200082142966 " " Order of pole = 2.1883824006552643 " " x[1] = 0.1688999999999959 " " y[1] (analytic) = 2.0141962996638365 " " y[1] (numeric) = 2.0141962996638347 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81918430540617800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857314104846931 " " Order of pole = 2.188394300671245 " " x[1] = 0.16899999999999588 " " y[1] (analytic) = 2.0142130357273853 " " y[1] (numeric) = 2.0142130357273835 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81911102694636900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857428180024877 " " Order of pole = 2.188406182599408 " " x[1] = 0.16909999999999586 " " y[1] (analytic) = 2.0142297815106756 " " y[1] (numeric) = 2.0142297815106738 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81903770714769200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857542307612653 " " Order of pole = 2.188418046329385 " " x[1] = 0.16919999999999585 " " y[1] (analytic) = 2.0142465370133813 " " y[1] (numeric) = 2.01424653701338 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61422325951024900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585765648754585 " " Order of pole = 2.188429891750303 " " x[1] = 0.16929999999999584 " " y[1] (analytic) = 2.014263302235178 " " y[1] (numeric) = 2.014263302235176 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81889094354780500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857770719760655 " " Order of pole = 2.1884417187523404 " " x[1] = 0.16939999999999583 " " y[1] (analytic) = 2.0142800771757385 " " y[1] (numeric) = 2.0142800771757368 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81881749975363500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857885004193097 " " Order of pole = 2.188453527225427 " " x[1] = 0.16949999999999582 " " y[1] (analytic) = 2.0142968618347377 " " y[1] (numeric) = 2.014296861834736 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81874401463467700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5857999340779063 " " Order of pole = 2.188465317059233 " " x[1] = 0.1695999999999958 " " y[1] (analytic) = 2.014313656211849 " " y[1] (numeric) = 2.014313656211847 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81867048819445700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858113729454977 " " Order of pole = 2.188477088144367 " " x[1] = 0.1696999999999958 " " y[1] (analytic) = 2.0143304603067453 " " y[1] (numeric) = 2.014330460306744 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61394769032737600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858228170156983 " " Order of pole = 2.1884888403709652 " " x[1] = 0.1697999999999958 " " y[1] (analytic) = 2.014347274119101 " " y[1] (numeric) = 2.0143472741190998 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61389248352325400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858342662821614 " " Order of pole = 2.188500573629831 " " x[1] = 0.16989999999999578 " " y[1] (analytic) = 2.0143640976485893 " " y[1] (numeric) = 2.014364097648588 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61383724573612400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858457207385408 " " Order of pole = 2.188512287811779 " " x[1] = 0.16999999999999577 " " y[1] (analytic) = 2.0143809308948826 " " y[1] (numeric) = 2.0143809308948812 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61378197696863700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585857180378473 " " Order of pole = 2.188523982807336 " " x[1] = 0.17009999999999575 " " y[1] (analytic) = 2.0143977738576546 " " y[1] (numeric) = 2.014397773857653 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81830223629791800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58586864519566 " " Order of pole = 2.188535658508183 " " x[1] = 0.17019999999999574 " " y[1] (analytic) = 2.0144146265365768 " " y[1] (numeric) = 2.0144146265365754 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61367134650318800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858801151837745 " " Order of pole = 2.1885473148054615 " " x[1] = 0.17029999999999573 " " y[1] (analytic) = 2.014431488931323 " " y[1] (numeric) = 2.0144314889313213 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81815464641404300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5858915903364972 " " Order of pole = 2.188558951590494 " " x[1] = 0.17039999999999572 " " y[1] (analytic) = 2.014448361041565 " " y[1] (numeric) = 2.014448361041563 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81808078953083800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859030706475343 " " Order of pole = 2.188570568755015 " " x[1] = 0.1704999999999957 " " y[1] (analytic) = 2.0144652428669745 " " y[1] (numeric) = 2.0144652428669727 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81800689135817700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859145561106076 " " Order of pole = 2.188582166191072 " " x[1] = 0.1705999999999957 " " y[1] (analytic) = 2.014482134407224 " " y[1] (numeric) = 2.0144821344072223 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81793295189960200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859260467194247 " " Order of pole = 2.188593743790431 " " x[1] = 0.1706999999999957 " " y[1] (analytic) = 2.0144990356619856 " " y[1] (numeric) = 2.014499035661984 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81785897115865900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859375424677387 " " Order of pole = 2.188605301445673 " " x[1] = 0.17079999999999568 " " y[1] (analytic) = 2.0145159466309304 " " y[1] (numeric) = 2.0145159466309286 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81778494913889200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859490433492789 " " Order of pole = 2.1886168390489686 " " x[1] = 0.17089999999999567 " " y[1] (analytic) = 2.0145328673137297 " " y[1] (numeric) = 2.014532867313728 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81771088584385200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.585960549357792 " " Order of pole = 2.1886283564928064 " " x[1] = 0.17099999999999566 " " y[1] (analytic) = 2.0145497977100555 " " y[1] (numeric) = 2.0145497977100537 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81763678127708800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859720604870728 " " Order of pole = 2.188639853670491 " " x[1] = 0.17109999999999564 " " y[1] (analytic) = 2.0145667378195786 " " y[1] (numeric) = 2.0145667378195764 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10219532943026920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859835767308783 " " Order of pole = 2.1886513304746806 " " x[1] = 0.17119999999999563 " " y[1] (analytic) = 2.014583687641969 " " y[1] (numeric) = 2.0145836876419674 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81748844834260300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5859950980829929 " " Order of pole = 2.188662786798531 " " x[1] = 0.17129999999999562 " " y[1] (analytic) = 2.0146006471768994 " " y[1] (numeric) = 2.014600647176897 " " absolute error = 2.220446049250313000000000000000E-15 " " relative error = 1.10217677749774840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860066245372249 " " Order of pole = 2.188674222535596 " " x[1] = 0.1713999999999956 " " y[1] (analytic) = 2.0146176164240384 " " y[1] (numeric) = 2.0146176164240366 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81733995036386800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860181560873623 " " Order of pole = 2.1886856375791055 " " x[1] = 0.1714999999999956 " " y[1] (analytic) = 2.0146345953830576 " " y[1] (numeric) = 2.014634595383056 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81726563949180300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860296927272295 " " Order of pole = 2.18869703182288 " " x[1] = 0.1715999999999956 " " y[1] (analytic) = 2.0146515840536265 " " y[1] (numeric) = 2.0146515840536248 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81719128736935500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860412344506738 " " Order of pole = 2.188708405161197 " " x[1] = 0.17169999999999558 " " y[1] (analytic) = 2.0146685824354154 " " y[1] (numeric) = 2.014668582435414 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61283767050006500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860527812515324 " " Order of pole = 2.188719757488144 " " x[1] = 0.17179999999999557 " " y[1] (analytic) = 2.014685590528095 " " y[1] (numeric) = 2.014685590528093 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81704245938755600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860643331236484 " " Order of pole = 2.188731088697889 " " x[1] = 0.17189999999999556 " " y[1] (analytic) = 2.0147026083313335 " " y[1] (numeric) = 2.0147026083313317 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81696798353533800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860758900608978 " " Order of pole = 2.1887423986852106 " " x[1] = 0.17199999999999555 " " y[1] (analytic) = 2.0147196358448007 " " y[1] (numeric) = 2.0147196358447994 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6126700998352510000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5860874520571355 " " Order of pole = 2.1887536873445086 " " x[1] = 0.17209999999999553 " " y[1] (analytic) = 2.014736673068167 " " y[1] (numeric) = 2.0147366730681657 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61261418109458200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586099019106267 " " Order of pole = 2.1887649545710595 " " x[1] = 0.17219999999999552 " " y[1] (analytic) = 2.0147537200011008 " " y[1] (numeric) = 2.0147537200010994 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61255823143217700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861105912021647 " " Order of pole = 2.1887762002595927 " " x[1] = 0.1722999999999955 " " y[1] (analytic) = 2.014770776643271 " " y[1] (numeric) = 2.0147707766432696 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61250225085071800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861221683387758 " " Order of pole = 2.18878742430611 " " x[1] = 0.1723999999999955 " " y[1] (analytic) = 2.0147878429943464 " " y[1] (numeric) = 2.014787842994345 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61244623935288600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861337505099924 " " Order of pole = 2.1887986266056885 " " x[1] = 0.1724999999999955 " " y[1] (analytic) = 2.014804919053996 " " y[1] (numeric) = 2.0148049190539945 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61239019694136300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861453377097627 " " Order of pole = 2.1888098070543727 " " x[1] = 0.17259999999999548 " " y[1] (analytic) = 2.0148220048218874 " " y[1] (numeric) = 2.014822004821886 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61233412361883500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586156929932026 " " Order of pole = 2.1888209655480537 " " x[1] = 0.17269999999999547 " " y[1] (analytic) = 2.01483910029769 " " y[1] (numeric) = 2.0148391002976886 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61227801938798500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586168527170709 " " Order of pole = 2.188832101982406 " " x[1] = 0.17279999999999546 " " y[1] (analytic) = 2.0148562054810712 " " y[1] (numeric) = 2.01485620548107 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61222188425150100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861801294198243 " " Order of pole = 2.1888432162546145 " " x[1] = 0.17289999999999545 " " y[1] (analytic) = 2.014873320371699 " " y[1] (numeric) = 2.0148733203716978 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61216571821207200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5861917366733091 " " Order of pole = 2.1888543082605523 " " x[1] = 0.17299999999999544 " " y[1] (analytic) = 2.014890444969241 " " y[1] (numeric) = 2.01489044496924 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40807301418159300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5862033489251797 " " Order of pole = 2.1888653778974465 " " x[1] = 0.17309999999999542 " " y[1] (analytic) = 2.014907579273365 " " y[1] (numeric) = 2.014907579273364 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4080355289567600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58621496616943 " " Order of pole = 2.188876425062201 " " x[1] = 0.1731999999999954 " " y[1] (analytic) = 2.0149247232837384 " " y[1] (numeric) = 2.014924723283737 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61199703470301900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586226588400082 " " Order of pole = 2.188887449652132 " " x[1] = 0.1732999999999954 " " y[1] (analytic) = 2.014941877000028 " " y[1] (numeric) = 2.0149418770000267 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61194074507871900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5862382156111459 " " Order of pole = 2.188898451564416 " " x[1] = 0.1733999999999954 " " y[1] (analytic) = 2.0149590404219015 " " y[1] (numeric) = 2.0149590404218998 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81584589941991400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5862498477966656 " " Order of pole = 2.1889094306967998 " " x[1] = 0.17349999999999538 " " y[1] (analytic) = 2.014976213549025 " " y[1] (numeric) = 2.0149762135490232 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81577076421915300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5862614849506975 " " Order of pole = 2.188920386947242 " " x[1] = 0.17359999999999537 " " y[1] (analytic) = 2.0149933963810653 " " y[1] (numeric) = 2.014993396381064 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61177169087970600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586273127067291 " " Order of pole = 2.1889313202136087 " " x[1] = 0.17369999999999536 " " y[1] (analytic) = 2.0150105889176895 " " y[1] (numeric) = 2.015010588917688 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61171527771365600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5862847741405324 " " Order of pole = 2.1889422303943853 " " x[1] = 0.17379999999999535 " " y[1] (analytic) = 2.0150277911585635 " " y[1] (numeric) = 2.015027791158562 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61165883366891500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586296426164511 " " Order of pole = 2.1889531173881203 " " x[1] = 0.17389999999999534 " " y[1] (analytic) = 2.015045003103353 " " y[1] (numeric) = 2.015045003103352 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.407734905832125000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863080831332965 " " Order of pole = 2.188963981093046 " " x[1] = 0.17399999999999533 " " y[1] (analytic) = 2.0150622247517247 " " y[1] (numeric) = 2.015062224751724 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40769723530278270000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863197450410493 " " Order of pole = 2.18897482140893 " " x[1] = 0.17409999999999531 " " y[1] (analytic) = 2.015079456103344 " " y[1] (numeric) = 2.015079456103343 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40765954419305400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863314118818403 " " Order of pole = 2.1889856382340405 " " x[1] = 0.1741999999999953 " " y[1] (analytic) = 2.015096697157877 " " y[1] (numeric) = 2.0150966971578756 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61143274875711100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863430836498407 " " Order of pole = 2.1889964314683787 " " x[1] = 0.1742999999999953 " " y[1] (analytic) = 2.015113947914988 " " y[1] (numeric) = 2.015113947914987 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61137615035947500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863547603391916 " " Order of pole = 2.1890072010113997 " " x[1] = 0.17439999999999528 " " y[1] (analytic) = 2.015131208374344 " " y[1] (numeric) = 2.0151312083743425 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61131952109937800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863664419440393 " " Order of pole = 2.1890179467626787 " " x[1] = 0.17449999999999527 " " y[1] (analytic) = 2.015148478535608 " " y[1] (numeric) = 2.0151484785356066 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61126286097953400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586378128458576 " " Order of pole = 2.189028668622594 " " x[1] = 0.17459999999999526 " " y[1] (analytic) = 2.0151657583984464 " " y[1] (numeric) = 2.015165758398445 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6112061700026500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5863898198769648 " " Order of pole = 2.1890393664910057 " " x[1] = 0.17469999999999525 " " y[1] (analytic) = 2.0151830479625232 " " y[1] (numeric) = 2.015183047962522 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61114944817144100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586401516193442 " " Order of pole = 2.18905004026907 " " x[1] = 0.17479999999999524 " " y[1] (analytic) = 2.0152003472275037 " " y[1] (numeric) = 2.015200347227502 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.81479026065149200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864132174021706 " " Order of pole = 2.1890606898566567 " " x[1] = 0.17489999999999523 " " y[1] (analytic) = 2.0152176561930513 " " y[1] (numeric) = 2.01521765619305 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61103591195690100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864249234974166 " " Order of pole = 2.189071315155438 " " x[1] = 0.17499999999999521 " " y[1] (analytic) = 2.015234974858831 " " y[1] (numeric) = 2.0152349748588296 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61097909757900300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864366344733862 " " Order of pole = 2.189081916066055 " " x[1] = 0.1750999999999952 " " y[1] (analytic) = 2.015252303224506 " " y[1] (numeric) = 2.015252303224505 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61092225235764200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864483503243754 " " Order of pole = 2.189092492490712 " " x[1] = 0.1751999999999952 " " y[1] (analytic) = 2.0152696412897413 " " y[1] (numeric) = 2.01526964128974 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61086537629553700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864600710445822 " " Order of pole = 2.1891030443298973 " " x[1] = 0.17529999999999518 " " y[1] (analytic) = 2.0152869890541996 " " y[1] (numeric) = 2.0152869890541982 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61080846939541100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864717966283375 " " Order of pole = 2.189113571486441 " " x[1] = 0.17539999999999517 " " y[1] (analytic) = 2.0153043465175444 " " y[1] (numeric) = 2.015304346517543 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61075153165998300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864835270698814 " " Order of pole = 2.1891240738615956 " " x[1] = 0.17549999999999516 " " y[1] (analytic) = 2.0153217136794397 " " y[1] (numeric) = 2.0153217136794384 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61069456309197800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5864952623635706 " " Order of pole = 2.189134551358624 " " x[1] = 0.17559999999999515 " " y[1] (analytic) = 2.015339090539548 " " y[1] (numeric) = 2.0153390905395465 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61063756369411800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865070025036865 " " Order of pole = 2.189145003879485 " " x[1] = 0.17569999999999514 " " y[1] (analytic) = 2.0153564770975323 " " y[1] (numeric) = 2.015356477097531 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61058053346913300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586518747484554 " " Order of pole = 2.189155431326931 " " x[1] = 0.17579999999999513 " " y[1] (analytic) = 2.015373873353056 " " y[1] (numeric) = 2.0153738733530546 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61052347241974700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586530497300536 " " Order of pole = 2.1891658336043562 " " x[1] = 0.17589999999999512 " " y[1] (analytic) = 2.015391279305781 " " y[1] (numeric) = 2.0153912793057795 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61046638054868900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865422519459798 " " Order of pole = 2.1891762106148605 " " x[1] = 0.1759999999999951 " " y[1] (analytic) = 2.01540869495537 " " y[1] (numeric) = 2.0154086949553687 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6104092578586900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865540114152314 " " Order of pole = 2.1891865622615967 " " x[1] = 0.1760999999999951 " " y[1] (analytic) = 2.0154261203014854 " " y[1] (numeric) = 2.015426120301484 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6103521043524790000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865657757027136 " " Order of pole = 2.1891968884489934 " " x[1] = 0.17619999999999508 " " y[1] (analytic) = 2.0154435553437886 " " y[1] (numeric) = 2.0154435553437877 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.406863280021862000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865775448027823 " " Order of pole = 2.189207189080342 " " x[1] = 0.17629999999999507 " " y[1] (analytic) = 2.0154610000819426 " " y[1] (numeric) = 2.0154610000819413 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61023770490236200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5865893187098716 " " Order of pole = 2.1892174640602917 " " x[1] = 0.17639999999999506 " " y[1] (analytic) = 2.015478454515608 " " y[1] (numeric) = 2.015478454515607 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61018045896392100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866010974184148 " " Order of pole = 2.1892277132935156 " " x[1] = 0.17649999999999505 " " y[1] (analytic) = 2.015495918644447 " " y[1] (numeric) = 2.015495918644446 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6101231822202100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866128809228084 " " Order of pole = 2.189237936684002 " " x[1] = 0.17659999999999504 " " y[1] (analytic) = 2.0155133924681214 " " y[1] (numeric) = 2.01551339246812 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.61006587467396200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866246692175292 " " Order of pole = 2.1892481341371663 " " x[1] = 0.17669999999999503 " " y[1] (analytic) = 2.0155308759862915 " " y[1] (numeric) = 2.01553087598629 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6100085363279200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586636462297053 " " Order of pole = 2.1892583055584147 " " x[1] = 0.17679999999999502 " " y[1] (analytic) = 2.0155483691986187 " " y[1] (numeric) = 2.0155483691986174 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60995116718482400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586648260155819 " " Order of pole = 2.1892684508524987 " " x[1] = 0.176899999999995 " " y[1] (analytic) = 2.0155658721047636 " " y[1] (numeric) = 2.0155658721047622 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60989376724741600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866600627883407 " " Order of pole = 2.1892785699255057 " " x[1] = 0.176999999999995 " " y[1] (analytic) = 2.0155833847043874 " " y[1] (numeric) = 2.015583384704386 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60983633651843600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866718701891376 " " Order of pole = 2.1892886626835804 " " x[1] = 0.17709999999999498 " " y[1] (analytic) = 2.01560090699715 " " y[1] (numeric) = 2.0156009069971486 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60977887500063400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866836823527137 " " Order of pole = 2.1892987290326573 " " x[1] = 0.17719999999999497 " " y[1] (analytic) = 2.015618438982712 " " y[1] (numeric) = 2.0156184389827105 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60972138269675200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5866954992735873 " " Order of pole = 2.1893087688788704 " " x[1] = 0.17729999999999496 " " y[1] (analytic) = 2.0156359806607336 " " y[1] (numeric) = 2.0156359806607322 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60966385960953700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586707320946347 " " Order of pole = 2.189318782129625 " " x[1] = 0.17739999999999495 " " y[1] (analytic) = 2.015653532030875 " " y[1] (numeric) = 2.0156535320308735 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60960630574173900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5867191473654942 " " Order of pole = 2.1893287686907925 " " x[1] = 0.17749999999999494 " " y[1] (analytic) = 2.015671093092795 " " y[1] (numeric) = 2.0156710930927937 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60954872109610900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586730978525654 " " Order of pole = 2.1893387284703927 " " x[1] = 0.17759999999999493 " " y[1] (analytic) = 2.0156886638461544 " " y[1] (numeric) = 2.015688663846153 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60949110567539600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586742814421401 " " Order of pole = 2.189348661375597 " " x[1] = 0.17769999999999492 " " y[1] (analytic) = 2.015706244290612 " " y[1] (numeric) = 2.0157062442906106 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60943345948235100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5867546550473355 " " Order of pole = 2.1893585673140024 " " x[1] = 0.1777999999999949 " " y[1] (analytic) = 2.0157238344258266 " " y[1] (numeric) = 2.0157238344258257 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40625052167982300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586766500398074 " " Order of pole = 2.189368446193509 " " x[1] = 0.1778999999999949 " " y[1] (analytic) = 2.0157414342514586 " " y[1] (numeric) = 2.0157414342514572 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60931807479029500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586778350468253 " " Order of pole = 2.1893782979223637 " " x[1] = 0.17799999999999488 " " y[1] (analytic) = 2.015759043767166 " " y[1] (numeric) = 2.0157590437671646 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60926033629679200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5867902052525182 " " Order of pole = 2.189388122408978 " " x[1] = 0.17809999999999487 " " y[1] (analytic) = 2.0157766629726073 " " y[1] (numeric) = 2.0157766629726064 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40613504469465500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868020647455443 " " Order of pole = 2.1893979195622677 " " x[1] = 0.17819999999999486 " " y[1] (analytic) = 2.015794291867442 " " y[1] (numeric) = 2.015794291867441 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40609651135241700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868139289419734 " " Order of pole = 2.1894076892906007 " " x[1] = 0.17829999999999485 " " y[1] (analytic) = 2.0158119304513273 " " y[1] (numeric) = 2.0158119304513265 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.406057957506322500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868257978365277 " " Order of pole = 2.1894174315037134 " " x[1] = 0.17839999999999484 " " y[1] (analytic) = 2.015829578723922 " " y[1] (numeric) = 2.0158295787239213 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40601938315821100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868376714238948 " " Order of pole = 2.189427146110784 " " x[1] = 0.17849999999999483 " " y[1] (analytic) = 2.015847236684885 " " y[1] (numeric) = 2.0158472366848836 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60897118246488700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868495496988138 " " Order of pole = 2.1894368330218477 " " x[1] = 0.17859999999999482 " " y[1] (analytic) = 2.0158649043338728 " " y[1] (numeric) = 2.0158649043338714 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60891325944496100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868614326560022 " " Order of pole = 2.1894464921466117 " " x[1] = 0.1786999999999948 " " y[1] (analytic) = 2.0158825816705432 " " y[1] (numeric) = 2.0158825816705424 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40590353712020270000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868733202902023 " " Order of pole = 2.1894561233951997 " " x[1] = 0.1787999999999948 " " y[1] (analytic) = 2.0159002686945544 " " y[1] (numeric) = 2.0159002686945535 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.405864880782455000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586885212596185 " " Order of pole = 2.189465726678211 " " x[1] = 0.17889999999999479 " " y[1] (analytic) = 2.0159179654055635 " " y[1] (numeric) = 2.0159179654055626 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.405826203951910000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5868971095687348 " " Order of pole = 2.1894753019065405 " " x[1] = 0.17899999999999477 " " y[1] (analytic) = 2.0159356718032275 " " y[1] (numeric) = 2.0159356718032266 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40578750663041530000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5869090112026405 " " Order of pole = 2.189484848991114 " " x[1] = 0.17909999999999476 " " y[1] (analytic) = 2.015953387887204 " " y[1] (numeric) = 2.0159533878872025 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60862318322972300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586920917492723 " " Order of pole = 2.1894943678434515 " " x[1] = 0.17919999999999475 " " y[1] (analytic) = 2.015971113657148 " " y[1] (numeric) = 2.015971113657147 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40571005052196300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586932828433773 " " Order of pole = 2.1895038583745325 " " x[1] = 0.17929999999999474 " " y[1] (analytic) = 2.0159888491127185 " " y[1] (numeric) = 2.015988849112717 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60850693760805500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586944744020669 " " Order of pole = 2.189513320496868 " " x[1] = 0.17939999999999473 " " y[1] (analytic) = 2.01600659425357 " " y[1] (numeric) = 2.016006594253569 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40563251247188900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.586956664248235 " " Order of pole = 2.189522754122038 " " x[1] = 0.17949999999999472 " " y[1] (analytic) = 2.0160243490793603 " " y[1] (numeric) = 2.016024349079359 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60839056908505300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5869685891113594 " " Order of pole = 2.189532159162763 " " x[1] = 0.1795999999999947 " " y[1] (analytic) = 2.016042113589744 " " y[1] (numeric) = 2.016042113589743 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40555489249499800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5869805186049109 " " Order of pole = 2.1895415355313723 " " x[1] = 0.1796999999999947 " " y[1] (analytic) = 2.0160598877843783 " " y[1] (numeric) = 2.0160598877843774 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40551605178862500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5869924527237758 " " Order of pole = 2.1895508831405515 " " x[1] = 0.1797999999999947 " " y[1] (analytic) = 2.0160776716629183 " " y[1] (numeric) = 2.0160776716629174 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40547719060610600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870043914629017 " " Order of pole = 2.189560201904058 " " x[1] = 0.17989999999999468 " " y[1] (analytic) = 2.01609546522502 " " y[1] (numeric) = 2.016095465225019 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40543830894929430000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587016334817195 " " Order of pole = 2.1895694917348933 " " x[1] = 0.17999999999999466 " " y[1] (analytic) = 2.0161132684703382 " " y[1] (numeric) = 2.0161132684703373 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40539940682004600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870282827816042 " " Order of pole = 2.1895787525468506 " " x[1] = 0.18009999999999465 " " y[1] (analytic) = 2.0161310813985285 " " y[1] (numeric) = 2.0161310813985276 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40536048422021760000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870402353511006 " " Order of pole = 2.1895879842540857 " " x[1] = 0.18019999999999464 " " y[1] (analytic) = 2.0161489040092455 " " y[1] (numeric) = 2.016148904009245 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.202660770575833000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870521925206413 " " Order of pole = 2.189597186770527 " " x[1] = 0.18029999999999463 " " y[1] (analytic) = 2.0161667363021447 " " y[1] (numeric) = 2.0161667363021443 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.202641288808124500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870641542852297 " " Order of pole = 2.189606360010906 " " x[1] = 0.18039999999999462 " " y[1] (analytic) = 2.016184578276881 " " y[1] (numeric) = 2.01618457827688 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40524359361582400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870761206398618 " " Order of pole = 2.189615503889847 " " x[1] = 0.1804999999999946 " " y[1] (analytic) = 2.016202429933108 " " y[1] (numeric) = 2.016202429933107 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.405204589152253400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5870880915795917 " " Order of pole = 2.1896246183229664 " " x[1] = 0.1805999999999946 " " y[1] (analytic) = 2.0162202912704803 " " y[1] (numeric) = 2.01622029127048 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.202582782113698400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871000670993987 " " Order of pole = 2.189633703224594 " " x[1] = 0.1806999999999946 " " y[1] (analytic) = 2.0162381622886527 " " y[1] (numeric) = 2.0162381622886523 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.202563259421557500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871120471943863 " " Order of pole = 2.18964275851123 " " x[1] = 0.18079999999999458 " " y[1] (analytic) = 2.016256042987279 " " y[1] (numeric) = 2.016256042987278 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4050874530012700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871240318596014 " " Order of pole = 2.1896517840983982 " " x[1] = 0.18089999999999457 " " y[1] (analytic) = 2.016273933366012 " " y[1] (numeric) = 2.0162739333660116 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.20252418335186400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871360210901355 " " Order of pole = 2.189660779902365 " " x[1] = 0.18099999999999455 " " y[1] (analytic) = 2.016291833424507 " " y[1] (numeric) = 2.016291833424506 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40500925995234940000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871480148810804 " " Order of pole = 2.1896697458394776 " " x[1] = 0.18109999999999454 " " y[1] (analytic) = 2.0163097431624157 " " y[1] (numeric) = 2.0163097431624153 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.202485066374500800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587160013227573 " " Order of pole = 2.189678681826795 " " x[1] = 0.18119999999999453 " " y[1] (analytic) = 2.016327662579393 " " y[1] (numeric) = 2.016327662579392 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.404930985095550000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871720161247218 " " Order of pole = 2.189687587780938 " " x[1] = 0.18129999999999452 " " y[1] (analytic) = 2.016345591675091 " " y[1] (numeric) = 2.01634559167509 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.404891816993860600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5871840235676817 " " Order of pole = 2.1896964636193275 " " x[1] = 0.1813999999999945 " " y[1] (analytic) = 2.0163635304491634 " " y[1] (numeric) = 2.016363530449162 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60727894266870200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587196035551632 " " Order of pole = 2.1897053092597965 " " x[1] = 0.1814999999999945 " " y[1] (analytic) = 2.0163814789012617 " " y[1] (numeric) = 2.016381478901261 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.404813419453242300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872080520717329 " " Order of pole = 2.1897141246198757 " " x[1] = 0.1815999999999945 " " y[1] (analytic) = 2.01639943703104 " " y[1] (numeric) = 2.0163994370310387 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60716128502707600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587220073123186 " " Order of pole = 2.189722909617796 " " x[1] = 0.18169999999999448 " " y[1] (analytic) = 2.01641740483815 " " y[1] (numeric) = 2.0164174048381485 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60710241021314700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587232098701198 " " Order of pole = 2.189731664171905 " " x[1] = 0.18179999999999447 " " y[1] (analytic) = 2.0164353823222436 " " y[1] (numeric) = 2.0164353823222423 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60704350474088300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872441288010208 " " Order of pole = 2.1897403882013187 " " x[1] = 0.18189999999999446 " " y[1] (analytic) = 2.0164533694829734 " " y[1] (numeric) = 2.016453369482972 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60698456861309200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872561634178686 " " Order of pole = 2.189749081624509 " " x[1] = 0.18199999999999444 " " y[1] (analytic) = 2.0164713663199914 " " y[1] (numeric) = 2.01647136631999 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60692560183258200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872682025470304 " " Order of pole = 2.1897577443612875 " " x[1] = 0.18209999999999443 " " y[1] (analytic) = 2.016489372832949 " " y[1] (numeric) = 2.0164893728329476 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60686660440216600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872802461837687 " " Order of pole = 2.189766376330944 " " x[1] = 0.18219999999999442 " " y[1] (analytic) = 2.0165073890214975 " " y[1] (numeric) = 2.016507389021496 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60680757632465600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5872922943233743 " " Order of pole = 2.189774977453318 " " x[1] = 0.1822999999999944 " " y[1] (analytic) = 2.016525414885289 " " y[1] (numeric) = 2.0165254148852876 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60674851760286200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58730434696115 " " Order of pole = 2.1897835476484317 " " x[1] = 0.1823999999999944 " " y[1] (analytic) = 2.016543450423974 " " y[1] (numeric) = 2.0165434504239728 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60668942823960200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5873164040924386 " " Order of pole = 2.189792086837045 " " x[1] = 0.1824999999999944 " " y[1] (analytic) = 2.0165614956372044 " " y[1] (numeric) = 2.0165614956372027 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80884041098358500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5873284657125797 " " Order of pole = 2.1898005949398147 " " x[1] = 0.18259999999999438 " " y[1] (analytic) = 2.01657955052463 " " y[1] (numeric) = 2.0165795505246282 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80876154346659200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5873405318169251 " " Order of pole = 2.1898090718776615 " " x[1] = 0.18269999999999437 " " y[1] (analytic) = 2.016597615085902 " " y[1] (numeric) = 2.0165976150859004 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80868263510557600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587352602400855 " " Order of pole = 2.189817517571985 " " x[1] = 0.18279999999999436 " " y[1] (analytic) = 2.016615689320671 " " y[1] (numeric) = 2.0166156893206693 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80860368590430000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58736467745975 " " Order of pole = 2.1898259319441813 " " x[1] = 0.18289999999999434 " " y[1] (analytic) = 2.016633773228587 " " y[1] (numeric) = 2.0166337732285853 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80852469586652600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5873767569890442 " " Order of pole = 2.189834314916606 " " x[1] = 0.18299999999999433 " " y[1] (analytic) = 2.0166518668093 " " y[1] (numeric) = 2.0166518668092985 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60633424874701300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587388840984151 " " Order of pole = 2.1898426664112556 " " x[1] = 0.18309999999999432 " " y[1] (analytic) = 2.016669970062461 " " y[1] (numeric) = 2.016669970062459 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80836659329653500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874009294404894 " " Order of pole = 2.1898509863502156 " " x[1] = 0.1831999999999943 " " y[1] (analytic) = 2.0166880829877187 " " y[1] (numeric) = 2.016688082987717 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8082874807718490000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874130223535605 " " Order of pole = 2.189859274657014 " " x[1] = 0.1832999999999943 " " y[1] (analytic) = 2.016706205584723 " " y[1] (numeric) = 2.0167062055847214 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8082083274257300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874251197187956 " " Order of pole = 2.1898675312539773 " " x[1] = 0.1833999999999943 " " y[1] (analytic) = 2.0167243378531237 " " y[1] (numeric) = 2.016724337853122 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80812913326194600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874372215317196 " " Order of pole = 2.1898757560650317 " " x[1] = 0.18349999999999428 " " y[1] (analytic) = 2.0167424797925695 " " y[1] (numeric) = 2.0167424797925677 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80804989828426800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874493277878217 " " Order of pole = 2.1898839490135344 " " x[1] = 0.18359999999999427 " " y[1] (analytic) = 2.0167606314027102 " " y[1] (numeric) = 2.0167606314027084 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80797062249647000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874614384826478 " " Order of pole = 2.189892110023795 " " x[1] = 0.18369999999999426 " " y[1] (analytic) = 2.016778792683194 " " y[1] (numeric) = 2.0167787926831924 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80789130590233100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5874735536117415 " " Order of pole = 2.1899002390201154 " " x[1] = 0.18379999999999425 " " y[1] (analytic) = 2.0167969636336704 " " y[1] (numeric) = 2.0167969636336687 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80781194850562400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587485673170648 " " Order of pole = 2.189908335926802 " " x[1] = 0.18389999999999423 " " y[1] (analytic) = 2.0168151442537874 " " y[1] (numeric) = 2.0168151442537856 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8077325503101300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587497797154922 " " Order of pole = 2.189916400668345 " " x[1] = 0.18399999999999422 " " y[1] (analytic) = 2.0168333345431937 " " y[1] (numeric) = 2.016833334543192 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8076531113196300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875099255602192 " " Order of pole = 2.1899244331710115 " " x[1] = 0.1840999999999942 " " y[1] (analytic) = 2.0168515345015376 " " y[1] (numeric) = 2.016851534501536 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80757363153790500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875220583820848 " " Order of pole = 2.189932433359129 " " x[1] = 0.1841999999999942 " " y[1] (analytic) = 2.0168697441284666 " " y[1] (numeric) = 2.0168697441284653 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60562058322655700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875341956162 " " Order of pole = 2.1899404011593937 " " x[1] = 0.1842999999999942 " " y[1] (analytic) = 2.0168879634236294 " " y[1] (numeric) = 2.016887963423628 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60556091221194300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875463372581933 " " Order of pole = 2.1899483364976184 " " x[1] = 0.18439999999999418 " " y[1] (analytic) = 2.0169061923866733 " " y[1] (numeric) = 2.016906192386672 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60550121061243100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875584833037126 " " Order of pole = 2.189956239299928 " " x[1] = 0.18449999999999417 " " y[1] (analytic) = 2.0169244310172454 " " y[1] (numeric) = 2.0169244310172445 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.403627652287241400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587570633748441 " " Order of pole = 2.1899641094930615 " " x[1] = 0.18459999999999416 " " y[1] (analytic) = 2.016942679314994 " " y[1] (numeric) = 2.016942679314993 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40358781044671900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875827885880895 " " Order of pole = 2.189971947004281 " " x[1] = 0.18469999999999415 " " y[1] (analytic) = 2.0169609372795656 " " y[1] (numeric) = 2.0169609372795647 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4035479482219503000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5875949478183655 " " Order of pole = 2.1899797517607595 " " x[1] = 0.18479999999999414 " " y[1] (analytic) = 2.0169792049106072 " " y[1] (numeric) = 2.0169792049106063 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40350806561483340000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587607111434999 " " Order of pole = 2.1899875236900854 " " x[1] = 0.18489999999999412 " " y[1] (analytic) = 2.016997482207766 " " y[1] (numeric) = 2.016997482207765 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40346816262726540000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5876192794337536 " " Order of pole = 2.1899952627204264 " " x[1] = 0.1849999999999941 " " y[1] (analytic) = 2.0170157691706887 " " y[1] (numeric) = 2.017015769170688 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40342823926114600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5876314518103682 " " Order of pole = 2.1900029687795346 " " x[1] = 0.1850999999999941 " " y[1] (analytic) = 2.0170340657990216 " " y[1] (numeric) = 2.0170340657990207 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.403388295518375600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5876436285606639 " " Order of pole = 2.1900106417965794 " " x[1] = 0.1851999999999941 " " y[1] (analytic) = 2.0170523720924107 " " y[1] (numeric) = 2.01705237209241 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.403348331400854000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587655809680413 " " Order of pole = 2.1900182816998957 " " x[1] = 0.18529999999999408 " " y[1] (analytic) = 2.0170706880505027 " " y[1] (numeric) = 2.017070688050502 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40330834691048440000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5876679951654291 " " Order of pole = 2.1900258884185675 " " x[1] = 0.18539999999999407 " " y[1] (analytic) = 2.017089013672943 " " y[1] (numeric) = 2.0170890136729422 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.403268342049168600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587680185011581 " " Order of pole = 2.190033461882603 " " x[1] = 0.18549999999999406 " " y[1] (analytic) = 2.017107348959378 " " y[1] (numeric) = 2.017107348959377 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40322831681880860000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587692379214696 " " Order of pole = 2.1900410020212924 " " x[1] = 0.18559999999999405 " " y[1] (analytic) = 2.0171256939094526 " " y[1] (numeric) = 2.017125693909452 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.20159413561065600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877045777706582 " " Order of pole = 2.190048508764967 " " x[1] = 0.18569999999999404 " " y[1] (analytic) = 2.0171440485228134 " " y[1] (numeric) = 2.0171440485228125 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.403148205258580000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877167806753736 " " Order of pole = 2.190055982044292 " " x[1] = 0.18579999999999403 " " y[1] (analytic) = 2.0171624127991046 " " y[1] (numeric) = 2.0171624127991037 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40310811893252200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877289879246952 " " Order of pole = 2.190063421789038 " " x[1] = 0.18589999999999401 " " y[1] (analytic) = 2.017180786737972 " " y[1] (numeric) = 2.017180786737971 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40306801224504200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877411995146231 " " Order of pole = 2.1900708279315495 " " x[1] = 0.185999999999994 " " y[1] (analytic) = 2.01719917033906 " " y[1] (numeric) = 2.017199170339059 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4030278851980503000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587753415441048 " " Order of pole = 2.190078200402251 " " x[1] = 0.186099999999994 " " y[1] (analytic) = 2.017217563602013 " " y[1] (numeric) = 2.0172175636020127 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.201493868896727500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877656356999428 " " Order of pole = 2.190085539132994 " " x[1] = 0.18619999999999398 " " y[1] (analytic) = 2.0172359665264765 " " y[1] (numeric) = 2.017235966526476 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.201473785016582500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5877778602873178 " " Order of pole = 2.190092844056334 " " x[1] = 0.18629999999999397 " " y[1] (analytic) = 2.017254379112095 " " y[1] (numeric) = 2.017254379112094 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.402907381919089500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587790089199098 " " Order of pole = 2.190100115103288 " " x[1] = 0.18639999999999396 " " y[1] (analytic) = 2.0172728013585117 " " y[1] (numeric) = 2.017272801358511 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40286717345314200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878023224313702 " " Order of pole = 2.190107352207736 " " x[1] = 0.18649999999999395 " " y[1] (analytic) = 2.0172912332653716 " " y[1] (numeric) = 2.0172912332653707 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.402826944637233700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878145599801328 " " Order of pole = 2.1901145553019994 " " x[1] = 0.18659999999999394 " " y[1] (analytic) = 2.017309674832318 " " y[1] (numeric) = 2.017309674832317 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40278669547327700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878268018414459 " " Order of pole = 2.1901217243194964 " " x[1] = 0.18669999999999393 " " y[1] (analytic) = 2.017328126058995 " " y[1] (numeric) = 2.017328126058994 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40274642596318700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878390480113944 " " Order of pole = 2.1901288591940684 " " x[1] = 0.18679999999999392 " " y[1] (analytic) = 2.0173465869450458 " " y[1] (numeric) = 2.017346586945045 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40270613610887700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878512984860305 " " Order of pole = 2.190135959858985 " " x[1] = 0.1868999999999939 " " y[1] (analytic) = 2.017365057490114 " " y[1] (numeric) = 2.017365057490113 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40266582591226300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587863553261475 " " Order of pole = 2.1901430262487267 " " x[1] = 0.1869999999999939 " " y[1] (analytic) = 2.0173835376938425 " " y[1] (numeric) = 2.0173835376938416 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40262549537526200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878758123338614 " " Order of pole = 2.1901500582980056 " " x[1] = 0.18709999999999388 " " y[1] (analytic) = 2.017402027555875 " " y[1] (numeric) = 2.0174020275558737 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60387771674968500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5878880756993383 " " Order of pole = 2.1901570559417998 " " x[1] = 0.18719999999999387 " " y[1] (analytic) = 2.0174205270758536 " " y[1] (numeric) = 2.0174205270758523 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60381715993165100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879003433540504 " " Order of pole = 2.1901640191150022 " " x[1] = 0.18729999999999386 " " y[1] (analytic) = 2.017439036253421 " " y[1] (numeric) = 2.01743903625342 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60375657261166800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879126152941363 " " Order of pole = 2.1901709477524136 " " x[1] = 0.18739999999999385 " " y[1] (analytic) = 2.0174575550882206 " " y[1] (numeric) = 2.0174575550882192 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60369595479261300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879248915158706 " " Order of pole = 2.1901778417912325 " " x[1] = 0.18749999999999384 " " y[1] (analytic) = 2.0174760835798935 " " y[1] (numeric) = 2.017476083579892 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60363530647737200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879371720154216 " " Order of pole = 2.1901847011667677 " " x[1] = 0.18759999999999383 " " y[1] (analytic) = 2.017494621728083 " " y[1] (numeric) = 2.017494621728081 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80476617022509800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879494567890224 " " Order of pole = 2.1901915258155142 " " x[1] = 0.18769999999999382 " " y[1] (analytic) = 2.01751316953243 " " y[1] (numeric) = 2.017513169532428 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80468522449313700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879617458329371 " " Order of pole = 2.190198315674447 " " x[1] = 0.1877999999999938 " " y[1] (analytic) = 2.017531726992577 " " y[1] (numeric) = 2.0175317269925754 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80460423811112600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879740391434574 " " Order of pole = 2.190205070681081 " " x[1] = 0.1878999999999938 " " y[1] (analytic) = 2.0175502941081653 " " y[1] (numeric) = 2.017550294108164 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60339240831218600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5879863367168254 " " Order of pole = 2.19021179077205 " " x[1] = 0.18799999999999378 " " y[1] (analytic) = 2.017568870878837 " " y[1] (numeric) = 2.0175688708788355 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60333160755926300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.587998638549383 " " Order of pole = 2.190218475885718 " " x[1] = 0.18809999999999377 " " y[1] (analytic) = 2.0175874573042325 " " y[1] (numeric) = 2.017587457304231 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60327077632746700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880109446374415 " " Order of pole = 2.190225125959948 " " x[1] = 0.18819999999999376 " " y[1] (analytic) = 2.0176060533839935 " " y[1] (numeric) = 2.017606053383992 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60320991461968400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880232549773226 " " Order of pole = 2.1902317409327594 " " x[1] = 0.18829999999999375 " " y[1] (analytic) = 2.0176246591177605 " " y[1] (numeric) = 2.017624659117759 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60314902243881100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880355695654247 " " Order of pole = 2.1902383207435356 " " x[1] = 0.18839999999999374 " " y[1] (analytic) = 2.0176432745051747 " " y[1] (numeric) = 2.0176432745051733 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60308809978773500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588047888398136 " " Order of pole = 2.1902448653314686 " " x[1] = 0.18849999999999373 " " y[1] (analytic) = 2.0176618995458764 " " y[1] (numeric) = 2.017661899545875 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60302714666935500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588060211471843 " " Order of pole = 2.1902513746357464 " " x[1] = 0.18859999999999372 " " y[1] (analytic) = 2.017680534239506 " " y[1] (numeric) = 2.017680534239505 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40197744205770900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880725387829304 " " Order of pole = 2.1902578485955004 " " x[1] = 0.1886999999999937 " " y[1] (analytic) = 2.0176991785857044 " " y[1] (numeric) = 2.017699178585703 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60290514904225600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5880848703278847 " " Order of pole = 2.1902642871516775 " " x[1] = 0.1887999999999937 " " y[1] (analytic) = 2.0177178325841107 " " y[1] (numeric) = 2.0177178325841094 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60284410453933400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588097206103152 " " Order of pole = 2.1902706902444784 " " x[1] = 0.18889999999999368 " " y[1] (analytic) = 2.0177364962343654 " " y[1] (numeric) = 2.017736496234364 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60278302958069400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881095461051853 " " Order of pole = 2.1902770578142636 " " x[1] = 0.18899999999999367 " " y[1] (analytic) = 2.017755169536108 " " y[1] (numeric) = 2.0177551695361067 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60272192416923800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881218903305125 " " Order of pole = 2.1902833898027083 " " x[1] = 0.18909999999999366 " " y[1] (analytic) = 2.017773852488978 " " y[1] (numeric) = 2.017773852488977 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60266078830786700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881342387756043 " " Order of pole = 2.1902896861504466 " " x[1] = 0.18919999999999365 " " y[1] (analytic) = 2.017792545092615 " " y[1] (numeric) = 2.0177925450926137 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60259962199948500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881465914370296 " " Order of pole = 2.190295946799889 " " x[1] = 0.18929999999999364 " " y[1] (analytic) = 2.0178112473466587 " " y[1] (numeric) = 2.017811247346657 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8033845669959900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881589483113212 " " Order of pole = 2.1903021716927817 " " x[1] = 0.18939999999999363 " " y[1] (analytic) = 2.017829959250747 " " y[1] (numeric) = 2.0178299592507454 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80330293073773400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588171309395058 " " Order of pole = 2.1903083607716844 " " x[1] = 0.18949999999999362 " " y[1] (analytic) = 2.0178486808045197 " " y[1] (numeric) = 2.017848680804518 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80322125389508400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881836746848101 " " Order of pole = 2.1903145139790254 " " x[1] = 0.1895999999999936 " " y[1] (analytic) = 2.017867412007615 " " y[1] (numeric) = 2.017867412007613 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80313953647191900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5881960441771998 " " Order of pole = 2.190320631258121 " " x[1] = 0.1896999999999936 " " y[1] (analytic) = 2.0178861528596714 " " y[1] (numeric) = 2.0178861528596697 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80305777847211600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588208417868871 " " Order of pole = 2.1903267125526824 " " x[1] = 0.18979999999999358 " " y[1] (analytic) = 2.017904903360327 " " y[1] (numeric) = 2.017904903360326 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6022319849246700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5882207957564303 " " Order of pole = 2.1903327578057805 " " x[1] = 0.18989999999999357 " " y[1] (analytic) = 2.017923663509221 " " y[1] (numeric) = 2.0179236635092197 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60217060556859800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5882331778365557 " " Order of pole = 2.1903387669617196 " " x[1] = 0.18999999999999356 " " y[1] (analytic) = 2.0179424333059908 " " y[1] (numeric) = 2.0179424333059894 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60210919578878600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588245564105968 " " Order of pole = 2.190344739965578 " " x[1] = 0.19009999999999355 " " y[1] (analytic) = 2.0179612127502744 " " y[1] (numeric) = 2.0179612127502726 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80273034078419300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588257954561336 " " Order of pole = 2.190350676761497 " " x[1] = 0.19019999999999354 " " y[1] (analytic) = 2.0179800018417087 " " y[1] (numeric) = 2.0179800018417073 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60198628496959400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588270349199382 " " Order of pole = 2.190356577294576 " " x[1] = 0.19029999999999353 " " y[1] (analytic) = 2.017998800579932 " " y[1] (numeric) = 2.0179988005799308 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60192478393605100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5882827480168458 " " Order of pole = 2.190362441510228 " " x[1] = 0.19039999999999352 " " y[1] (analytic) = 2.0180176089645814 " " y[1] (numeric) = 2.01801760896458 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60186325249043300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5882951510104881 " " Order of pole = 2.1903682693542166 " " x[1] = 0.1904999999999935 " " y[1] (analytic) = 2.0180364269952937 " " y[1] (numeric) = 2.0180364269952924 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60180169063566100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883075581771329 " " Order of pole = 2.1903740607734434 " " x[1] = 0.1905999999999935 " " y[1] (analytic) = 2.0180552546717063 " " y[1] (numeric) = 2.018055254671705 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60174009837465300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883199695135286 " " Order of pole = 2.1903798157134524 " " x[1] = 0.19069999999999349 " " y[1] (analytic) = 2.0180740919934563 " " y[1] (numeric) = 2.0180740919934546 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.8022379676137800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883323850165012 " " Order of pole = 2.1903855341211695 " " x[1] = 0.19079999999999347 " " y[1] (analytic) = 2.0180929389601796 " " y[1] (numeric) = 2.018092938960178 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80215576352750400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883448046828834 " " Order of pole = 2.1903912159436523 " " x[1] = 0.19089999999999346 " " y[1] (analytic) = 2.018111795571513 " " y[1] (numeric) = 2.018111795571511 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80207351891127800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588357228509561 " " Order of pole = 2.190396861128864 " " x[1] = 0.19099999999999345 " " y[1] (analytic) = 2.0181306618270924 " " y[1] (numeric) = 2.0181306618270907 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80199123376900400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883696564933991 " " Order of pole = 2.190402469624427 " " x[1] = 0.19109999999999344 " " y[1] (analytic) = 2.018149537726554 " " y[1] (numeric) = 2.018149537726553 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60143168107843800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588382088631309 " " Order of pole = 2.190408041378774 " " x[1] = 0.19119999999999343 " " y[1] (analytic) = 2.0181684232695347 " " y[1] (numeric) = 2.0181684232695334 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6013699064414400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5883945249201687 " " Order of pole = 2.1904135763397434 " " x[1] = 0.19129999999999342 " " y[1] (analytic) = 2.018187318455669 " " y[1] (numeric) = 2.018187318455668 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60130810141869500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884069653569255 " " Order of pole = 2.1904190744564005 " " x[1] = 0.1913999999999934 " " y[1] (analytic) = 2.018206223284593 " " y[1] (numeric) = 2.018206223284592 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60124626601312900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884194099385576 " " Order of pole = 2.1904245356783605 " " x[1] = 0.1914999999999934 " " y[1] (analytic) = 2.0182251377559424 " " y[1] (numeric) = 2.018225137755941 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60118440022767500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884318586620083 " " Order of pole = 2.1904299599546064 " " x[1] = 0.1915999999999934 " " y[1] (analytic) = 2.018244061869352 " " y[1] (numeric) = 2.0182440618693507 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6011225040652710000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884443115243183 " " Order of pole = 2.190435347235855 " " x[1] = 0.19169999999999338 " " y[1] (analytic) = 2.018262995624457 " " y[1] (numeric) = 2.0182629956244558 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60106057752884700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884567685224569 " " Order of pole = 2.190440697471562 " " x[1] = 0.19179999999999336 " " y[1] (analytic) = 2.0182819390208926 " " y[1] (numeric) = 2.0182819390208913 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60099862062134200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588469229653467 " " Order of pole = 2.1904460106124723 " " x[1] = 0.19189999999999335 " " y[1] (analytic) = 2.018300892058293 " " y[1] (numeric) = 2.0183008920582917 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60093663334569300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884816949144005 " " Order of pole = 2.1904512866095054 " " x[1] = 0.19199999999999334 " " y[1] (analytic) = 2.0183198547362933 " " y[1] (numeric) = 2.018319854736292 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.6008746157048390000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5884941643023598 " " Order of pole = 2.1904565254144543 " " x[1] = 0.19209999999999333 " " y[1] (analytic) = 2.018338827054527 " " y[1] (numeric) = 2.018338827054526 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.400541711801150000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588506637814393 " " Order of pole = 2.1904617269781568 " " x[1] = 0.19219999999999332 " " y[1] (analytic) = 2.0183578090126293 " " y[1] (numeric) = 2.0183578090126284 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.4005003262261900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5885191154476344 " " Order of pole = 2.1904668912529672 " " x[1] = 0.1922999999999933 " " y[1] (analytic) = 2.018376800610234 " " y[1] (numeric) = 2.0183768006102327 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60068838062046400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5885315971992218 " " Order of pole = 2.190472018191336 " " x[1] = 0.1923999999999933 " " y[1] (analytic) = 2.0183958018469745 " " y[1] (numeric) = 2.018395801846973 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60062624154820900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588544083066297 " " Order of pole = 2.1904771077457355 " " x[1] = 0.1924999999999933 " " y[1] (analytic) = 2.0184148127224852 " " y[1] (numeric) = 2.0184148127224835 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80075209616728200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5885565730460327 " " Order of pole = 2.1904821598692124 " " x[1] = 0.19259999999999328 " " y[1] (analytic) = 2.018433833236399 " " y[1] (numeric) = 2.018433833236397 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.80066916314022900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5885690671356338 " " Order of pole = 2.1904871745153756 " " x[1] = 0.19269999999999327 " " y[1] (analytic) = 2.018452863388349 " " y[1] (numeric) = 2.018452863388348 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60043964224028700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588581565332277 " " Order of pole = 2.190492151637333 " " x[1] = 0.19279999999999325 " " y[1] (analytic) = 2.0184719031779697 " " y[1] (numeric) = 2.0184719031779683 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60037738178375400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5885940676332353 " " Order of pole = 2.1904970911898864 " " x[1] = 0.19289999999999324 " " y[1] (analytic) = 2.018490952604893 " " y[1] (numeric) = 2.0184909526048918 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.60031509098852400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588606574035722 " " Order of pole = 2.190501993126791 " " x[1] = 0.19299999999999323 " " y[1] (analytic) = 2.0185100116687518 " " y[1] (numeric) = 2.018510011668751 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40016851323836800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5886190845370747 " " Order of pole = 2.1905068574040065 " " x[1] = 0.19309999999999322 " " y[1] (analytic) = 2.0185290803691793 " " y[1] (numeric) = 2.0185290803691784 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.400126945595857500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58863159913448 " " Order of pole = 2.1905116839747976 " " x[1] = 0.1931999999999932 " " y[1] (analytic) = 2.0185481587058076 " " y[1] (numeric) = 2.0185481587058067 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.40008535773345640000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5886441178253252 " " Order of pole = 2.1905164727959985 " " x[1] = 0.1932999999999932 " " y[1] (analytic) = 2.018567246678269 " " y[1] (numeric) = 2.018567246678268 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.400043749653133600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5886566406069078 " " Order of pole = 2.1905212238228415 " " x[1] = 0.1933999999999932 " " y[1] (analytic) = 2.0185863442861955 " " y[1] (numeric) = 2.0185863442861947 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.400002121356861300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5886691674766278 " " Order of pole = 2.190525937012392 " " x[1] = 0.19349999999999318 " " y[1] (analytic) = 2.0186054515292198 " " y[1] (numeric) = 2.018605451529219 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39996047284661100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5886816984317889 " " Order of pole = 2.190530612319968 " " x[1] = 0.19359999999999317 " " y[1] (analytic) = 2.018624568406973 " " y[1] (numeric) = 2.018624568406972 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39991880412435600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588694233469817 " " Order of pole = 2.190535249703089 " " x[1] = 0.19369999999999316 " " y[1] (analytic) = 2.0186436949190867 " " y[1] (numeric) = 2.0186436949190862 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199938557596035000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887067725881063 " " Order of pole = 2.1905398491187036 " " x[1] = 0.19379999999999314 " " y[1] (analytic) = 2.018662831065193 " " y[1] (numeric) = 2.0186628310651926 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199917703025863500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887193157841348 " " Order of pole = 2.1905444105252236 " " x[1] = 0.19389999999999313 " " y[1] (analytic) = 2.0186819768449227 " " y[1] (numeric) = 2.0186819768449222 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199896838352651800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887318630552705 " " Order of pole = 2.190548933879125 " " x[1] = 0.19399999999999312 " " y[1] (analytic) = 2.0187011322579074 " " y[1] (numeric) = 2.0187011322579065 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39975192715477400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887444143990919 " " Order of pole = 2.190553419140617 " " x[1] = 0.1940999999999931 " " y[1] (analytic) = 2.0187202973037772 " " y[1] (numeric) = 2.0187202973037763 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39971015740211800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887569698130095 " " Order of pole = 2.1905578662669214 " " x[1] = 0.1941999999999931 " " y[1] (analytic) = 2.0187394719821636 " " y[1] (numeric) = 2.0187394719821627 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39966836744931200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887695292945676 " " Order of pole = 2.1905622752176264 " " x[1] = 0.1942999999999931 " " y[1] (analytic) = 2.0187586562926967 " " y[1] (numeric) = 2.0187586562926962 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19981327864916800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887820928412626 " " Order of pole = 2.1905666459514777 " " x[1] = 0.19439999999999308 " " y[1] (analytic) = 2.0187778502350073 " " y[1] (numeric) = 2.018777850235007 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199792363475584500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5887946604506837 " " Order of pole = 2.1905709784288625 " " x[1] = 0.19449999999999307 " " y[1] (analytic) = 2.018797053808726 " " y[1] (numeric) = 2.018797053808725 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.3995428764097900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888072321203865 " " Order of pole = 2.190575272609557 " " x[1] = 0.19459999999999306 " " y[1] (analytic) = 2.018816267013482 " " y[1] (numeric) = 2.0188162670134813 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39950100567618300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888198078479883 " " Order of pole = 2.190579528454439 " " x[1] = 0.19469999999999305 " " y[1] (analytic) = 2.0188354898489056 " " y[1] (numeric) = 2.018835489848905 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19972955737616500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888323876310644 " " Order of pole = 2.1905837459236537 " " x[1] = 0.19479999999999303 " " y[1] (analytic) = 2.0188547223146274 " " y[1] (numeric) = 2.0188547223146265 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39941720364021070000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.58884497146727 " " Order of pole = 2.190587924978743 " " x[1] = 0.19489999999999302 " " y[1] (analytic) = 2.0188739644102753 " " y[1] (numeric) = 2.018873964410275 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19968763617090700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888575593542598 " " Order of pole = 2.190592065581221 " " x[1] = 0.194999999999993 " " y[1] (analytic) = 2.01889321613548 " " y[1] (numeric) = 2.0188932161354796 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199666660429560600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888701512897587 " " Order of pole = 2.1905961676939008 " " x[1] = 0.195099999999993 " " y[1] (analytic) = 2.0189124774898706 " " y[1] (numeric) = 2.01891247748987 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19964567459705900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888827472712936 " " Order of pole = 2.1906002312760187 " " x[1] = 0.195199999999993 " " y[1] (analytic) = 2.0189317484730758 " " y[1] (numeric) = 2.0189317484730753 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19962467867439610000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5888953472967726 " " Order of pole = 2.1906042562936108 " " x[1] = 0.19529999999999298 " " y[1] (analytic) = 2.0189510290847243 " " y[1] (numeric) = 2.018951029084724 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199603672662565600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889079513638416 " " Order of pole = 2.1906082427080307 " " x[1] = 0.19539999999999297 " " y[1] (analytic) = 2.0189703193244455 " " y[1] (numeric) = 2.018970319324445 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19958265656256120000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889205594702853 " " Order of pole = 2.190612190483133 " " x[1] = 0.19549999999999296 " " y[1] (analytic) = 2.0189896191918675 " " y[1] (numeric) = 2.018989619191867 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199561630375377300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588933171613841 " " Order of pole = 2.19061609958187 " " x[1] = 0.19559999999999295 " " y[1] (analytic) = 2.0190089286866186 " " y[1] (numeric) = 2.019008928686618 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19954059410200900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889457877923203 " " Order of pole = 2.1906199699685764 " " x[1] = 0.19569999999999294 " " y[1] (analytic) = 2.0190282478083272 " " y[1] (numeric) = 2.019028247808327 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199519547743451800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889584080035584 " " Order of pole = 2.1906238016079485 " " x[1] = 0.19579999999999292 " " y[1] (analytic) = 2.0190475765566216 " " y[1] (numeric) = 2.019047576556621 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19949849130070120000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889710322453874 " " Order of pole = 2.1906275944646474 " " x[1] = 0.1958999999999929 " " y[1] (analytic) = 2.019066914931129 " " y[1] (numeric) = 2.0190669149311287 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199477424774753400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.588983660515614 " " Order of pole = 2.1906313485028868 " " x[1] = 0.1959999999999929 " " y[1] (analytic) = 2.0190862629314776 " " y[1] (numeric) = 2.019086262931477 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199456348166605500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5889962928122254 " " Order of pole = 2.1906350636900704 " " x[1] = 0.1960999999999929 " " y[1] (analytic) = 2.019105620557295 " " y[1] (numeric) = 2.0191056205572946 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199435261477253300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890089291329965 " " Order of pole = 2.19063873998984 " " x[1] = 0.19619999999999288 " " y[1] (analytic) = 2.0191249878082083 " " y[1] (numeric) = 2.019124987808208 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199414164707695600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890215694759457 " " Order of pole = 2.1906423773701427 " " x[1] = 0.19629999999999287 " " y[1] (analytic) = 2.0191443646838447 " " y[1] (numeric) = 2.0191443646838443 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19939305785892900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890342138389748 " " Order of pole = 2.190645975796855 " " x[1] = 0.19639999999999286 " " y[1] (analytic) = 2.0191637511838314 " " y[1] (numeric) = 2.019163751183831 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.19937194093195300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890468622200478 " " Order of pole = 2.190649535236986 " " x[1] = 0.19649999999999285 " " y[1] (analytic) = 2.019183147307795 " " y[1] (numeric) = 2.0191831473077944 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199350813927766000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890595146171047 " " Order of pole = 2.190653055657073 " " x[1] = 0.19659999999999284 " " y[1] (analytic) = 2.0192025530553623 " " y[1] (numeric) = 2.0192025530553614 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39865935369473160000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890721710282196 " " Order of pole = 2.190656537026058 " " x[1] = 0.19669999999999283 " " y[1] (analytic) = 2.0192219684261596 " " y[1] (numeric) = 2.0192219684261588 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.398617059383508000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5890848314514099 " " Order of pole = 2.1906599793118495 " " x[1] = 0.19679999999999281 " " y[1] (analytic) = 2.0192413934198137 " " y[1] (numeric) = 2.019241393419813 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.398574744923857700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589097495884661 " " Order of pole = 2.19066338248183 " " x[1] = 0.1968999999999928 " " y[1] (analytic) = 2.01926082803595 " " y[1] (numeric) = 2.019260828035949 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.398532410317784000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589110164326086 " " Order of pole = 2.190666746505581 " " x[1] = 0.1969999999999928 " " y[1] (analytic) = 2.0192802722741954 " " y[1] (numeric) = 2.0192802722741945 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39849005556728730000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589122836773781 " " Order of pole = 2.19067007135245 " " x[1] = 0.19709999999999278 " " y[1] (analytic) = 2.019299726134175 " " y[1] (numeric) = 2.0192997261341743 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.398447680674369400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5891355132257758 " " Order of pole = 2.1906733569905406 " " x[1] = 0.19719999999999277 " " y[1] (analytic) = 2.0193191896155147 " " y[1] (numeric) = 2.0193191896155143 " " absolute error = 4.4408920985006260000000000000000E-16 " " relative error = 2.199202642820517800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589148193680223 " " Order of pole = 2.190676603390177 " " x[1] = 0.19729999999999276 " " y[1] (analytic) = 2.0193386627178405 " " y[1] (numeric) = 2.0193386627178396 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39836287046928700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5891608781353532 " " Order of pole = 2.190679810523047 " " x[1] = 0.19739999999999275 " " y[1] (analytic) = 2.0193581454407767 " " y[1] (numeric) = 2.019358145440776 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39832043516113100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5891735665892062 " " Order of pole = 2.190682978357458 " " x[1] = 0.19749999999999274 " " y[1] (analytic) = 2.019377637783949 " " y[1] (numeric) = 2.0193776377839483 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39827797971857340000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5891862590401578 " " Order of pole = 2.1906861068676804 " " x[1] = 0.19759999999999273 " " y[1] (analytic) = 2.0193971397469825 " " y[1] (numeric) = 2.0193971397469817 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39823550414361940000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589198955486232 " " Order of pole = 2.190689196021708 " " x[1] = 0.19769999999999271 " " y[1] (analytic) = 2.0194166513295015 " " y[1] (numeric) = 2.0194166513295007 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.39819300843827700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5892116559256717 " " Order of pole = 2.190692245791446 " " x[1] = 0.1977999999999927 " " y[1] (analytic) = 2.0194361725311314 " " y[1] (numeric) = 2.01943617253113 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59722573890683200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589224360356878 " " Order of pole = 2.190695256151617 " " x[1] = 0.1978999999999927 " " y[1] (analytic) = 2.019455703351496 " " y[1] (numeric) = 2.0194557033514946 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59716193496669200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5892370687779247 " " Order of pole = 2.190698227071085 " " x[1] = 0.19799999999999268 " " y[1] (analytic) = 2.0194752437902195 " " y[1] (numeric) = 2.019475243790218 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59709810084001200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5892497811873454 " " Order of pole = 2.1907011585269203 " " x[1] = 0.19809999999999267 " " y[1] (analytic) = 2.0194947938469263 " " y[1] (numeric) = 2.019494793846925 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59703423652980700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5892624975832288 " " Order of pole = 2.1907040504882573 " " x[1] = 0.19819999999999266 " " y[1] (analytic) = 2.0195143535212403 " " y[1] (numeric) = 2.019514353521239 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59697034203909500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589275217964064 " " Order of pole = 2.1907069029313604 " " x[1] = 0.19829999999999265 " " y[1] (analytic) = 2.0195339228127853 " " y[1] (numeric) = 2.019533922812784 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59690641737089400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589287942328229 " " Order of pole = 2.190709715830522 " " x[1] = 0.19839999999999264 " " y[1] (analytic) = 2.019553501721185 " " y[1] (numeric) = 2.019553501721184 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59684246252822300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589300670674418 " " Order of pole = 2.1907124891656515 " " x[1] = 0.19849999999999263 " " y[1] (analytic) = 2.019573090246063 " " y[1] (numeric) = 2.0195730902460616 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59677847751410500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893134029994376 " " Order of pole = 2.190715222882968 " " x[1] = 0.19859999999999262 " " y[1] (analytic) = 2.019592688387042 " " y[1] (numeric) = 2.0195926883870405 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59671446233156200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893261393036917 " " Order of pole = 2.190717916992913 " " x[1] = 0.1986999999999926 " " y[1] (analytic) = 2.0196122961437455 " " y[1] (numeric) = 2.019612296143744 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59665041698361700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589338879584504 " " Order of pole = 2.190720571450921 " " x[1] = 0.1987999999999926 " " y[1] (analytic) = 2.0196319135157963 " " y[1] (numeric) = 2.019631913515795 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59658634147329600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893516238408567 " " Order of pole = 2.190723186242028 " " x[1] = 0.19889999999999258 " " y[1] (analytic) = 2.019651540502817 " " y[1] (numeric) = 2.019651540502816 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 4.3976814905357503000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893643720708264 " " Order of pole = 2.1907257613351128 " " x[1] = 0.19899999999999257 " " y[1] (analytic) = 2.0196711771044304 " " y[1] (numeric) = 2.019671177104429 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59645809997763200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893771242734118 " " Order of pole = 2.1907282967154913 " " x[1] = 0.19909999999999256 " " y[1] (analytic) = 2.019690823320259 " " y[1] (numeric) = 2.0196908233202575 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59639393399834500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5893898804467 " " Order of pole = 2.1907307923522126 " " x[1] = 0.19919999999999255 " " y[1] (analytic) = 2.0197104791499245 " " y[1] (numeric) = 2.019710479149923 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59632973786879500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589402640589301 " " Order of pole = 2.190733248223669 " " x[1] = 0.19929999999999254 " " y[1] (analytic) = 2.0197301445930496 " " y[1] (numeric) = 2.0197301445930482 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.5962655115920110000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.589415404700081 " " Order of pole = 2.190735664312797 " " x[1] = 0.19939999999999253 " " y[1] (analytic) = 2.019749819649256 " " y[1] (numeric) = 2.0197498196492547 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59620125517102700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894281727772206 " " Order of pole = 2.1907380405902934 " " x[1] = 0.19949999999999252 " " y[1] (analytic) = 2.0197695043181656 " " y[1] (numeric) = 2.0197695043181643 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59613696860887700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894409448194955 " " Order of pole = 2.1907403770374714 " " x[1] = 0.1995999999999925 " " y[1] (analytic) = 2.0197891985993994 " " y[1] (numeric) = 2.019789198599398 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59607265190859700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894537208256636 " " Order of pole = 2.190742673635338 " " x[1] = 0.1996999999999925 " " y[1] (analytic) = 2.019808902492579 " " y[1] (numeric) = 2.019808902492578 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59600830507322100000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894665007941495 " " Order of pole = 2.190744930358928 " " x[1] = 0.19979999999999248 " " y[1] (analytic) = 2.019828615997326 " " y[1] (numeric) = 2.0198286159973247 " " absolute error = 1.3322676295501878000000000000000E-15 " " relative error = 6.59594392810578700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894792847238 " " Order of pole = 2.190747147190823 " " x[1] = 0.19989999999999247 " " y[1] (analytic) = 2.0198483391132616 " " y[1] (numeric) = 2.01984833911326 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.79450602801244500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.5894920726131991 " " Order of pole = 2.1907493241088964 " " x[1] = 0.19999999999999246 " " y[1] (analytic) = 2.0198680718400057 " " y[1] (numeric) = 2.019868071840004 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 8.79442011171587200000000000000E-14 "%" h = 1.0000E-4 " " "Finished!" "Maximum Iterations Reached before Solution Completed!" "diff ( y , x , 1 ) = tanh ( x ) ;" Iterations = 1000 "Total Elapsed Time "= 12 Minutes 29 Seconds "Elapsed Time(since restart) "= 12 Minutes 28 Seconds "Expected Time Remaining "= 20 Hours 22 Minutes 31 Seconds "Optimized Time Remaining "= 20 Hours 21 Minutes 50 Seconds "Time to Timeout "= 2 Minutes 30 Seconds Percent Done = 1.0111111111110347 "%" (%o51) true (%o51) diffeq.max