The function predicts body temperatures (C, operative environmental temperatures) of a limpet. The function was provided by Brian Helmuth -- although radiation and convection are altered from his original model -- and based on Denny and Harley (2006) .

Tb_limpetBH(T_a, T_r, l, h, S, u, s_aspect, s_slope, c)

Arguments

T_a

numeric air temperature (C).

T_r

numeric rock surface temperature (C) in the sunlight.

l

numeric limpet length (anterior/posterior axis) (m).

h

numeric limpet height (dorsal/ventral axis) (m).

S

numeric solar irradiance (W m-2).

u

numeric wind speed (m s-1).

s_aspect

numeric solar aspect angle (degree), the angle between the limpet's length dimension and the vector to the Sun. Generally between 70 and 110 degrees.

s_slope

numeric solar elevation angle (degree), the altitude of the sun, which is the angle between the horizon and the sun.

c

numeric fraction of the sky covered by clouds.

Value

numeric predicted body (operative environmental) temperature (C).

Details

The original equation uses a finite-difference approach where they divide the rock into series of chunks, and calculate the temperature at each node to derive the conductive heat. For simplification, here it takes the rock temperature as a parameter, and conductive heat is calculated by the product of the area, thermal conductivity of rock and the difference in temperatures of the rock and the body.

Limpets are simulated as cones following and using solar emissivity values from Campbell and Norman (1998) .

The area of the limpet's shell (m2) is projected in the direction at which sunlight strikes the organism Pennell and Deignan (1989) .

Air conductivity values (W m-1 K-1) are calculated following Denny and Harley (2006) .

References

Campbell GS, Norman JM (1998). Introduction to environmental biophysics, 2nd ed. edition. Springer, New York. ISBN 0387949372.

Denny MW, Harley CDG (2006). “Hot limpets: predicting body temperature in a conductance-mediated thermal system.” Journal of Experimental Biology, 209(13), 2409-2419. ISSN 0022-0949, doi:10.1242/jeb.02356 .

Pennell S, Deignan J (1989). “Computing the Projected Area of a Cone.” SIAM Review, 31, 299-302. doi:10.1137/1031052 .

Author

Brian Helmuth et al.

Examples

  Tb_limpetBH(T_a = 25,
              T_r = 30,
              l = 0.0176,
              h = 0.0122,
              S = 1300,
              u = 1,
              s_aspect = 90,
              s_slope = 60,
              c = 1)
#> [1] 30.6807