The function calculates conductance (W) of an ectothermic animal to its substrate. The method assumes the major resistance to conduction is the substrate and that the interior of the animal is equal in temperature to its surface (thermally well mixed) (Spotila et al. 1992) .

Qconduction_substrate(T_g, T_b, D, K_g = 0.5, A, proportion)

Arguments

T_g

numeric surface temperature (K).

T_b

numeric body temperature (K).

D

numeric characteristic dimension of the animal (m).

K_g

numeric thermal conductivity of substrate (W K-1 m-1).

A

numeric surface area (m2).

proportion

numeric proportion in contact to the surface.

Value

numeric conductance (W).

References

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

  Qconduction_substrate(T_g        = 293,
                        T_b        = 303,
                        D          = 0.01,
                        K_g        = 0.3,
                        A          = 10^-2,
                        proportion = 0.2)
#> [1] 1.2