Skip to content

Commit

Permalink
index temps are in mK, almost forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustinCarter committed Mar 30, 2019
1 parent 05610ad commit 86e942d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scraps/resonator_sweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ def __init__(self, resList, **kwargs):

# Average the individual temperature arrays together to get the
# final index temperature array.
indexTemps = tempsVec.reshape((numPowers, -1)).mean(axis=0)
# Also, iTemps are in mK, so multiply by 1000
indexTemps = tempsVec.reshape((numPowers, -1)).mean(axis=0)*1000

# For each resonator object, store the index temperature
for rix, res in enumerate(resList):
Expand Down

0 comments on commit 86e942d

Please sign in to comment.