The function estimates the net thermal radiation (W) emitted by the surface of an animal (Gates 1980; Spotila et al. 1992) .

Qemitted_thermal_radiation(
  epsilon = 0.96,
  A,
  psa_dir,
  psa_ref,
  T_b,
  T_g,
  T_sky = NA,
  T_a,
  enclosed = FALSE
)

Arguments

epsilon

numeric longwave infrared emissivity of skin (proportion), 0.95 to 1 for most animals (Gates 1980) .

A

numeric surface area ((m2).

psa_dir

numeric view factor indicating the proportion of surface area exposed to sky (or enclosure) (0-1)

psa_ref

numeric view factor indicating the proportion surface area exposed to ground (0-1).

T_b

numeric body surface temperature (K).

T_g

numeric ground surface temperature (K).

T_sky

numeric Estimate effective radiant temperature of sky (K)

T_a

numeric ambient air temperature (K), only required if the animal is in an enclosed environment.

enclosed

logical whether the animal is an enclosed environment or not.

Value

numeric emitted thermal radiation, Qemit (W).

References

Gates DM (1980). Biophysical Ecology. Springer-Verlag, New York, NY, USA.

Spotila JR, Feder ME, Burggren WW (1992). “Biophysics of Heat and Mass Transfer.” Environmental Physiology of the Amphibians. https://press.uchicago.edu/ucp/books/book/chicago/E/bo3636401.html.

Examples

  Qemitted_thermal_radiation(epsilon  = 0.96,
                             A        = 1,
                             psa_dir  = 0.4,
                             psa_ref  = 0.5,
                             T_b      = 303,
                             T_g      = 293,
                             T_a      = 298,
                             enclosed = FALSE)
#> [1] 72.58797