Effect of Snapshot Integration

I was recently wondering what the effect of snapshot integration is on the power spectrum. I think I have a good handle on it now, but I wanted to write it down for posterity.

The TLDR here is that if you integrate your radio interferometer for some amount of time, the sky rotates overhead, which decoheres the Fourier modes. My original shocking realization was that the 10sec of integration that HERA has corresponds to about 6.5 Mpc at z=8, which is similar to a bubble size… so I was worried. But it turns out everything is OK. Read on…

Let the sky temperature be T(x,y,z) where (x,y) are comoving coordinates in the sky plane and z is comoving in the LOS.

The fourier transform T~ is

T~(k)=T(x,y,z)ei2πkxdx.

And the power is

P(k)=T~T~V

Now, let’s assume that the sky is rotating in the x direction such that in a single snapshot, it moves by a total Δx. Within this time, we are averaging visibilities. In reality, this will be a discrete sum (I think), but let’s write it as continuous:

T~(k)=0ΔxdxT(xx,y,z)ei2πkxdx.

From here, let’s use the Fourier Shift Theorem:

T~(k)=1Δx0Δxdxei2πkxxT(x,y,z)ei2πkxdx =T~(k)1Δx0Δxdxei2πkxx =iΔx2πkx(ei2πkxΔx1)T~(k).

Taking the power, we get then

P(k)=1cos(2πΔxkx)2π2(Δx)2kx2P(k)

This is P(k) when Δx0, but is zero at Δx=1/kx.

Now, for HERA, which has an integration time of 10 seconds, and a declination of 30\degree, Δx is:

Δx2πcos(30)1086400Dc(z)

which is Δx=0.59 Mpc/h at ν=250 MHz and Δx=0.87 Mpc/h at ν=50 MHz

On the other hand, kx is given by the baseline lengths:

kx=bλ2πDc(z)

So, Δxkx is given by

Δxkxcos(30)1086400bλ

def pdim(xk):
    return (1 - np.cos(2*np.pi*xk))/(2*np.pi**2 * xk**2)
xk = np.linspace(0, 1, 100)
def plot_signal_loss(nu):
    b = np.linspace(14, 300, 100)
    u = b / (300 / nu)
    xk = np.cos(np.pi/6) * 10/86400 * u
    
    plt.plot(b, 100*(pdim(xk) - 1))
    plt.xlabel("Baseline Length (m)")
    plt.ylabel("Signal Loss (%)")
    plt.title(f"Signal Loss, freq={nu} MHz")
plot_signal_loss(nu = 50)

png

plot_signal_loss(250)

png

Steven G. Murray
Steven G. Murray
Marie Sklodowska-Curie Fellow

Astrophysics, code, math.