Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce number of IV logs #421

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion sodetlib/operations/iv.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,12 @@ def overbias_and_sweep(bgs, cool_voltage=None):
)

S.log(f"Starting TES Bias Ramp on bg {bgs}")
S.log(
f"Sweeping through {len(ivcfg.biases)} biases between "
f"{ivcfg.biases[0]} V and {ivcfg.biases[-1]} V"
)
for i, bias in enumerate(ivcfg.biases):
sdl.stop_point(S)
S.log(f"Setting bias to {bias:4.3f}")
_bias_arr[bgs] = bias
S.set_tes_bias_bipolar_array(_bias_arr)
start_times[bgs, i] = time.time()
Expand Down
Loading