#' gtc, total (stomatal and boundary layer) conductance for CO2
#'
#' \deqn{gtc = 1 / ((1 / gbc) + (1 / gsc))}
#'
#' @param gbc xxxPARAMxxx
#' @param gsc xxxPARAMxxx
#'
#' @return gtc xxxRETURNxxx
#'
f_val_calc_gtc <-
function# gtc, total (stomatal and boundary layer) conductance for CO2
###
(gbc
###
, gsc
###
)
{
##details<<
##\deqn{gtc = 1 / ((1 / gbc) + (1 / gsc))}
gtc <- 1 / ((1 / gbc) + (1 / gsc));
return( gtc );
### gtc
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.