mnet_calc_mp | R Documentation |
Calculate soil matric potential from delta-T soil temperature change data from the Oklahoma Mesonet using the equation from Zhang et al (2019) <doi:10.2136/sssaj2018.12.0481>: MP = 2083/(1+ exp(-3.35*(Tref-3.17))) where Tref is the measured delta-T data
mnet_calc_mp(data)
data |
a data frame that contains columns for delta-T temperature change data (i.e. TR05, TR25, TR60, TR75) |
a data frame containing new columns with matric potential (kPa) for each column of delta-T temperature change data.
mesonet_data <- data.frame(TR05 = 3.17, TR25 = 2.17, TR60 = 2.0, TR75 = 1.0)
mnet_calc_mp(mesonet_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.