Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1007 Bytes

RFresonance.rst

File metadata and controls

54 lines (33 loc) · 1007 Bytes

RFresonance

.. index:: RFresonance

Description

General off resonance case of an applied RF field.

A(t)= A_0\{1+\left(\cos(\gamma_\mu Bt)e^{-{\Delta t}^2-1}-1\right)\frac{B^2}{B_\text{eff}^2}\}

with

B_\text{eff} = \sqrt{B^2 + (B - B_0)^2}

,where,

A_0 is the amplitude,

B (G) is applied B field,

B_0 (G) is the central B field of the resonance,

and \Delta (MHz) is the decay rate.

.. plot::

   from mantid.simpleapi import FunctionWrapper
   import matplotlib.pyplot as plt
   import numpy as np
   x = np.arange(0.1,16,0.1)
   y = FunctionWrapper("RFresonance")
   fig, ax=plt.subplots()
   ax.plot(x, y(x))
   ax.set_xlabel('t($\mu$s)')
   ax.set_ylabel('A(t)')


.. attributes::

.. properties::

References

[1] S.R. Kreitzman, Hyperfine Interactions 65 1058 (1990).

.. categories::

.. sourcelink::