The function estimates the net energy exchange (W) between an animal and the environment. The function follows Gates (1980) and others.

Qnet_Gates(Qabs, Qemit, Qconv, Qcond, Qmet, Qevap)

Arguments

Qabs

numeric solar radiation absorbed (W).

Qemit

numeric thermal radiation emitted (W).

Qconv

numeric energy exchange due to convection; Energy exchange from an animal to its surrounding environment (air or water) (W).

Qcond

numeric energy exchange due to conduction; Energy exchange from animal to a surface if they are in contact (W).

Qmet

numeric energy emitted due to metabolism (W).

Qevap

numeric energy emitted due to evaporative water loss (W).

Value

numeric net energy exchange (W).

References

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

Examples

Qnet_Gates(Qabs  = 500,
           Qemit = 10, 
           Qconv = 100, 
           Qcond = 100, 
           Qmet  = 10, 
           Qevap = 5)
#> [1] 275