#! /usr/bin/env python # def airy_cbi_values ( n_data ): #*****************************************************************************80 # ## AIRY_CBI_VALUES returns some values of the Airy Bi(x) with complex argument. # # Discussion: # # The Airy functions Ai(X) and Bi(X) are a pair of linearly independent # solutions of the differential equation: # # W'' - X * W = 0 # # In Mathematica, the function can be evaluated by: # # AiryBi[x] # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 13 April 2007 # # Author: # # John Burkardt # # Reference: # # Milton Abramowitz, Irene Stegun, # Handbook of Mathematical Functions, # National Bureau of Standards, 1964, # ISBN: 0-486-61272-4, # LC: QA47.A34. # # Stephen Wolfram, # The Mathematica Book, # Fourth Edition, # Cambridge University Press, 1999, # ISBN: 0-521-64314-7, # LC: QA76.95.W65. # # Parameters: # # Input/output, integer N_DATA. The user sets N_DATA to 0 before the # first call. On each call, the routine increments N_DATA by 1, and # returns the corresponding data; when there is no more data, the # output value of N_DATA will be 0 again. # # Output, complex X, the argument of the function. # # Output, complex CBI, the value of the Airy BI function. # import numpy as np n_max = 10 cbi_vec = np.array ( ( \ 1.207423594952871 + 0.0000000000000000j, \ 0.9127160108293936 + 0.3800456133135556j, \ 0.6824453575635721 + 0.3343047153635002j, \ 0.5726265660086474 + 0.3988641086982559j, \ 0.2511841251049547 + 0.3401447690712719j, \ 0.1039973894969446 + 0.0000000000000000j, \ 0.2511841251049547 - 0.3401447690712719j, \ 0.5726265660086474 - 0.3988641086982559j, \ 0.6824453575635721 - 0.3343047153635002j, \ 0.9127160108293936 - 0.3800456133135556j ) ) x_vec = np.array ( ( \ 1.0000000000000000 + 0.0000000000000000j, \ 0.8090169943749474 + 0.5877852522924731j, \ 0.3090169943749474 + 0.9510565162951536j, \ -0.3090169943749474 + 0.9510565162951536j, \ -0.8090169943749474 + 0.5877852522924731j, \ -1.0000000000000000 + 0.0000000000000000j, \ -0.8090169943749474 - 0.5877852522924731j, \ -0.3090169943749474 - 0.9510565162951536j, \ 0.3090169943749474 - 0.9510565162951536j, \ 0.8090169943749474 - 0.5877852522924731j ) ) if ( n_data < 0 ): n_data = 0 if ( n_max <= n_data ): n_data = 0 x = 0.0 cbi = 0.0 else: x = x_vec[n_data] cbi = cbi_vec[n_data] n_data = n_data + 1 return n_data, x, cbi def airy_cbi_values_test ( ): #*****************************************************************************80 # ## AIRY_CBI_VALUES_TEST demonstrates the use of AIRY_CBI_VALUES. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 10 January 2015 # # Author: # # John Burkardt # import platform print ( '' ) print ( 'AIRY_CBI_VALUES_TEST:' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' AIRY_CBI_VALUES stores values of' ) print ( ' the complex Airy function Bi(x).' ) print ( '' ) print ( ' X.real X.imag Bi.real(X) Bi.imag(X)' ) print ( '' ) n_data = 0 while ( True ): n_data, x, cbi = airy_cbi_values ( n_data ) if ( n_data == 0 ): break print ( ' %12f %12f %24.16f %24.16g' \ % ( x.real, x.imag, cbi.real, cbi.imag ) ) # # Terminate. # print ( '' ) print ( 'AIRY_CBI_VALUES_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) airy_cbi_values_test ( ) timestamp ( )