The function predicts body temperatures (C, operative environmental temperature) of an ectotherm using the approximation in Gates (1980) . The function omits evaporative and metabolic heat loss.

Tb_Gates2(A, D, T_g, T_a, Qabs, u, epsilon)

Arguments

A

numeric surface area (m2).

D

numeric characteristic dimension for conduction (meters).

T_g

numeric ground surface temperature (C).

T_a

numeric ambient air temperature (C).

Qabs

numeric Solar radiation absorbed (W).

u

numeric Wind speed (m s-1).

epsilon

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

Value

numeric operative environmental temperature (C).

References

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

Examples

  Tb_Gates2(A       = 1, 
            D       = 0.001, 
            T_g     = 27, 
            T_a     = 37, 
            Qabs    = 2, 
            u       = 0.1, 
            epsilon = 1) 
#> [1] 35.01682