(%i1) batch(diffeq.max) read and interpret file: /home/dennis/mastersource/mine/omnisode/diffeq.max (%i2) load(stringproc) (%o2) /usr/local/share/maxima/5.26.0/share/contrib/stringproc/stringproc.mac (%i3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%o3) display_alot(iter) := if iter >= 0 then (ind_var : array_x , omniout_float(ALWAYS, 1 "x[1] ", 33, ind_var, 20, " "), analytic_val_y : exact_soln_y(ind_var), omniout_float(ALWAYS, "y[1] (analytic) ", 33, analytic_val_y, 20, " "), term_no : 1, numeric_val : array_y , term_no abserr : abs(numeric_val - analytic_val_y), omniout_float(ALWAYS, "y[1] (numeric) ", 33, numeric_val, abserr 100.0 20, " "), if abs(analytic_val_y) # 0.0 then relerr : ------------------- abs(analytic_val_y) else relerr : - 1.0, if glob_iter = 1 then array_1st_rel_error : relerr 1 else array_last_rel_error : relerr, omniout_float(ALWAYS, 1 "absolute error ", 4, abserr, 20, " "), omniout_float(ALWAYS, "relative error ", 4, relerr, 20, "%"), omniout_float(ALWAYS, "h ", 4, glob_h, 20, " ")) (%i4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), if not glob_reached_optimal_h then (glob_reached_optimal_h : true, glob_curr_iter_when_opt : glob_current_iter, glob_optimal_clock_start_sec : elapsed_time_seconds(), glob_optimal_start : array_x ), hnew : sz2) 1 (%o4) adjust_for_pole(h_param) := block(hnew : h_param, glob_normmax : glob_small_float, if !array_y_higher ! > glob_small_float ! 1, 1! then (tmp : !array_y_higher !, if tmp < glob_normmax ! 1, 1! then glob_normmax : tmp), if glob_look_poles and (!array_pole ! > glob_small_float) and (array_pole # glob_large_float) ! 1! 1 array_pole 1 then (sz2 : -----------, if sz2 < hnew 10.0 then (omniout_float(INFO, "glob_h adjusted to ", 20, h_param, 12, "due to singularity."), omniout_str(INFO, "Reached Optimal"), newline(), return(hnew))), if not glob_reached_optimal_h then (glob_reached_optimal_h : true, glob_curr_iter_when_opt : glob_current_iter, glob_optimal_clock_start_sec : elapsed_time_seconds(), glob_optimal_start : array_x ), hnew : sz2) 1 (%i5) prog_report(x_start, x_end) := (clock_sec1 : elapsed_time_seconds(), total_clock_sec : convfloat(clock_sec1) - convfloat(glob_orig_start_sec), glob_clock_sec : convfloat(clock_sec1) - convfloat(glob_clock_start_sec), left_sec : - convfloat(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(clock_sec1) - convfloat(glob_orig_start_sec)), opt_clock_sec : convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec), glob_optimal_expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 omniout_str_noeol(INFO, "Total Elapsed Time "), omniout_timestr(convfloat(total_clock_sec)), omniout_str_noeol(INFO, "Elapsed Time(since restart) "), omniout_timestr(convfloat(glob_clock_sec)), if convfloat(percent_done) < convfloat(100.0) then (omniout_str_noeol(INFO, "Expected Time Remaining "), omniout_timestr(convfloat(expect_sec)), omniout_str_noeol(INFO, "Optimized Time Remaining "), omniout_timestr(convfloat(glob_optimal_expect_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%o5) prog_report(x_start, x_end) := (clock_sec1 : elapsed_time_seconds(), total_clock_sec : convfloat(clock_sec1) - convfloat(glob_orig_start_sec), glob_clock_sec : convfloat(clock_sec1) - convfloat(glob_clock_start_sec), left_sec : - convfloat(clock_sec1) + convfloat(glob_orig_start_sec) + convfloat(glob_max_sec), expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(clock_sec1) - convfloat(glob_orig_start_sec)), opt_clock_sec : convfloat(clock_sec1) - convfloat(glob_optimal_clock_start_sec), glob_optimal_expect_sec : comp_expect_sec(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x ), 1 convfloat(opt_clock_sec)), percent_done : comp_percent(convfloat(x_end), convfloat(x_start), convfloat(glob_h) + convfloat(array_x )), glob_percent_done : percent_done, 1 omniout_str_noeol(INFO, "Total Elapsed Time "), omniout_timestr(convfloat(total_clock_sec)), omniout_str_noeol(INFO, "Elapsed Time(since restart) "), omniout_timestr(convfloat(glob_clock_sec)), if convfloat(percent_done) < convfloat(100.0) then (omniout_str_noeol(INFO, "Expected Time Remaining "), omniout_timestr(convfloat(expect_sec)), omniout_str_noeol(INFO, "Optimized Time Remaining "), omniout_timestr(convfloat(glob_optimal_expect_sec))), omniout_str_noeol(INFO, "Time to Timeout "), omniout_timestr(convfloat(left_sec)), omniout_float(INFO, "Percent Done ", 33, percent_done, 4, "%")) (%i6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%o6) check_for_pole() := (n : glob_max_terms, m : - 1 - 1 + n, while (m >= 10) and ((!array_y_higher ! < glob_small_float) ! 1, m! or (!array_y_higher ! < glob_small_float) ! 1, m - 1! or (!array_y_higher ! < glob_small_float)) do m : m - 1, ! 1, m - 2! array_y_higher array_y_higher 1, m 1, m - 1 if m > 10 then (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 hdrc : convfloat(m - 1) rm0 - convfloat(m - 2) rm1, glob_h if abs(hdrc) > glob_small_float then (rcs : ------, hdrc convfloat(m - 1) rm0 ord_no : 2.0 - convfloat(m) + --------------------, array_real_pole : rcs, hdrc 1, 1 array_real_pole : ord_no) else (array_real_pole : glob_large_float, 1, 2 1, 1 array_real_pole : glob_large_float)) 1, 2 else (array_real_pole : glob_large_float, 1, 1 array_real_pole : glob_large_float), n : - 1 - 1 + glob_max_terms, 1, 2 cnt : 0, while (cnt < 5) and (n >= 10) do (if !array_y_higher ! > ! 1, n! glob_small_float then cnt : 1 + cnt else cnt : 0, n : n - 1), m : cnt + n, if m <= 10 then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 elseif (!array_y_higher ! >= glob_large_float) ! 1, m! or (!array_y_higher ! >= glob_large_float) ! 1, m - 1! or (!array_y_higher ! >= glob_large_float) ! 1, m - 2! or (!array_y_higher ! >= glob_large_float) ! 1, m - 3! or (!array_y_higher ! >= glob_large_float) ! 1, m - 4! or (!array_y_higher ! >= glob_large_float) ! 1, m - 5! then (array_complex_pole : glob_large_float, 1, 1 array_complex_pole : glob_large_float) 1, 2 array_y_higher array_y_higher 1, m 1, m - 1 else (rm0 : ----------------------, rm1 : ----------------------, array_y_higher array_y_higher 1, m - 1 1, m - 2 array_y_higher array_y_higher 1, m - 2 1, m - 3 rm2 : ----------------------, rm3 : ----------------------, array_y_higher array_y_higher 1, m - 3 1, m - 4 array_y_higher 1, m - 4 rm4 : ----------------------, nr1 : convfloat(m - 3) rm2 array_y_higher 1, m - 5 - 2.0 convfloat(m - 2) rm1 + convfloat(m - 1) rm0, nr2 : convfloat(m - 4) rm3 - 2.0 convfloat(m - 3) rm2 + convfloat(m - 2) rm1, - 1.0 2.0 - 1.0 - 1.0 2.0 - 1.0 5.0 8.0 3.0 dr1 : ----- + --- + -----, dr2 : ----- + --- + -----, ds1 : --- - --- + ---, rm3 rm2 rm1 rm4 rm3 rm2 rm3 rm2 rm1 5.0 8.0 3.0 ds2 : --- - --- + ---, if (abs(nr1 dr2 - nr2 dr1) <= glob_small_float) rm4 rm3 rm2 or (abs(dr1) <= glob_small_float) then (array_complex_pole : 1, 1 glob_large_float, array_complex_pole : glob_large_float) 1, 2 else (if abs(nr1 dr2 - nr2 dr1) > glob_small_float dr1 dr2 - ds2 dr1 + ds1 dr2 then (rcs : ---------------------------, nr1 dr2 - nr2 dr1 rcs nr1 - ds1 convfloat(m) ord_no : ------------- - ------------, 2.0 dr1 2.0 if abs(rcs) > glob_small_float then (if rcs > 0.0 then rad_c : sqrt(rcs) glob_h else rad_c : glob_large_float) else (rad_c : glob_large_float, ord_no : glob_large_float)) else (rad_c : glob_large_float, ord_no : glob_large_float)), array_complex_pole : rad_c, 1, 1 array_complex_pole : ord_no), found : false, 1, 2 if (not found) and ((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole # glob_large_float) and (array_complex_pole # glob_large_float)) 1, 1 1, 2 and ((array_complex_pole > 0.0) and (array_complex_pole > 0.0)) 1, 1 1, 2 then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , found : true, array_type_pole : 2, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if (not found) and ((array_real_pole # glob_large_float) and (array_real_pole # glob_large_float) 1, 1 1, 2 and (array_real_pole > 0.0) and (array_real_pole > 0.0) 1, 1 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float) or (array_complex_pole <= 0.0) or (array_complex_pole <= 0.0))) 1, 1 1, 2 1, 1 1, 2 then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and (((array_real_pole = glob_large_float) 1, 1 or (array_real_pole = glob_large_float)) 1, 2 and ((array_complex_pole = glob_large_float) or (array_complex_pole = glob_large_float))) 1, 1 1, 2 then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 found : true, array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), if (not found) and ((array_real_pole < array_complex_pole ) 1, 1 1, 1 and (array_real_pole > 0.0) and (array_real_pole > 1, 1 1, 2 0.0)) then (array_poles : array_real_pole , 1, 1 1, 1 array_poles : array_real_pole , found : true, array_type_pole : 1, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Real estimate of pole used")), if (not found) and ((array_complex_pole # glob_large_float) 1, 1 and (array_complex_pole # glob_large_float) 1, 2 and (array_complex_pole > 0.0) and (array_complex_pole > 1, 1 1, 2 0.0)) then (array_poles : array_complex_pole , 1, 1 1, 1 array_poles : array_complex_pole , array_type_pole : 2, found : true, 1, 2 1, 2 1 if glob_display_flag then omniout_str(ALWAYS, "Complex estimate of poles used")), if not found then (array_poles : glob_large_float, array_poles : glob_large_float, 1, 1 1, 2 array_type_pole : 3, if glob_display_flag 1 then omniout_str(ALWAYS, "NO POLE")), array_pole : glob_large_float, 1 array_pole : glob_large_float, if array_pole > array_poles 2 1 1, 1 then (array_pole : array_poles , array_pole : array_poles ), 1 1, 1 2 1, 2 display_pole()) (%i7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%o7) get_norms() := if not glob_initial_pass then (set_z(array_norms, 1 + glob_max_terms), iii : 1, while iii <= glob_max_terms do (if !array_y ! > array_norms ! iii! iii then array_norms : !array_y !, iii : 1 + iii)) iii ! iii! (%i8) atomall() := (array_tmp1 : array_y + array_const_0D0 , 1 1 1 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 2 2 2 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 3 3 3 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 4 4 4 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 5 5 5 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : kkk array_y + array_const_0D0 , array_tmp2 : kkk kkk kkk array_tmp1 - array_const_1D0 , order_d : 1, 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 : array_y + array_const_0D0 , 1 1 1 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 2 2 2 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 3 3 3 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 4 4 4 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : array_y + array_const_0D0 , 5 5 5 array_tmp2 : array_tmp1 - array_const_1D0 , 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 : kkk array_y + array_const_0D0 , array_tmp2 : kkk kkk kkk array_tmp1 - array_const_1D0 , order_d : 1, 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) := exp(x) + 1.0 (%o49) exact_soln_y(x) := exp(x) + 1.0 (%i50) mainprog() := (define_variable(glob_max_terms, 30, fixnum), define_variable(DEBUGMASSIVE, 4, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(glob_normmax, 0.0, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_not_yet_finished, true, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_start, 0, fixnum), define_variable(glob_warned2, false, boolean), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(sec_in_min, 60.0, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_optimal_done, false, boolean), define_variable(djd_debug, true, boolean), define_variable(glob_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_large_float, 9.0E+100, float), define_variable(djd_debug2, true, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_h, 0.1, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_percent_done, 0.0, float), define_variable(glob_log10abserr, 0.0, float), define_variable(years_in_century, 100.0, float), define_variable(glob_display_flag, true, boolean), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_hmax, 1.0, float), define_variable(days_in_year, 365.0, float), define_variable(hours_in_day, 24.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_initial_pass, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_almost_1, 0.999, float), define_variable(glob_dump, false, boolean), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), 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/diff0postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = y - 1.0;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : 1.1,"), omniout_str(ALWAYS, "x_end : 5.0 ,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.01 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.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, "1.0 + exp(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_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_norms, 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_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y_init : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_type_pole : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 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 <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_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_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_0D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : 1.1, x_end : 5.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.01, 1 + 0 glob_look_poles : true, glob_max_iter : 100, 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 ) = y - 1.0;"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2012-06-13T13:07:23-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "diff0"), logitem_str(html_log_file, "diff ( y , x , 1 ) = y - 1.0;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), logitem_integer(html_log_file, glob_max_terms), logitem_float(html_log_file, array_1st_rel_error ), 1 logitem_float(html_log_file, array_last_rel_error ), 1 logitem_integer(html_log_file, glob_iter), logitem_pole(html_log_file, array_type_pole ), 1 if (array_type_pole = 1) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "diff0 diffeq.max"), logitem_str(html_log_file, "diff0 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(DEBUGMASSIVE, 4, fixnum), define_variable(glob_iolevel, 5, fixnum), define_variable(INFO, 2, fixnum), define_variable(DEBUGL, 3, fixnum), define_variable(ALWAYS, 1, fixnum), define_variable(glob_normmax, 0.0, float), define_variable(MAX_UNCHANGED, 10, fixnum), define_variable(glob_current_iter, 0, fixnum), define_variable(glob_optimal_start, 0.0, float), define_variable(glob_not_yet_start_msg, true, boolean), define_variable(glob_not_yet_finished, true, boolean), define_variable(centuries_in_millinium, 10.0, float), define_variable(glob_log10normmin, 0.1, float), define_variable(glob_start, 0, fixnum), define_variable(glob_warned2, false, boolean), define_variable(glob_unchanged_h_cnt, 0, fixnum), define_variable(sec_in_min, 60.0, float), define_variable(glob_optimal_expect_sec, 0.1, float), define_variable(glob_max_minutes, 0.0, float), define_variable(glob_log10relerr, 0.0, float), define_variable(glob_small_float, 1.0E-51, float), define_variable(glob_optimal_done, false, boolean), define_variable(djd_debug, true, boolean), define_variable(glob_iter, 0, fixnum), define_variable(glob_warned, false, boolean), define_variable(glob_large_float, 9.0E+100, float), define_variable(djd_debug2, true, boolean), define_variable(glob_max_sec, 10000.0, float), define_variable(glob_h, 0.1, float), define_variable(glob_curr_iter_when_opt, 0, fixnum), define_variable(glob_max_trunc_err, 1.0E-11, float), define_variable(glob_max_iter, 1000, fixnum), define_variable(glob_last_good_h, 0.1, float), define_variable(glob_hmin, 1.0E-11, float), define_variable(glob_reached_optimal_h, false, boolean), define_variable(glob_clock_start_sec, 0.0, float), define_variable(glob_percent_done, 0.0, float), define_variable(glob_log10abserr, 0.0, float), define_variable(years_in_century, 100.0, float), define_variable(glob_display_flag, true, boolean), define_variable(glob_abserr, 1.0E-11, float), define_variable(glob_log10_abserr, 1.0E-11, float), define_variable(glob_disp_incr, 0.1, float), define_variable(glob_max_hours, 0.0, float), define_variable(glob_hmax, 1.0, float), define_variable(days_in_year, 365.0, float), define_variable(hours_in_day, 24.0, float), define_variable(glob_html_log, true, boolean), define_variable(glob_subiter_method, 3, fixnum), define_variable(glob_smallish_float, 1.0E-101, float), define_variable(glob_relerr, 1.0E-11, float), define_variable(glob_log10_relerr, 1.0E-11, float), define_variable(glob_dump_analytic, false, boolean), define_variable(glob_look_poles, false, boolean), define_variable(glob_hmin_init, 0.001, float), define_variable(glob_initial_pass, true, boolean), define_variable(glob_clock_sec, 0.0, float), define_variable(glob_almost_1, 0.999, float), define_variable(glob_dump, false, boolean), define_variable(glob_max_opt_iter, 10, fixnum), define_variable(glob_orig_start_sec, 0.0, float), define_variable(glob_optimal_clock_start_sec, 0.0, float), define_variable(glob_no_eqs, 0, fixnum), define_variable(glob_max_rel_trunc_err, 1.0E-11, float), 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/diff0postode.ode#################"), omniout_str(ALWAYS, "diff ( y , x , 1 ) = y - 1.0;"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* BEGIN FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "Digits : 32,"), omniout_str(ALWAYS, "max_terms : 30,"), omniout_str(ALWAYS, "!"), omniout_str(ALWAYS, "/* END FIRST INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "x_start : 1.1,"), omniout_str(ALWAYS, "x_end : 5.0 ,"), omniout_str(ALWAYS, "array_y_init[0 + 1] : exact_soln_y(x_start),"), omniout_str(ALWAYS, "glob_h : 0.01 ,"), omniout_str(ALWAYS, "glob_look_poles : true,"), omniout_str(ALWAYS, "glob_max_iter : 100,"), omniout_str(ALWAYS, "/* END SECOND INPUT BLOCK */"), omniout_str(ALWAYS, "/* BEGIN OVERRIDE BLOCK */"), omniout_str(ALWAYS, "glob_h : 0.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, "1.0 + exp(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_tmp0, 1 + max_terms), array(array_tmp1, 1 + max_terms), array(array_tmp2, 1 + max_terms), array(array_1st_rel_error, 1 + max_terms), array(array_y_init, 1 + max_terms), array(array_type_pole, 1 + max_terms), array(array_last_rel_error, 1 + max_terms), array(array_pole, 1 + max_terms), array(array_y, 1 + max_terms), array(array_x, 1 + max_terms), array(array_m1, 1 + max_terms), array(array_norms, 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_real_pole, 1 + 1, 1 + 3), array(array_y_set_initial, 1 + 2, 1 + max_terms), array(array_y_higher_work, 1 + 2, 1 + max_terms), array(array_complex_pole, 1 + 1, 1 + 3), term : 1, while term <= max_terms do (array_tmp0 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp1 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_tmp2 : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_1st_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y_init : 0.0, term term : 1 + term), term : 1, while term <= max_terms do (array_type_pole : 0.0, term : 1 + term), term : 1, term while term <= max_terms do (array_last_rel_error : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_pole : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_y : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_x : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term term : 1, while term <= max_terms do (array_norms : 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 <= 1 do (term : 1, while term <= 3 do (array_real_pole : 0.0, term : 1 + term), ord : 1 + ord), ord, term ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_set_initial : 0.0, ord, term term : 1 + term), ord : 1 + ord), ord : 1, while ord <= 2 do (term : 1, while term <= max_terms do (array_y_higher_work : 0.0, term : 1 + term), ord, term ord : 1 + ord), ord : 1, while ord <= 1 do (term : 1, while term <= 3 do (array_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_x, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_x : 0.0, term : 1 + term), term array(array_y, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_y : 0.0, term : 1 + term), term array(array_const_0D0, 1 + 1 + max_terms), term : 1, while term <= 1 + max_terms do (array_const_0D0 : 0.0, term : 1 + term), term array_const_0D0 : 0.0, array(array_const_1D0, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1D0 : 0.0, term : 1 + term), term array_const_1D0 : 1.0, array(array_const_1, 1 + 1 + max_terms), term : 1, 1 while term <= 1 + max_terms do (array_const_1 : 0.0, term : 1 + term), term array_const_1 : 1, array(array_m1, 1 + 1 + max_terms), term : 1, 1 while term <= max_terms do (array_m1 : 0.0, term : 1 + term), term array_m1 : - 1.0, x_start : 1.1, x_end : 5.0, 1 array_y_init : exact_soln_y(x_start), glob_h : 0.01, 1 + 0 glob_look_poles : true, glob_max_iter : 100, 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 ) = y - 1.0;"), omniout_int(INFO, "Iterations ", 32, glob_iter, 4, " "), prog_report(x_start, x_end), if glob_html_log then (logstart(html_log_file), logitem_str(html_log_file, "2012-06-13T13:07:23-05:00"), logitem_str(html_log_file, "Maxima"), logitem_str(html_log_file, "diff0"), logitem_str(html_log_file, "diff ( y , x , 1 ) = y - 1.0;"), logitem_float(html_log_file, x_start), logitem_float(html_log_file, x_end), logitem_float(html_log_file, array_x ), logitem_float(html_log_file, glob_h), 1 logitem_str(html_log_file, "16"), logitem_integer(html_log_file, glob_max_terms), logitem_float(html_log_file, array_1st_rel_error ), 1 logitem_float(html_log_file, array_last_rel_error ), 1 logitem_integer(html_log_file, glob_iter), logitem_pole(html_log_file, array_type_pole ), 1 if (array_type_pole = 1) or (array_type_pole = 2) 1 1 then (logitem_float(html_log_file, array_pole ), 1 logitem_float(html_log_file, array_pole ), 0) 2 else (logitem_str(html_log_file, "NA"), logitem_str(html_log_file, "NA"), 0), logitem_time(html_log_file, convfloat(glob_clock_sec)), if glob_percent_done < 100.0 then (logitem_time(html_log_file, convfloat(glob_optimal_expect_sec)), 0) else (logitem_str(html_log_file, "Done"), 0), log_revs(html_log_file, " 090 "), logitem_str(html_log_file, "diff0 diffeq.max"), logitem_str(html_log_file, "diff0 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/diff0postode.ode#################" "diff ( y , x , 1 ) = y - 1.0;" "!" "/* BEGIN FIRST INPUT BLOCK */" "Digits : 32," "max_terms : 30," "!" "/* END FIRST INPUT BLOCK */" "/* BEGIN SECOND INPUT BLOCK */" "x_start : 1.1," "x_end : 5.0 ," "array_y_init[0 + 1] : exact_soln_y(x_start)," "glob_h : 0.01 ," "glob_look_poles : true," "glob_max_iter : 100," "/* 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) := (" "1.0 + exp(x) " ");" "" "/* END USER DEF BLOCK */" "#######END OF ECHO OF PROBLEM#################" "START of Soultion" x[1] = 1.1 " " y[1] (analytic) = 4.004166023946434 " " y[1] (numeric) = 4.004166023946434 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1001 " " y[1] (analytic) = 4.004466455570158 " " y[1] (numeric) = 4.004466455570160 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.217969433767340600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1002 " " y[1] (analytic) = 4.004766917238548 " " y[1] (numeric) = 4.004766917238550 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.217803028378392800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1003 " " y[1] (analytic) = 4.0050674089546074 " " y[1] (numeric) = 4.005067408954608 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.217636631319409600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1004 " " y[1] (analytic) = 4.0053679307213415 " " y[1] (numeric) = 4.0053679307213415 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1005 " " y[1] (analytic) = 4.005668482541754 " " y[1] (numeric) = 4.005668482541754 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1006 " " y[1] (analytic) = 4.005969064418851 " " y[1] (numeric) = 4.005969064418852 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.217137490124312400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1007 " " y[1] (analytic) = 4.00626967635564 " " y[1] (numeric) = 4.0062696763556405 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.216971126387251600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1008 " " y[1] (analytic) = 4.006570318355125 " " y[1] (numeric) = 4.006570318355125 " " absolute error = 0.0 " " relative error = 0.0 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1009 " " y[1] (analytic) = 4.006870990420313 " " y[1] (numeric) = 4.006870990420314 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.216638423906323600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.101 " " y[1] (analytic) = 4.007171692554211 " " y[1] (numeric) = 4.007171692554212 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.216472085162868300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.39853378730132600000000E-8 " " Order of pole = 0.4999999999855511 " " x[1] = 1.1011 " " y[1] (analytic) = 4.0074724247598255 " " y[1] (numeric) = 4.007472424759827 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.432611509502053500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1012 " " y[1] (analytic) = 4.007773187040165 " " y[1] (numeric) = 4.007773187040167 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.43227886534200800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1013 " " y[1] (analytic) = 4.008073979398237 " " y[1] (numeric) = 4.008073979398238 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.215973118923005300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1014 " " y[1] (analytic) = 4.008374801837048 " " y[1] (numeric) = 4.008374801837049 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.21580681350723700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1015 " " y[1] (analytic) = 4.008675654359607 " " y[1] (numeric) = 4.0086756543596085 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.43128103284780900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1016 " " y[1] (analytic) = 4.008976536968922 " " y[1] (numeric) = 4.008976536968924 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.430948455346424600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1017 " " y[1] (analytic) = 4.009277449668003 " " y[1] (numeric) = 4.009277449668005 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.430615894510731600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1018 " " y[1] (analytic) = 4.00957839245986 " " y[1] (numeric) = 4.0095783924598605 " " absolute error = 8.8817841970012520000000000000000E-16 " " relative error = 2.215141675170569600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.778769638384249000000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1018999999999999 " " y[1] (analytic) = 4.009879365347499 " " y[1] (numeric) = 4.0098793653475004 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.42995082283805900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1019999999999999 " " y[1] (analytic) = 4.010180368333932 " " y[1] (numeric) = 4.010180368333934 " " absolute error = 1.7763568394002505000000000000000E-15 " " relative error = 4.429618312001899000000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1020999999999999 " " y[1] (analytic) = 4.010481401422169 " " y[1] (numeric) = 4.0104814014221715 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.64392872674960500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1021999999999998 " " y[1] (analytic) = 4.01078246461522 " " y[1] (numeric) = 4.010782464615223 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.64343001049796800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1022999999999998 " " y[1] (analytic) = 4.011083557916095 " " y[1] (numeric) = 4.011083557916098 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85724175899807500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1023999999999998 " " y[1] (analytic) = 4.011384681327806 " " y[1] (numeric) = 4.01138468132781 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85657687066930500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1024999999999998 " " y[1] (analytic) = 4.011685834853365 " " y[1] (numeric) = 4.011685834853368 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.64193401175884900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1025999999999998 " " y[1] (analytic) = 4.01198701849578 " " y[1] (numeric) = 4.011987018495784 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85524719402637700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1026999999999998 " " y[1] (analytic) = 4.012288232258068 " " y[1] (numeric) = 4.01228823225807 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.64093680428538700000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1027999999999998 " " y[1] (analytic) = 4.012589476143237 " " y[1] (numeric) = 4.01258947614324 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.64043823805627800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1028999999999998 " " y[1] (analytic) = 4.0128907501543 " " y[1] (numeric) = 4.012890750154304 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85325292911075400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1029999999999998 " " y[1] (analytic) = 4.013192054294272 " " y[1] (numeric) = 4.013192054294275 " " absolute error = 2.6645352591003757000000000000000E-15 " " relative error = 6.63944118061635900000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1030999999999997 " " y[1] (analytic) = 4.013493388566164 " " y[1] (numeric) = 4.013493388566167 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.851923585875701000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1031999999999997 " " y[1] (analytic) = 4.01379475297299 " " y[1] (numeric) = 4.013794752972993 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85125896427322500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1032999999999997 " " y[1] (analytic) = 4.014096147517763 " " y[1] (numeric) = 4.014096147517766 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.85059437601520500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1033999999999997 " " y[1] (analytic) = 4.014397572203498 " " y[1] (numeric) = 4.014397572203501 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.8499298211024500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1034999999999997 " " y[1] (analytic) = 4.014699027033208 " " y[1] (numeric) = 4.0146990270332115 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84926529953577600000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1035999999999997 " " y[1] (analytic) = 4.015000512009909 " " y[1] (numeric) = 4.015000512009912 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84860081131599300000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1036999999999997 " " y[1] (analytic) = 4.015302027136615 " " y[1] (numeric) = 4.015302027136618 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84793635644391500000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1037999999999997 " " y[1] (analytic) = 4.0156035724163415 " " y[1] (numeric) = 4.015603572416345 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84727193492035400000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1038999999999997 " " y[1] (analytic) = 4.015905147852104 " " y[1] (numeric) = 4.0159051478521075 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84660754674611800000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1039999999999996 " " y[1] (analytic) = 4.016206753446918 " " y[1] (numeric) = 4.016206753446921 " " absolute error = 3.552713678800501000000000000000E-15 " " relative error = 8.84594319192202200000000000000E-14 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1040999999999996 " " y[1] (analytic) = 4.016508389203798 " " y[1] (numeric) = 4.0165083892038025 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.10565985880610960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1041999999999996 " " y[1] (analytic) = 4.016810055125763 " " y[1] (numeric) = 4.0168100551257675 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.10557682279093610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1042999999999996 " " y[1] (analytic) = 4.017111751215829 " " y[1] (numeric) = 4.017111751215833 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.10549379094483350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1043999999999996 " " y[1] (analytic) = 4.017413477477012 " " y[1] (numeric) = 4.0174134774770165 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.10541076326790350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1044999999999996 " " y[1] (analytic) = 4.01771523391233 " " y[1] (numeric) = 4.017715233912335 " " absolute error = 4.440892098500626000000000000000E-15 " " relative error = 1.10532773976024650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1045999999999996 " " y[1] (analytic) = 4.0180170205248 " " y[1] (numeric) = 4.018017020524805 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3262936645063570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1046999999999996 " " y[1] (analytic) = 4.018318837317441 " " y[1] (numeric) = 4.018318837317446 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32619404630378830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1047999999999996 " " y[1] (analytic) = 4.0186206842932695 " " y[1] (numeric) = 4.018620684293276 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.5471101719554970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1048999999999995 " " y[1] (analytic) = 4.018922561455305 " " y[1] (numeric) = 4.0189225614553115 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54699396239412170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1049999999999995 " " y[1] (analytic) = 4.019224468806567 " " y[1] (numeric) = 4.019224468806573 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32589522171751680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1050999999999995 " " y[1] (analytic) = 4.0195264063500735 " " y[1] (numeric) = 4.019526406350079 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32579562352964060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1051999999999995 " " y[1] (analytic) = 4.019828374088844 " " y[1] (numeric) = 4.019828374088850 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32569603034574020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1052999999999995 " " y[1] (analytic) = 4.020130372025898 " " y[1] (numeric) = 4.020130372025903 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3255964421659358000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1053999999999995 " " y[1] (analytic) = 4.020432400164255 " " y[1] (numeric) = 4.020432400164261 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54641300215540760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1054999999999995 " " y[1] (analytic) = 4.020734458506937 " " y[1] (numeric) = 4.0207344585069436 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54629682762228350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1055999999999995 " " y[1] (analytic) = 4.021036547056964 " " y[1] (numeric) = 4.02103654705697 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54618065892769400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1056999999999995 " " y[1] (analytic) = 4.021338665817355 " " y[1] (numeric) = 4.021338665817362 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76693085265346380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1057999999999995 " " y[1] (analytic) = 4.021640814791134 " " y[1] (numeric) = 4.021640814791140 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7667981017767810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1058999999999994 " " y[1] (analytic) = 4.021942993981321 " " y[1] (numeric) = 4.021942993981328 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.5458321878765421000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1059999999999994 " " y[1] (analytic) = 4.022245203390938 " " y[1] (numeric) = 4.022245203390944 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54571604253749880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.975148058755549000000000E-8 " " Order of pole = 0.4999999999887823 " " x[1] = 1.1060999999999994 " " y[1] (analytic) = 4.022547443023006 " " y[1] (numeric) = 4.022547443023012 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54559990303769270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1061999999999994 " " y[1] (analytic) = 4.02284971288055 " " y[1] (numeric) = 4.022849712880555 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32470037375194060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1062999999999994 " " y[1] (analytic) = 4.02315201296659 " " y[1] (numeric) = 4.023152012966595 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3246008356197320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1063999999999994 " " y[1] (analytic) = 4.0234543432841505 " " y[1] (numeric) = 4.023454343284156 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32450130249294420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1064999999999994 " " y[1] (analytic) = 4.023756703836255 " " y[1] (numeric) = 4.02375670383626 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32440177437169820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1065999999999994 " " y[1] (analytic) = 4.024059094625926 " " y[1] (numeric) = 4.024059094625931 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32430225125611340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1066999999999994 " " y[1] (analytic) = 4.024361515656188 " " y[1] (numeric) = 4.024361515656193 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32420273314631020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1067999999999993 " " y[1] (analytic) = 4.024663966930065 " " y[1] (numeric) = 4.024663966930070 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3241032200424080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1068999999999993 " " y[1] (analytic) = 4.0249664484505825 " " y[1] (numeric) = 4.024966448450588 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3240037119445272000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1069999999999993 " " y[1] (analytic) = 4.025268960220764 " " y[1] (numeric) = 4.025268960220770 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32390420885278720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1070999999999993 " " y[1] (analytic) = 4.0255715022436345 " " y[1] (numeric) = 4.025571502243640 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54443882922852580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1071999999999993 " " y[1] (analytic) = 4.025874074522221 " " y[1] (numeric) = 4.025874074522227 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32370521768820830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1072999999999993 " " y[1] (analytic) = 4.0261766770595475 " " y[1] (numeric) = 4.026176677059554 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.5442066845515440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1073999999999993 " " y[1] (analytic) = 4.026479309858641 " " y[1] (numeric) = 4.026479309858647 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54409062097456720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1074999999999993 " " y[1] (analytic) = 4.026781972922528 " " y[1] (numeric) = 4.026781972922534 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54397456323878580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1075999999999993 " " y[1] (analytic) = 4.027084666254234 " " y[1] (numeric) = 4.0270846662542406 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.5438585113443390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1076999999999992 " " y[1] (analytic) = 4.027387389856788 " " y[1] (numeric) = 4.027387389856794 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54374246529136600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1077999999999992 " " y[1] (analytic) = 4.027690143733215 " " y[1] (numeric) = 4.0276901437332215 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54362642508000550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1078999999999992 " " y[1] (analytic) = 4.027992927886544 " " y[1] (numeric) = 4.02799292788655 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54351039071039730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1079999999999992 " " y[1] (analytic) = 4.028295742319802 " " y[1] (numeric) = 4.028295742319808 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.543394362182679800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1080999999999992 " " y[1] (analytic) = 4.028598587036017 " " y[1] (numeric) = 4.028598587036024 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76374667371084930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1081999999999992 " " y[1] (analytic) = 4.028901462038219 " " y[1] (numeric) = 4.028901462038225 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54316232265347460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1082999999999992 " " y[1] (analytic) = 4.029204367329434 " " y[1] (numeric) = 4.029204367329440 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54304631165226360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1083999999999992 " " y[1] (analytic) = 4.029507302912694 " " y[1] (numeric) = 4.0295073029127 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54293030649349960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1084999999999992 " " y[1] (analytic) = 4.029810268791026 " " y[1] (numeric) = 4.029810268791032 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.542814307177319800000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1085999999999991 " " y[1] (analytic) = 4.030113264967461 " " y[1] (numeric) = 4.030113264967468 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54269831370386400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1086999999999991 " " y[1] (analytic) = 4.0304162914450306 " " y[1] (numeric) = 4.030416291445036 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32221342234851690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1087999999999991 " " y[1] (analytic) = 4.030719348226760 " " y[1] (numeric) = 4.030719348226767 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54246634428567670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.108899999999999 " " y[1] (analytic) = 4.031022435315686 " " y[1] (numeric) = 4.031022435315691 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.3220146014353330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.108999999999999 " " y[1] (analytic) = 4.031325552714835 " " y[1] (numeric) = 4.03132555271484 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32191519849146650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.109099999999999 " " y[1] (analytic) = 4.031628700427240 " " y[1] (numeric) = 4.031628700427245 " " absolute error = 5.329070518200751000000000000000E-15 " " relative error = 1.32181580055624160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.109199999999999 " " y[1] (analytic) = 4.03193187845593 " " y[1] (numeric) = 4.031931878455937 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54200247556807330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.12488174173319200000000E-8 " " Order of pole = 0.4999999999806217 " " x[1] = 1.109299999999999 " " y[1] (analytic) = 4.03223508680394 " " y[1] (numeric) = 4.032235086803947 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76215602628292140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.109399999999999 " " y[1] (analytic) = 4.032538325474302 " " y[1] (numeric) = 4.032538325474309 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54177057627086800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.109499999999999 " " y[1] (analytic) = 4.032841594470046 " " y[1] (numeric) = 4.032841594470053 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76189101187216920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.109599999999999 " " y[1] (analytic) = 4.033144893794207 " " y[1] (numeric) = 4.033144893794214 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76175851468518050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.109699999999999 " " y[1] (analytic) = 4.033448223449816 " " y[1] (numeric) = 4.033448223449823 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7616260241773270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.109799999999999 " " y[1] (analytic) = 4.033751583439908 " " y[1] (numeric) = 4.033751583439915 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76149354034876550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.109899999999999 " " y[1] (analytic) = 4.034054973767516 " " y[1] (numeric) = 4.034054973767522 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54119093029969680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.109999999999999 " " y[1] (analytic) = 4.034358394435673 " " y[1] (numeric) = 4.034358394435679 " " absolute error = 6.217248937900877000000000000000E-15 " " relative error = 1.54107501863888020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.110099999999999 " " y[1] (analytic) = 4.034661845447413 " " y[1] (numeric) = 4.03466184544742 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7610961289404078000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.110199999999999 " " y[1] (analytic) = 4.034965326805773 " " y[1] (numeric) = 4.03496532680578 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76096367183058770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.110299999999999 " " y[1] (analytic) = 4.035268838513787 " " y[1] (numeric) = 4.035268838513794 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76083122140084540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.110399999999999 " " y[1] (analytic) = 4.035572380574488 " " y[1] (numeric) = 4.035572380574496 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.98078612485775570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.110499999999999 " " y[1] (analytic) = 4.035875952990914 " " y[1] (numeric) = 4.035875952990920 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.76056634058222220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.110599999999999 " " y[1] (analytic) = 4.036179555766099 " " y[1] (numeric) = 4.036179555766106 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7604339101936550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.110699999999999 " " y[1] (analytic) = 4.036483188903079 " " y[1] (numeric) = 4.0364831889030865 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.98033917229651700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.110799999999999 " " y[1] (analytic) = 4.036786852404890 " " y[1] (numeric) = 4.036786852404899 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.98019020314114090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1108999999999989 " " y[1] (analytic) = 4.037090546274571 " " y[1] (numeric) = 4.037090546274580 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.98004124150191030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1109999999999989 " " y[1] (analytic) = 4.037394270515158 " " y[1] (numeric) = 4.037394270515166 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97989228737900040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1110999999999989 " " y[1] (analytic) = 4.0376980251296875 " " y[1] (numeric) = 4.037698025129695 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75977185846452250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1111999999999989 " " y[1] (analytic) = 4.038001810121196 " " y[1] (numeric) = 4.038001810121204 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.9795944016828480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1112999999999988 " " y[1] (analytic) = 4.038305625492724 " " y[1] (numeric) = 4.038305625492732 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97944547010995680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1113999999999988 " " y[1] (analytic) = 4.038609471247307 " " y[1] (numeric) = 4.038609471247315 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97929654605408930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1114999999999988 " " y[1] (analytic) = 4.038913347387986 " " y[1] (numeric) = 4.038913347387994 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97914762951542120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1115999999999988 " " y[1] (analytic) = 4.039217253917798 " " y[1] (numeric) = 4.039217253917806 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.9789987204941280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1116999999999988 " " y[1] (analytic) = 4.039521190839783 " " y[1] (numeric) = 4.03952119083979 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7589776168803420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1117999999999988 " " y[1] (analytic) = 4.0398251581569795 " " y[1] (numeric) = 4.039825158156987 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7588452666705480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1118999999999988 " " y[1] (analytic) = 4.040129155872427 " " y[1] (numeric) = 4.040129155872434 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75871292314333300000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1119999999999988 " " y[1] (analytic) = 4.040433183989167 " " y[1] (numeric) = 4.040433183989174 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75858058629885070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1120999999999988 " " y[1] (analytic) = 4.040737242510239 " " y[1] (numeric) = 4.040737242510246 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7584482561372580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1121999999999987 " " y[1] (analytic) = 4.041041331438683 " " y[1] (numeric) = 4.04104133143869 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.758315932658710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1122999999999987 " " y[1] (analytic) = 4.0413454507775395 " " y[1] (numeric) = 4.0413454507775475 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.9779565678462818000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1123999999999987 " " y[1] (analytic) = 4.041649600529851 " " y[1] (numeric) = 4.041649600529860 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97780771897028970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1124999999999987 " " y[1] (analytic) = 4.04195378069866 " " y[1] (numeric) = 4.041953780698667 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75791900232288520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1125999999999987 " " y[1] (analytic) = 4.042257991287006 " " y[1] (numeric) = 4.042257991287013 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75778670557806740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1126999999999987 " " y[1] (analytic) = 4.04256223229793 " " y[1] (numeric) = 4.042562232297938 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97736121745670400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1127999999999987 " " y[1] (analytic) = 4.042866503734479 " " y[1] (numeric) = 4.042866503734486 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75752213214004780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1128999999999987 " " y[1] (analytic) = 4.043170805599692 " " y[1] (numeric) = 4.043170805599699 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75738985544715560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1129999999999987 " " y[1] (analytic) = 4.043475137896613 " " y[1] (numeric) = 4.04347513789662 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75725758543854780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.00443499071372900000000E-8 " " Order of pole = 0.499999999988777 " " x[1] = 1.1130999999999986 " " y[1] (analytic) = 4.043779500628286 " " y[1] (numeric) = 4.043779500628293 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75712532211437930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1131999999999986 " " y[1] (analytic) = 4.044083893797754 " " y[1] (numeric) = 4.044083893797760 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7569930654748050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1132999999999986 " " y[1] (analytic) = 4.04438831740806 " " y[1] (numeric) = 4.0443883174080675 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75686081551997940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1133999999999986 " " y[1] (analytic) = 4.04469277146225 " " y[1] (numeric) = 4.044692771462257 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75672857225005640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1134999999999986 " " y[1] (analytic) = 4.044997255963367 " " y[1] (numeric) = 4.0449972559633744 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75659633566519040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1135999999999986 " " y[1] (analytic) = 4.045301770914458 " " y[1] (numeric) = 4.045301770914465 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75646410576553590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1136999999999986 " " y[1] (analytic) = 4.045606316318565 " " y[1] (numeric) = 4.0456063163185725 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7563318825512470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1137999999999986 " " y[1] (analytic) = 4.045910892178736 " " y[1] (numeric) = 4.0459108921787434 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75619966602247770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1138999999999986 " " y[1] (analytic) = 4.046215498498016 " " y[1] (numeric) = 4.046215498498023 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75606745617938200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1139999999999985 " " y[1] (analytic) = 4.046520135279450 " " y[1] (numeric) = 4.046520135279459 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97542715964987820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1140999999999985 " " y[1] (analytic) = 4.046824802526087 " " y[1] (numeric) = 4.046824802526095 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97527843861968060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1141999999999985 " " y[1] (analytic) = 4.047129500240972 " " y[1] (numeric) = 4.04712950024098 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97512972511138470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1142999999999985 " " y[1] (analytic) = 4.047434228427152 " " y[1] (numeric) = 4.04743422842716 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97498101912516380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1143999999999985 " " y[1] (analytic) = 4.047738987087673 " " y[1] (numeric) = 4.047738987087682 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19425813406798980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1144999999999985 " " y[1] (analytic) = 4.048043776225585 " " y[1] (numeric) = 4.048043776225593 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97468362971963770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1145999999999985 " " y[1] (analytic) = 4.048348595843935 " " y[1] (numeric) = 4.048348595843942 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75514217448949130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1146999999999985 " " y[1] (analytic) = 4.048653445945769 " " y[1] (numeric) = 4.048653445945777 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97438627040448370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1147999999999985 " " y[1] (analytic) = 4.048958326534140 " " y[1] (numeric) = 4.048958326534147 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97423760203122660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1148999999999984 " " y[1] (analytic) = 4.049263237612093 " " y[1] (numeric) = 4.0492632376121005 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.7547457254942930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1149999999999984 " " y[1] (analytic) = 4.049568179182678 " " y[1] (numeric) = 4.049568179182686 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97394028785421530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1150999999999984 " " y[1] (analytic) = 4.049873151248946 " " y[1] (numeric) = 4.049873151248954 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97379164205080560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1151999999999984 " " y[1] (analytic) = 4.0501781538139445 " " y[1] (numeric) = 4.0501781538139525 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97364300377102230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1152999999999984 " " y[1] (analytic) = 4.050483186880726 " " y[1] (numeric) = 4.050483186880733 " " absolute error = 7.105427357601002000000000000000E-15 " " relative error = 1.75421722045781080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1153999999999984 " " y[1] (analytic) = 4.050788250452338 " " y[1] (numeric) = 4.050788250452346 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97334574978302260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1154999999999984 " " y[1] (analytic) = 4.051093344531832 " " y[1] (numeric) = 4.051093344531841 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19244126008350050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1155999999999984 " " y[1] (analytic) = 4.051398469122260 " " y[1] (numeric) = 4.05139846912227 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19227613987954620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1156999999999984 " " y[1] (analytic) = 4.051703624226674 " " y[1] (numeric) = 4.051703624226683 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.1921110280361310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1157999999999983 " " y[1] (analytic) = 4.0520088098481235 " " y[1] (numeric) = 4.052008809848132 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19194592455344600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1158999999999983 " " y[1] (analytic) = 4.052314025989661 " " y[1] (numeric) = 4.05231402598967 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19178082943168070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1159999999999983 " " y[1] (analytic) = 4.052619272654338 " " y[1] (numeric) = 4.052619272654348 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4107773169381290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1160999999999983 " " y[1] (analytic) = 4.052924549845210 " " y[1] (numeric) = 4.052924549845218 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19145066427167220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1161999999999983 " " y[1] (analytic) = 4.053229857565325 " " y[1] (numeric) = 4.053229857565334 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19128559423380910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1162999999999983 " " y[1] (analytic) = 4.05353519581774 " " y[1] (numeric) = 4.053535195817749 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19112053255762720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1163999999999983 " " y[1] (analytic) = 4.0538405646055065 " " y[1] (numeric) = 4.053840564605515 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.1909554792433159000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1164999999999983 " " y[1] (analytic) = 4.0541459639316795 " " y[1] (numeric) = 4.0541459639316875 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97171139086195850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1165999999999983 " " y[1] (analytic) = 4.054451393799312 " " y[1] (numeric) = 4.05445139379932 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.9715628579309580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1166999999999982 " " y[1] (analytic) = 4.0547568542114565 " " y[1] (numeric) = 4.054756854211465 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19046036947350480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1167999999999982 " " y[1] (analytic) = 4.055062345171171 " " y[1] (numeric) = 4.05506234517118 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19029534960857340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1168999999999982 " " y[1] (analytic) = 4.055367866681510 " " y[1] (numeric) = 4.055367866681518 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.19013033810646130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1169999999999982 " " y[1] (analytic) = 4.055673418745526 " " y[1] (numeric) = 4.055673418745535 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18996533496735730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1170999999999982 " " y[1] (analytic) = 4.055979001366277 " " y[1] (numeric) = 4.0559790013662855 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18980034019145060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1171999999999982 " " y[1] (analytic) = 4.0562846145468185 " " y[1] (numeric) = 4.0562846145468265 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.97067181840103700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1172999999999982 " " y[1] (analytic) = 4.056590258290205 " " y[1] (numeric) = 4.056590258290214 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.1894703757299852000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1173999999999982 " " y[1] (analytic) = 4.056895932599495 " " y[1] (numeric) = 4.056895932599504 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18930540604480420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1174999999999982 " " y[1] (analytic) = 4.057201637477744 " " y[1] (numeric) = 4.057201637477753 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18914044472357660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1175999999999982 " " y[1] (analytic) = 4.05750737292801 " " y[1] (numeric) = 4.057507372928018 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.1889754917664908000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1176999999999981 " " y[1] (analytic) = 4.057813138953349 " " y[1] (numeric) = 4.057813138953358 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18881054717373540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1177999999999981 " " y[1] (analytic) = 4.05811893555682 " " y[1] (numeric) = 4.058118935556828 " " absolute error = 7.993605777301127000000000000000E-15 " " relative error = 1.96978104985094850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1178999999999981 " " y[1] (analytic) = 4.058424762741480 " " y[1] (numeric) = 4.058424762741488 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18848068308196950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.117999999999998 " " y[1] (analytic) = 4.058730620510387 " " y[1] (numeric) = 4.058730620510396 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18831576358333560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.118099999999998 " " y[1] (analytic) = 4.059036508866601 " " y[1] (numeric) = 4.05903650886661 " " absolute error = 8.881784197001252000000000000000E-15 " " relative error = 2.18815085244978470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.118199999999998 " " y[1] (analytic) = 4.0593424278131796 " " y[1] (numeric) = 4.059342427813190 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4067845446496570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.118299999999998 " " y[1] (analytic) = 4.059648377353183 " " y[1] (numeric) = 4.059648377353192 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.40660316080655630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.118399999999998 " " y[1] (analytic) = 4.05995435748967 " " y[1] (numeric) = 4.05995435748968 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.40642178616566730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.118499999999998 " " y[1] (analytic) = 4.060260368225701 " " y[1] (numeric) = 4.060260368225710 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.40624042072719760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.118599999999998 " " y[1] (analytic) = 4.060566409564336 " " y[1] (numeric) = 4.060566409564346 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4060590644913530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.118699999999998 " " y[1] (analytic) = 4.060872481508634 " " y[1] (numeric) = 4.060872481508644 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.62459387359091630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.118799999999998 " " y[1] (analytic) = 4.061178584061658 " " y[1] (numeric) = 4.061178584061667 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4056963796283648000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.118899999999998 " " y[1] (analytic) = 4.061484717226467 " " y[1] (numeric) = 4.0614847172264765 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4055150510016330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.118999999999998 " " y[1] (analytic) = 4.061790881006123 " " y[1] (numeric) = 4.061790881006133 " " absolute error = 9.769962616701378000000000000000E-15 " " relative error = 2.4053337315783513000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.119099999999998 " " y[1] (analytic) = 4.062097075403688 " " y[1] (numeric) = 4.062097075403699 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.6238026414822463000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.119199999999998 " " y[1] (analytic) = 4.062403300422225 " " y[1] (numeric) = 4.062403300422235 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.62360485855595700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.119299999999998 " " y[1] (analytic) = 4.062709556064794 " " y[1] (numeric) = 4.062709556064805 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.6234070856704683000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.119399999999998 " " y[1] (analytic) = 4.063015842334458 " " y[1] (numeric) = 4.06301584233447 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.84181009972817140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.119499999999998 " " y[1] (analytic) = 4.063322159234282 " " y[1] (numeric) = 4.063322159234293 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.6230115700227885000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.119599999999998 " " y[1] (analytic) = 4.063628506767326 " " y[1] (numeric) = 4.063628506767338 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.8413816461994673000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.119699999999998 " " y[1] (analytic) = 4.063934884936656 " " y[1] (numeric) = 4.063934884936668 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.84116743575275050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.119799999999998 " " y[1] (analytic) = 4.064241293745335 " " y[1] (numeric) = 4.064241293745346 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.84095323618478060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.119899999999998 " " y[1] (analytic) = 4.064547733196426 " " y[1] (numeric) = 4.064547733196438 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.84073904749579940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1199999999999979 " " y[1] (analytic) = 4.064854203292995 " " y[1] (numeric) = 4.064854203293007 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.840524869686049700000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.975148058754353600000000E-8 " " Order of pole = 0.4999999999887823 " " x[1] = 1.1200999999999979 " " y[1] (analytic) = 4.065160704038107 " " y[1] (numeric) = 4.065160704038118 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.84031070275577340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1201999999999979 " " y[1] (analytic) = 4.065467235434825 " " y[1] (numeric) = 4.065467235434836 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.62162758157404100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1202999999999979 " " y[1] (analytic) = 4.065773797486216 " " y[1] (numeric) = 4.0657737974862265 " " absolute error = 1.065814103640150300000000000000E-14 " " relative error = 2.62142990910886660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1203999999999978 " " y[1] (analytic) = 4.066080390195344 " " y[1] (numeric) = 4.0660803901953555 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.8396682672441986000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1204999999999978 " " y[1] (analytic) = 4.066387013565276 " " y[1] (numeric) = 4.066387013565288 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05787369335994150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1205999999999978 " " y[1] (analytic) = 4.066693667599079 " " y[1] (numeric) = 4.066693667599090 " " absolute error = 1.154631945610162800000000000000E-14 " " relative error = 2.8392400313049443000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1206999999999978 " " y[1] (analytic) = 4.067000352299818 " " y[1] (numeric) = 4.06700035229983 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0574125396301627000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1207999999999978 " " y[1] (analytic) = 4.067307067670561 " " y[1] (numeric) = 4.067307067670574 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05718198034240660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1208999999999978 " " y[1] (analytic) = 4.067613813714375 " " y[1] (numeric) = 4.067613813714387 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05695143277308570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1209999999999978 " " y[1] (analytic) = 4.067920590434326 " " y[1] (numeric) = 4.067920590434339 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0567208969224590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1210999999999978 " " y[1] (analytic) = 4.068227397833484 " " y[1] (numeric) = 4.068227397833496 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05649037279078550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1211999999999978 " " y[1] (analytic) = 4.068534235914916 " " y[1] (numeric) = 4.068534235914928 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05625986037832400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1212999999999977 " " y[1] (analytic) = 4.06884110468169 " " y[1] (numeric) = 4.068841104681702 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0560293596853344000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1213999999999977 " " y[1] (analytic) = 4.069148004136875 " " y[1] (numeric) = 4.0691480041368875 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0557988707120740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1214999999999977 " " y[1] (analytic) = 4.06945493428354 " " y[1] (numeric) = 4.069454934283553 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.273823278705860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1215999999999977 " " y[1] (analytic) = 4.0697618951247545 " " y[1] (numeric) = 4.069761895124768 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.27357635134904800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1216999999999977 " " y[1] (analytic) = 4.070068886663589 " " y[1] (numeric) = 4.070068886663601 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0551074741132570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1217999999999977 " " y[1] (analytic) = 4.070375908903111 " " y[1] (numeric) = 4.070375908903124 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05487703202150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1218999999999977 " " y[1] (analytic) = 4.0706829618463924 " " y[1] (numeric) = 4.070682961846406 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.27283564462581940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1219999999999977 " " y[1] (analytic) = 4.0709900454965045 " " y[1] (numeric) = 4.070990045496517 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05441618300130800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1220999999999977 " " y[1] (analytic) = 4.071297159856515 " " y[1] (numeric) = 4.071297159856528 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.27234190293577360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1221999999999976 " " y[1] (analytic) = 4.071604304929500 " " y[1] (numeric) = 4.071604304929512 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.0539553808672620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1222999999999976 " " y[1] (analytic) = 4.071911480718525 " " y[1] (numeric) = 4.071911480718538 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.27184821148198800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1223999999999976 " " y[1] (analytic) = 4.072218687226666 " " y[1] (numeric) = 4.0722186872266795 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.2716013845943820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1224999999999976 " " y[1] (analytic) = 4.072525924456995 " " y[1] (numeric) = 4.072525924457008 " " absolute error = 1.243449787580175300000000000000E-14 " " relative error = 3.05326426558222340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1225999999999976 " " y[1] (analytic) = 4.072833192412582 " " y[1] (numeric) = 4.072833192412595 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.27110776849912240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1226999999999976 " " y[1] (analytic) = 4.073140491096500 " " y[1] (numeric) = 4.073140491096515 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4889183779114880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1227999999999976 " " y[1] (analytic) = 4.073447820511825 " " y[1] (numeric) = 4.07344782051184 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4886551494886760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1228999999999976 " " y[1] (analytic) = 4.073755180661628 " " y[1] (numeric) = 4.073755180661642 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48839193446425670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1229999999999976 " " y[1] (analytic) = 4.074062571548982 " " y[1] (numeric) = 4.074062571548997 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.70613677864093050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838598500000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1230999999999975 " " y[1] (analytic) = 4.074369993176962 " " y[1] (numeric) = 4.074369993176977 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.7058571411500020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1231999999999975 " " y[1] (analytic) = 4.074677445548643 " " y[1] (numeric) = 4.074677445548657 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.487602369784280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1232999999999975 " " y[1] (analytic) = 4.074984928667098 " " y[1] (numeric) = 4.074984928667112 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48733920835635760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1233999999999975 " " y[1] (analytic) = 4.075292442535401 " " y[1] (numeric) = 4.075292442535416 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48707606032829100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1234999999999975 " " y[1] (analytic) = 4.075599987156629 " " y[1] (numeric) = 4.075599987156644 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.7047387335566450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1235999999999975 " " y[1] (analytic) = 4.075907562533857 " " y[1] (numeric) = 4.075907562533872 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.70445916725244850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1236999999999975 " " y[1] (analytic) = 4.076215168670162 " " y[1] (numeric) = 4.076215168670176 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4862866966461440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1237999999999975 " " y[1] (analytic) = 4.076522805568617 " " y[1] (numeric) = 4.076522805568631 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48602360222042050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1238999999999975 " " y[1] (analytic) = 4.076830473232300 " " y[1] (numeric) = 4.076830473232315 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4857605211960110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1239999999999974 " " y[1] (analytic) = 4.077138171664289 " " y[1] (numeric) = 4.077138171664303 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4854974535732080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1240999999999974 " " y[1] (analytic) = 4.077445900867659 " " y[1] (numeric) = 4.077445900867673 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4852343993523033000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1241999999999974 " " y[1] (analytic) = 4.077753660845488 " " y[1] (numeric) = 4.077753660845502 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4849713585335860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1242999999999974 " " y[1] (analytic) = 4.0780614516008535 " " y[1] (numeric) = 4.078061451600868 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4847083311173493000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1243999999999974 " " y[1] (analytic) = 4.078369273136834 " " y[1] (numeric) = 4.078369273136848 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.2666674847848890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1244999999999974 " " y[1] (analytic) = 4.078677125456507 " " y[1] (numeric) = 4.078677125456520 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.26642092171263330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1245999999999974 " " y[1] (analytic) = 4.0789850085629515 " " y[1] (numeric) = 4.078985008562965 " " absolute error = 1.332267629550187800000000000000E-14 " " relative error = 3.26617437120601930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1246999999999974 " " y[1] (analytic) = 4.079292922459246 " " y[1] (numeric) = 4.07929292245926 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4836563554830080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1247999999999974 " " y[1] (analytic) = 4.07960086714847 " " y[1] (numeric) = 4.079600867148484 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4833933950835260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1248999999999973 " " y[1] (analytic) = 4.079908842633702 " " y[1] (numeric) = 4.079908842633716 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48313044808826600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1249999999999973 " " y[1] (analytic) = 4.080216848918023 " " y[1] (numeric) = 4.080216848918037 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48286751449751700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1250999999999973 " " y[1] (analytic) = 4.080524886004513 " " y[1] (numeric) = 4.080524886004527 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4826045943115680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1251999999999973 " " y[1] (analytic) = 4.080832953896251 " " y[1] (numeric) = 4.080832953896265 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.48234168753071060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1252999999999973 " " y[1] (analytic) = 4.081141052596319 " " y[1] (numeric) = 4.081141052596333 " " absolute error = 1.421085471520200400000000000000E-14 " " relative error = 3.4820787941552320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1253999999999973 " " y[1] (analytic) = 4.0814491821077965 " " y[1] (numeric) = 4.081449182107812 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.6994294088220120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1254999999999973 " " y[1] (analytic) = 4.081757342433767 " " y[1] (numeric) = 4.081757342433782 " " absolute error = 1.50990331349021300000000000000E-14 " " relative error = 3.69915011309791900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1255999999999973 " " y[1] (analytic) = 4.08206553357731 " " y[1] (numeric) = 4.082065533577326 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 3.91645146877196040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1256999999999973 " " y[1] (analytic) = 4.08237375554151 " " y[1] (numeric) = 4.082373755541526 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 3.91615577405200600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1257999999999972 " " y[1] (analytic) = 4.082682008329447 " " y[1] (numeric) = 4.082682008329463 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 3.9158600944147270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1258999999999972 " " y[1] (analytic) = 4.082990291944203 " " y[1] (numeric) = 4.08299029194422 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.13309578707491960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1259999999999972 " " y[1] (analytic) = 4.083298606388864 " " y[1] (numeric) = 4.08329860638888 " " absolute error = 1.598721155460225400000000000000E-14 " " relative error = 3.9152687803894960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1260999999999972 " " y[1] (analytic) = 4.083606951666509 " " y[1] (numeric) = 4.083606951666526 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.1324716541134250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1261999999999972 " " y[1] (analytic) = 4.083915327780224 " " y[1] (numeric) = 4.083915327780241 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3496416963320680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.26909979908956760000000E-8 " " Order of pole = 0.4999999999928608 " " x[1] = 1.1262999999999972 " " y[1] (analytic) = 4.084223734733093 " " y[1] (numeric) = 4.08422373473311 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.1318475848398150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1263999999999972 " " y[1] (analytic) = 4.084532172528200 " " y[1] (numeric) = 4.084532172528216 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.131535574086820400000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1264999999999972 " " y[1] (analytic) = 4.084840641168626 " " y[1] (numeric) = 4.084840641168644 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3486563992177063000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1265999999999972 " " y[1] (analytic) = 4.08514914065746 " " y[1] (numeric) = 4.085149140657478 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3483280003685870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1266999999999971 " " y[1] (analytic) = 4.085457670997786 " " y[1] (numeric) = 4.085457670997804 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3479996182812320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1267999999999971 " " y[1] (analytic) = 4.085766232192689 " " y[1] (numeric) = 4.085766232192706 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34767125295600100000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1268999999999971 " " y[1] (analytic) = 4.086074824245253 " " y[1] (numeric) = 4.086074824245271 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34734290439325160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1269999999999971 " " y[1] (analytic) = 4.086383447158566 " " y[1] (numeric) = 4.0863834471585845 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.564365301223010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.127099999999997 " " y[1] (analytic) = 4.086692100935714 " " y[1] (numeric) = 4.086692100935732 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3466862575566306000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.127199999999997 " " y[1] (analytic) = 4.087000785579782 " " y[1] (numeric) = 4.087000785579801 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5636758572476493000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.127299999999997 " " y[1] (analytic) = 4.087309501093860 " " y[1] (numeric) = 4.087309501093878 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5633311616629440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.127399999999997 " " y[1] (analytic) = 4.08761824748103 " " y[1] (numeric) = 4.087618247481049 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5629864836807243000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.127499999999997 " " y[1] (analytic) = 4.087927024744384 " " y[1] (numeric) = 4.087927024744403 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5626418233013620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.127599999999997 " " y[1] (analytic) = 4.088235832887008 " " y[1] (numeric) = 4.088235832887027 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5622971805252340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.98068594459077800000000E-8 " " Order of pole = 0.4999999999937117 " " x[1] = 1.127699999999997 " " y[1] (analytic) = 4.088544671911990 " " y[1] (numeric) = 4.088544671912010 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5619525553527140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.127799999999997 " " y[1] (analytic) = 4.08885354182242 " " y[1] (numeric) = 4.088853541822439 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5616079477841764000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.127899999999997 " " y[1] (analytic) = 4.089162442621385 " " y[1] (numeric) = 4.0891624426214035 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5612633578199950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.127999999999997 " " y[1] (analytic) = 4.089471374311974 " " y[1] (numeric) = 4.089471374311993 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5609187854605443000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.128099999999997 " " y[1] (analytic) = 4.089780336897277 " " y[1] (numeric) = 4.089780336897295 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3434040292439970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.128199999999997 " " y[1] (analytic) = 4.090089330380383 " " y[1] (numeric) = 4.090089330380401 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34307589862602650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.128299999999997 " " y[1] (analytic) = 4.090398354764384 " " y[1] (numeric) = 4.0903983547644005 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.12561039553675460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.128399999999997 " " y[1] (analytic) = 4.090707410052366 " " y[1] (numeric) = 4.090707410052384 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.342419687692870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.128499999999997 " " y[1] (analytic) = 4.091016496247423 " " y[1] (numeric) = 4.091016496247441 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34209160737839550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.128599999999997 " " y[1] (analytic) = 4.091325613352646 " " y[1] (numeric) = 4.091325613352663 " " absolute error = 1.68753899743023800000000000000E-14 " " relative error = 4.12467536664083870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.128699999999997 " " y[1] (analytic) = 4.091634761371124 " " y[1] (numeric) = 4.091634761371142 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34143549705542600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.128799999999997 " " y[1] (analytic) = 4.091943940305951 " " y[1] (numeric) = 4.091943940305969 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.34110746704763960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.128899999999997 " " y[1] (analytic) = 4.092253150160216 " " y[1] (numeric) = 4.092253150160235 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5578184264999333000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.128999999999997 " " y[1] (analytic) = 4.0925623909370135 " " y[1] (numeric) = 4.092562390937032 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.55747403020830060000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1290999999999969 " " y[1] (analytic) = 4.092871662639435 " " y[1] (numeric) = 4.092871662639453 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5571296515254980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1291999999999969 " " y[1] (analytic) = 4.093180965270572 " " y[1] (numeric) = 4.093180965270590 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5567852904518946000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1292999999999969 " " y[1] (analytic) = 4.09349029883352 " " y[1] (numeric) = 4.093490298833538 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5564409469878625000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1293999999999969 " " y[1] (analytic) = 4.09379966333137 " " y[1] (numeric) = 4.093799663331389 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5560966211337720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1294999999999968 " " y[1] (analytic) = 4.094109058767216 " " y[1] (numeric) = 4.094109058767236 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7726928992180906000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1295999999999968 " " y[1] (analytic) = 4.094418485144155 " " y[1] (numeric) = 4.094418485144174 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.55540802225690040000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1296999999999968 " " y[1] (analytic) = 4.094727942465277 " " y[1] (numeric) = 4.094727942465297 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7719715468174720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1297999999999968 " " y[1] (analytic) = 4.095037430733680 " " y[1] (numeric) = 4.095037430733699 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7716108982920630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1298999999999968 " " y[1] (analytic) = 4.0953469499524555 " " y[1] (numeric) = 4.095346949952475 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7712502682171050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1299999999999968 " " y[1] (analytic) = 4.095656500124702 " " y[1] (numeric) = 4.095656500124721 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7708896565929826000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1300999999999968 " " y[1] (analytic) = 4.095966081253513 " " y[1] (numeric) = 4.095966081253532 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5536868332646260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1301999999999968 " " y[1] (analytic) = 4.096275693341984 " " y[1] (numeric) = 4.096275693342004 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7701684886987990000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1302999999999968 " " y[1] (analytic) = 4.096585336393213 " " y[1] (numeric) = 4.0965853363932325 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7698079324295090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1303999999999967 " " y[1] (analytic) = 4.096895010410295 " " y[1] (numeric) = 4.096895010410314 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7694473946126037000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1304999999999967 " " y[1] (analytic) = 4.097204715396327 " " y[1] (numeric) = 4.097204715396346 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7690868752484683000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1305999999999967 " " y[1] (analytic) = 4.097514451354407 " " y[1] (numeric) = 4.097514451354425 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5519660845948734000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1306999999999967 " " y[1] (analytic) = 4.097824218287630 " " y[1] (numeric) = 4.097824218287650 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5516219877036820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1307999999999967 " " y[1] (analytic) = 4.098134016199097 " " y[1] (numeric) = 4.098134016199116 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5512779084276006000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1308999999999967 " " y[1] (analytic) = 4.098443845091903 " " y[1] (numeric) = 4.098443845091922 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7676449823273340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1309999999999967 " " y[1] (analytic) = 4.098753704969148 " " y[1] (numeric) = 4.098753704969167 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5505898027222460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1310999999999967 " " y[1] (analytic) = 4.099063595833929 " " y[1] (numeric) = 4.0990635958339485 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7669241465934070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1311999999999967 " " y[1] (analytic) = 4.099373517689347 " " y[1] (numeric) = 4.099373517689367 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.766563756409449300000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1312999999999966 " " y[1] (analytic) = 4.0996834705385 " " y[1] (numeric) = 4.09968347053852 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7662033846813430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1313999999999966 " " y[1] (analytic) = 4.099993454384489 " " y[1] (numeric) = 4.099993454384507 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5492138027090395000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1314999999999966 " " y[1] (analytic) = 4.100303469230411 " " y[1] (numeric) = 4.10030346923043 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5488698467490230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1315999999999966 " " y[1] (analytic) = 4.100613515079368 " " y[1] (numeric) = 4.100613515079387 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7651223802359627000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1316999999999966 " " y[1] (analytic) = 4.10092359193446 " " y[1] (numeric) = 4.100923591934479 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5481819876834995000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1317999999999966 " " y[1] (analytic) = 4.101233699798788 " " y[1] (numeric) = 4.101233699798807 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5478380845787225000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1318999999999966 " " y[1] (analytic) = 4.101543838675454 " " y[1] (numeric) = 4.101543838675473 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.547494199093090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1319999999999966 " " y[1] (analytic) = 4.101854008567557 " " y[1] (numeric) = 4.101854008567576 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7636812993806320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1320999999999966 " " y[1] (analytic) = 4.1021642094782 " " y[1] (numeric) = 4.10216420947822 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7633210753131344000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1321999999999965 " " y[1] (analytic) = 4.102474441410487 " " y[1] (numeric) = 4.102474441410505 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.54646264835470940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1322999999999965 " " y[1] (analytic) = 4.102784704367517 " " y[1] (numeric) = 4.102784704367536 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5461188333493047000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1323999999999965 " " y[1] (analytic) = 4.103094998352395 " " y[1] (numeric) = 4.103094998352413 " " absolute error = 1.776356839400250500000000000000E-14 " " relative error = 4.3293095580617790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1324999999999965 " " y[1] (analytic) = 4.1034053233682215 " " y[1] (numeric) = 4.10340532336824 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.54543125620176600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1325999999999965 " " y[1] (analytic) = 4.1037156794181024 " " y[1] (numeric) = 4.103715679418121 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.545087494060360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1326999999999965 " " y[1] (analytic) = 4.10402606650514 " " y[1] (numeric) = 4.104026066505159 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5447437495410140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1327999999999965 " " y[1] (analytic) = 4.104336484632438 " " y[1] (numeric) = 4.104336484632457 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.54440002264409340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1328999999999965 " " y[1] (analytic) = 4.104646933803101 " " y[1] (numeric) = 4.10464693380312 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.54405631336995960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1329999999999965 " " y[1] (analytic) = 4.104957414020234 " " y[1] (numeric) = 4.1049574140202525 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5437126217189770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1330999999999964 " " y[1] (analytic) = 4.10526792528694 " " y[1] (numeric) = 4.1052679252869595 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7597198499625330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1331999999999964 " " y[1] (analytic) = 4.1055784676063265 " " y[1] (numeric) = 4.105578467606345 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5430252912879170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1332999999999964 " " y[1] (analytic) = 4.105889040981497 " " y[1] (numeric) = 4.105889040981515 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5426816525085640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1333999999999964 " " y[1] (analytic) = 4.106199645415558 " " y[1] (numeric) = 4.106199645415576 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.5423380313538130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.269099799088584500000000E-8 " " Order of pole = 0.4999999999928608 " " x[1] = 1.1334999999999964 " " y[1] (analytic) = 4.106510280911615 " " y[1] (numeric) = 4.106510280911634 " " absolute error = 1.86517468137026300000000000000E-14 " " relative error = 4.54199442782402540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1335999999999964 " " y[1] (analytic) = 4.106820947472775 " " y[1] (numeric) = 4.106820947472794 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7579199296300195000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1336999999999964 " " y[1] (analytic) = 4.107131645102145 " " y[1] (numeric) = 4.107131645102164 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7575600009570174000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1337999999999964 " " y[1] (analytic) = 4.107442373802831 " " y[1] (numeric) = 4.107442373802850 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7572000907493983000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1338999999999964 " " y[1] (analytic) = 4.107753133577941 " " y[1] (numeric) = 4.107753133577961 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7568401990075440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1339999999999963 " " y[1] (analytic) = 4.108063924430583 " " y[1] (numeric) = 4.108063924430603 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7564803257318290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1340999999999963 " " y[1] (analytic) = 4.108374746363864 " " y[1] (numeric) = 4.108374746363883 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7561204709226335000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.77876963838772200000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.1341999999999963 " " y[1] (analytic) = 4.108685599380891 " " y[1] (numeric) = 4.1086855993809115 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9719315725158053000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1342999999999963 " " y[1] (analytic) = 4.108996483484775 " " y[1] (numeric) = 4.108996483484796 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9715553992828260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1343999999999963 " " y[1] (analytic) = 4.109307398678625 " " y[1] (numeric) = 4.109307398678645 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9711792453569360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1344999999999963 " " y[1] (analytic) = 4.109618344965548 " " y[1] (numeric) = 4.109618344965568 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9708031107385310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1345999999999963 " " y[1] (analytic) = 4.109929322348654 " " y[1] (numeric) = 4.109929322348675 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1865325169683540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1346999999999963 " " y[1] (analytic) = 4.110240330831054 " " y[1] (numeric) = 4.110240330831075 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9700508994257520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1347999999999963 " " y[1] (analytic) = 4.110551370415857 " " y[1] (numeric) = 4.110551370415878 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9696748227321647000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1348999999999962 " " y[1] (analytic) = 4.110862441106175 " " y[1] (numeric) = 4.110862441106194 " " absolute error = 1.953992523340275500000000000000E-14 " " relative error = 4.7532422972890426000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1349999999999962 " " y[1] (analytic) = 4.1111735429051155 " " y[1] (numeric) = 4.111173542905136 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9689227272725606000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1350999999999962 " " y[1] (analytic) = 4.111484675815792 " " y[1] (numeric) = 4.111484675815813 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1845704784424320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1351999999999962 " " y[1] (analytic) = 4.1117958398413155 " " y[1] (numeric) = 4.111795839841337 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1841781311850480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1352999999999962 " " y[1] (analytic) = 4.112107034984797 " " y[1] (numeric) = 4.1121070349848186 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1837858040778870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1353999999999962 " " y[1] (analytic) = 4.11241826124935 " " y[1] (numeric) = 4.1124182612493705 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9674187680746350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1354999999999962 " " y[1] (analytic) = 4.112729518638085 " " y[1] (numeric) = 4.112729518638106 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.967042826552709500000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1355999999999962 " " y[1] (analytic) = 4.113040807154115 " " y[1] (numeric) = 4.113040807154136 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1826089436618340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1356999999999962 " " y[1] (analytic) = 4.113352126800553 " " y[1] (numeric) = 4.113352126800574 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1822166971596550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1357999999999961 " " y[1] (analytic) = 4.113663477580513 " " y[1] (numeric) = 4.113663477580534 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1818244708097430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1358999999999961 " " y[1] (analytic) = 4.113974859497107 " " y[1] (numeric) = 4.113974859497128 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1814322646125040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1359999999999961 " " y[1] (analytic) = 4.11428627255345 " " y[1] (numeric) = 4.114286272553471 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1810400785683490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1360999999999961 " " y[1] (analytic) = 4.114597716752655 " " y[1] (numeric) = 4.114597716752677 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1806479126776840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.136199999999996 " " y[1] (analytic) = 4.114909192097839 " " y[1] (numeric) = 4.114909192097860 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9644117766517093000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.136299999999996 " " y[1] (analytic) = 4.115220698592114 " " y[1] (numeric) = 4.115220698592134 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.964035989635180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.136399999999996 " " y[1] (analytic) = 4.115532236238596 " " y[1] (numeric) = 4.115532236238616 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9636602219335830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.136499999999996 " " y[1] (analytic) = 4.1158438050404005 " " y[1] (numeric) = 4.115843805040421 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9632844735473053000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.136599999999996 " " y[1] (analytic) = 4.116155405000642 " " y[1] (numeric) = 4.116155405000663 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1786873855409450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.136699999999996 " " y[1] (analytic) = 4.1164670361224385 " " y[1] (numeric) = 4.11646703612246 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1782953405797630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.136799999999996 " " y[1] (analytic) = 4.116778698408906 " " y[1] (numeric) = 4.116778698408926 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.9621573442842920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.136899999999996 " " y[1] (analytic) = 4.11709039186316 " " y[1] (numeric) = 4.11709039186318 " " absolute error = 2.04281036531028800000000000000E-14 " " relative error = 4.961781673163190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.136999999999996 " " y[1] (analytic) = 4.117402116488317 " " y[1] (numeric) = 4.117402116488338 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1771193266358460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.137099999999996 " " y[1] (analytic) = 4.117713872287496 " " y[1] (numeric) = 4.117713872287517 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1767273623024380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.137199999999996 " " y[1] (analytic) = 4.118025659263814 " " y[1] (numeric) = 4.118025659263835 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1763354181269850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.137299999999996 " " y[1] (analytic) = 4.118337477420388 " " y[1] (numeric) = 4.118337477420410 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1759434941098930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.137399999999996 " " y[1] (analytic) = 4.1186493267603375 " " y[1] (numeric) = 4.118649326760359 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1755515902515660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.137499999999996 " " y[1] (analytic) = 4.11896120728678 " " y[1] (numeric) = 4.118961207286802 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1751597065524080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.137599999999996 " " y[1] (analytic) = 4.119273119002834 " " y[1] (numeric) = 4.119273119002856 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3903831698050250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.137699999999996 " " y[1] (analytic) = 4.11958506191162 " " y[1] (numeric) = 4.119585061911642 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3899749996179350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.137799999999996 " " y[1] (analytic) = 4.119897036016257 " " y[1] (numeric) = 4.119897036016278 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1739841764139890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.137899999999996 " " y[1] (analytic) = 4.120209041319863 " " y[1] (numeric) = 4.120209041319884 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1735923733555460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.137999999999996 " " y[1] (analytic) = 4.12052107782556 " " y[1] (numeric) = 4.120521077825582 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1732005904582870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.138099999999996 " " y[1] (analytic) = 4.120833145536468 " " y[1] (numeric) = 4.12083314553649 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1728088277226170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1381999999999959 " " y[1] (analytic) = 4.1211452444557075 " " y[1] (numeric) = 4.121145244455729 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.172417085148940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1382999999999959 " " y[1] (analytic) = 4.1214573745864 " " y[1] (numeric) = 4.121457374586421 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1720253627376540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1383999999999959 " " y[1] (analytic) = 4.121769535931666 " " y[1] (numeric) = 4.121769535931687 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1716336604891640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1384999999999958 " " y[1] (analytic) = 4.122081728494626 " " y[1] (numeric) = 4.122081728494648 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3867103941707010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1385999999999958 " " y[1] (analytic) = 4.122393952278404 " " y[1] (numeric) = 4.1223939522784265 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3863024130022690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1386999999999958 " " y[1] (analytic) = 4.122706207286123 " " y[1] (numeric) = 4.122706207286145 " " absolute error = 2.131628207280300600000000000000E-14 " " relative error = 5.1704586747244830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1387999999999958 " " y[1] (analytic) = 4.123018493520902 " " y[1] (numeric) = 4.123018493520925 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3854865136783210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1388999999999958 " " y[1] (analytic) = 4.123330810985868 " " y[1] (numeric) = 4.12333081098589 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3850785955236400000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1389999999999958 " " y[1] (analytic) = 4.123643159684141 " " y[1] (numeric) = 4.123643159684163 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3846706983743790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1390999999999958 " " y[1] (analytic) = 4.123955539618846 " " y[1] (numeric) = 4.123955539618868 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.384262822230951000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1391999999999958 " " y[1] (analytic) = 4.124267950793106 " " y[1] (numeric) = 4.124267950793128 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3838549670937750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1392999999999958 " " y[1] (analytic) = 4.124580393210046 " " y[1] (numeric) = 4.124580393210068 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3834471329632680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1393999999999957 " " y[1] (analytic) = 4.1248928668727896 " " y[1] (numeric) = 4.124892866872812 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3830393198398450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.864292489196848500000000E-8 " " Order of pole = 0.4999999999972893 " " x[1] = 1.1394999999999957 " " y[1] (analytic) = 4.125205371784462 " " y[1] (numeric) = 4.125205371784484 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3826315277239220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1395999999999957 " " y[1] (analytic) = 4.125517907948188 " " y[1] (numeric) = 4.12551790794821 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3822237566159160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1396999999999957 " " y[1] (analytic) = 4.125830475367094 " " y[1] (numeric) = 4.125830475367116 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.381816006516240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1397999999999957 " " y[1] (analytic) = 4.126143074044304 " " y[1] (numeric) = 4.126143074044326 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.381408277425310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1398999999999957 " " y[1] (analytic) = 4.126455703982945 " " y[1] (numeric) = 4.126455703982967 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3810005693435410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1399999999999957 " " y[1] (analytic) = 4.126768365186143 " " y[1] (numeric) = 4.126768365186165 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3805928822713490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1400999999999957 " " y[1] (analytic) = 4.127081057657024 " " y[1] (numeric) = 4.127081057657047 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5953926248575140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1401999999999957 " " y[1] (analytic) = 4.127393781398716 " " y[1] (numeric) = 4.127393781398740 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5949686740036430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1402999999999957 " " y[1] (analytic) = 4.127706536414346 " " y[1] (numeric) = 4.127706536414369 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5945447450010230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1403999999999956 " " y[1] (analytic) = 4.128019322707042 " " y[1] (numeric) = 4.128019322707064 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.378962344086620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1404999999999956 " " y[1] (analytic) = 4.12833214027993 " " y[1] (numeric) = 4.128332140279952 " " absolute error = 2.22044604925031300000000000000E-14 " " relative error = 5.3785547620685170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1405999999999956 " " y[1] (analytic) = 4.12864498913614 " " y[1] (numeric) = 4.128644989136163 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5932730891049720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1406999999999956 " " y[1] (analytic) = 4.1289578692788 " " y[1] (numeric) = 4.128957869278823 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5928492475116540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1407999999999956 " " y[1] (analytic) = 4.129270780711039 " " y[1] (numeric) = 4.129270780711062 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5924254277717360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1408999999999956 " " y[1] (analytic) = 4.129583723435985 " " y[1] (numeric) = 4.129583723436008 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5920016298856450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1409999999999956 " " y[1] (analytic) = 4.129896697456770 " " y[1] (numeric) = 4.129896697456792 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5915778538538090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1410999999999956 " " y[1] (analytic) = 4.13020970277652 " " y[1] (numeric) = 4.130209702776543 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5911540996766580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1411999999999956 " " y[1] (analytic) = 4.1305227393983674 " " y[1] (numeric) = 4.130522739398391 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8057584584067230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1412999999999955 " " y[1] (analytic) = 4.130835807325443 " " y[1] (numeric) = 4.130835807325466 " " absolute error = 2.309263891220325600000000000000E-14 " " relative error = 5.5903066568881240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1413999999999955 " " y[1] (analytic) = 4.131148906560876 " " y[1] (numeric) = 4.1311489065609 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8048784670575050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 1.64643805972450180000000E-8 " " Order of pole = 0.49999999999797495 " " x[1] = 1.1414999999999955 " " y[1] (analytic) = 4.131462037107799 " " y[1] (numeric) = 4.131462037107823 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8044385054282110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1415999999999955 " " y[1] (analytic) = 4.131775198969342 " " y[1] (numeric) = 4.131775198969366 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8039985664963870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1416999999999955 " " y[1] (analytic) = 4.132088392148637 " " y[1] (numeric) = 4.132088392148660 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8035586502624750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1417999999999955 " " y[1] (analytic) = 4.132401616648815 " " y[1] (numeric) = 4.132401616648840 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8031187567269180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1418999999999955 " " y[1] (analytic) = 4.13271487247301 " " y[1] (numeric) = 4.132714872473034 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.802678885890160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1419999999999955 " " y[1] (analytic) = 4.133028159624354 " " y[1] (numeric) = 4.133028159624378 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8022390377526410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1420999999999955 " " y[1] (analytic) = 4.133341478105980 " " y[1] (numeric) = 4.133341478106003 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8017992123148040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1421999999999954 " " y[1] (analytic) = 4.13365482792102 " " y[1] (numeric) = 4.133654827921044 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8013594095770920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1422999999999954 " " y[1] (analytic) = 4.1339682090726075 " " y[1] (numeric) = 4.133968209072632 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0157685047080910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1423999999999954 " " y[1] (analytic) = 4.134281621563880 " " y[1] (numeric) = 4.134281621563903 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.8004798722038030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1424999999999954 " " y[1] (analytic) = 4.134595065397965 " " y[1] (numeric) = 4.13459506539799 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0148564389605600000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1425999999999954 " " y[1] (analytic) = 4.134908540578003 " " y[1] (numeric) = 4.134908540578028 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0144004414006140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1426999999999954 " " y[1] (analytic) = 4.135222047107126 " " y[1] (numeric) = 4.135222047107150 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0139444673838230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1427999999999954 " " y[1] (analytic) = 4.135535584988470 " " y[1] (numeric) = 4.135535584988494 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0134885169106460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1428999999999954 " " y[1] (analytic) = 4.135849154225169 " " y[1] (numeric) = 4.135849154225194 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0130325899815340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1429999999999954 " " y[1] (analytic) = 4.13616275482036 " " y[1] (numeric) = 4.1361627548203845 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0125766865969490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1430999999999953 " " y[1] (analytic) = 4.136476386777178 " " y[1] (numeric) = 4.136476386777203 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0121208067573420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1431999999999953 " " y[1] (analytic) = 4.13679005009876 " " y[1] (numeric) = 4.136790050098786 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2263672701225700000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1432999999999953 " " y[1] (analytic) = 4.137103744788243 " " y[1] (numeric) = 4.137103744788269 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.225895157633280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1433999999999953 " " y[1] (analytic) = 4.137417470848764 " " y[1] (numeric) = 4.137417470848790 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2254230695312750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1434999999999953 " " y[1] (analytic) = 4.137731228283458 " " y[1] (numeric) = 4.137731228283484 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2249510058170250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1435999999999953 " " y[1] (analytic) = 4.138045017095466 " " y[1] (numeric) = 4.138045017095491 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0098417607499330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1436999999999953 " " y[1] (analytic) = 4.1383588372879245 " " y[1] (numeric) = 4.1383588372879485 " " absolute error = 2.39808173319033800000000000000E-14 " " relative error = 5.7947650928258370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1437999999999953 " " y[1] (analytic) = 4.13867268886397 " " y[1] (numeric) = 4.138672688863995 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0089303071777420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1438999999999953 " " y[1] (analytic) = 4.138986571826743 " " y[1] (numeric) = 4.138986571826768 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.008474615714340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.59887206542486770000000E-8 " " Order of pole = 0.49999999998470024 " " x[1] = 1.1439999999999952 " " y[1] (analytic) = 4.139300486179382 " " y[1] (numeric) = 4.1393004861794065 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0080189478000070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1440999999999952 " " y[1] (analytic) = 4.139614431925025 " " y[1] (numeric) = 4.13961443192505 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0075633034351940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1441999999999952 " " y[1] (analytic) = 4.139928409066814 " " y[1] (numeric) = 4.1399284090668385 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0071076826203520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.00443499071372900000000E-8 " " Order of pole = 0.499999999988777 " " x[1] = 1.1442999999999952 " " y[1] (analytic) = 4.140242417607885 " " y[1] (numeric) = 4.140242417607910 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2211753741186480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1443999999999952 " " y[1] (analytic) = 4.140556457551382 " " y[1] (numeric) = 4.140556457551407 " " absolute error = 2.486899575160350700000000000000E-14 " " relative error = 6.0061965116423950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1444999999999952 " " y[1] (analytic) = 4.140870528900442 " " y[1] (numeric) = 4.140870528900468 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2202317101044780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1445999999999952 " " y[1] (analytic) = 4.141184631658208 " " y[1] (numeric) = 4.141184631658234 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2197599146865310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1446999999999952 " " y[1] (analytic) = 4.141498765827821 " " y[1] (numeric) = 4.141498765827847 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2192881436619660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1447999999999952 " " y[1] (analytic) = 4.141812931412420 " " y[1] (numeric) = 4.141812931412447 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4332583417564660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1448999999999951 " " y[1] (analytic) = 4.142127128415150 " " y[1] (numeric) = 4.142127128415177 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2183446747948490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1449999999999951 " " y[1] (analytic) = 4.142441356839152 " " y[1] (numeric) = 4.142441356839178 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2178729769532290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1450999999999951 " " y[1] (analytic) = 4.142755616687566 " " y[1] (numeric) = 4.142755616687592 " " absolute error = 2.575717417130363000000000000000E-14 " " relative error = 6.2174013035068590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.145199999999995 " " y[1] (analytic) = 4.143069907963536 " " y[1] (numeric) = 4.143069907963563 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4313065390926230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.145299999999995 " " y[1] (analytic) = 4.143384230670206 " " y[1] (numeric) = 4.143384230670232 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4308186515190220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.145399999999995 " " y[1] (analytic) = 4.143698584810718 " " y[1] (numeric) = 4.143698584810744 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4303307891833320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.145499999999995 " " y[1] (analytic) = 4.144012970388216 " " y[1] (numeric) = 4.144012970388243 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4298429520860280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.145599999999995 " " y[1] (analytic) = 4.144327387405844 " " y[1] (numeric) = 4.144327387405870 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4293551402275940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.145699999999995 " " y[1] (analytic) = 4.144641835866745 " " y[1] (numeric) = 4.144641835866772 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6431629320621280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.145799999999995 " " y[1] (analytic) = 4.144956315774065 " " y[1] (numeric) = 4.144956315774092 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4283795922292540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.145899999999995 " " y[1] (analytic) = 4.145270827130949 " " y[1] (numeric) = 4.145270827130975 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4278918560903080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.145999999999995 " " y[1] (analytic) = 4.14558536994054 " " y[1] (numeric) = 4.145585369940567 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4274041451921490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.146099999999995 " " y[1] (analytic) = 4.1458999442059845 " " y[1] (numeric) = 4.145899944206012 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6411470081864350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.146199999999995 " " y[1] (analytic) = 4.14621454993043 " " y[1] (numeric) = 4.146214549930456 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4264287991201140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.146299999999995 " " y[1] (analytic) = 4.14652918711702 " " y[1] (numeric) = 4.146529187117046 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4259411639471950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.146399999999995 " " y[1] (analytic) = 4.146843855768902 " " y[1] (numeric) = 4.146843855768928 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4254535540169780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.146499999999995 " " y[1] (analytic) = 4.147158555889222 " " y[1] (numeric) = 4.1471585558892485 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4249659693299420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.146599999999995 " " y[1] (analytic) = 4.147473287481128 " " y[1] (numeric) = 4.147473287481155 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4244784098865640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.146699999999995 " " y[1] (analytic) = 4.147788050547767 " " y[1] (numeric) = 4.147788050547795 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6381239048768990000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.146799999999995 " " y[1] (analytic) = 4.148102845092287 " " y[1] (numeric) = 4.148102845092314 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.423503366732690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.146899999999995 " " y[1] (analytic) = 4.148417671117835 " " y[1] (numeric) = 4.148417671117862 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4230158830231490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.269099799088584500000000E-8 " " Order of pole = 0.4999999999928608 " " x[1] = 1.146999999999995 " " y[1] (analytic) = 4.14873252862756 " " y[1] (numeric) = 4.148732528627587 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4225284245591730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.147099999999995 " " y[1] (analytic) = 4.14904741762461 " " y[1] (numeric) = 4.1490474176246375 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6361090243859470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.147199999999995 " " y[1] (analytic) = 4.149362338112135 " " y[1] (numeric) = 4.149362338112162 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6356053694821480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1472999999999949 " " y[1] (analytic) = 4.149677290093283 " " y[1] (numeric) = 4.14967729009331 " " absolute error = 2.664535259100375700000000000000E-14 " " relative error = 6.4210662006453940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1473999999999949 " " y[1] (analytic) = 4.149992273571203 " " y[1] (numeric) = 4.149992273571230 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.634598137940720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1474999999999949 " " y[1] (analytic) = 4.150307288549047 " " y[1] (numeric) = 4.150307288549074 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6340945613040720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1475999999999948 " " y[1] (analytic) = 4.150622335029963 " " y[1] (numeric) = 4.150622335029990 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6335910107574560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1476999999999948 " " y[1] (analytic) = 4.150937413017103 " " y[1] (numeric) = 4.150937413017130 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6330874863013590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1477999999999948 " " y[1] (analytic) = 4.151252522513617 " " y[1] (numeric) = 4.151252522513644 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6325839879362740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1478999999999948 " " y[1] (analytic) = 4.1515676635226555 " " y[1] (numeric) = 4.151567663522684 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.84601859681309900000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1479999999999948 " " y[1] (analytic) = 4.151882836047372 " " y[1] (numeric) = 4.1518828360474 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6315770694810930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1480999999999948 " " y[1] (analytic) = 4.152198040090916 " " y[1] (numeric) = 4.152198040090944 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8449792509852670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1481999999999948 " " y[1] (analytic) = 4.152513275656440 " " y[1] (numeric) = 4.152513275656469 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.844459618473110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1482999999999948 " " y[1] (analytic) = 4.152828542747098 " " y[1] (numeric) = 4.152828542747127 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8439400128961340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.12488174173319200000000E-8 " " Order of pole = 0.4999999999806217 " " x[1] = 1.1483999999999948 " " y[1] (analytic) = 4.153143841366040 " " y[1] (numeric) = 4.153143841366070 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.843420434254840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1484999999999947 " " y[1] (analytic) = 4.153459171516422 " " y[1] (numeric) = 4.153459171516450 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8429008825497330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1485999999999947 " " y[1] (analytic) = 4.153774533201395 " " y[1] (numeric) = 4.153774533201424 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8423813577813140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1486999999999947 " " y[1] (analytic) = 4.154089926424113 " " y[1] (numeric) = 4.154089926424142 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8418618599500880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1487999999999947 " " y[1] (analytic) = 4.154405351187732 " " y[1] (numeric) = 4.154405351187760 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6275504393985350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1488999999999947 " " y[1] (analytic) = 4.154720807495403 " " y[1] (numeric) = 4.154720807495430 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6270472280668040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1489999999999947 " " y[1] (analytic) = 4.155036295350282 " " y[1] (numeric) = 4.15503629535031 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8403035280845780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1490999999999947 " " y[1] (analytic) = 4.155351814755525 " " y[1] (numeric) = 4.155351814755552 " " absolute error = 2.753353101070388000000000000000E-14 " " relative error = 6.6260408836944130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1491999999999947 " " y[1] (analytic) = 4.155667365714285 " " y[1] (numeric) = 4.155667365714313 " " absolute error = 2.84217094304040100000000000000E-14 " " relative error = 6.8392647748693970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.975148058755549000000000E-8 " " Order of pole = 0.4999999999887823 " " x[1] = 1.1492999999999947 " " y[1] (analytic) = 4.155982948229719 " " y[1] (numeric) = 4.155982948229748 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0524562336303530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1493999999999946 " " y[1] (analytic) = 4.156298562304983 " " y[1] (numeric) = 4.156298562305012 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0519206959592370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1494999999999946 " " y[1] (analytic) = 4.156614207943232 " " y[1] (numeric) = 4.156614207943261 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0513851860712360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1495999999999946 " " y[1] (analytic) = 4.1569298851476235 " " y[1] (numeric) = 4.156929885147653 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0508497039668650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1496999999999946 " " y[1] (analytic) = 4.1572455939213135 " " y[1] (numeric) = 4.157245593921343 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0503142496466360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1497999999999946 " " y[1] (analytic) = 4.15756133426746 " " y[1] (numeric) = 4.1575613342674895 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0497788231110670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1498999999999946 " " y[1] (analytic) = 4.15787710618922 " " y[1] (numeric) = 4.157877106189250 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.049243424360669000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1499999999999946 " " y[1] (analytic) = 4.158192909689750 " " y[1] (numeric) = 4.15819290968978 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0487080533959610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1500999999999946 " " y[1] (analytic) = 4.15850874477221 " " y[1] (numeric) = 4.15850874477224 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0481727102174540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1501999999999946 " " y[1] (analytic) = 4.158824611439758 " " y[1] (numeric) = 4.158824611439787 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0476373948256610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1502999999999945 " " y[1] (analytic) = 4.159140509695551 " " y[1] (numeric) = 4.159140509695580 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0471021072210940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1503999999999945 " " y[1] (analytic) = 4.159456439542750 " " y[1] (numeric) = 4.1594564395427795 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2600991761134880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1504999999999945 " " y[1] (analytic) = 4.159772400984513 " " y[1] (numeric) = 4.159772400984543 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0460316153756930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1505999999999945 " " y[1] (analytic) = 4.160088394024 " " y[1] (numeric) = 4.160088394024030 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0454964111358830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1506999999999945 " " y[1] (analytic) = 4.1604044186643705 " " y[1] (numeric) = 4.160404418664400 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2584449084636950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1507999999999945 " " y[1] (analytic) = 4.160720474908786 " " y[1] (numeric) = 4.160720474908816 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2578935431768670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1508999999999945 " " y[1] (analytic) = 4.1610365627604065 " " y[1] (numeric) = 4.161036562760436 " " absolute error = 2.93098878501041300000000000000E-14 " " relative error = 7.0438909651541560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1509999999999945 " " y[1] (analytic) = 4.161352682222391 " " y[1] (numeric) = 4.161352682222422 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.256790898501020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1510999999999945 " " y[1] (analytic) = 4.161668833297904 " " y[1] (numeric) = 4.161668833297934 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2562396191130550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1511999999999944 " " y[1] (analytic) = 4.161985015990105 " " y[1] (numeric) = 4.161985015990135 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2556883683590980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1512999999999944 " " y[1] (analytic) = 4.162301230302156 " " y[1] (numeric) = 4.1623012303021865 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2551371462396710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1513999999999944 " " y[1] (analytic) = 4.1626174762372194 " " y[1] (numeric) = 4.16261747623725 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2545859527553010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1514999999999944 " " y[1] (analytic) = 4.162933753798458 " " y[1] (numeric) = 4.162933753798488 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2540347879065110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1515999999999944 " " y[1] (analytic) = 4.163250062989034 " " y[1] (numeric) = 4.163250062989064 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2534836516938280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1516999999999944 " " y[1] (analytic) = 4.16356640381211 " " y[1] (numeric) = 4.1635664038121405 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2529325441177740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1517999999999944 " " y[1] (analytic) = 4.16388277627085 " " y[1] (numeric) = 4.163882776270881 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4656868023900150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1518999999999944 " " y[1] (analytic) = 4.164199180368419 " " y[1] (numeric) = 4.16419918036845 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4651195447269870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1519999999999944 " " y[1] (analytic) = 4.164515616107979 " " y[1] (numeric) = 4.16451561610801 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4645523165444580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1520999999999944 " " y[1] (analytic) = 4.164832083492695 " " y[1] (numeric) = 4.164832083492726 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4639851178429650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1521999999999943 " " y[1] (analytic) = 4.165148582525733 " " y[1] (numeric) = 4.165148582525763 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2501774358052430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1522999999999943 " " y[1] (analytic) = 4.165465113210255 " " y[1] (numeric) = 4.165465113210286 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4628508088852360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1523999999999943 " " y[1] (analytic) = 4.165781675549429 " " y[1] (numeric) = 4.16578167554946 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4622836986300740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1524999999999943 " " y[1] (analytic) = 4.166098269546420 " " y[1] (numeric) = 4.166098269546450 " " absolute error = 3.01980662698042600000000000000E-14 " " relative error = 7.2485247144907220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1525999999999943 " " y[1] (analytic) = 4.166414895204394 " " y[1] (numeric) = 4.166414895204425 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4611495665698380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1526999999999943 " " y[1] (analytic) = 4.1667315525265165 " " y[1] (numeric) = 4.166731552526548 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4605825447658370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1527999999999943 " " y[1] (analytic) = 4.167048241515955 " " y[1] (numeric) = 4.167048241515986 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4600155524466250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.36055605816138200000000E-8 " " Order of pole = 0.4999999999969411 " " x[1] = 1.1528999999999943 " " y[1] (analytic) = 4.167364962175876 " " y[1] (numeric) = 4.167364962175907 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4594485896127390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1529999999999943 " " y[1] (analytic) = 4.167681714509445 " " y[1] (numeric) = 4.167681714509477 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6719925607294230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1530999999999942 " " y[1] (analytic) = 4.167998498519833 " " y[1] (numeric) = 4.167998498519864 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4583147524030860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1531999999999942 " " y[1] (analytic) = 4.168315314210206 " " y[1] (numeric) = 4.168315314210237 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4577478780283850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1532999999999942 " " y[1] (analytic) = 4.168632161583732 " " y[1] (numeric) = 4.168632161583763 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4571810331411470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1533999999999942 " " y[1] (analytic) = 4.168949040643579 " " y[1] (numeric) = 4.16894904064361 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4566142177419050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1534999999999942 " " y[1] (analytic) = 4.169265951392916 " " y[1] (numeric) = 4.169265951392948 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6690773584549410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1535999999999942 " " y[1] (analytic) = 4.169582893834914 " " y[1] (numeric) = 4.169582893834945 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4554806754095390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1536999999999942 " " y[1] (analytic) = 4.16989986797274 " " y[1] (numeric) = 4.169899867972771 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.454913948477481000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1537999999999942 " " y[1] (analytic) = 4.170216873809565 " " y[1] (numeric) = 4.170216873809596 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4543472510355470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1538999999999942 " " y[1] (analytic) = 4.170533911348558 " " y[1] (numeric) = 4.17053391134859 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6667457426009640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1539999999999941 " " y[1] (analytic) = 4.170850980592891 " " y[1] (numeric) = 4.170850980592923 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6661629144705880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1540999999999941 " " y[1] (analytic) = 4.1711680815457335 " " y[1] (numeric) = 4.1711680815457655 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6655801166745510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1541999999999941 " " y[1] (analytic) = 4.171485214210257 " " y[1] (numeric) = 4.171485214210290 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6649973492133980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.154299999999994 " " y[1] (analytic) = 4.171802378589633 " " y[1] (numeric) = 4.171802378589665 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6644146120876770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.154399999999994 " " y[1] (analytic) = 4.1721195746870325 " " y[1] (numeric) = 4.1721195746870645 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.663831905297930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.154499999999994 " " y[1] (analytic) = 4.1724368025056275 " " y[1] (numeric) = 4.1724368025056595 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6632492288447030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.154599999999994 " " y[1] (analytic) = 4.1727540620485915 " " y[1] (numeric) = 4.1727540620486225 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4498147332083010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.154699999999994 " " y[1] (analytic) = 4.173071353319095 " " y[1] (numeric) = 4.173071353319126 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4492483012013730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.154799999999994 " " y[1] (analytic) = 4.173388676320313 " " y[1] (numeric) = 4.173388676320344 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4486818986898680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.154899999999994 " " y[1] (analytic) = 4.173706031055417 " " y[1] (numeric) = 4.173706031055448 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4481155256743160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.154999999999994 " " y[1] (analytic) = 4.1740234175275805 " " y[1] (numeric) = 4.1740234175276125 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6603363016453970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.155099999999994 " " y[1] (analytic) = 4.174340835739980 " " y[1] (numeric) = 4.174340835740011 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6597538072227030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.155199999999994 " " y[1] (analytic) = 4.174658285695787 " " y[1] (numeric) = 4.174658285695819 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.659171343140330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.155299999999994 " " y[1] (analytic) = 4.174975767398177 " " y[1] (numeric) = 4.174975767398209 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6585889093988200000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.155399999999994 " " y[1] (analytic) = 4.175293280850325 " " y[1] (numeric) = 4.175293280850357 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6580065059987150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.155499999999994 " " y[1] (analytic) = 4.175610826055406 " " y[1] (numeric) = 4.175610826055438 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6574241329405550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.155599999999994 " " y[1] (analytic) = 4.175928403016595 " " y[1] (numeric) = 4.175928403016627 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6568417902248800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.155699999999994 " " y[1] (analytic) = 4.176246011737067 " " y[1] (numeric) = 4.1762460117371 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8689333522370180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.155799999999994 " " y[1] (analytic) = 4.1765636522200005 " " y[1] (numeric) = 4.176563652220033 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8683348957071260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.155899999999994 " " y[1] (analytic) = 4.176881324468571 " " y[1] (numeric) = 4.176881324468603 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6550949441381710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.155999999999994 " " y[1] (analytic) = 4.177199028485953 " " y[1] (numeric) = 4.177199028485986 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8671380762088920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.156099999999994 " " y[1] (analytic) = 4.177516764275326 " " y[1] (numeric) = 4.177516764275360 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8665397132416550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.975148058755549000000000E-8 " " Order of pole = 0.4999999999887823 " " x[1] = 1.156199999999994 " " y[1] (analytic) = 4.177834531839867 " " y[1] (numeric) = 4.1778345318399 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8659413814630770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1562999999999939 " " y[1] (analytic) = 4.178152331182754 " " y[1] (numeric) = 4.178152331182786 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6527662408500960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1563999999999939 " " y[1] (analytic) = 4.178470162307163 " " y[1] (numeric) = 4.178470162307195 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6521841408937260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1564999999999939 " " y[1] (analytic) = 4.178788025216274 " " y[1] (numeric) = 4.178788025216306 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6516020712846910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1565999999999939 " " y[1] (analytic) = 4.179105919913266 " " y[1] (numeric) = 4.179105919913298 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6510200320235270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1566999999999938 " " y[1] (analytic) = 4.179423846401317 " " y[1] (numeric) = 4.179423846401349 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6504380231107720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1567999999999938 " " y[1] (analytic) = 4.179741804683607 " " y[1] (numeric) = 4.179741804683638 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.4373600433095440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1568999999999938 " " y[1] (analytic) = 4.180059794763313 " " y[1] (numeric) = 4.180059794763345 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6492740963326320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1569999999999938 " " y[1] (analytic) = 4.1803778166436185 " " y[1] (numeric) = 4.1803778166436505 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6486921784683180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1570999999999938 " " y[1] (analytic) = 4.180695870327702 " " y[1] (numeric) = 4.180695870327734 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6481102909545550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1571999999999938 " " y[1] (analytic) = 4.181013955818745 " " y[1] (numeric) = 4.181013955818776 " " absolute error = 3.10862446895043830000000000000E-14 " " relative error = 7.435097088408770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1572999999999938 " " y[1] (analytic) = 4.181332073119926 " " y[1] (numeric) = 4.181332073119958 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6469466069808220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1573999999999938 " " y[1] (analytic) = 4.181650222234430 " " y[1] (numeric) = 4.181650222234461 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.646364810521920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1574999999999938 " " y[1] (analytic) = 4.181968403165434 " " y[1] (numeric) = 4.181968403165466 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6457830444157080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1575999999999937 " " y[1] (analytic) = 4.182286615916123 " " y[1] (numeric) = 4.182286615916155 " " absolute error = 3.19744231092045100000000000000E-14 " " relative error = 7.6452013086627170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1576999999999937 " " y[1] (analytic) = 4.182604860489677 " " y[1] (numeric) = 4.18260486048971 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8569701477985790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1577999999999937 " " y[1] (analytic) = 4.182923136889281 " " y[1] (numeric) = 4.182923136889314 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8563723151134920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1578999999999937 " " y[1] (analytic) = 4.183241445118116 " " y[1] (numeric) = 4.183241445118150 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8557745136264160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1579999999999937 " " y[1] (analytic) = 4.183559785179366 " " y[1] (numeric) = 4.183559785179399 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8551767433378950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1580999999999937 " " y[1] (analytic) = 4.183878157076213 " " y[1] (numeric) = 4.183878157076246 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8545790042484750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1581999999999937 " " y[1] (analytic) = 4.184196560811842 " " y[1] (numeric) = 4.184196560811875 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8539812963587060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1582999999999937 " " y[1] (analytic) = 4.184514996389437 " " y[1] (numeric) = 4.18451499638947 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.853383619669130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1583999999999937 " " y[1] (analytic) = 4.184833463812182 " " y[1] (numeric) = 4.184833463812215 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8527859741802930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1584999999999936 " " y[1] (analytic) = 4.1851519630832605 " " y[1] (numeric) = 4.185151963083294 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.064409666916870000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1585999999999936 " " y[1] (analytic) = 4.18547049420586 " " y[1] (numeric) = 4.185470494205894 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0637959329369360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1586999999999936 " " y[1] (analytic) = 4.185789057183164 " " y[1] (numeric) = 4.1857890571831975 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0631822310026820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1587999999999936 " " y[1] (analytic) = 4.186107652018359 " " y[1] (numeric) = 4.186107652018392 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8503957042432280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1588999999999936 " " y[1] (analytic) = 4.186426278714630 " " y[1] (numeric) = 4.186426278714663 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0619549232734510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1589999999999936 " " y[1] (analytic) = 4.186744937275163 " " y[1] (numeric) = 4.186744937275197 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0613413174795880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1590999999999936 " " y[1] (analytic) = 4.1870636277031466 " " y[1] (numeric) = 4.18706362770318 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0607277437336370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1591999999999936 " " y[1] (analytic) = 4.187382350001766 " " y[1] (numeric) = 4.1873823500018 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.272222470510789000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1592999999999936 " " y[1] (analytic) = 4.187701104174210 " " y[1] (numeric) = 4.187701104174243 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0595006923876960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1593999999999935 " " y[1] (analytic) = 4.188019890223664 " " y[1] (numeric) = 4.188019890223697 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8468112354522710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1594999999999935 " " y[1] (analytic) = 4.188338708153317 " " y[1] (numeric) = 4.18833870815335 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8462139332074450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1595999999999935 " " y[1] (analytic) = 4.188657557966357 " " y[1] (numeric) = 4.1886575579663905 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0576603557420360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1596999999999935 " " y[1] (analytic) = 4.188976439665973 " " y[1] (numeric) = 4.188976439666006 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8450194223400980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1597999999999935 " " y[1] (analytic) = 4.189295353255353 " " y[1] (numeric) = 4.189295353255386 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8444222137186550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1598999999999935 " " y[1] (analytic) = 4.189614298737688 " " y[1] (numeric) = 4.1896142987377205 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8438250363060850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1599999999999935 " " y[1] (analytic) = 4.1899332761161645 " " y[1] (numeric) = 4.189933276116197 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8432278901029270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1600999999999935 " " y[1] (analytic) = 4.190252285393973 " " y[1] (numeric) = 4.190252285394007 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.054593769031609000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1601999999999935 " " y[1] (analytic) = 4.190571326574306 " " y[1] (numeric) = 4.190571326574340 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0539805478493630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1602999999999934 " " y[1] (analytic) = 4.190890399660352 " " y[1] (numeric) = 4.190890399660385 " " absolute error = 3.286260152890463400000000000000E-14 " " relative error = 7.8414366387553250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1603999999999934 " " y[1] (analytic) = 4.191209504655301 " " y[1] (numeric) = 4.191209504655335 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0527542016491330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1604999999999934 " " y[1] (analytic) = 4.191528641562346 " " y[1] (numeric) = 4.19152864156238 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0521410766322530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1605999999999934 " " y[1] (analytic) = 4.191847810384678 " " y[1] (numeric) = 4.191847810384711 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0515279836716000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1606999999999934 " " y[1] (analytic) = 4.192167011125488 " " y[1] (numeric) = 4.192167011125521 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 8.0509149227677250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1607999999999934 " " y[1] (analytic) = 4.192486243787966 " " y[1] (numeric) = 4.192486243788001 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.262151943761210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1608999999999934 " " y[1] (analytic) = 4.192805508375309 " " y[1] (numeric) = 4.1928055083753435 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2615228154781030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1609999999999934 " " y[1] (analytic) = 4.193124804890706 " " y[1] (numeric) = 4.193124804890740 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.260893720097070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1610999999999934 " " y[1] (analytic) = 4.193444133337351 " " y[1] (numeric) = 4.193444133337386 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2602646576186710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1611999999999933 " " y[1] (analytic) = 4.193763493718438 " " y[1] (numeric) = 4.193763493718473 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2596356280434740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1612999999999933 " " y[1] (analytic) = 4.19408288603716 " " y[1] (numeric) = 4.194082886037195 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2590066313720390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1613999999999933 " " y[1] (analytic) = 4.19440231029671 " " y[1] (numeric) = 4.194402310296745 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2583776676049310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1614999999999933 " " y[1] (analytic) = 4.194721766500283 " " y[1] (numeric) = 4.194721766500319 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4694858838386820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1615999999999933 " " y[1] (analytic) = 4.195041254651075 " " y[1] (numeric) = 4.19504125465111 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2571198387859480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.59887206542625100000000E-8 " " Order of pole = 0.49999999998470024 " " x[1] = 1.1616999999999933 " " y[1] (analytic) = 4.195360774752280 " " y[1] (numeric) = 4.195360774752314 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2564909737351940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1617999999999933 " " y[1] (analytic) = 4.195680326807091 " " y[1] (numeric) = 4.195680326807126 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2558621415910160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1618999999999933 " " y[1] (analytic) = 4.195999910818705 " " y[1] (numeric) = 4.195999910818741 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4669059921579240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1619999999999933 " " y[1] (analytic) = 4.19631952679032 " " y[1] (numeric) = 4.196319526790355 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4662611036150050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1620999999999932 " " y[1] (analytic) = 4.196639174725129 " " y[1] (numeric) = 4.196639174725164 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4656162488241470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1621999999999932 " " y[1] (analytic) = 4.19695885462633 " " y[1] (numeric) = 4.196958854626366 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4649714277859210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1622999999999932 " " y[1] (analytic) = 4.19727856649712 " " y[1] (numeric) = 4.197278566497156 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4643266405009020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1623999999999932 " " y[1] (analytic) = 4.197598310340695 " " y[1] (numeric) = 4.197598310340731 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6752739341439070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1624999999999932 " " y[1] (analytic) = 4.197918086160254 " " y[1] (numeric) = 4.19791808616029 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6746130963726000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1625999999999932 " " y[1] (analytic) = 4.198237893958993 " " y[1] (numeric) = 4.198237893959030 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6739522932000930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1626999999999932 " " y[1] (analytic) = 4.198557733740111 " " y[1] (numeric) = 4.198557733740148 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6732915246269720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1627999999999932 " " y[1] (analytic) = 4.198877605506807 " " y[1] (numeric) = 4.198877605506843 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6726307906538250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1628999999999932 " " y[1] (analytic) = 4.199197509262280 " " y[1] (numeric) = 4.199197509262315 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4604586256402270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1629999999999932 " " y[1] (analytic) = 4.199517445009726 " " y[1] (numeric) = 4.199517445009762 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4598140746436950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1630999999999931 " " y[1] (analytic) = 4.1998374127523475 " " y[1] (numeric) = 4.199837412752383 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4591695574049460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1631999999999931 " " y[1] (analytic) = 4.200157412493343 " " y[1] (numeric) = 4.200157412493379 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4585250739245510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1632999999999931 " " y[1] (analytic) = 4.200477444235913 " " y[1] (numeric) = 4.200477444235949 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4578806242030810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.733389513970057000000000E-8 " " Order of pole = 0.4999999999891287 " " x[1] = 1.163399999999993 " " y[1] (analytic) = 4.200797507983257 " " y[1] (numeric) = 4.200797507983293 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6686671134471350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.163499999999993 " " y[1] (analytic) = 4.2011176037385765 " " y[1] (numeric) = 4.201117603738613 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6680066216901740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.163599999999993 " " y[1] (analytic) = 4.201437731505072 " " y[1] (numeric) = 4.201437731505108 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.667346164537860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.163699999999993 " " y[1] (analytic) = 4.201757891285944 " " y[1] (numeric) = 4.201757891285980 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6666857419907800000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.163799999999993 " " y[1] (analytic) = 4.2020780830843965 " " y[1] (numeric) = 4.202078083084433 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6660253540495080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.163899999999993 " " y[1] (analytic) = 4.202398306903628 " " y[1] (numeric) = 4.202398306903666 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8767153665857220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.163999999999993 " " y[1] (analytic) = 4.202718562746844 " " y[1] (numeric) = 4.202718562746881 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8760389425229960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.164099999999993 " " y[1] (analytic) = 4.203038850617245 " " y[1] (numeric) = 4.203038850617283 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8753625539119120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.164199999999993 " " y[1] (analytic) = 4.203359170518035 " " y[1] (numeric) = 4.203359170518072 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8746862007530660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.164299999999993 " " y[1] (analytic) = 4.203679522452417 " " y[1] (numeric) = 4.203679522452454 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8740098830470530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.164399999999993 " " y[1] (analytic) = 4.203999906423594 " " y[1] (numeric) = 4.203999906423630 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8733336007944650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.164499999999993 " " y[1] (analytic) = 4.20432032243477 " " y[1] (numeric) = 4.204320322434807 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8726573539958960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.164599999999993 " " y[1] (analytic) = 4.204640770489148 " " y[1] (numeric) = 4.204640770489186 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8719811426519420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.164699999999993 " " y[1] (analytic) = 4.204961250589935 " " y[1] (numeric) = 4.204961250589973 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8713049667631930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.59887206542763300000000E-8 " " Order of pole = 0.49999999998470024 " " x[1] = 1.164799999999993 " " y[1] (analytic) = 4.205281762740334 " " y[1] (numeric) = 4.2052817627403725 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 9.08183427457619900000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.164899999999993 " " y[1] (analytic) = 4.205602306943552 " " y[1] (numeric) = 4.2056023069435895 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8699527213536770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.164999999999993 " " y[1] (analytic) = 4.205922883202792 " " y[1] (numeric) = 4.205922883202830 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8692766518340950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.165099999999993 " " y[1] (analytic) = 4.206243491521260 " " y[1] (numeric) = 4.206243491521298 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8686006177720830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.165199999999993 " " y[1] (analytic) = 4.206564131902165 " " y[1] (numeric) = 4.206564131902202 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8679246191682350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.165299999999993 " " y[1] (analytic) = 4.206884804348710 " " y[1] (numeric) = 4.206884804348747 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6561236880225860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1653999999999929 " " y[1] (analytic) = 4.207205508864103 " " y[1] (numeric) = 4.20720550886414 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.8665727283373840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1654999999999929 " " y[1] (analytic) = 4.207526245451552 " " y[1] (numeric) = 4.2075262454515885 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6548040542993790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1655999999999929 " " y[1] (analytic) = 4.207847014114263 " " y[1] (numeric) = 4.207847014114300 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.654144289361820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1656999999999929 " " y[1] (analytic) = 4.208167814855444 " " y[1] (numeric) = 4.20816781485548 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6534845590410580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1657999999999928 " " y[1] (analytic) = 4.208488647678303 " " y[1] (numeric) = 4.208488647678340 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6528248633376670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1658999999999928 " " y[1] (analytic) = 4.208809512586049 " " y[1] (numeric) = 4.208809512586085 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6521652022522190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1659999999999928 " " y[1] (analytic) = 4.20913040958189 " " y[1] (numeric) = 4.209130409581926 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4404932446685730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1660999999999928 " " y[1] (analytic) = 4.2094513386690355 " " y[1] (numeric) = 4.209451338669071 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4398497404267770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1661999999999928 " " y[1] (analytic) = 4.209772299850694 " " y[1] (numeric) = 4.209772299850730 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4392062699602620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1662999999999928 " " y[1] (analytic) = 4.210093293130075 " " y[1] (numeric) = 4.210093293130111 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4385628332695860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1663999999999928 " " y[1] (analytic) = 4.21041431851039 " " y[1] (numeric) = 4.210414318510425 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4379194303553050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1664999999999928 " " y[1] (analytic) = 4.210735375994847 " " y[1] (numeric) = 4.210735375994883 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4372760612179790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1665999999999928 " " y[1] (analytic) = 4.211056465586658 " " y[1] (numeric) = 4.211056465586695 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.6475485440046170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1666999999999927 " " y[1] (analytic) = 4.211377587289035 " " y[1] (numeric) = 4.21137758728907 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4359894242764120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1667999999999927 " " y[1] (analytic) = 4.211698741105187 " " y[1] (numeric) = 4.211698741105223 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4353461564732850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1668999999999927 " " y[1] (analytic) = 4.212019927038327 " " y[1] (numeric) = 4.212019927038362 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4347029224493350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168844500000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1669999999999927 " " y[1] (analytic) = 4.212341145091665 " " y[1] (numeric) = 4.212341145091700 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.434059722205121000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1670999999999927 " " y[1] (analytic) = 4.212662395268415 " " y[1] (numeric) = 4.212662395268450 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4334165557411940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1671999999999927 " " y[1] (analytic) = 4.21298367757179 " " y[1] (numeric) = 4.212983677571825 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2219540874816570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1672999999999927 " " y[1] (analytic) = 4.213304992005000 " " y[1] (numeric) = 4.213304992005036 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4321303241564250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1673999999999927 " " y[1] (analytic) = 4.213626338571261 " " y[1] (numeric) = 4.213626338571297 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.431487259036691000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1674999999999927 " " y[1] (analytic) = 4.213947717273786 " " y[1] (numeric) = 4.213947717273821 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2200731220069710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1675999999999926 " " y[1] (analytic) = 4.214269128115788 " " y[1] (numeric) = 4.214269128115823 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2194461993916520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1676999999999926 " " y[1] (analytic) = 4.21459057110048 " " y[1] (numeric) = 4.214590571100516 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4295582663747210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1677999999999926 " " y[1] (analytic) = 4.214912046231080 " " y[1] (numeric) = 4.214912046231114 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2181924529786090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1678999999999926 " " y[1] (analytic) = 4.2152335535107985 " " y[1] (numeric) = 4.215233553510833 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2175656291819620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1679999999999926 " " y[1] (analytic) = 4.215555092942854 " " y[1] (numeric) = 4.215555092942888 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2169388383259480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1680999999999926 " " y[1] (analytic) = 4.215876664530459 " " y[1] (numeric) = 4.2158766645304935 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2163120804111050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1681999999999926 " " y[1] (analytic) = 4.216198268276831 " " y[1] (numeric) = 4.216198268276866 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2156853554379680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1682999999999926 " " y[1] (analytic) = 4.216519904185186 " " y[1] (numeric) = 4.216519904185220 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2150586634070750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1683999999999926 " " y[1] (analytic) = 4.2168415722587405 " " y[1] (numeric) = 4.216841572258775 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2144320043189610000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1684999999999925 " " y[1] (analytic) = 4.21716327250071 " " y[1] (numeric) = 4.217163272500745 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2138053781741620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1685999999999925 " " y[1] (analytic) = 4.217485004914312 " " y[1] (numeric) = 4.217485004914347 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2131787849732140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1686999999999925 " " y[1] (analytic) = 4.217806769502765 " " y[1] (numeric) = 4.2178067695028 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2125522247166520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1687999999999925 " " y[1] (analytic) = 4.218128566269286 " " y[1] (numeric) = 4.21812856626932 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2119256974050070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1688999999999925 " " y[1] (analytic) = 4.218450395217092 " " y[1] (numeric) = 4.218450395217126 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2112992030388170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1689999999999925 " " y[1] (analytic) = 4.218772256349402 " " y[1] (numeric) = 4.218772256349436 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2106727416186120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1690999999999925 " " y[1] (analytic) = 4.219094149669434 " " y[1] (numeric) = 4.219094149669469 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.210046313144930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1691999999999925 " " y[1] (analytic) = 4.219416075180408 " " y[1] (numeric) = 4.219416075180443 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2094199176183000000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1692999999999925 " " y[1] (analytic) = 4.219738032885544 " " y[1] (numeric) = 4.219738032885578 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2087935550392580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.534945210793489000000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1693999999999924 " " y[1] (analytic) = 4.22006002278806 " " y[1] (numeric) = 4.220060022788093 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 7.997701399115810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1694999999999924 " " y[1] (analytic) = 4.220382044891174 " " y[1] (numeric) = 4.220382044891209 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2075409287260570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1695999999999924 " " y[1] (analytic) = 4.220704099198110 " " y[1] (numeric) = 4.220704099198145 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2069146649929630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1696999999999924 " " y[1] (analytic) = 4.221026185712088 " " y[1] (numeric) = 4.221026185712122 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2062884342095810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1697999999999924 " " y[1] (analytic) = 4.221348304436327 " " y[1] (numeric) = 4.221348304436361 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2056622363764410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1698999999999924 " " y[1] (analytic) = 4.221670455374050 " " y[1] (numeric) = 4.221670455374084 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2050360714940730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1699999999999924 " " y[1] (analytic) = 4.221992638528475 " " y[1] (numeric) = 4.22199263852851 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4147794251928330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1700999999999924 " " y[1] (analytic) = 4.222314853902828 " " y[1] (numeric) = 4.222314853902863 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2037838405837790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1701999999999924 " " y[1] (analytic) = 4.222637101500330 " " y[1] (numeric) = 4.222637101500364 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 7.9928203957221140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1702999999999923 " " y[1] (analytic) = 4.222959381324203 " " y[1] (numeric) = 4.2229593813242365 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 7.9922104147782380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1703999999999923 " " y[1] (analytic) = 4.223281693377670 " " y[1] (numeric) = 4.223281693377703 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 7.9916004659428190000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1704999999999923 " " y[1] (analytic) = 4.223604037663952 " " y[1] (numeric) = 4.2236040376639865 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2012797741957530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1705999999999923 " " y[1] (analytic) = 4.223926414186277 " " y[1] (numeric) = 4.223926414186310 " " absolute error = 3.37507799486047600000000000000E-14 " " relative error = 7.9903806645994120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1706999999999923 " " y[1] (analytic) = 4.224248822947864 " " y[1] (numeric) = 4.2242488229478985 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.2000279387264690000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1707999999999923 " " y[1] (analytic) = 4.22457126395194 " " y[1] (numeric) = 4.224571263951975 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1994020704248540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1708999999999923 " " y[1] (analytic) = 4.22489373720173 " " y[1] (numeric) = 4.224893737201764 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1987762350792940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1709999999999923 " " y[1] (analytic) = 4.225216242700456 " " y[1] (numeric) = 4.2252162427004905 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1981504326903140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1710999999999923 " " y[1] (analytic) = 4.225538780451345 " " y[1] (numeric) = 4.225538780451380 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1975246632584390000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1711999999999922 " " y[1] (analytic) = 4.225861350457621 " " y[1] (numeric) = 4.225861350457656 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1968989267841950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1712999999999922 " " y[1] (analytic) = 4.226183952722511 " " y[1] (numeric) = 4.226183952722546 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1962732232681070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1713999999999922 " " y[1] (analytic) = 4.226506587249240 " " y[1] (numeric) = 4.2265065872492755 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1956475527106980000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1714999999999922 " " y[1] (analytic) = 4.226829254041037 " " y[1] (numeric) = 4.226829254041071 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1950219151124930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1715999999999922 " " y[1] (analytic) = 4.227151953101124 " " y[1] (numeric) = 4.22715195310116 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.4045090363836060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1716999999999922 " " y[1] (analytic) = 4.227474684432733 " " y[1] (numeric) = 4.227474684432767 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1937707387957880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1717999999999922 " " y[1] (analytic) = 4.227797448039087 " " y[1] (numeric) = 4.227797448039122 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1931452000783340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1718999999999922 " " y[1] (analytic) = 4.228120243923416 " " y[1] (numeric) = 4.228120243923450 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1925196943221790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1719999999999922 " " y[1] (analytic) = 4.228443072088948 " " y[1] (numeric) = 4.228443072088982 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1918942215278420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1720999999999921 " " y[1] (analytic) = 4.22876593253891 " " y[1] (numeric) = 4.228765932538945 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1912687816958430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1721999999999921 " " y[1] (analytic) = 4.2290888252765315 " " y[1] (numeric) = 4.229088825276566 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1906433748267070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1722999999999921 " " y[1] (analytic) = 4.229411750305042 " " y[1] (numeric) = 4.2294117503050765 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1900180009209520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1723999999999921 " " y[1] (analytic) = 4.229734707627669 " " y[1] (numeric) = 4.229734707627704 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1893926599791010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.172499999999992 " " y[1] (analytic) = 4.230057697247643 " " y[1] (numeric) = 4.230057697247679 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3987357456427440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.172599999999992 " " y[1] (analytic) = 4.2303807191681955 " " y[1] (numeric) = 4.23038071916823 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1881420769891890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.172699999999992 " " y[1] (analytic) = 4.230703773392554 " " y[1] (numeric) = 4.230703773392590 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3974531640432480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.172799999999992 " " y[1] (analytic) = 4.231026859923950 " " y[1] (numeric) = 4.231026859923986 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3968119239601290000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.172899999999992 " " y[1] (analytic) = 4.231349978765616 " " y[1] (numeric) = 4.231349978765651 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3961707176888050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.172999999999992 " " y[1] (analytic) = 4.231673129920780 " " y[1] (numeric) = 4.231673129920816 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3955295452298070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.173099999999992 " " y[1] (analytic) = 4.231996313392678 " " y[1] (numeric) = 4.231996313392712 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1850161964190750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.173199999999992 " " y[1] (analytic) = 4.232319529184537 " " y[1] (numeric) = 4.232319529184572 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3942473017509170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.173299999999992 " " y[1] (analytic) = 4.232642777299591 " " y[1] (numeric) = 4.232642777299627 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3936062307320860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.173399999999992 " " y[1] (analytic) = 4.2329660577410735 " " y[1] (numeric) = 4.232966057741109 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3929651935277040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.173499999999992 " " y[1] (analytic) = 4.233289370512217 " " y[1] (numeric) = 4.233289370512252 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.182516085384840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.846091991685530500000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.173599999999992 " " y[1] (analytic) = 4.233612715616254 " " y[1] (numeric) = 4.233612715616289 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1818911400502910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.173699999999992 " " y[1] (analytic) = 4.233936093056418 " " y[1] (numeric) = 4.233936093056453 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3910422848065420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.173799999999992 " " y[1] (analytic) = 4.234259502835943 " " y[1] (numeric) = 4.234259502835978 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1806413482936150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.173899999999992 " " y[1] (analytic) = 4.234582944958063 " " y[1] (numeric) = 4.234582944958098 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1800165018725180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.173999999999992 " " y[1] (analytic) = 4.234906419426013 " " y[1] (numeric) = 4.234906419426047 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1793916884236020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.174099999999992 " " y[1] (analytic) = 4.235229926243027 " " y[1] (numeric) = 4.235229926243061 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1787669079473790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.174199999999992 " " y[1] (analytic) = 4.23555346541234 " " y[1] (numeric) = 4.235553465412375 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1781421604443640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.174299999999992 " " y[1] (analytic) = 4.235877036937188 " " y[1] (numeric) = 4.2358770369372225 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.177517445915069000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.174399999999992 " " y[1] (analytic) = 4.236200640820806 " " y[1] (numeric) = 4.236200640820841 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1768927643600090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1744999999999919 " " y[1] (analytic) = 4.23652427706643 " " y[1] (numeric) = 4.236524277066466 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3859160161843050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1745999999999919 " " y[1] (analytic) = 4.236847945677297 " " y[1] (numeric) = 4.236847945677334 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5949072694143680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1746999999999919 " " y[1] (analytic) = 4.237171646656645 " " y[1] (numeric) = 4.237171646656681 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5942506569066580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1747999999999919 " " y[1] (analytic) = 4.237495380007708 " " y[1] (numeric) = 4.237495380007744 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5935940790663220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1748999999999918 " " y[1] (analytic) = 4.2378191457337255 " " y[1] (numeric) = 4.237819145733762 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5929375358938960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1749999999999918 " " y[1] (analytic) = 4.238142943837934 " " y[1] (numeric) = 4.23814294383797 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5922810273899180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.609297146026407500000000E-8 " " Order of pole = 0.49999999999404743 " " x[1] = 1.1750999999999918 " " y[1] (analytic) = 4.238466774323572 " " y[1] (numeric) = 4.238466774323609 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5916245535549230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1751999999999918 " " y[1] (analytic) = 4.238790637193878 " " y[1] (numeric) = 4.238790637193914 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5909681143894480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1752999999999918 " " y[1] (analytic) = 4.23911453245209 " " y[1] (numeric) = 4.239114532452127 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5903117098940260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1753999999999918 " " y[1] (analytic) = 4.239438460101448 " " y[1] (numeric) = 4.239438460101485 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5896553400691970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1754999999999918 " " y[1] (analytic) = 4.2397624201451904 " " y[1] (numeric) = 4.239762420145227 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5889990049154910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1755999999999918 " " y[1] (analytic) = 4.240086412586557 " " y[1] (numeric) = 4.240086412586593 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5883427044334460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1756999999999918 " " y[1] (analytic) = 4.240410437428788 " " y[1] (numeric) = 4.240410437428824 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3782306718278940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1757999999999917 " " y[1] (analytic) = 4.240734494675124 " " y[1] (numeric) = 4.240734494675158 " " absolute error = 3.463895836830488400000000000000E-14 " " relative error = 8.1681506851700510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1758999999999917 " " y[1] (analytic) = 4.241058584328803 " " y[1] (numeric) = 4.241058584328838 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3769502546561960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1759999999999917 " " y[1] (analytic) = 4.241382706393070 " " y[1] (numeric) = 4.241382706393105 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3763100968122220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1760999999999917 " " y[1] (analytic) = 4.241706860871162 " " y[1] (numeric) = 4.241706860871198 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5850617221167790000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1761999999999917 " " y[1] (analytic) = 4.242031047766324 " " y[1] (numeric) = 4.24203104776636 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3750298826106220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1762999999999917 " " y[1] (analytic) = 4.2423552670817966 " " y[1] (numeric) = 4.242355267081832 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3743898262540340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1763999999999917 " " y[1] (analytic) = 4.242679518820820 " " y[1] (numeric) = 4.242679518820857 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5830935488208030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1764999999999917 " " y[1] (analytic) = 4.243003802986640 " " y[1] (numeric) = 4.243003802986677 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5824375604076720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1765999999999917 " " y[1] (analytic) = 4.2433281195824994 " " y[1] (numeric) = 4.243328119582535 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3724698601673340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1766999999999916 " " y[1] (analytic) = 4.243652468611640 " " y[1] (numeric) = 4.243652468611675 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3718299391345140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1767999999999916 " " y[1] (analytic) = 4.243976850077303 " " y[1] (numeric) = 4.243976850077340 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5804698032322780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1768999999999916 " " y[1] (analytic) = 4.244301263982735 " " y[1] (numeric) = 4.244301263982772 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5798139535302460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1769999999999916 " " y[1] (analytic) = 4.244625710331180 " " y[1] (numeric) = 4.244625710331217 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5791581385073130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1770999999999916 " " y[1] (analytic) = 4.244950189125883 " " y[1] (numeric) = 4.24495018912592 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5785023581640060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1771999999999916 " " y[1] (analytic) = 4.2452747003700875 " " y[1] (numeric) = 4.245274700370124 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5778466125008550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1772999999999916 " " y[1] (analytic) = 4.245599244067039 " " y[1] (numeric) = 4.245599244067075 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5771909015183830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1773999999999916 " " y[1] (analytic) = 4.245923820219982 " " y[1] (numeric) = 4.245923820220020 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.785719011198030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1774999999999916 " " y[1] (analytic) = 4.246248428832164 " " y[1] (numeric) = 4.246248428832201 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7850473783194900000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1775999999999915 " " y[1] (analytic) = 4.246573069906831 " " y[1] (numeric) = 4.246573069906868 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5752239766603330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1776999999999915 " " y[1] (analytic) = 4.246897743447228 " " y[1] (numeric) = 4.246897743447264 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5745684044058580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1777999999999915 " " y[1] (analytic) = 4.247222449456602 " " y[1] (numeric) = 4.247222449456639 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5739128668346950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1778999999999915 " " y[1] (analytic) = 4.247547187938202 " " y[1] (numeric) = 4.247547187938238 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5732573639473710000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1779999999999915 " " y[1] (analytic) = 4.2478719588952725 " " y[1] (numeric) = 4.247871958895309 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5726018957444110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1780999999999915 " " y[1] (analytic) = 4.248196762331063 " " y[1] (numeric) = 4.2481967623311 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5719464622263360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1781999999999915 " " y[1] (analytic) = 4.248521598248821 " " y[1] (numeric) = 4.248521598248858 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5712910633936750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1782999999999915 " " y[1] (analytic) = 4.248846466651796 " " y[1] (numeric) = 4.248846466651832 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5706356992469480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1783999999999915 " " y[1] (analytic) = 4.249171367543235 " " y[1] (numeric) = 4.249171367543271 " " absolute error = 3.55271367880050100000000000000E-14 " " relative error = 8.3609564583284650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1784999999999914 " " y[1] (analytic) = 4.2494963009263875 " " y[1] (numeric) = 4.249496300926424 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.5693250750133890000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.60850840387036200000000E-8 " " Order of pole = 0.49999999999031 " " x[1] = 1.1785999999999914 " " y[1] (analytic) = 4.249821266804503 " " y[1] (numeric) = 4.24982126680454 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7776617616331550000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 6.06854797815911500000000E-8 " " Order of pole = 0.4999999999734914 " " x[1] = 1.1786999999999914 " " y[1] (analytic) = 4.250146265180831 " " y[1] (numeric) = 4.250146265180868 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7769905551281320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1787999999999914 " " y[1] (analytic) = 4.250471296058622 " " y[1] (numeric) = 4.2504712960586595 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7763193841577170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1788999999999914 " " y[1] (analytic) = 4.250796359441127 " " y[1] (numeric) = 4.250796359441163 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.566704242800480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1789999999999914 " " y[1] (analytic) = 4.251121455331594 " " y[1] (numeric) = 4.251121455331631 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7749771488228470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1790999999999914 " " y[1] (analytic) = 4.251446583733276 " " y[1] (numeric) = 4.251446583733314 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7743060844594570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1791999999999914 " " y[1] (analytic) = 4.2517717446494245 " " y[1] (numeric) = 4.251771744649462 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7736350556328090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1792999999999914 " " y[1] (analytic) = 4.252096938083291 " " y[1] (numeric) = 4.252096938083327 " " absolute error = 3.641531520770513500000000000000E-14 " " relative error = 8.564083965620970000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1793999999999913 " " y[1] (analytic) = 4.2524221640381255 " " y[1] (numeric) = 4.252422164038163 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7722931045918640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1794999999999913 " " y[1] (analytic) = 4.252747422517182 " " y[1] (numeric) = 4.25274742251722 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.771622182378630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1795999999999913 " " y[1] (analytic) = 4.2530727135237125 " " y[1] (numeric) = 4.253072713523750 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.979783469411510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1796999999999913 " " y[1] (analytic) = 4.253398037060972 " " y[1] (numeric) = 4.253398037061010 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7702804445692940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1797999999999913 " " y[1] (analytic) = 4.25372339313221 " " y[1] (numeric) = 4.253723393132248 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7696096289742520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1798999999999913 " " y[1] (analytic) = 4.254048781740682 " " y[1] (numeric) = 4.25404878174072 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9777231072272810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1799999999999913 " " y[1] (analytic) = 4.254374202889642 " " y[1] (numeric) = 4.2543742028896805 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9770363926062170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1800999999999913 " " y[1] (analytic) = 4.2546996565823445 " " y[1] (numeric) = 4.254699656582383 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9763497143728950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1801999999999913 " " y[1] (analytic) = 4.255025142822044 " " y[1] (numeric) = 4.255025142822082 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9756630725278560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1802999999999912 " " y[1] (analytic) = 4.255350661611994 " " y[1] (numeric) = 4.255350661612033 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1836968500267960000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1803999999999912 " " y[1] (analytic) = 4.255676212955452 " " y[1] (numeric) = 4.25567621295549 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9742898980047880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1804999999999912 " " y[1] (analytic) = 4.256001796855670 " " y[1] (numeric) = 4.256001796855709 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9736033653278410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1805999999999912 " " y[1] (analytic) = 4.2563274133159075 " " y[1] (numeric) = 4.2563274133159466 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.181589354367880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1806999999999912 " " y[1] (analytic) = 4.256653062339419 " " y[1] (numeric) = 4.256653062339458 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.180886930288741000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1807999999999912 " " y[1] (analytic) = 4.25697874392946 " " y[1] (numeric) = 4.2569787439295 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3888251012530580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1808999999999912 " " y[1] (analytic) = 4.2573044580892905 " " y[1] (numeric) = 4.25730445808933 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1794821938445150000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1809999999999912 " " y[1] (analytic) = 4.257630204822164 " " y[1] (numeric) = 4.2576302048222034 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.178779881480530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1810999999999912 " " y[1] (analytic) = 4.257955984131340 " " y[1] (numeric) = 4.25795598413138 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.178077606356030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1811999999999911 " " y[1] (analytic) = 4.258281796020077 " " y[1] (numeric) = 4.258281796020116 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1773753684715640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1812999999999911 " " y[1] (analytic) = 4.258607640491630 " " y[1] (numeric) = 4.25860764049167 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1766731678276840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1813999999999911 " " y[1] (analytic) = 4.258933517549261 " " y[1] (numeric) = 4.2589335175493 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1759710044249330000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1814999999999911 " " y[1] (analytic) = 4.259259427196227 " " y[1] (numeric) = 4.259259427196266 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1752688782638640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.181599999999991 " " y[1] (analytic) = 4.259585369435786 " " y[1] (numeric) = 4.259585369435826 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3830796709210460000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.181699999999991 " " y[1] (analytic) = 4.259911344271200 " " y[1] (numeric) = 4.25991134427124 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1738647376689520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.181799999999991 " " y[1] (analytic) = 4.260237351705728 " " y[1] (numeric) = 4.260237351705767 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1731627232362050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.181899999999991 " " y[1] (analytic) = 4.260563391742629 " " y[1] (numeric) = 4.260563391742667 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9639957290917030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.181999999999991 " " y[1] (analytic) = 4.260889464385163 " " y[1] (numeric) = 4.260889464385202 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1717588061028590000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.182099999999991 " " y[1] (analytic) = 4.261215569636592 " " y[1] (numeric) = 4.261215569636631 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1710569034033510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.182199999999991 " " y[1] (analytic) = 4.261541707500177 " " y[1] (numeric) = 4.261541707500216 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1703550379493470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.182299999999991 " " y[1] (analytic) = 4.26186787797918 " " y[1] (numeric) = 4.261867877979218 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9612520004290850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.182399999999991 " " y[1] (analytic) = 4.26219408107686 " " y[1] (numeric) = 4.262194081076899 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1689514187800270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.182499999999991 " " y[1] (analytic) = 4.262520316796482 " " y[1] (numeric) = 4.262520316796520 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.16824966506580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.182599999999991 " " y[1] (analytic) = 4.2628465851413075 " " y[1] (numeric) = 4.262846585141346 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9591945861310850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620332200000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.182699999999991 " " y[1] (analytic) = 4.263172886114598 " " y[1] (numeric) = 4.263172886114637 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1668462693809260000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.182799999999991 " " y[1] (analytic) = 4.263499219719618 " " y[1] (numeric) = 4.263499219719656 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9578231586065580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.182899999999991 " " y[1] (analytic) = 4.26382558595963 " " y[1] (numeric) = 4.263825585959668 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9571374994481270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.182999999999991 " " y[1] (analytic) = 4.2641519848378975 " " y[1] (numeric) = 4.264151984837936 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9564518766929570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.183099999999991 " " y[1] (analytic) = 4.264478416357685 " " y[1] (numeric) = 4.264478416357724 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1640399250006840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.183199999999991 " " y[1] (analytic) = 4.264804880522258 " " y[1] (numeric) = 4.264804880522296 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9550807403945110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.183299999999991 " " y[1] (analytic) = 4.265131377334878 " " y[1] (numeric) = 4.265131377334916 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9543952268522940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.183399999999991 " " y[1] (analytic) = 4.265457906798812 " " y[1] (numeric) = 4.265457906798850 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.161935557848370000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.183499999999991 " " y[1] (analytic) = 4.265784468917326 " " y[1] (numeric) = 4.2657844689173645 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9530243089845060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1835999999999909 " " y[1] (analytic) = 4.266111063693684 " " y[1] (numeric) = 4.266111063693723 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.160532832675341000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1836999999999909 " " y[1] (analytic) = 4.266437691131154 " " y[1] (numeric) = 4.266437691131192 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9516535367424270000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1837999999999909 " " y[1] (analytic) = 4.266764351233000 " " y[1] (numeric) = 4.266764351233038 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1591302565168160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1838999999999908 " " y[1] (analytic) = 4.2670910440024885 " " y[1] (numeric) = 4.267091044002528 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1584290243193410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1839999999999908 " " y[1] (analytic) = 4.267417769442888 " " y[1] (numeric) = 4.267417769442927 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1577278293771060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1840999999999908 " " y[1] (analytic) = 4.267744527557467 " " y[1] (numeric) = 4.267744527557505 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.948912429152220000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1841999999999908 " " y[1] (analytic) = 4.26807131834949 " " y[1] (numeric) = 4.268071318349528 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9482272432773050000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1842999999999908 " " y[1] (analytic) = 4.268398141822225 " " y[1] (numeric) = 4.2683981418222645 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.15562446808720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.60929714602797700000000E-8 " " Order of pole = 0.49999999999404743 " " x[1] = 1.1843999999999908 " " y[1] (analytic) = 4.268724997978943 " " y[1] (numeric) = 4.268724997978982 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1549234221712880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1844999999999908 " " y[1] (analytic) = 4.269051886822911 " " y[1] (numeric) = 4.2690518868229494 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9461719041152640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1845999999999908 " " y[1] (analytic) = 4.269378808357397 " " y[1] (numeric) = 4.269378808357436 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1535214421137570000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1846999999999908 " " y[1] (analytic) = 4.269705762585672 " " y[1] (numeric) = 4.26970576258571 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9448018600647230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1847999999999907 " " y[1] (analytic) = 4.270032749511005 " " y[1] (numeric) = 4.270032749511042 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.736114174224350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1848999999999907 " " y[1] (analytic) = 4.270359769136665 " " y[1] (numeric) = 4.270359769136702 " " absolute error = 3.73034936274052600000000000000E-14 " " relative error = 8.7354451718588770000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1849999999999907 " " y[1] (analytic) = 4.2706868214659215 " " y[1] (numeric) = 4.27068682146596 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9427470670855760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1850999999999907 " " y[1] (analytic) = 4.271013906502048 " " y[1] (numeric) = 4.271013906502086 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9420622089203850000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079016100000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1851999999999907 " " y[1] (analytic) = 4.271341024248312 " " y[1] (numeric) = 4.2713410242483505 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9413773871699950000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1852999999999907 " " y[1] (analytic) = 4.271668174707988 " " y[1] (numeric) = 4.271668174708026 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.940692601834920000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464856300000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1853999999999907 " " y[1] (analytic) = 4.271995357884345 " " y[1] (numeric) = 4.271995357884383 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9400078529156830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1854999999999907 " " y[1] (analytic) = 4.272322573780655 " " y[1] (numeric) = 4.272322573780694 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1472143762363540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1855999999999907 " " y[1] (analytic) = 4.272649822400192 " " y[1] (numeric) = 4.27264982240023 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9386384643267910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.78869165386535600000000E-8 " " Order of pole = 0.4999999999838636 " " x[1] = 1.1856999999999907 " " y[1] (analytic) = 4.272977103746226 " " y[1] (numeric) = 4.272977103746265 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1458132159292940000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1857999999999906 " " y[1] (analytic) = 4.273304417822032 " " y[1] (numeric) = 4.273304417822070 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1451126916727530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1858999999999906 " " y[1] (analytic) = 4.273631764630881 " " y[1] (numeric) = 4.27363176463092 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1444122046815810000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1859999999999906 " " y[1] (analytic) = 4.2739591441760485 " " y[1] (numeric) = 4.273959144176088 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1437117549563020000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1860999999999906 " " y[1] (analytic) = 4.274286556460808 " " y[1] (numeric) = 4.274286556460846 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9352156301679560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1861999999999906 " " y[1] (analytic) = 4.274614001488432 " " y[1] (numeric) = 4.274614001488471 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.142310967305539000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1862999999999906 " " y[1] (analytic) = 4.274941479262196 " " y[1] (numeric) = 4.274941479262236 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3493745073215930000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1863999999999906 " " y[1] (analytic) = 4.275268989785376 " " y[1] (numeric) = 4.275268989785416 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.348658290741160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1864999999999906 " " y[1] (analytic) = 4.275596533061245 " " y[1] (numeric) = 4.275596533061285 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.347942112276271000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1865999999999906 " " y[1] (analytic) = 4.27592410909308 " " y[1] (numeric) = 4.27592410909312 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3472259719274630000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1866999999999905 " " y[1] (analytic) = 4.276251717884156 " " y[1] (numeric) = 4.276251717884196 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3465098696952740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1867999999999905 " " y[1] (analytic) = 4.276579359437749 " " y[1] (numeric) = 4.276579359437789 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3457938055802440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1868999999999905 " " y[1] (analytic) = 4.276907033757135 " " y[1] (numeric) = 4.276907033757175 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3450777795829040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1869999999999905 " " y[1] (analytic) = 4.277234740845593 " " y[1] (numeric) = 4.277234740845632 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.136709307443709000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1870999999999905 " " y[1] (analytic) = 4.277562480706397 " " y[1] (numeric) = 4.277562480706436 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.136009267678039000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.49136324464721240000000E-8 " " Order of pole = 0.4999999999853735 " " x[1] = 1.1871999999999905 " " y[1] (analytic) = 4.277890253342827 " " y[1] (numeric) = 4.277890253342865 " " absolute error = 3.819167204710538500000000000000E-14 " " relative error = 8.9276886000667420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1872999999999905 " " y[1] (analytic) = 4.278218058758158 " " y[1] (numeric) = 4.278218058758197 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.134609299963840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1873999999999905 " " y[1] (analytic) = 4.278545896955671 " " y[1] (numeric) = 4.27854589695571 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1339093720163510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1874999999999905 " " y[1] (analytic) = 4.278873767938642 " " y[1] (numeric) = 4.2788737679386815 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.133209481342640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1875999999999904 " " y[1] (analytic) = 4.279201671710352 " " y[1] (numeric) = 4.279201671710391 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.132509627943219000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1876999999999904 " " y[1] (analytic) = 4.2795296082740775 " " y[1] (numeric) = 4.2795296082741165 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.131809811818620000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1877999999999904 " " y[1] (analytic) = 4.279857577633100 " " y[1] (numeric) = 4.2798575776331385 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.1311100329693540000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1878999999999904 " " y[1] (analytic) = 4.280185579790697 " " y[1] (numeric) = 4.280185579790737 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.33791961620040100000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1879999999999904 " " y[1] (analytic) = 4.28051361475015 " " y[1] (numeric) = 4.28051361475019 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3372040095329860000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1880999999999904 " " y[1] (analytic) = 4.28084168251474 " " y[1] (numeric) = 4.28084168251478 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3364884409896680000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1881999999999904 " " y[1] (analytic) = 4.281169783087748 " " y[1] (numeric) = 4.281169783087787 " " absolute error = 3.90798504668055100000000000000E-14 " " relative error = 9.128311290336070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1882999999999904 " " y[1] (analytic) = 4.281497916472452 " " y[1] (numeric) = 4.281497916472492 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3350574182774560000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.60850840387144700000000E-8 " " Order of pole = 0.49999999999031 " " x[1] = 1.1883999999999904 " " y[1] (analytic) = 4.2818260826721355 " " y[1] (numeric) = 4.2818260826721755 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3343419641096230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1884999999999903 " " y[1] (analytic) = 4.28215428169008 " " y[1] (numeric) = 4.28215428169012 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.333626548068009000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1885999999999903 " " y[1] (analytic) = 4.282482513529567 " " y[1] (numeric) = 4.282482513529608 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5403091961565520000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1886999999999903 " " y[1] (analytic) = 4.2828107781938805 " " y[1] (numeric) = 4.28281077819392 " " absolute error = 3.996802888650563500000000000000E-14 " " relative error = 9.3321958303655650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1887999999999903 " " y[1] (analytic) = 4.2831390756863 " " y[1] (numeric) = 4.283139075686341 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5388467626770320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1888999999999903 " " y[1] (analytic) = 4.283467406010112 " " y[1] (numeric) = 4.2834674060101525 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5381156044004490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1889999999999903 " " y[1] (analytic) = 4.283795769168597 " " y[1] (numeric) = 4.283795769168638 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5373844851000380000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1890999999999903 " " y[1] (analytic) = 4.28412416516504 " " y[1] (numeric) = 4.284124165165081 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5366534047763350000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1891999999999903 " " y[1] (analytic) = 4.284452594002724 " " y[1] (numeric) = 4.284452594002766 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7432250235044490000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1892999999999903 " " y[1] (analytic) = 4.2847810556849355 " " y[1] (numeric) = 4.284781055684976 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5351913610612180000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1893999999999902 " " y[1] (analytic) = 4.2851095502149565 " " y[1] (numeric) = 4.285109550214997 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5344603976708740000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1894999999999902 " " y[1] (analytic) = 4.285438077596073 " " y[1] (numeric) = 4.2854380775961145 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7409844618085120000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1895999999999902 " " y[1] (analytic) = 4.285766637831571 " " y[1] (numeric) = 4.285766637831612 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5329985878273080000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1896999999999902 " " y[1] (analytic) = 4.286095230924735 " " y[1] (numeric) = 4.286095230924776 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.532267741375159000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1897999999999902 " " y[1] (analytic) = 4.2864238568788515 " " y[1] (numeric) = 4.286423856878892 " " absolute error = 4.08562073062057600000000000000E-14 " " relative error = 9.5315369339034760000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.124881741734733000000000E-8 " " Order of pole = 0.4999999999806217 " " x[1] = 1.1898999999999902 " " y[1] (analytic) = 4.286752515697206 " " y[1] (numeric) = 4.2867525156972475 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.737997603791340000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1899999999999902 " " y[1] (analytic) = 4.2870812073830855 " " y[1] (numeric) = 4.287081207383127 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.737250988858090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1900999999999902 " " y[1] (analytic) = 4.287409931939778 " " y[1] (numeric) = 4.28740993193982 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.736504413754349000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1901999999999902 " " y[1] (analytic) = 4.28773868937057 " " y[1] (numeric) = 4.287738689370611 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7357578784806650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1902999999999901 " " y[1] (analytic) = 4.288067479678748 " " y[1] (numeric) = 4.28806747967879 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7350113830375820000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1903999999999901 " " y[1] (analytic) = 4.288396302867602 " " y[1] (numeric) = 4.2883963028676435 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7342649274256410000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1904999999999901 " " y[1] (analytic) = 4.288725158940418 " " y[1] (numeric) = 4.28872515894046 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.940614650191040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.19059999999999 " " y[1] (analytic) = 4.2890540479004855 " " y[1] (numeric) = 4.289054047900528 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9398523939037040000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.19069999999999 " " y[1] (analytic) = 4.2893829697510935 " " y[1] (numeric) = 4.289382969751137 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0146154557011164000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.19079999999999 " " y[1] (analytic) = 4.289711924495532 " " y[1] (numeric) = 4.289711924495575 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.938328003370430000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.19089999999999 " " y[1] (analytic) = 4.29004091213709 " " y[1] (numeric) = 4.290040912137132 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9375658691256030000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19099999999999 " " y[1] (analytic) = 4.290369932679056 " " y[1] (numeric) = 4.290369932679100 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0143820520886943000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.19109999999999 " " y[1] (analytic) = 4.290698986124722 " " y[1] (numeric) = 4.290698986124766 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0143042591904879000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.19119999999999 " " y[1] (analytic) = 4.291028072477378 " " y[1] (numeric) = 4.291028072477421 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0142264704453428000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.19129999999999 " " y[1] (analytic) = 4.291357191740315 " " y[1] (numeric) = 4.2913571917403575 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.934517738971251000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.19139999999999 " " y[1] (analytic) = 4.291686343916823 " " y[1] (numeric) = 4.291686343916866 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9337558081416650000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19149999999999 " " y[1] (analytic) = 4.292015529010195 " " y[1] (numeric) = 4.292015529010238 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0139931291288383000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19159999999999 " " y[1] (analytic) = 4.292344747023723 " " y[1] (numeric) = 4.2923447470237654 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9322320685371530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.534945210793489000000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.19169999999999 " " y[1] (analytic) = 4.292673997960698 " " y[1] (numeric) = 4.2926739979607405 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9314702597633280000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.19179999999999 " " y[1] (analytic) = 4.2930032818244115 " " y[1] (numeric) = 4.293003281824455 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0137598251919105000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19189999999999 " " y[1] (analytic) = 4.29333259861816 " " y[1] (numeric) = 4.2933325986182025 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9299467642752880000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19199999999999 " " y[1] (analytic) = 4.293661948345234 " " y[1] (numeric) = 4.293661948345276 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.929185077562170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19209999999999 " " y[1] (analytic) = 4.293991331008927 " " y[1] (numeric) = 4.29399133100897 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9284234315370530000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106165484000000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.19219999999999 " " y[1] (analytic) = 4.294320746612533 " " y[1] (numeric) = 4.294320746612576 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.013448811424632900000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19229999999999 " " y[1] (analytic) = 4.294650195159347 " " y[1] (numeric) = 4.29465019515939 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.926900261553010000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19239999999999 " " y[1] (analytic) = 4.294979676652663 " " y[1] (numeric) = 4.294979676652706 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9261387375951780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.778769638384249000000000E-8 " " Order of pole = 0.499999999975703 " " x[1] = 1.19249999999999 " " y[1] (analytic) = 4.295309191095776 " " y[1] (numeric) = 4.295309191095819 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9253772543275320000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.19259999999999 " " y[1] (analytic) = 4.295638738491980 " " y[1] (numeric) = 4.295638738492023 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9246158117506230000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1926999999999899 " " y[1] (analytic) = 4.295968318844572 " " y[1] (numeric) = 4.295968318844616 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.013060137673718000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1927999999999899 " " y[1] (analytic) = 4.296297932156849 " " y[1] (numeric) = 4.296297932156891 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9230930486711840000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1928999999999899 " " y[1] (analytic) = 4.296627578432103 " " y[1] (numeric) = 4.296627578432146 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9223317281697480000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1929999999999898 " " y[1] (analytic) = 4.2969572576736335 " " y[1] (numeric) = 4.296957257673676 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9215704483612240000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1930999999999898 " " y[1] (analytic) = 4.297286969884737 " " y[1] (numeric) = 4.297286969884780 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9208092092461580000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1931999999999898 " " y[1] (analytic) = 4.29761671506871 " " y[1] (numeric) = 4.297616715068752 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.920048010825090000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.59887206542625100000000E-8 " " Order of pole = 0.49999999998470024 " " x[1] = 1.1932999999999898 " " y[1] (analytic) = 4.297946493228850 " " y[1] (numeric) = 4.297946493228892 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9192868530985660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1933999999999898 " " y[1] (analytic) = 4.298276304368454 " " y[1] (numeric) = 4.298276304368497 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9185257360671250000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1934999999999898 " " y[1] (analytic) = 4.298606148490823 " " y[1] (numeric) = 4.298606148490865 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9177646597313130000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1935999999999898 " " y[1] (analytic) = 4.298936025599252 " " y[1] (numeric) = 4.2989360255992946 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9170036240916670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1936999999999898 " " y[1] (analytic) = 4.299265935697042 " " y[1] (numeric) = 4.299265935697084 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.916242629148730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1937999999999898 " " y[1] (analytic) = 4.299595878787490 " " y[1] (numeric) = 4.2995958787875335 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9154816749030440000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1938999999999897 " " y[1] (analytic) = 4.2999258548739 " " y[1] (numeric) = 4.299925854873941 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.708164078826910000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1939999999999897 " " y[1] (analytic) = 4.300255863959565 " " y[1] (numeric) = 4.300255863959608 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9139598885055750000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1940999999999897 " " y[1] (analytic) = 4.300585906047791 " " y[1] (numeric) = 4.300585906047833 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7066740760141420000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1941999999999897 " " y[1] (analytic) = 4.300915981141875 " " y[1] (numeric) = 4.300915981141918 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9124382649035720000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1942999999999897 " " y[1] (analytic) = 4.30124608924512 " " y[1] (numeric) = 4.301246089245162 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9116775141522160000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1943999999999897 " " y[1] (analytic) = 4.3015762303608245 " " y[1] (numeric) = 4.301576230360867 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9109168041013450000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1944999999999897 " " y[1] (analytic) = 4.301906404492293 " " y[1] (numeric) = 4.3019064044923345 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.703694548610831000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1945999999999897 " " y[1] (analytic) = 4.302236611642824 " " y[1] (numeric) = 4.302236611642866 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.7029497663927060000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1946999999999897 " " y[1] (analytic) = 4.302566851815722 " " y[1] (numeric) = 4.302566851815763 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.702205024028709000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1947999999999896 " " y[1] (analytic) = 4.302897125014288 " " y[1] (numeric) = 4.302897125014330 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.701460321519371000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1948999999999896 " " y[1] (analytic) = 4.303227431241825 " " y[1] (numeric) = 4.303227431241867 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.700715658865211000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1949999999999896 " " y[1] (analytic) = 4.303557770501637 " " y[1] (numeric) = 4.303557770501679 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.6999710360667510000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1950999999999896 " " y[1] (analytic) = 4.303888142797026 " " y[1] (numeric) = 4.303888142797069 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9055929734037660000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1951999999999896 " " y[1] (analytic) = 4.304218548131297 " " y[1] (numeric) = 4.30421854813134 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.904832588976041000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1952999999999896 " " y[1] (analytic) = 4.304548986507754 " " y[1] (numeric) = 4.304548986507797 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9040722452536110000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106163800000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1953999999999896 " " y[1] (analytic) = 4.304879457929701 " " y[1] (numeric) = 4.304879457929744 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9033119422370140000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1954999999999896 " " y[1] (analytic) = 4.305209962400442 " " y[1] (numeric) = 4.305209962400484 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9025516799267830000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1955999999999896 " " y[1] (analytic) = 4.305540499923282 " " y[1] (numeric) = 4.305540499923325 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9017914583234470000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1956999999999895 " " y[1] (analytic) = 4.305871070501528 " " y[1] (numeric) = 4.305871070501570 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.9010312774275360000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1957999999999895 " " y[1] (analytic) = 4.306201674138485 " " y[1] (numeric) = 4.306201674138527 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.694015488547091000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1958999999999895 " " y[1] (analytic) = 4.306532310837458 " " y[1] (numeric) = 4.3065323108375 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8995110377601210000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168844500000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1959999999999895 " " y[1] (analytic) = 4.306862980601754 " " y[1] (numeric) = 4.306862980601797 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8987509789896780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1960999999999895 " " y[1] (analytic) = 4.307193683434681 " " y[1] (numeric) = 4.307193683434723 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.6917828159094310000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1961999999999895 " " y[1] (analytic) = 4.307524419339543 " " y[1] (numeric) = 4.307524419339586 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8972309835779640000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1962999999999895 " " y[1] (analytic) = 4.307855188319651 " " y[1] (numeric) = 4.307855188319693 " " absolute error = 4.174438572590588600000000000000E-14 " " relative error = 9.6902945667932170000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1963999999999895 " " y[1] (analytic) = 4.30818599037831 " " y[1] (numeric) = 4.308185990378353 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.895711151008679000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1964999999999895 " " y[1] (analytic) = 4.308516825518830 " " y[1] (numeric) = 4.308516825518872 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8949512957912670000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1965999999999894 " " y[1] (analytic) = 4.308847693744516 " " y[1] (numeric) = 4.30884769374456 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0100320470479504000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1966999999999894 " " y[1] (analytic) = 4.309178595058680 " " y[1] (numeric) = 4.309178595058724 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0099544868066321000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1967999999999894 " " y[1] (analytic) = 4.309509529464630 " " y[1] (numeric) = 4.309509529464675 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0304866640014872000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1968999999999894 " " y[1] (analytic) = 4.309840496965677 " " y[1] (numeric) = 4.3098404969657205 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.00979937879248000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1969999999999894 " " y[1] (analytic) = 4.310171497565127 " " y[1] (numeric) = 4.310171497565170 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0097218310197535000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.60929714602719200000000E-8 " " Order of pole = 0.49999999999404743 " " x[1] = 1.1970999999999894 " " y[1] (analytic) = 4.310502531266293 " " y[1] (numeric) = 4.310502531266336 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0096442874033318000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1971999999999894 " " y[1] (analytic) = 4.310833598072485 " " y[1] (numeric) = 4.310833598072527 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8896334492401730000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1972999999999894 " " y[1] (analytic) = 4.311164697987012 " " y[1] (numeric) = 4.311164697987055 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8888739197350070000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1973999999999894 " " y[1] (analytic) = 4.311495831013185 " " y[1] (numeric) = 4.311495831013229 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0094116814924284000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 4.84609199168698770000000E-8 " " Order of pole = 0.4999999999821476 " " x[1] = 1.1974999999999894 " " y[1] (analytic) = 4.311826997154318 " " y[1] (numeric) = 4.311826997154360 " " absolute error = 4.26325641456060100000000000000E-14 " " relative error = 9.8873549828743780000000000000E-13 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1975999999999893 " " y[1] (analytic) = 4.31215819641372 " " y[1] (numeric) = 4.312158196413764 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0092566316676625000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1976999999999893 " " y[1] (analytic) = 4.312489428794704 " " y[1] (numeric) = 4.312489428794748 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0297746050920313000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1977999999999893 " " y[1] (analytic) = 4.312820694300584 " " y[1] (numeric) = 4.312820694300627 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0091015984693971000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1978999999999893 " " y[1] (analytic) = 4.313151992934669 " " y[1] (numeric) = 4.313151992934713 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0090240881053353000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1979999999999893 " " y[1] (analytic) = 4.313483324700274 " " y[1] (numeric) = 4.313483324700318 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0089465818980581000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.12944319210448800000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1980999999999893 " " y[1] (analytic) = 4.313814689600713 " " y[1] (numeric) = 4.313814689600757 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.008869079847619100000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1981999999999893 " " y[1] (analytic) = 4.314146087639300 " " y[1] (numeric) = 4.314146087639343 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0087915819540708000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.8726139862044900000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.1982999999999893 " " y[1] (analytic) = 4.314477518819346 " " y[1] (numeric) = 4.314477518819390 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0087140882174665000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1983999999999893 " " y[1] (analytic) = 4.314808983144168 " " y[1] (numeric) = 4.314808983144212 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0086365986378593000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1984999999999892 " " y[1] (analytic) = 4.31514048061708 " " y[1] (numeric) = 4.315140480617123 " " absolute error = 4.352074256530613600000000000000E-14 " " relative error = 1.0085591132153018000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1985999999999892 " " y[1] (analytic) = 4.315472011241396 " " y[1] (numeric) = 4.31547201124144 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0290628897447424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1986999999999892 " " y[1] (analytic) = 4.315803575020433 " " y[1] (numeric) = 4.315803575020477 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.028983831470968000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1987999999999892 " " y[1] (analytic) = 4.316135171957505 " " y[1] (numeric) = 4.31613517195755 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.028904777439243000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1988999999999892 " " y[1] (analytic) = 4.316466802055930 " " y[1] (numeric) = 4.316466802055974 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0288257276496214000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1989999999999892 " " y[1] (analytic) = 4.316798465319022 " " y[1] (numeric) = 4.316798465319066 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0287466821021567000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 5.53494521079182500000000E-8 " " Order of pole = 0.4999999999772129 " " x[1] = 1.1990999999999892 " " y[1] (analytic) = 4.317130161750098 " " y[1] (numeric) = 4.317130161750144 " " absolute error = 4.52970994047063870000000000000E-14 " " relative error = 1.0492409936128412000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192103847900000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.1991999999999892 " " y[1] (analytic) = 4.317461891352478 " " y[1] (numeric) = 4.317461891352522 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0285886037339134000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1992999999999892 " " y[1] (analytic) = 4.317793654129475 " " y[1] (numeric) = 4.317793654129520 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.028509570913242000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.801094106164642700000000E-8 " " Order of pole = 0.4999999999938822 " " x[1] = 1.1993999999999891 " " y[1] (analytic) = 4.318125450084409 " " y[1] (numeric) = 4.3181254500844535 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0284305423349424000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1994999999999891 " " y[1] (analytic) = 4.318457279220598 " " y[1] (numeric) = 4.318457279220643 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0283515179990678000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.1995999999999891 " " y[1] (analytic) = 4.31878914154136 " " y[1] (numeric) = 4.318789141541404 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0282724979056718000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 2.129443192105128200000000E-8 " " Order of pole = 0.4999999999971063 " " x[1] = 1.199699999999989 " " y[1] (analytic) = 4.319121037050012 " " y[1] (numeric) = 4.319121037050057 " " absolute error = 4.52970994047063870000000000000E-14 " " relative error = 1.0487573516959044000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.199799999999989 " " y[1] (analytic) = 4.319452965749876 " " y[1] (numeric) = 4.319452965749921 " " absolute error = 4.52970994047063870000000000000E-14 " " relative error = 1.0486767598554604000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "Complex estimate of poles used" Radius of convergence = 3.87261398620565400000000E-8 " " Order of pole = 0.49999999998894573 " " x[1] = 1.199899999999989 " " y[1] (analytic) = 4.319784927644270 " " y[1] (numeric) = 4.319784927644314 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0280354630808901000000000000E-12 "%" h = 1.0000E-4 " " " " "TOP MAIN SOLVE Loop" "NO POLE" x[1] = 1.199999999999989 " " y[1] (analytic) = 4.320116922736512 " " y[1] (numeric) = 4.320116922736556 " " absolute error = 4.44089209850062600000000000000E-14 " " relative error = 1.0279564599579429000000000000E-12 "%" h = 1.0000E-4 " " "Finished!" "Maximum Iterations Reached before Solution Completed!" "diff ( y , x , 1 ) = y - 1.0;" Iterations = 1000 "Total Elapsed Time "= 4 Minutes 37 Seconds "Elapsed Time(since restart) "= 4 Minutes 37 Seconds "Expected Time Remaining "= 2 Hours 55 Minutes 21 Seconds "Optimized Time Remaining "= 2 Hours 55 Minutes 16 Seconds "Time to Timeout "= 10 Minutes 22 Seconds Percent Done = 2.5666666666663844 "%" (%o51) true (%o51) diffeq.max