我开始学习rstudio,需要对大气电导方程进行计算,
Cat = Vm / 6.25*[ln ((Zm - Zd) / Z0)]^2
where:
Zv - vegetation height
Zd - zero plane displacement ( 0.7 x Zveg )
Z0 - roughness height ( 0.1x Zveg )
Vm - wind speed
the Cat function is in cm/s and I need to return it in mm/s
我应该如何编写此函数? 预先感谢!
答案 0 :(得分:0)
大约
atmospheric_conductance <- function(arg1, arg2, arg3, ...){
cat = (arg1 / 6.25 * [ln ((arg2 - arg3) / arg4)]^2)
return(cat)
}
有关如何在R中编写数值计算的信息,请参见R Operations。