R/H_obh.R

Defines functions H_obh

Documented in H_obh

# Equation 13 (1990): Daily beam insolation on a horizontal surfce at top of Mars atmosphere [Wh/m2-day].
#
# Based on equations presented in the following publication:
#   Appelbaum, Joseph & Flood, Dennis. (1990). Solar radiation on Mars. Solar Energy. 45. 353–363. 10.1016/0038-092X(90)90156-7. 
#   https://ntrs.nasa.gov/?R=19890018252
#
#' Title
#'
#' @param Ls 
#' @param phi
#'
#' @return
#' @export
H_obh = function(Ls, phi){
  Hobh = I_obh(Ls=Ls, phi=phi, Ts_start=0, Ts_end=24)
  return(Hobh)
}
georgeslabreche/mars documentation built on Feb. 23, 2020, 9:45 p.m.