In [ ]:
%run -i 'import_nb.ipynb'

In [ ]:
set_sample_name('testing_bugs_2')
set_file_locations()
set_qubit_count(3)
set_current_qubit(1)
station = qc.Station()

In [ ]:
station = qc.Station()

In [ ]:
vna = helpers.import_vna()
dec_slots, dec_chans = helpers.import_decadac()
dummy_time = import_manual_param(station=station)

In [ ]:
dummy_time(3)
data, plots = measure(dummy_time)

Find all Resonators


In [ ]:
resonator_sweep_setup(v1)
data, plot = measure(v1.trace)

In [ ]:
data, plot = load(12)

In [ ]:
#fs = 400e6 * 2001 # sampling frequency used for smoothing  (ie span * npts)

fs = (v1.stop.get_latest() - v1.start.get_latest()) * v1.npts.get_latest()

indices, resonances_array, res_attempt_plot = find_peaks(data, fs)
save_plot(res_attempt_plot)

Power Sweeps (qubits alive?)


In [ ]:
power_sweep_setup(v1)
pow_sweeps = []

for f in resonances_array:
    dat, pl = do_power_sweep(v1, f)
    pow_sweeps.append(dat)

In [ ]: