R/Reynolds.R

Defines functions Reynolds

Documented in Reynolds

#' @export
#' 
Reynolds<-function(V=1, L=0.1, v=airviscosity(20)){
  # Reynolds number is a dimensionaless representation of air velocity
  # Source: Blaxter, K. 1989.  Energy Metabolism in Animals and Man
  # V: air velocity in m/s
  # L: is the characteristic dimension, usually the vertical dimension.  For reference, 
  # a cylinder's characteristic L would be its height, assuming it is standing on its end
  # This L should be the same L as is used for the convective coefficient calculation
  # v: is the kinematic viscosity using function airviscosity(Ta)
  Re<-V*L/v
  Re
  }

Try the Thermimage package in your browser

Any scripts or data that you put into this service are public.

Thermimage documentation built on Sept. 27, 2021, 5:11 p.m.