Skip to content
Open
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1fb3909
feat: Issue #48 feature 1
DanielaBreitman Sep 10, 2025
1ad06be
feat: Issue #48 feature 1
DanielaBreitman Sep 10, 2025
872bb40
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 10, 2025
6317d88
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
7e847d7
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
446ad62
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
fb1c5c1
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
05055b9
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
71c791a
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
3dde869
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
81becd3
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
ae21b85
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 11, 2025
65e9816
feat: Issue #48 feature 2
DanielaBreitman Sep 11, 2025
1131f98
maint: fix tests
DanielaBreitman Sep 11, 2025
149c253
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 11, 2025
6b4fec4
feat: Issue #48 finish fnc 1
DanielaBreitman Sep 12, 2025
76d1a4e
feat: Issue #48 finish fnc 2
DanielaBreitman Sep 12, 2025
2766259
maint: fix tests
DanielaBreitman Sep 12, 2025
028bf5d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 12, 2025
6a9046e
maint: fix tests
DanielaBreitman Sep 12, 2025
19e6565
maint: fix Steven's comments
DanielaBreitman Sep 12, 2025
26e479f
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 12, 2025
e7e1c84
fix: wedge removal done properly
DanielaBreitman Sep 12, 2025
ad98158
doc: can provide either beam area or Aeff
DanielaBreitman Sep 12, 2025
8fcc95f
doc: can provide either beam area or Aeff
DanielaBreitman Sep 12, 2025
1fb7b8e
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 12, 2025
66643bc
fix: wedge removal done properly
DanielaBreitman Sep 12, 2025
f737e0b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 12, 2025
9193db0
fix: wedge removal NOT done properly
DanielaBreitman Sep 12, 2025
9fcd546
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 12, 2025
12bb69d
refactor: change some function names and make lightcone obs more clear
steven-murray Sep 14, 2025
fddae9a
maint: ignore ipynb checkpoints
steven-murray Sep 14, 2025
d845955
feat: add ability to apply spatial taper again
steven-murray Sep 16, 2025
3ccaaf9
remove checkpoint files
steven-murray Sep 16, 2025
46c146e
fix: scaling of uv grid and conjugate halving
steven-murray Oct 17, 2025
57ba8ff
feat: add ability to do inv variance weighting in map-making
steven-murray Nov 27, 2025
b6ae16f
fix: correct uv gridding
steven-murray Nov 28, 2025
b0cf2a9
style: run ruff
steven-murray Nov 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ docs/_build/
_version.py
_autosummary/
coverage.xml
.ipynb_checkpoints
.pytest_cache/
__pycache__/
113 changes: 113 additions & 0 deletions devel/test_out_jordans_problem.ipynb

Large diffs are not rendered by default.

274 changes: 240 additions & 34 deletions docs/tutorials/lc_noise_compare_tools21cm.ipynb

Large diffs are not rendered by default.

1,330 changes: 1,330 additions & 0 deletions docs/tutorials/lc_noise_example.ipynb

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions src/tuesday/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@
"CylindricalPS",
"SphericalPS",
"bin_kpar",
"blackmanharris",
"calculate_ps",
"calculate_ps_coeval",
"calculate_ps_lc",
"coeval2slice_x",
"coeval2slice_y",
"coeval2slice_z",
"compute_thermal_rms_per_snapshot_vis",
"compute_thermal_rms_uvgrid",
"cylindrical_to_spherical",
"grid_baselines_uv",
"horizon_limit",
"lc2slice_x",
"lc2slice_y",
"observe_lightcone",
"plot_1d_power_spectrum_k",
"plot_1d_power_spectrum_z",
"plot_2d_power_spectrum",
"plot_coeval_slice",
"plot_pdf",
"plot_power_spectrum",
"plot_redshift_slice",
"sample_from_rms_noise",
"sample_lc_noise",
"sample_from_rms_uvgrid",
"taper2d",
"thermal_noise_per_voxel",
"validate",
]
from .instrument_models.noise import (
grid_baselines_uv,
sample_from_rms_noise,
sample_lc_noise,
compute_thermal_rms_per_snapshot_vis,
compute_thermal_rms_uvgrid,
observe_lightcone,
sample_from_rms_uvgrid,
taper2d,
thermal_noise_per_voxel,
)
from .plotting.powerspectra import (
plot_1d_power_spectrum_k,
Expand Down
Loading
Loading