Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 911 Bytes

ModOsc.rst

File metadata and controls

49 lines (31 loc) · 911 Bytes

ModOsc

.. index:: ModOsc

Description

Traverse Field sinususodally modulated oscillation. Sinusoidal distribution of precession frequencies about bias e.g. from SDW.

A(t)=A_0 \cos(\omega t + \phi)J_0(\omega_\text{mod}t)

where,

A_0 is the amplitude,

\omega is the oscillation frequency,

phi is the phase,

and \omega_\text{mod} (G) is the modulation frequency.

.. 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("ModOsc")
   fig, ax=plt.subplots()
   ax.plot(x, y(x))
   ax.set_xlabel('t($\mu$s)')
   ax.set_ylabel('A(t)')

.. attributes::

.. properties::

References

[1] F.L. Pratt, Physica B 289-290, 710 (2000).

.. categories::

.. sourcelink::