-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfftlog.py
More file actions
268 lines (222 loc) · 8.51 KB
/
Copy pathfftlog.py
File metadata and controls
268 lines (222 loc) · 8.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
"""
python module for calculating integrals with 1 Bessel functions.
This module contains:
-- FFTLog method for integrals with 1 spherical Bessel function;
-- integrals with 1 (cylindrical) Bessel function, i.e. Hankel transform;
-- window function (optional) for smoothing Fourier coefficients
by Xiao Fang
Apr 10, 2019
"""
import numpy as np
from scipy.special import gamma
from numpy.fft import rfft, irfft
class fftlog(object):
def __init__(self, x, fx, nu=1.1, N_extrap_low=0, N_extrap_high=0, c_window_width=0.25, N_pad=0):
self.x_origin = x # x is logarithmically spaced
# self.lnx = np.log(x)
self.dlnx = np.log(x[1]/x[0])
self.fx_origin= fx # f(x) array
self.nu = nu
self.N_extrap_low = N_extrap_low
self.N_extrap_high = N_extrap_high
self.c_window_width = c_window_width
# extrapolate x and f(x) linearly in log(x), and log(f(x))
self.x = log_extrap(x, N_extrap_low, N_extrap_high)
self.fx = log_extrap(fx, N_extrap_low, N_extrap_high)
self.N = self.x.size
# zero-padding
self.N_pad = N_pad
if(N_pad):
pad = np.zeros(N_pad)
self.x = log_extrap(self.x, N_pad, N_pad)
self.fx = np.hstack((pad, self.fx, pad))
self.N += 2*N_pad
self.N_extrap_high += N_pad
self.N_extrap_low += N_pad
if(self.N%2==1): # Make sure the array sizes are even
self.x= self.x[:-1]
self.fx=self.fx[:-1]
self.N -= 1
if(N_pad):
self.N_extrap_high -=1
self.m, self.c_m = self.get_c_m()
self.eta_m = 2*np.pi/(float(self.N)*self.dlnx) * self.m
def get_c_m(self):
"""
return m and c_m
c_m: the smoothed FFT coefficients of "biased" input function f(x): f_b = f(x) / x^\nu
number of x values should be even
c_window_width: the fraction of c_m elements that are smoothed,
e.g. c_window_width=0.25 means smoothing the last 1/4 of c_m elements using "c_window".
"""
f_b=self.fx * self.x**(-self.nu)
c_m=rfft(f_b)
m=np.arange(0,self.N//2+1)
c_m = c_m*c_window(m, int(self.c_window_width*self.N//2.) )
return m, c_m
def fftlog(self, ell):
"""
Calculate F(y) = \int_0^\infty dx / x * f(x) * j_\ell(xy),
where j_\ell is the spherical Bessel func of order ell.
array y is set as y[:] = (ell+1)/x[::-1]
"""
x0 = self.x[0]
z_ar = self.nu + 1j*self.eta_m
y = (ell+1.) / self.x[::-1]
h_m = self.c_m * (self.x[0]*y[0])**(-1j*self.eta_m) * g_l(ell, z_ar)
Fy = irfft(np.conj(h_m)) * y**(-self.nu) * np.sqrt(np.pi)/4.
print(self.N_extrap_high,self.N,self.N_extrap_low)
return y[self.N_extrap_high:self.N-self.N_extrap_low], Fy[self.N_extrap_high:self.N-self.N_extrap_low]
def fftlog_dj(self, ell):
"""
Calculate F(y) = \int_0^\infty dx / x * f(x) * j'_\ell(xy),
where j_\ell is the spherical Bessel func of order ell.
array y is set as y[:] = (ell+1)/x[::-1]
"""
x0 = self.x[0]
z_ar = self.nu + 1j*self.eta_m
y = (ell+1.) / self.x[::-1]
h_m = self.c_m * (self.x[0]*y[0])**(-1j*self.eta_m) * g_l_1(ell, z_ar)
Fy = irfft(np.conj(h_m)) * y**(-self.nu) * np.sqrt(np.pi)/4.
return y[self.N_extrap_high:self.N-self.N_extrap_low], Fy[self.N_extrap_high:self.N-self.N_extrap_low]
def fftlog_ddj(self, ell):
"""
Calculate F(y) = \int_0^\infty dx / x * f(x) * j''_\ell(xy),
where j_\ell is the spherical Bessel func of order ell.
array y is set as y[:] = (ell+1)/x[::-1]
"""
x0 = self.x[0]
z_ar = self.nu + 1j*self.eta_m
y = (ell+1.) / self.x[::-1]
h_m = self.c_m * (self.x[0]*y[0])**(-1j*self.eta_m) * g_l_2(ell, z_ar)
Fy = irfft(np.conj(h_m)) * y**(-self.nu) * np.sqrt(np.pi)/4.
return y[self.N_extrap_high:self.N-self.N_extrap_low], Fy[self.N_extrap_high:self.N-self.N_extrap_low]
def fftlog_jsqr(self, ell):
"""
Calculate F(y) = \int_0^\infty dx / x * f(x) * (j_\ell(xy))^2,
where j_\ell is the spherical Bessel func of order ell.
array y is set as y[:] = (ell+1)/x[::-1]
"""
x0 = self.x[0]
z_ar = self.nu + 1j*self.eta_m
y = (ell+1.) / self.x[::-1]
h_m = self.c_m * (self.x[0]*y[0])**(-1j*self.eta_m) * h_l(ell, z_ar)
Fy = irfft(np.conj(h_m)) * y**(-self.nu) * np.sqrt(np.pi)/4.
print(self.N_extrap_high,self.N,self.N_extrap_low)
return y[self.N_extrap_high:self.N-self.N_extrap_low], Fy[self.N_extrap_high:self.N-self.N_extrap_low]
class hankel(object):
def __init__(self, x, fx, nu, N_extrap_low=0, N_extrap_high=0, c_window_width=0.25, N_pad=0):
print('nu is required to be between (0.5-n) and 2.')
self.myfftlog = fftlog(x, np.sqrt(x)*fx, nu, N_extrap_low, N_extrap_high, c_window_width, N_pad)
def hankel(self, n):
y, Fy = self.myfftlog.fftlog(n-0.5)
Fy *= np.sqrt(2*y/np.pi)
return y, Fy
### Utility functions ####################
def log_extrap(x, N_extrap_low, N_extrap_high):
low_x = high_x = []
if(N_extrap_low):
dlnx_low = np.log(x[1]/x[0])
low_x = x[0] * np.exp(dlnx_low * np.arange(-N_extrap_low, 0) )
if(N_extrap_high):
dlnx_high= np.log(x[-1]/x[-2])
high_x = x[-1] * np.exp(dlnx_high * np.arange(1, N_extrap_high+1) )
x_extrap = np.hstack((low_x, x, high_x))
return x_extrap
def c_window(n,n_cut):
"""
One-side window function of c_m,
Adapted from Eq.(C1) in McEwen et al. (2016), arXiv:1603.04826
"""
n_right = n[-1] - n_cut
# n_left = n[0]+ n_cut
n_r=n[ n[:] > n_right ]
# n_l=n[ n[:] < n_left ]
theta_right=(n[-1]-n_r)/float(n[-1]-n_right-1)
# theta_left=(n_l - n[0])/float(n_left-n[0]-1)
W=np.ones(n.size)
W[n[:] > n_right]= theta_right - 1/(2*np.pi)*np.sin(2*np.pi*theta_right)
# W[n[:] < n_left]= theta_left - 1/(2*pi)*sin(2*pi*theta_left)
return W
def g_m_vals(mu,q):
'''
g_m_vals function is adapted from FAST-PT
g_m_vals(mu,q) = gamma( (mu+1+q)/2 ) / gamma( (mu+1-q)/2 ) = gamma(alpha+)/gamma(alpha-)
mu = (alpha+) + (alpha-) - 1
q = (alpha+) - (alpha-)
switching to asymptotic form when |Im(q)| + |mu| > cut = 200
'''
if(mu+1+q.real[0]==0):
print("gamma(0) encountered. Please change another nu value! Try nu=1.1 .")
exit()
imag_q= np.imag(q)
g_m=np.zeros(q.size, dtype=complex)
cut =200
asym_q=q[np.absolute(imag_q)+ np.absolute(mu) >cut]
asym_plus=(mu+1+asym_q)/2.
asym_minus=(mu+1-asym_q)/2.
q_good=q[ (np.absolute(imag_q)+ np.absolute(mu) <=cut) & (q!=mu + 1 + 0.0j)]
alpha_plus=(mu+1+q_good)/2.
alpha_minus=(mu+1-q_good)/2.
g_m[(np.absolute(imag_q)+ np.absolute(mu) <=cut) & (q!= mu + 1 + 0.0j)] =gamma(alpha_plus)/gamma(alpha_minus)
# asymptotic form
g_m[np.absolute(imag_q)+ np.absolute(mu)>cut] = np.exp( (asym_plus-0.5)*np.log(asym_plus) - (asym_minus-0.5)*np.log(asym_minus) - asym_q \
+1./12 *(1./asym_plus - 1./asym_minus) +1./360.*(1./asym_minus**3 - 1./asym_plus**3) +1./1260*(1./asym_plus**5 - 1./asym_minus**5) )
g_m[np.where(q==mu+1+0.0j)[0]] = 0.+0.0j
return g_m
def g_m_ratio(a):
'''
g_m_ratio(a) = gamma(a)/gamma(a+0.5)
switching to asymptotic form when |Im(a)| > cut = 200
'''
if(a.real[0]==0):
print("gamma(0) encountered. Please change another nu value! Try nu=1.1 .")
exit()
imag_a= np.imag(a)
g_m=np.zeros(a.size, dtype=complex)
cut =100
asym_a=a[np.absolute(imag_a) >cut]
asym_a_plus = asym_a+0.5
a_good=a[ (np.absolute(imag_a) <=cut)]
g_m[(np.absolute(imag_a) <=cut)] =gamma(a_good)/gamma(a_good+0.5)
# asymptotic form
g_m[np.absolute(imag_a)>cut] = np.exp( (asym_a-0.5)*np.log(asym_a) - asym_a*np.log(asym_a_plus) + 0.5 \
+1./12 *(1./asym_a - 1./asym_a_plus) +1./360.*(1./asym_a_plus**3 - 1./asym_a**3) +1./1260*(1./asym_a**5 - 1./asym_a_plus**5) )
# g_m[np.where(q==mu+1+0.0j)[0]] = 0.+0.0j
return g_m
def g_l(l,z_array):
'''
gl = 2^z_array * gamma((l+z_array)/2.) / gamma((3.+l-z_array)/2.)
alpha+ = (l+z_array)/2.
alpha- = (3.+l-z_array)/2.
mu = (alpha+) + (alpha-) - 1 = l+0.5
q = (alpha+) - (alpha-) = z_array - 1.5
'''
gl = 2.**z_array * g_m_vals(l+0.5,z_array-1.5)
return gl
def g_l_1(l,z_array):
'''
for integral containing one first-derivative of spherical Bessel function
gl1 = -2^(z_array-1) *(z_array -1)* gamma((l+z_array-1)/2.) / gamma((4.+l-z_array)/2.)
mu = l+0.5
q = z_array - 2.5
'''
gl1 = -2.**(z_array-1) *(z_array -1) * g_m_vals(l+0.5,z_array-2.5)
return gl1
def g_l_2(l,z_array):
'''
for integral containing one 2nd-derivative of spherical Bessel function
gl2 = 2^(z_array-2) *(z_array -1)*(z_array -2)* gamma((l+z_array-2)/2.) / gamma((5.+l-z_array)/2.)
mu = l+0.5
q = z_array - 3.5
'''
gl2 = 2.**(z_array-2) *(z_array -1)*(z_array -2)* g_m_vals(l+0.5,z_array-3.5)
return gl2
def h_l(l,z_array):
'''
hl = gamma(l+ z_array/2.) * gamma((2.-z_array)/2.) / gamma((3.-z_array)/2.) / gamma(2.+l -z_array/2.)
first component is g_m_vals(2l+1, z_array - 2)
second component is gamma((2.-z_array)/2.) / gamma((3.-z_array)/2.)
'''
hl = g_m_vals(2*l+1., z_array - 2.) * g_m_ratio((2.-z_array)/2.)
return hl