This function converts biovolume in microns^3 to carbon in picograms for large diatoms (> 3000 micron^3) according to Menden-Deuer and Lessard 2000. The formula used is: log pgC cell^-1 = log a + b * log V (um^3), with log a = -0.933 and b = 0.881 for diatoms > 3000 um^3.
References
Menden-Deuer Susanne, Lessard Evelyn J., (2000), Carbon to volume relationships for dinoflagellates, diatoms, and other protist plankton, Limnology and Oceanography, 45(3), 569-579, doi: 10.4319/lo.2000.45.3.0569.
See also
vol2C_diatom for the all-sizes diatom relationship.
Examples
# Volumes in microns^3
volume <- c(5000, 10000, 20000)
# Convert biovolume to carbon for large diatoms
vol2C_lgdiatom(volume)
#> [1] 211.7350 389.9420 718.1372
