Skip to content

Commit

Permalink
lol did not loop over ALL the kp
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsavel committed Aug 16, 2024
1 parent 8803a1c commit 4c80ccd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scope/run_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ def simulate_observation(
if tellurics:
with open(f"{outdir}just_tellurics_vary_airmass.txt", "wb") as f:
pickle.dump(just_tellurics, f)
for l, Kp in tqdm(enumerate(Kp_array), total=50, desc="looping PCA over Kp"):
for l, Kp in tqdm(
enumerate(Kp_array), total=len(Kp_array), desc="looping PCA over Kp"
):
for k, v_sys in enumerate(v_sys_array):
res = calc_log_likelihood(
v_sys,
Expand Down

0 comments on commit 4c80ccd

Please sign in to comment.