Coherences and isotope data

NMRTools defines commonly used nuclei and provides a framework for identifying single- and multiple-quantum coherences associated with them. Reference data on their gyromagnetic ratios, and spin quantum numbers, is also defined and accessible through simple functions.

Nuclei

Coherences

NMRTools.NMRBase.MQType
MQ(coherences, label=="")

Representation of a multiple-quantum coherence. Coherences are specified as a tuple of tuples, of the form (nucleus, coherenceorder)

Examples

julia> MQ(((H1,1), (C13,-1)), "ZQ")
MQ(((H1, 1), (C13, -1)), "ZQ")

julia> MQ(((H1,3), (C13,1)), "QQ")
MQ(((H1, 3), (C13, 1)), "QQ")

See also Nucleus, SQ.

source
NMRTools.NMRBase.coherenceorderFunction
coherenceorder(coherence)

Calculate the total coherence order.

Examples

julia> coherenceorder(SQ(H1))
1

julia> coherenceorder(MQ(((H1,1),(C13,1))))
2

julia> coherenceorder(MQ(((H1,1),(C13,-1))))
0

julia> coherenceorder(MQ(((H1,3),(C13,1))))
4

julia> coherenceorder(MQ(((H1,0),)))
0

See also Nucleus, SQ, MQ.

source

Reference data

NMRTools.NMRBase.gyromagneticratioFunction
gyromagneticratio(n::Nucleus)
gyromagneticratio(c::Coherence)

Return the gyromagnetic ratio in Hz/T of a nucleus, or calculate the effective gyromagnetic ratio of a coherence. This is equal to the product of the individual gyromagnetic ratios with their coherence orders.

Returns nothing if not defined.

Examples

julia> gyromagneticratio(H1)
2.6752218744e8

julia> gyromagneticratio(SQ(H1))
2.6752218744e8

julia> gyromagneticratio(MQ(((H1,1),(C13,1))))
3.3480498744e8

julia> gyromagneticratio(MQ(((H1,0),)))
0.0

See also Nucleus, Coherence.

source
NMRTools.NMRBase.xi_ratioFunction
xi_ratio(n::Nucleus; aqueous=true)

Return the Xi ratio for nucleus n, used for indirect chemical shift referencing.

The Xi ratio is defined as the ratio of the reference frequency of nucleus X to the 1H reference frequency (TMS or DSS). This enables indirect referencing of heteronuclear dimensions from a single 1H reference.

Arguments

  • n::Nucleus: The nucleus for which to retrieve the Xi ratio
  • aqueous=true: If true, use DSS-based ratios (aqueous solutions). If false, use TMS-based ratios (organic solvents).

Returns

  • The Xi ratio as a Float64, or nothing if not defined for this nucleus.

Examples

julia> xi_ratio(C13)
0.25144953

julia> xi_ratio(C13; aqueous=true)
0.25144953

julia> xi_ratio(C13; aqueous=false)
0.2514502

julia> xi_ratio(N15)
0.101329118

References

  • Markley et al., 1998, Pure Appl. Chem. 70, 117-142
  • Wishart et al., 1995, J. Biomol. NMR 6, 135-140
  • Maurer and Kalbitzer, 1996, J. Magn. Reson. B113, 177-178
  • IUPAC recommendations 2001/2008

See also reference, Nucleus.

source