A Function to Draw Complex Multiplets


Inspired by Roman A. Valiulin’s book NMR Multiplet Interpretation (discussed previously), I decided to write an R function to draw complex multiplets. The function will draw the multiplet, and optionally, can draw a splitting tree and some annotations.1 Some of you may find this useful for teaching the topic.

The function is called multiplet and it resides in the SpecHelpers package, which was just updated to version 0.3.1. Here are some examples of the function at work, drawn from Valiulin’s book:

library("SpecHelpers") # you need version 0.3.1
# Example 3.1 from Valiulin, a ddt.
res <- multiplet(J = c(16.8, 10.1, 6.7, 6.7))

# Example 3.2 from Valiulin, a tt.
res <- multiplet(J = c(6.1, 6.1, 2.15, 2.15))

# Example 3.3 from Valiulin, a dddd.
res <- multiplet(J = c(12.7, 12.2, 10.0, 4.9))

One interesting aspect of Valiulin’s approach is that all multiplets are treated as doublets of doublets … of doublets. We can use the new function to show how a triplet can be understood as a doublet of doublets in which the coupling constants are the same. Starting from what is clearly a doublet of doublets we can see how the spectrum changes as the coupling constants become more equal, finally leading to the overlap of the two central peaks, giving a triplet.

I hope some of you will find this function useful!

Reuse

Citation

BibTeX citation:

@online{hanson2025,
  author = {Hanson, Bryan},
  title = {A {Function} to {Draw} {Complex} {Multiplets}},
  date = {2025-03-06},
  url = {http://chemospec.org/posts/2025-03-06 More Multiplets/MoreMultiplets.html},
  langid = {en}
}

For attribution, please cite this work as:

Hanson, Bryan. 2025. “A Function to Draw Complex
Multiplets.”
March 6, 2025. http://chemospec.org/posts/2025-03-06
More Multiplets/MoreMultiplets.html
.





Source link

Related Posts

About The Author

Add Comment