initial check-in
This commit is contained in:
169
Scripts/T1Q/op_t1q_exp.py
Normal file
169
Scripts/T1Q/op_t1q_exp.py
Normal file
@ -0,0 +1,169 @@
|
||||
# -*- coding: iso-8859-1 -*-
|
||||
|
||||
TXEnableDelay = 2e-6
|
||||
TXEnableValue = 0b0001 # TTL line blanking RF amplifier (bit 0)
|
||||
TXPulseValue = 0b0010 # TTL line triggering RF pulses (bit 1)
|
||||
ADCSensitivity = 2 # voltage span for ADC
|
||||
|
||||
def experiment(): # Jeener-Broekaert sequence with solid-echo detection to measure T1Q [JMR 43, 213 (1981)].
|
||||
|
||||
# set up acquisition parameters:
|
||||
pars = {}
|
||||
pars['P90'] = 2.3e-6 # 90-degree pulse length (s)
|
||||
pars['SF'] = 46.7e6 # spectrometer frequency (Hz)
|
||||
pars['O1'] = 5.6e3 # offset from SF (Hz)
|
||||
pars['SW'] = 200e3 # spectrum width (Hz)
|
||||
pars['SI'] = 1*256 # number of acquisition points
|
||||
pars['NS'] = 32 # number of scans
|
||||
pars['DS'] = 0 # number of dummy scans
|
||||
pars['RD'] = .5 # delay between scans (s)
|
||||
pars['D1'] = 30e-6 # delay after first pulse or 'short tau' (s)
|
||||
pars['D2'] = 30e-6 # delay after second pulse or 'long tau' (s)
|
||||
pars['PHA'] = -27 # receiver phase (degree)
|
||||
pars['DATADIR'] = '/home/fprak/Students/' # data directory
|
||||
pars['OUTFILE'] = None # output file name
|
||||
|
||||
# specify a variable parameter (optional):
|
||||
pars['VAR_PAR'] = 'D2' # variable parameter name (a string)
|
||||
start = 30e-6 # starting value
|
||||
stop = 2e-0 # end value
|
||||
steps = 16 # number of values
|
||||
log_scale = True # log scale flag
|
||||
stag_range = False # staggered range flag
|
||||
|
||||
# check parameters for safety:
|
||||
if pars['PHA'] < 0:
|
||||
pars['PHA'] = 360 + pars['PHA']
|
||||
|
||||
if pars['P90'] > 20e-6:
|
||||
raise Exception("Pulse too long!!!")
|
||||
|
||||
# check whether a variable parameter is named:
|
||||
var_key = pars.get('VAR_PAR')
|
||||
if var_key == 'P90' and (start > 20e-6 or stop > 20e-6):
|
||||
raise Exception("Pulse too long!!!")
|
||||
|
||||
if pars['NS']%8 != 0:
|
||||
pars['NS'] = int(round(pars['NS'] / 8) + 1) * 8
|
||||
print 'Number of scans changed to ',pars['NS'],' due to phase cycling'
|
||||
|
||||
# start the experiment:
|
||||
if var_key:
|
||||
# this is an arrayed experiment:
|
||||
if log_scale:
|
||||
array = log_range(start,stop,steps)
|
||||
else:
|
||||
array = lin_range(start,stop,steps)
|
||||
|
||||
if stag_range:
|
||||
array = staggered_range(array, size = 2)
|
||||
|
||||
# estimate the experiment time:
|
||||
if var_key == 'D1':
|
||||
seconds = (sum(array)*2 + (pars['D2'] + pars['RD']) * steps) * (pars['NS'] + pars['DS'])
|
||||
elif var_key == 'D2':
|
||||
seconds = (sum(array) + (pars['D1']*2 + pars['RD']) * steps) * (pars['NS'] + pars['DS'])
|
||||
elif var_key == 'RD':
|
||||
seconds = (sum(array) + (pars['D1']*2 + pars['D2']) * steps) * (pars['NS'] + pars['DS'])
|
||||
else:
|
||||
seconds = (pars['D1']*2 + pars['D2'] + pars['RD']) * steps * (pars['NS']+ pars['DS'])
|
||||
m, s = divmod(seconds, 60)
|
||||
h, m = divmod(m, 60)
|
||||
print '%s%02d:%02d:%02d' % ('Experiment time estimated: ', h, m, s)
|
||||
|
||||
# loop for a variable parameter:
|
||||
for index, pars[var_key] in enumerate(array):
|
||||
print 'Arrayed experiment for '+var_key+': run = '+str(index+1)+\
|
||||
' out of '+str(array.size)+': value = '+str(pars[var_key])
|
||||
# loop for accumulation:
|
||||
for run in xrange(pars['NS']+pars['DS']):
|
||||
yield t1q_experiment(pars, run)
|
||||
synchronize()
|
||||
else:
|
||||
# estimate the experiment time:
|
||||
seconds = (pars['D1']*2 + pars['D2'] + pars['RD']) * (pars['NS']+ pars['DS'])
|
||||
m, s = divmod(seconds, 60)
|
||||
h, m = divmod(m, 60)
|
||||
print '%s%02d:%02d:%02d' % ('Experiment time estimated: ', h, m, s)
|
||||
|
||||
# loop for accumulation:
|
||||
for run in xrange(pars['NS']+pars['DS']):
|
||||
yield t1q_experiment(pars, run)
|
||||
|
||||
|
||||
# the pulse program:
|
||||
|
||||
def t1q_experiment(pars, run):
|
||||
e=Experiment()
|
||||
|
||||
dummy_scans = pars.get('DS')
|
||||
if dummy_scans:
|
||||
run -= dummy_scans
|
||||
|
||||
pars['PROG'] = 't1q_experiment'
|
||||
|
||||
# phase cycle from J. Magn. Reson. 43, 213-223 (1981) extended for 90-deg refocusing pulse which also eliminates echo(es) after 3rd 45-deg pulse:
|
||||
pars['PH1'] = [0, 0, 90, 90, 180, 180, 270, 270] # 90-deg pulse
|
||||
pars['PH3'] = [90, 90, 180, 180, 270, 270, 0, 0] # 1st 45-deg pulse
|
||||
pars['PH4'] = [0, 180, 0, 180, 180, 0, 180, 0] # 2nd 45-deg pulse
|
||||
pars['PH5'] = [0, 0, 180, 180, 270, 90, 90, 270] # refocucing 90-deg pulse
|
||||
pars['PH2'] = [0, 180, 0, 180, 180, 0, 180, 0] # receiver
|
||||
|
||||
|
||||
# read in variables:
|
||||
P90 = pars['P90']
|
||||
P45 = pars['P90']*0.5
|
||||
SF = pars['SF']
|
||||
O1 = pars['O1']
|
||||
RD = pars['RD']
|
||||
D1 = pars['D1']
|
||||
D2 = pars['D2']
|
||||
PH1 = pars['PH1'][run%len(pars['PH1'])]
|
||||
PH3 = pars['PH3'][run%len(pars['PH3'])]
|
||||
PH4 = pars['PH4'][run%len(pars['PH4'])]
|
||||
PH5 = pars['PH5'][run%len(pars['PH5'])]
|
||||
PH2 = pars['PH2'][run%len(pars['PH2'])]
|
||||
PHA = pars['PHA']
|
||||
|
||||
# set sampling parameters:
|
||||
SI = pars['SI']
|
||||
SW = pars['SW']
|
||||
while SW <= 10e6 and SI < 256*1024:
|
||||
SI *= 2
|
||||
SW *= 2
|
||||
|
||||
# run the pulse sequence:
|
||||
e.wait(RD) # delay between scans
|
||||
e.set_frequency(SF+O1, phase=PH1)
|
||||
e.ttl_pulse(TXEnableDelay, value=TXEnableValue)
|
||||
e.ttl_pulse(P90, value=TXEnableValue|TXPulseValue) # 90-degree pulse
|
||||
|
||||
e.wait(D1-P90/2-TXEnableDelay) # 'short tau'
|
||||
e.set_phase(PH3)
|
||||
|
||||
e.ttl_pulse(TXEnableDelay, value=TXEnableValue)
|
||||
e.ttl_pulse(P45, value=TXEnableValue|TXPulseValue) # 45-degree pulse
|
||||
|
||||
e.wait(D2-P45/2-TXEnableDelay) # 'long tau'
|
||||
e.set_phase(PH4)
|
||||
|
||||
e.ttl_pulse(TXEnableDelay, value=TXEnableValue)
|
||||
e.ttl_pulse(P45, value=TXEnableValue|TXPulseValue) # 45-degree pulse
|
||||
|
||||
e.wait(10e-6-TXEnableDelay)
|
||||
e.set_phase(PH5)
|
||||
|
||||
e.ttl_pulse(TXEnableDelay, value=TXEnableValue)
|
||||
e.ttl_pulse(P90, value=TXEnableValue|TXPulseValue) # 90-degree pulse
|
||||
|
||||
e.set_phase(PHA)
|
||||
e.wait(13e-6)
|
||||
e.record(SI, SW, sensitivity=ADCSensitivity) # acquisition
|
||||
|
||||
# write experiment attributes:
|
||||
for key in pars.keys():
|
||||
e.set_description(key, pars[key]) # acqusition parameters
|
||||
e.set_description('run', run) # current scan
|
||||
e.set_description('rec_phase', -PH2) # current receiver phase
|
||||
|
||||
return e
|
209
Scripts/T1Q/op_t1q_res.py
Normal file
209
Scripts/T1Q/op_t1q_res.py
Normal file
@ -0,0 +1,209 @@
|
||||
# -*- coding: iso-8859-1 -*-
|
||||
|
||||
from numpy import *
|
||||
from scipy.signal import *
|
||||
from scipy.optimize import *
|
||||
from scipy.fftpack import rfft
|
||||
from os import path, rename
|
||||
|
||||
def result():
|
||||
|
||||
measurement = MeasurementResult('Magnetization')
|
||||
|
||||
suffix = '' # output file name's suffix and...
|
||||
counter = 1 # counter for arrayed experiments
|
||||
var_key = '' # variable parameter name
|
||||
|
||||
# loop over the incoming results:
|
||||
for timesignal in results:
|
||||
if not isinstance(timesignal,ADC_Result):
|
||||
continue
|
||||
|
||||
# read experiment parameters:
|
||||
pars = timesignal.get_description_dictionary()
|
||||
|
||||
# ---------------- digital filter ------------------
|
||||
|
||||
# get actual sampling rate of timesignal:
|
||||
sampling_rate = timesignal.get_sampling_rate()
|
||||
|
||||
# get user-defined spectrum width:
|
||||
spec_width = pars['SW']
|
||||
|
||||
# specify cutoff frequency, in relative units:
|
||||
cutoff = spec_width / sampling_rate
|
||||
|
||||
if cutoff < 1: # otherwise no filter applied
|
||||
|
||||
# number of filter's coefficients:
|
||||
numtaps = 29
|
||||
|
||||
# use firwin to create a lowpass FIR filter:
|
||||
fir_coeff = firwin(numtaps, cutoff)
|
||||
|
||||
# downsize x according to user-defined spectral window:
|
||||
skip = int(sampling_rate / spec_width)
|
||||
timesignal.x = timesignal.x[::skip]
|
||||
|
||||
for i in range(2):
|
||||
# apply the filter to ith channel:
|
||||
timesignal.y[i] = lfilter(fir_coeff, 1.0, timesignal.y[i])
|
||||
|
||||
# zeroize first N-1 "corrupted" samples:
|
||||
timesignal.y[i][:numtaps-1] = 0.0
|
||||
|
||||
# circular left shift of y:
|
||||
timesignal.y[i] = roll(timesignal.y[i], -(numtaps-1))
|
||||
|
||||
# downsize y to user-defined number of samples (SI):
|
||||
timesignal.y[i] = timesignal.y[i][::skip]
|
||||
|
||||
# update the sampling_rate attribute of the signal's:
|
||||
timesignal.set_sampling_rate(spec_width)
|
||||
|
||||
# ----------------------------------------------------
|
||||
|
||||
# phase timesignal according to current rec_phase:
|
||||
timesignal.phase(pars['rec_phase'])
|
||||
|
||||
# provide timesignal to the display tab:
|
||||
data['Current scan'] = timesignal
|
||||
|
||||
# accumulate...
|
||||
if not locals().get('accu'):
|
||||
accu = Accumulation()
|
||||
|
||||
# skip dummy scans, if any:
|
||||
if pars['run'] < 0: continue
|
||||
|
||||
# add up:
|
||||
accu += timesignal
|
||||
|
||||
# provide accumulation to the display tab:
|
||||
data['Accumulation'] = accu
|
||||
|
||||
# check how many scans are done:
|
||||
if accu.n == pars['NS']: # accumulation is complete
|
||||
|
||||
# make a copy:
|
||||
fid = accu + 0
|
||||
|
||||
# compute the signal's phase:
|
||||
phi0 = arctan2(fid.y[1][0], fid.y[0][0]) * 180 / pi
|
||||
if not 'ref' in locals(): ref = phi0
|
||||
print 'phi0 = ', phi0
|
||||
|
||||
# do FFT:
|
||||
fid.exp_window(line_broadening=10)
|
||||
spectrum = fid.fft(samples=2*pars['SI'])
|
||||
spectrum.baseline()
|
||||
|
||||
# provide spectrum to the display tab:
|
||||
data['Spectrum'] = spectrum
|
||||
|
||||
# check whether it is an arrayed experiment:
|
||||
var_key = pars.get ('VAR_PAR')
|
||||
if var_key:
|
||||
# get variable parameter's value:
|
||||
var_value = pars.get(var_key)
|
||||
|
||||
# provide signal recorded with the var_value to the display tab:
|
||||
data['Accumulation'+"/"+var_key+"=%e"%(var_value)] = accu
|
||||
|
||||
# measure signal intensity vs. var_value:
|
||||
signal = (accu + 0).y[1]
|
||||
|
||||
# -*- discrete cosine transform of Im -*-
|
||||
N = len(signal)
|
||||
y = empty(2*N, float)
|
||||
y[:N] = signal[:]
|
||||
y[N:] = signal[::-1]
|
||||
c = rfft(y)
|
||||
phi = exp(-1j*pi*arange(N)/(2*N))
|
||||
dct = real(phi*c[:N])
|
||||
# ---------------------------------------
|
||||
measurement[var_value] = sum(dct[0:9])
|
||||
|
||||
# provide measurement to the display tab:
|
||||
data[measurement.get_title()] = measurement
|
||||
|
||||
# update the file name suffix:
|
||||
suffix = '_' + str(counter)
|
||||
counter += 1
|
||||
|
||||
# save accu if required:
|
||||
outfile = pars.get('OUTFILE')
|
||||
if outfile:
|
||||
datadir = pars.get('DATADIR')
|
||||
|
||||
# write raw data in Simpson format:
|
||||
filename = datadir+outfile+suffix+'.dat'
|
||||
if path.exists(filename):
|
||||
rename(filename, datadir+'~'+outfile+suffix+'.dat')
|
||||
accu.write_to_simpson(filename)
|
||||
|
||||
# write raw data in Tecmag format:
|
||||
# filename = datadir+outfile+'.tnt'
|
||||
# accu.write_to_tecmag(filename, nrecords=20)
|
||||
|
||||
# write parameters in a text file:
|
||||
filename = datadir+outfile+suffix+'.par'
|
||||
if path.exists(filename):
|
||||
rename(filename, datadir+'~'+outfile+suffix+'.par')
|
||||
|
||||
fileobject = open(filename, 'w')
|
||||
for key in sorted(pars.iterkeys()):
|
||||
if key=='run': continue
|
||||
if key=='rec_phase': continue
|
||||
fileobject.write('%s%s%s'%(key,'=', pars[key]))
|
||||
fileobject.write('\n')
|
||||
fileobject.close()
|
||||
|
||||
# reset accumulation:
|
||||
del accu
|
||||
|
||||
if var_key == 'D2':
|
||||
# mono-exponential decay fit:
|
||||
xdata = measurement.get_xdata()
|
||||
ydata = measurement.get_ydata()
|
||||
|
||||
[amplitude, rate, offset] = fitfunc(xdata, ydata)
|
||||
print '%s%02g' % ('Amplitude = ', amplitude)
|
||||
print '%s%02g' % ('T1Q [s] = ', 1./rate)
|
||||
|
||||
# update display for the fit:
|
||||
measurement.y = func([amplitude, rate, offset], xdata)
|
||||
data[measurement.get_title()] = measurement
|
||||
|
||||
|
||||
# the fitting procedure:
|
||||
def fitfunc(xdata, ydata):
|
||||
|
||||
# initialize variable parameters:
|
||||
try:
|
||||
# solve Az = b:
|
||||
A = array((ones(xdata.size/2), xdata[0:xdata.size/2]))
|
||||
b = log(abs(ydata[0:xdata.size/2]))
|
||||
z = linalg.lstsq(transpose(A), b)
|
||||
amplitude = exp(z[0][0])
|
||||
rate = -z[0][1]
|
||||
except:
|
||||
amplitude = abs(ydata[0])
|
||||
rate = 1./(xdata[-1] - xdata[0])
|
||||
offset = min(ydata)
|
||||
p0 = [amplitude, rate, offset]
|
||||
|
||||
# run least-squares optimization:
|
||||
plsq = leastsq(residuals, p0, args=(xdata, ydata))
|
||||
|
||||
return plsq[0] # best-fit parameters
|
||||
|
||||
def residuals(p, xdata, ydata):
|
||||
return ydata - func(p, xdata)
|
||||
|
||||
# here is the function to fit:
|
||||
def func(p, xdata):
|
||||
return p[0]*exp(-p[1]*xdata)+p[2]
|
||||
|
||||
|
||||
pass
|
Reference in New Issue
Block a user