You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that changing nside = 512 to nside=32 in examples/config/laptop_config.yml would make TXTwoPointFourier crash because it goes, by default, from ell_min = 100 to ell_max = 1500 (so too high for nside = 32).
One related potential worry: if the NmtBins are being created with this ell_max, rather than going all the way to 3*nside-1, some of the power spectra (especially those involving shear) can suffer from significant edge effects.
I noticed that changing
nside = 512
tonside=32
inexamples/config/laptop_config.yml
would make TXTwoPointFourier crash because it goes, by default, fromell_min = 100
toell_max = 1500
(so too high fornside = 32
).TXPipe/txpipe/twopoint_fourier.py
Lines 65 to 66 in 0d902e6
Wouldn't it be better to use
ell_min=1
(I tried with 0 butgeomspace
complains) andell_max=3*nside - 1
by default?I want to use
nside = 32
in my tests because that way the Cells and covariance are computed much much faster.The text was updated successfully, but these errors were encountered: