Changes between Version 1 and Version 2 of calibrate_bias_currents
- Timestamp:
- 06/29/15 17:02:41 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
calibrate_bias_currents
v1 v2 10 10 11 11 I write it here in pseudo-python: 12 12 {{{ 13 #!python 13 14 fb_cal_r8 = fits.open('20150628.FEEDBACK_CALIBRATION_R8.fits')[1].data 14 15 delta_i = fb_cal_r8['DeltaI'][0, :320] … … 20 21 I9 = bias_dac['U'][:, :320] * (1e-3/4096) * 100 / r8[np.newaxis, :] 21 22 Iout = (I8 - I9) / 4e-6 23 }}}