Calibrating the 90º Pulse Length

Calibrating the 90º Pulse Length in OVJ

Calibrating the 90º pulse length is a good example for arraying parameters in OVJ. If you haven’t read the section about how to array parameters in OVJ, we would suggest doing this first before you start to follow this example.

To calibrate the 90 degree pulse length follow these steps:

  1. Insert a water sample into the probe.
  2. Select the PROTON sequence in OVJ.
  3. Set the following parameters in OVJ.
    • Set the sweep width (sw) to a value that the NMR signal (here a single peak from the water sample) is fully within the sweep width of the experiment and some noise is shown left and right to the peak.
    • Set the number of scans (nt) to a value to obtain a clear signal (not too noisy).
    • Set the number of acquired points np to 4096, to acquire 2048 complex points.
  4. Array the parameter pw from 0 to about three times the expected pulse length for the 90 degree pulse. In this example we set the array the parameter from 0 to 15 µs with a step size of 0.25 µs.
  5. Start the acquisition of the experiment and save the data once the experiment has finished.

The obtained data can be either analyzed in OVJ or dnplab to determine the length of the 90 degree pulse.

Determining the 90 Degree Pulse Length in OVJ

To process the nutation experiment in OVJ follow these steps:

  1. After the acquisition select the ‘Process’ tab

    • Select Display and set the display mode for the spectrum to ‘Phased’
    • Select a spectrum that with sufficient signal-to-noise and phase the spectrum. Use a spectrum with a shorter pulse length, don’t use the last spectrum of the nutation experiment. The same phase correction is applied to all spectra in the array.
  2. If the sweep width of the spectrum is large, zoom into the region with the peak.

    • Move the mouse cursor to the left of the peak and press the left mouse button. Next, move the mouse cursor to the right of the peak and click the right mouse button. The selected region is shown between the two red lines.
    • Click on the zoom button in the toolbar to the left to zoom into the region defined by the two red lines.
  3. To show all spectra horizontally aligned, together with their respective pulse length

    • Press the |||| button to show all spectra next to each other
    • Next, click # to cycle through the acquisition number or the array parameter
  4. To show all spectra of the array press the # button in the toolbar

  5. The spectrum with the largest peak corresponds to the 90 degree pulse width. In this example the optimum pulse length is 4.75 µs.

Determining the 90 Degree Pulse Length in DNPlab

The nutation experiment can also be analyzed in DNPLab. If you haven’t installed DNPLab, this can be easily done using pip:

1
pip3 install dnplab

A typical DNPLab script to determine the 90 degree pulse length is given below:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import dnplab as dnp

data=dnp.load('path/to/folder/PROTON_XY.fid')
data.attrs['experiment_type']='nmr_spectrum'

data=dnp.fourier_transform(data)
data=dnp.autophase(data,dim='t1')

fig,ax=dnp.plt.subplots(1,2)
dnp.plt.sca(ax[0])
dnp.fancy_plot(data)

noise_start_ppm=-1000 #change this according to your spectrum
noise_end_ppm=-500 #change this according to your spectrum
signal_start_ppm=-50 #change this according to your spectrum
signal_end_ppm=50 #change this according to your spectrum

data=dnp.remove_background(data,dim='f2',regions=[(noise_start_ppm,noise_end_ppm)])

data=dnp.integrate(data,regions=[(signal_start_ppm,signal_end_ppm)])

dnp.plt.sca(ax[1])
dnp.fancy_plot(data)
dnp.plt.xlabel('PW (us)')
dnp.plt.ylabel('Signal (a.u.)')

dnp.show()

This processing script first will load the data and does a Fourier transformation of the FID. Next, a DC offset will be removed using the remove_background function. Next, the NMR peak intensity is integrated using the integrate function and the data is plotted using the fancy_plot function.

In the example the 90 degree pulse length is about 2.35 µs, and the 180 degree pulse length is about 4.7 µs.

Note

Different probes will have different pulse lengths for the 90 degree pulse. The pulse length also depends on the RF power. Higher RF power will result in a short pulse length. However, you should not exceed the maximum pulse power specified by the manufacturer to avoid damaging the probe.

Last modified August 17, 2023: odnp & mps (f99082d)