R/eq26_alloc_winter_P.R

Defines functions eq26_alloc_winter_P

Documented in eq26_alloc_winter_P

#' Equation 26: Allocate birds to poor winter habitat (A.i.P)
#'
#' @param A.i.0 xxx
#' @param A.i.G xxx
#'
#' @return A.i.P xxx
#'
#' @export



eq26_alloc_winter_P <- function(A.i.0,
                                A.i.G){
  #        initial - number settled in good habitat
  A.i.P <- A.i.0   -  A.i.G
  return(A.i.P)
}
brouwern/FACavian documentation built on March 23, 2022, 10:07 a.m.