From 86e942dadd0151dc58a1b639bd7b40d85699dbe2 Mon Sep 17 00:00:00 2001 From: Faustin Carter Date: Sat, 30 Mar 2019 15:42:58 -0700 Subject: [PATCH] index temps are in mK, almost forgot --- scraps/resonator_sweep.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scraps/resonator_sweep.py b/scraps/resonator_sweep.py index defa5c0..3d8ca9a 100644 --- a/scraps/resonator_sweep.py +++ b/scraps/resonator_sweep.py @@ -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):