Nothing
#' Res_boun_SO2 - Calculates hourly boundary layer resistance for SO2
#' @param x A data frame containing hourly data of weather variables (e.g. Hum (\%), Pres (kPa), Precip (mm), Rad (W m-2), Temp (C), Wind (m s-1), Daylight (Night or Daylight))
#' @param z_0 Roughness length value (m)
#' @return Hourly data of boundary layer resistance for SO2 (s m-1)
#' @export
#'
#' @examples
#'
#' data(Bizkaia_data)
#' Res_boun_SO2(x = Bizkaia_data, z_0 = 1)
Res_boun_SO2 <- function(x, z_0 = 1){
db <- x
k <- 0.41 # von Karman constant
Sc_SO2 <- 1.15 # Schmidt number
Pr <- 0.72 # Prandtl number
u_. <- Fric_vel(db, z_0 = z_0)
Rb_SO2 <- cbind.data.frame(Dates = u_.$Dates,
Resist_bound_SO2 =
2*(Sc_SO2^(2/3))*(Pr^(-2/3))*((k*u_.[,"Frict_vel"])^(-1)))
return(Rb_SO2)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.