qcond: Estimates the area specific heat transfer by conduction...

Description Usage Arguments Details Author(s) References See Also Examples

View source: R/qcond.R

Description

Estimates the area specific heat transfer by conduction (W/m2). Positive

Usage

1
qcond(Ts = 30, Tc = 20, ktiss = 0.502, x = 1)

Arguments

Ts

Surface temperature (degrees Celsius). Default value is 30.

Tc

Contact temperature (degrees Celsius), usually ground temperature. Default value is 20.

ktiss

Thermal conductivity of tissue (W/m/oC).

x

Distance over which heat is conducted. Default value is 1 m (unrealistic, but easier for converting)

Details

Usually conductive heat transfer is ignored given little surface area will be in contact with the ground, but this is included for functionality.

Author(s)

Glenn J Tattersall

References

Blaxter, 1986. Energy metabolism in animals and man. Cambridge University Press, Cambridge, UK, 340 pp.

See Also

qrad qconv

Examples

1
2
3
4
5
6
## The function is currently defined as
function (Ts = 30, Tc = 20, ktiss = 0.502, x = 1) 
{
    qcond <- ktiss * (Tc - Ts)/x
    qcond
  }

gtatters/Thermimage documentation built on Sept. 28, 2021, 2:02 p.m.