Skip to content

Commit

Permalink
Reduce number of IV logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jlashner committed Mar 11, 2024
1 parent dd529b5 commit 82cf4e7
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit 82cf4e7

Please sign in to comment.