-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path07-heattransfer.Rmd
1392 lines (1076 loc) · 101 KB
/
07-heattransfer.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
pagetitle: Heat Transfer
output:
pdf_document: default
html_document: default
---
# Heat Transfer {#heattransfer}
Heat Transfer Processes for the Thermal Energy Balance of Organisms
author: Stevenson, R. D.
## Preface {#heattransfer-preface}
This module describes heat transfer processes involved in the exchange of heat between an organism and its environment. Emphasis is placed on conduction, convection, and evaporation, three of the physical processes that affect the physiological, behavioral, and ecological activities of all organisms. Radiation transfer is described in a separate module. Four examples taken from the ecological literature are used to emphasize the biological effects of temperature and energy budgets. Three systems are used to illustrate heat transfer principles and their biological importance. These include heat flow in soil, a leaf, and a lizard. Ecological examples are used throughout the text and problem set. The way in which an organism exchanges heat with its environment explains several characteristics of its behavior and its preferred habitat. This module presents a thorough introduction to heat transfer processes and assumes the reader has a background in calculus and first-year physics.
## Introduction {#heattransfer-intro}
The purpose of this module is to further elucidate the physics of the heat transfer processes: radiation, evaporation, conduction, and convection. An understanding of these processes and their interactions will provide a clearer ecological interpretation of the thermal energy environment. Two ideas need to be recalled about the First Law of Thermodynamics (Zemansky and Van Ness 1966, Stevenson 1979a): first, that the heat energy budget is based on the conservation principle of the First Law, and second, that this law can be applied to any system of arbitrary boundaries. Although organisms seem a natural choice, Collins et al. (1971) have found the nasal passageway to be a useful system for study of nasal vapor recovery. In a previous module (Stevenson 1979b), we considered a stream, a leaf, and a spider as well defined thermodynamic systems for understanding the biological importance of heat fluxes.
Before we begin to describe the mechanisms of heat transfer, four examples are taken from the ecological literature to emphasize the biological effects of temperature and energy budgets. As the examples are presented, the reader should ask: how does the thermal environment influence the distribution, abundance, and life history strategies of the organism being described?
Boylen and Brock (1973) have studied the benthic algae of the Firehole River in Yellowstone National Park. They were interested in documenting the effects of the heated water entering the river from geysers. The Firehole was coldest during June when the discharge was largest from the snowmelt. Diatoms in the genera *Nitzchia*, *Snydedia*, *Rhopalodia*, *Cocconeis*, and *Comphonema* were present at the sampling stations with cooler water temperatures, while green algae, *Spirogyra*, *Oedogonium*, *Cladophora*, and *StigeocZonium*, were dominant at the warmer stations. Biomass was 15 times larger and growth rates five times greater in the heated than the unheated section of the river. Boylen and Brock feel that the Firehole River represents a unique opportunity to study the biological consequences of elevated water temperature, which are similar to the increases caused by power plants.
The acquisition of nutrients is of fundamental importance to plants. Chapman (1974) studied the absorption of phosphate along thermal gradients, where: 1) the average soil temperature changed and the variability was constant; and 2) where the mean was the same but the fluctuation or variability was changing. The maximum rate of phosphate absorption was found to correlate well with the mean soil temperature for each species. He found that cold-adapted species also increased the root-to-shoot ratio presumably in order to compensate for the slower absorption rates at colder temperatures. Species from fluctuating environments showed a greater rate of acclimation to phosphate absorption than did species from more constant environments. These results suggest that plants from different environments try to maintain similar phosphate uptake rates, which is accomplished with different physiological adaptations, and that plants can partition their energy resources (root and shoot biomass) to achieve this balance.
Our third example concerns temperature adaptations in amphibians. Snyder and Weathers (1975) hypothesized that the variability tolerated in body temperatures of amphibian species would be correlated with the variability in air temperatures. To test this idea, the difference between the maximum and lower lethal body temperature for 11 species was taken from the literature and plotted against the difference in the high and low mean monthly air temperatures for a 10-yr period. Figure \@ref(fig:fig-heattrans-1) presents their results and is consistent with their hypothesis.
<!-- Update TTB literature-->
It is sometimes useful to take a more general outlook. In that spirit, here are six ecological questions which could be more easily interpreted and answered with a sound knowledge of heat transfer physics:
1. Does the climate limit the geographical distribution of an organism?
2. What selective advantage is there to being a particular color, shape, or size?
3. What microhabitats are available throughout the day to maintain a thermal balance?
4. Is there a daily activity pattern that limits prey-predator interactions or foraging time?
5. What selective advantage is there to be a poikilotherm; or homeotherm?
6. How does the thermal balance affect photosynthetic and transpiration rate of a plant?
```{r fig-heattrans-1, echo=FALSE, fig.height=4, fig.fullwidth=FALSE, fig.cap='The relation of increase in range of temperature tolerance and increase in environmental temperature variation (see text for methods of determining these values). The continuous line is a line of equality relating increase in temperature tolerance and environmental temperature variation. The dashed line has been fitted to the data with the method of least squares. The numbers indicate the species included. These are: 1) Bufo alvarius, 2) *B. debilis*, 3) *B. marinus*, 4) *B. marmorcus*, 5) *B. mazatlanensis*, 6) *Hyla regina*, 7) *H. smithi*, 8) *Leptodactylus melanolus*, 9)*Pternohyla fodiens*, 10) *Scaphiopus hammondi*, 11) *Smilisca baudini*. (From Snyder, G.K. and W.W. Weathers, 1975, p. 98).'}
knitr::include_graphics('figures/fig-heattrans-1.png')
```
```{r fig-heattrans-2, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Surface activity of *Pogonomyrmex badius* in relation to temperature of the ground surface and time of day. Active ants on the mound are indicated by crosses; inactive mounds are indicated by open circles; half-closed circles denote very slight activity. The months represented, beginning with the highest curve at 12 noon, are June, July, May, October and February. (From Colley, F.B. and J.B. Gentry, 1964, p. 224.)'}
knitr::include_graphics('figures/fig-heattrans-2.png')
```
The reader should be cautioned that there are other ecological factors such as competition, predation, and coevolution, which may be greater selective influences and which may interact with selective pressures of the physical environment. Predictions from models incorporating physical processes can often be tested quantitatively which allows the investigator to compare the importance of the physical process under consideration with other ecological factors.
R code throughout the tutorial demonstrates the use of the TrenchR package to estimate heat transfer. The package can be installed and loaded as follows:
```{r eval = FALSE}
install.packages("devtools")
library("devtools")
devtools::install_github(build_vignettes = TRUE,
repo = "trenchproject/TrenchR")
library(TrenchR)
```
## Heat Transfer Processes {#heattransfer-heat}
### Radiation {#heattransfer-radiation}
Radiation is a process of energy transfer that requires no intervening medium. The dual nature of radiation, its particle (photon) and wavelike properties have important biological consequences. All matter radiates energy as individual photons (Kreith 1973) but for heat transfer problems the wavelike description is more useful. This is because energy at different wavelengths interacts with matter it different ways (see Problem 2). Figure \@ref(fig:fig-heattrans-3) shows the different wavelengths of electromagnetic spectrum.
Since radiation travels at the speed of light $c_L$, the product of the frequency $f$ and the wavelength $\lambda$ is a constant:
\begin{equation}
c_L = f \lambda
(\#eq:heattrans-1)
\end{equation}
```{r fig-heattrans-3, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='The electromagnetic spectrum.'}
knitr::include_graphics('figures/fig-heattrans-3-pngkey.png')
```
```{r fig-heattrans-4, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Schematic representation of blackbody emission spectra, as a function of wavelength, for temperatures of 6000 and 270 K. (From Lowry, W.P., 1969, p. 17.)'}
knitr::include_graphics('figures/fig-heattrans-4.png')
```
All objects, living and nonliving, radiate thermal energy. The amount and kind (wavelength in the electromagnetic spectrum) of energy depend on the temperature and physical characteristics of the radiating body. Figure \@ref(fig:fig-heattrans-4) shows the energy radiated by the sun and the earth as a function of wavelength. It should be clear from the figure that the portion of the electromagnetic spectrum radiating from the sun occurs at much shorter wavelengths than that of the earth. In fact, the sun's peak radiation on a wavelength plot is in the green part of the visible spectrum, while the earth's radiation is completely in the infrared region.
Three physical laws are associated with figure \@ref(fig:fig-heattrans-4). Planck's Law gives the energy emitted, $E_\lambda$, as a function of the wavelength, $\lambda$, if the temperature of the radiating body is known:
\begin{equation}
E_\lambda = c_1 \lambda^{-5} [\exp(c_2 / \lambda T)] -1 ]^{-1}
(\#eq:heattrans-2)
\end{equation}
where
<ul class="list-unstyled">
<li> $E_\lambda$ is the amount of energy emitted in the band $\lambda$ to $\lambda$ + $d \lambda$ ($J m^{-1}$), </li>
<li> $T$ is the blackbody temperature ($K$), </li>
<li> $\lambda$ is the wavelength ($m$), </li>
<li> $c_1$ is $2 \pi h {c_L}^2$, </li>
<li> $c_2$ is $hc_L / K_b$, </li>
</ul>
where
<ul class="list-unstyled">
<li> $h$ is Planck's constant = $6.63 \times 10^{-34} (J s)$, </li>
<li> $K_b$ is Boltzmann's constant = $1.38 \times 10^{-23} (J K^{-1})$, and </li>
<li> $c_L$ is the speed of light = $3.00 \times 10^8 (m s^{-1})$. </li>
</ul>
It is obvious that no one has actually measured the surface temperature of the sun. In this instance, the sun's temperature was deduced from its electromagnetic spectrum. Second, from Planck's Law, it can be demonstrated (Robinson 1966 or Roseman 1978) that the wavelength at the maximum radiated energy is only a function of the temperature of the radiating body.
\begin{equation}
\lambda_{max} = \frac{2.897}{T} \times 10^{-3}
(\#eq:heattrans-3)
\end{equation}
where
<ul class="list-unstyled">
<li> $\lambda_{max}$ = wavelength of maximum radiation ($m$), and </li>
<li> $T$ = temperature ($K$). </li>
</ul>
Third, the Stefan-Boltzmann Law provides the even more remarkable result that the total energy emitted, $Q_{emit}$, by a radiating body (the area under the curve, Fig. \@ref(fig:fig-heattrans-4)) is proportional to the fourth power of the surface temperature $T_s$.
\begin{equation}
Q_{emit} = \varepsilon \sigma (273 + T_s)^4
(\#eq:heattrans-4)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_{emit}$ is the radiant energy emitted from the surface ($W m^{-2}$). </li>
<li> $\varepsilon$ is the emissivity (range zero to one), </li>
<li> $\sigma$ is the Stephan-Boltzmann constant ($5.67 \times 10^{-8} W m^{-2} K^{-4}, 8.17 \times 10^{-11} cal \, min^{-l} cm^{-2} K^{-4})$, and </li>
<li> $T_s$ is the surface temperature ($^{\circ}C$) </li>
</ul>
Roseman (1978) gives a more complete discussion of these laws.
Kirchoff studied the emissivity and absorptivity of materials. He showed that the energy absorbed at any specific wavelength $\lambda$ at constant temperature is equal to the energy emitted at $\lambda$. That is, if the absorptivity of a surface $a(\lambda)$ represents the fraction of incident radiation absorbed at $\lambda$ and $\varepsilon (\lambda)$ is the emissivity, the radiation emitted at $\lambda$ divided by the radiation emitted from a blackbody, then $a(\lambda) = \varepsilon (\lambda)$ for each wavelength. If $\varepsilon = 1$ for all wavelengths, then the object is said to be a blackbody. Although no system is a perfect blackbody, many are approximately so. In the infrared region, 3 to 100 $\mu m$, most objects such as vegetation, soil and water behave like blackbodies ($\varepsilon = 1$). Table 7.1 gives the emissivities of some plants and animals.
> Table 7.1. Long Wave Emissivities (percent, from Monteith, J.L., 1973, p. 68.)
Leaves
| Species | Average |
|-------------------------------------------|------------|
| Maize (*Zea mays*) | 94.4 ± 0.4 |
| Tobacco (*Nicotiana tabacum*) | 97.2 ± 0.6 |
| Snap bean (*Phaseolus vulgaris*) | 93.8 ± 0.8 |
| Cotton (*Gossypium hirsutum Deltapine*) | 96.4 ± 0.7 |
| Sugar cane (*Saccharum officinarum*) | 99.5 ± 0.4 |
| Poplar (*Populus fremontii*) | 97.7 ± 0.4 |
| Geranium (*Pelargonium domesticum*) | 99.2 ± 0.2 |
| Cactus (*Opuntia rufida*) | 97.7 ± 0.2 |
Animals
| Species | Dorsal | Ventral | Average |
|------------------------------------------|--------|---------|---------|
| Red squirrel (*Tamiasciurus hudsonicus*) | 95-98 | 97-100 | |
| Gray squirrel (*Sciurus carolinensis*) | 99 | 99 | |
| Mole (*Scalopus aquaticus*) | 97 | -- | |
| Deer mouse (*Peromyscus sp.*) | -- | 94 | |
| Gray wolf | | | 99 |
| Caribou | | | 100 |
| Snowshoe hare | | | 99 |
| Man (*Homo sapiens*) | | | 98 |
> Table 7.2. Reflectivities of Biological Materials for Solar Radiation (from Monteith, J.L., 1973, pp. 66-67.)
LEAVES
Reflection coefficients r (%) for Solar Radiation
| Species | Upper | Lower | Average |
|------------------------------------|:-----:|:-----:|:-------:|
| Maize (*Zea mays*) | | | 29 |
| Tobacco (*Nicotiana tabacum*) | | | 29 |
| Cucumber (*Cucumis sativa*) | | | 31 |
| Tomato (*Lycopersicon esculentum*) | | | 28 |
| Birch (*Betula alba*) | 30 | 33 | 32 |
| Aspen (*Populus tremuloides*) | 32 | 36 | 34 |
| Oak (*Quercus alba*) | 28 | 33 | 30 |
| Elm (*Ulmus rubra*) | 24 | 31 | 28 |
VEGETATION -- MAXIMUM GROUND COVER
| Farm Crops | Daily Mean | Farm Crops | Daily Mean |
|------------|:----------:|------------|:----------:|
| Grass | 24 | Wheat | 22 |
| Sugar beet | 26 | Pasture | 25 |
| Barley | 23 | Barley | 26 |
| Wheat | 26 | Pineapple | 15 |
| Beans | 24 | Sorghum | 20 |
| Maize | 18 - 22 | Sugar cane | 15 |
| Tobacco | 19 - 24 | Cotton | 21 |
| Cucumber | 26 | Groundnuts | 17 |
| Tomato | 23 | | |
| Natural Vegetation | Daily Mean | Natural Vegetation | Daily Mean |
|-------------------------|:----------:|--------------------|:----------:|
| Heather | 14 | Natural pasture | 25 |
| Bracken | 24 | Derived savanna | 15 |
| Gorse | 18 | Guinea savanna | 19 |
| Maquis, evergreen scrub | 21 | | |
| Forests and Orchards | Daily Mean | Forests and Orchards | Daily Mean |
|----------------------|:----------:|----------------------|:----------:|
| Deciduous woodland | 18 | Eucalyptus | 19 |
| Coniferous woodland | 16 | Tropical rainforest | 13 |
| Orange orchard | 16 | Swamp forest | 12 |
| Aleppo pine | 17 | | |
ANIMAL COATS
| Mammals | Dorsal | Ventral | Average |
|------------------------------------------|:------:|:-------:|:-------:|
| Red squirrel (*Tamiasciurus hudsonicus*) | 27 | 22 | 25 |
| Gray squirrel (*Sciurus carolinensis*) | 22 | 39 | 31 |
| Field mouse (*Microtus pennsylvanicus*) | 11 | 17 | 14 |
| Shrew (*Sorex sp.*) | 19 | 26 | 23 |
| Mole (*Scalopus aquaticus*) | 19 | 19 | 19 |
| Gray fox (*Urocyon cinereo argenteus*) | | | 34 |
| Zulu cattle | | | 51 |
| Red Sussex cattle | | | 17 |
| Aberdeen Angus cattle | | | 11 |
| Sheep weathered fleece | | | 26 |
| Newly shorn fleece | | | 42 |
| Man (*Homo sapiens*) Eurasian | | | 35 |
| Negroid | | | 18 |
| Birds | Wing | Breast | Average |
|--------------------------------------------|:----:|:------:|:-------:|
| Cardinal (*Richmondena cardinalis*) | 23 | 40 | |
| Bluebird | 27 | 34 | |
| Tree swallow | 24 | 57 | |
| Magpie | 19 | 46 | |
| Canada goose | 15 | 35 | |
| Mallard duck | 24 | 36 | |
| Mourning dove | 30 | 39 | |
| Starling (*Sturnus vulgaris*) | | | 34 |
| Glaucous-winged gull (*Larus glaucescens*) | | | 52 |
This, however, is not true in the visible part of the spectrum. In general, any wavelength can be absorbed, reflected, or transmitted. This is written:
\begin{equation}
a(\lambda) + r(\lambda) + t(\lambda) = 1
(\#eq:heattrans-5)
\end{equation}
where
<ul class="list-unstyled">
<li> $a(\lambda)$ = absorptivity at wavelength $\lambda$, </li>
<li> $r(\lambda)$ = reflectivity at wavelength $\lambda$, </li>
<li> $t(\lambda)$ = transitivity at wavelength $\lambda$, </li>
</ul>
and each term is between zero and one (see Siegel and Howell 1972 for a more complete discussion). Table 7.2 gives some values for $r$ averaged over the entire spectrum for different ecological systems. Values of $a$, $r$, $t$ are also given by Porter (1967) for animals and Monteith (1973) for plants and animals.
As an example of radiation flux, let us calculate the radiant energy emitted by the cactus, *Opuntia rufida*. To do this, we must specify the emissivity $\varepsilon$ and the surface temperature $T_s$. In Table 7.1, $\varepsilon = 0.977$ for *O. rufida* and, if we take $T_s = 10 ^{\circ}C$, then:
\begin{equation}
Q_{emit} = 0.977 \times 5.67 \times 10^{-8} (10 + 273)^4 = 355.5 W m^{-2}
(\#eq:heattrans-6)
\end{equation}
If we wish to know the total heat loss per second ($1 watt = 1 J s^{-1}$) for the plant, we must multiply our answer by the surface area of the cactus.
The TrenchR functions for thermal radiation account for surface area and calculate net radiation based on the difference between the organism's surface and the environment. The rate of emission of thermal radiation from the surface of an animal, $Q_{emit} (W)$, is determined by the difference between the surface temperature of the animal $T_b (K)$ and the temperatures of the air $T_a (K)$ and ground $T_g (K)$. $T_a$ is additionally used to estimate sky temperature $T_{sky} (K)$, the effective radiant temperature of the sky as $T_{sky}=1.22(T_a-273.15)-20.4+273.15$ (Gates 1980). The following expressions can be used to estimate $Q_{emit} (W)$ for animals in enclosed and open environments, respectively:
$$
enclosed: Q_{emit}= A_r \epsilon \sigma (T_b^4 - T_a^4)\\
open: Q_{emit}= \epsilon \sigma (A_s (T_b^4 - T_{sky}^4)+A_r (T_b^4 - T_g^4)),
$$
where $A_s$ and $A_r$ are the areas ($m^2$) exposed to the sky (or enclosure) and the ground, respectively; $\epsilon$ is the longwave infrared emissivity of skin (proportion, 0.95 to 1 for most animals, Gates 1980); and $\sigma$ is the Stefan-Boltzmann constant.
The function is available in R as follows:
```{r}
library(TrenchR)
Qemitted_thermal_radiation(epsilon=0.96, A=1, psa_dir=0.4,
psa_ref=0.6, T_b=303, T_g=293, T_a=298, enclosed=FALSE)
```
The calculation of absorbed radiation $Q_{abs}$, although straightforward with some assumptions, is a lengthy task because several longwave and shortwave components must be included. We briefly review the basic TrenchR functions for estimating absorbed radiation here. The solar and thermal radiation absorbed by animals, $Q_{abs} (W)$, is the sum of direct $S_{dir}$, diffuse $S_{dif}$, and reflected $S_{ref}$ solar radiation ($W/m^2$). The sum is weighted by the organism's surface area $A$ exposed to the radiation sources. Additionally, all forms of incoming radiation are multiplied by the solar absorptivity of the animal surface ($a$ proportion) to estimate absorbed radiation. The summation of incoming solar radiation is thus as follows:
$$Q_{abs}= aA_{dir}S_{dir} + aA_{dif}S_{dif} + aA_{ref}S_{ref},$$
where $A_{dir}$,$A_{dif}$,and $A_{ref}$ are the surface areas exposed to direct, diffuse, and reflected solar radiation, respectively.
The summation is available in R as follows
```{r}
Qradiation_absorbed(a=0.9, A=1, psa_dir=0.4, psa_ref=0.4,
S_dir=1000, S_dif=200, a_s=0.5)
```
Additional TrenchR functions are available to estimate the radiation components.
### Conduction {#heattransfer-conduction}
**Conduction**, $Q_{cond}$, describes the physical process of molecular thermal energy flow within a solid, fluid or gas. In fluids and especially gases, motion of the medium usually makes the process of convection a more important mechanism of heat transfer than conduction. Heat flows by conduction when nearby molecules have more internal energy (higher temperature) and thus a greater mean kinetic energy. Energy can be transferred by molecular collisions (fluids) or by diffusion (solids) (Kreith 1973, pages 4-5).
In conduction, the rate of heat flow depends on the thermal conductivity of the material, the area through which the heat flows and the temperature gradient in the material. Equation \@ref(eq:heattrans-7) describes the relation as:
\begin{equation}
Q_{cond} = -k A_c \frac{dT}{dx}
(\#eq:heattrans-7)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_{cond}$ is conduction ($W$), </li>
<li> $k$ is thermal conductivity ($W m^{-1} {^{\circ}C^{-1}}$), </li>
<li> $A_c$ is the area through which the heat is flowing ($m^2$), and </li>
<li> $\frac{dT}{dx}$ is the thermal gradient ($^{\circ}C m^{-1}$). </li>
</ul>
The negative sign in equation \@ref(eq:heattrans-7) is to indicate that the direction of heat flow is from regions of higher temperature to lower temperature (opposite the temperature gradient). This is shown in Fig. \@ref(fig:fig-heattrans-5).
```{r fig-heattrans-5, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Sketch illustrating sign convention for conduction heat flow. From Kreith, F. 1973. P. 8.'}
knitr::include_graphics('figures/fig-heattrans-5.png')
```
The thermal conductivity depends on the molecular structure of the material. Some cooking pots have copper-coated bottoms because this metal transfers heat better than other materials. Home insulation materials reduce the flow of heat because they trap air which has a low thermal conductivity. The hollow centers of the hair shafts of some mammals reduces the conduction of heat along the fiber. The thermal conductivity can be calculated by measuring the heat flow when the temperature slope (Fig. \@ref(fig:fig-heattrans-5)) is one.
As an example of conduction, we will examine the heat flow between the alligator, *Alligator mississippiensis*, and substratum. We assume that the skin is the same temperature as the ground and that the animal is in good thermal contact with the surface (there are no air pockets reducing heat flow). The conduction exchange can now be calculated as follows. The thermal conductivity of fat is 0.20 $W m^{-1} {^{\circ}C^{-1}}$ while the soil-rock range of conductivity is between 0.556 and 3.25 $W m^{-1} {^{\circ}C^{-1}}$. Since the fat layer of 0.7 cm has a lower conductivity, it controls the rate of heat flow. Here we also assume that 0.5 $m^2$ of the alligator at $T_b = 22^{\circ}C$ are in contact with the ground at $T_g = 30 ^{\circ}C$. In steady state, the conductive heat flux is then a linear function of the potential, as given in equation \@ref(eq:heattrans-7).
\begin{equation}
Q_{cond} = \frac{k A_c}{x} (T_b - T_g) = \frac{0.198 \times 0.5}{0.007} (22-30) = -114 W
(\#eq:heattrans-8)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_{cond}$ is conduction ($W$, negative since energy is flowing from the ground to the animal), </li>
<li> $T_b$ is body temperature of the alligator ($^{\circ}C$), </li>
<li> $k$ is the thermal conductivity of fat ($W m^{-1} {^{\circ}C^{-1}}$), </li>
<li> $T_g$ is ground temperature ($^{\circ}C$), and </li>
<li> $\Delta x$ is thickness of layer ($m$). </li>
</ul>
The TrenchR package includes similar functions for modelling convection based on whether the thermal conductivity of the animal or the substrate is the limited step. When animal conductance is the rate limiting step, $Q_{cond}$ can be estimated as follows:
$$Q_{cond}= A\cdot proportion\cdot k(T_g-T_b)/d, $$
where $k$ is thermal conductivity ($W K^{-1} m^{-1} {^{\circ}C^{-1}}$), $T_g$ is ground (surface) temperature (K), $T_b$ is body temperature (K), and $d$ is the mean thickness of the animal skin (surface, $m$). This formulation assumes the organism has a well mixed interior rather than an interior temperature gradient.
When substrate thermal conductivity is the rate limiting step, $Q_{cond}$ can be estimated as follows:
$$Q_{cond}= A\cdot proportion \cdot(2K_g/D)(T_b-T_g),$$
where $K_g$ is the thermal conductivity of substrate ($W K^{-1} m^{-1}$) and $D$ is the characteristic dimension of the animal ($m$).
The functions are available in R:
```{r}
Qconduction_animal(T_g= 293,T_b=303,d=10^-6,K=0.5,A=10^-3,
proportion=0.2)
Qconduction_substrate(T_g= 293,T_b=303,D=0.01,K_g=0.3,A=10^-2,
proportion=0.2)
```
Before proceeding to a discussion of convection, it is important to talk about an alternative view of conduction. It is possible to rewrite equation \@ref(eq:heattrans-8) as
\begin{equation}
G = k_g (T_b - T_g)
(\#eq:heattrans-9)
\end{equation}
The rate of heat flow is then equal to a conductance $k_g$ times a potential, the temperature difference. The conductivity, area of contact and length have all been subsumed into $k_g$. When working heat transfer problems, it is also common to speak and think of resistances to heat transfer. A resistance is simply the reciprocal of the conductance. If there is a large resistance to heat flow, there is a low conductance. Monteith (1973) and Campbell (1977) have adopted the resistance approach for describing mass and momentum fluxes as well as heat transport. This concept originated with Ohm's Law where the electrical current flow is equal to the potential or voltage drop divided by the resistance of the material. Thus, the correspondence of a flux driven by a potential is called Ohm's Law analogy. Kreith (1973, chapters 1 and 2) shows how radiation, convection and evaporation can also be thought of in these terms. It should be remembered though that in general the Ohm's Law analogy, due to the complications introduced by turbulent mass and turbulent energy transfer, is an approximation (see Tennekes and Lumley 1973).
Conduction is often ignored in the heat transfer of plants and animals because one must know or make assumptions about the temperatures, boundary layer thickness, thermal conductivity, and contact resistance. There are not many actual measurements reported in the ecological literature but Mount (1968), Derby and Gates (1966), Gatesby (1977), and Thockelson and Maxwell (1974) offer some interesting examples of the importance of conduction.
### Convection {#heattransfer-convection}
**Convection** is the transfer of heat between solids and fluids (i.e., gases and liquids) or when fluids of different temperatures are in contact. Conduction takes place with nearby particles on the molecular level but the additional factor of the circulation of the fluid distinguishes convection from conduction. When there is no motion in the fluid except that caused by density gradients and by the resultant buoyant forces, this process is called "free convection." If the fluid is moving relative to the other fluid or solid, the process is called "forced convection." If the flow is turbulent, besides the molecular processes, there will be increased heat transfer caused by the bulk transport of fluid. Also, at certain fluid velocities, free and forced convection may both contribute to the convection term. Indeed convection is comprised of several complex physical processes occurring simultaneously.
Water and air are the two fluids that commonly interest the thermobiologist. Most aquatic organisms are at ambient water temperature; hence, convective transfer is unimportant because there is no temperature difference. Marine mammals, birds, a few large fish and turtles, however, maintain body temperatures above water temperature, which requires thick insulation (Bartholomew 1977, Schmidt Nielsen 1975). This is because the high specific heat ($4.18 \times 10^3 J kg^-1 {^{\circ}C^{-1}}$) and thermal conductivity ($59.8 W m^{-2} {^{\circ}C^{-1}}$) of water create a large heat loss. The extra heat transferred due to the movement of the fluid has not been examined for many organisms (but see Eskine and Spotila 1977 and Lueke et al. 1976). Although the specific heat and thermal conductivity of air are much less than for water, convection is still a significant mode of heat transfer for terrestrial organisms.
As with conduction, convective heat flow can be thought of as a potential (the difference in temperature between the surface of the object and the surrounding fluid) times a conductance. The conductance is most commonly written as the product of two terms as in equation \@ref(eq:heattrans-10):
\begin{equation}
Q_{conv} = h_c A_c (T_s - T)
(\#eq:heattrans-10)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_{conv}$ is the convective heat flux ($W$), </li>
<li> $h_c$ is the convective heat transfer coefficient. ($W m^{-2} {^{\circ}C^{-1}}$), </li>
<li> $A_c$ is the area at object in contact with the fluid ($m^2$), </li>
<li> $T_s$ is the surface temperature of the object ($^{\circ}C$), and </li>
<li> $T$ is the fluid temperature ($^{\circ}C$). </li>
</ul>
Usually, $A_c$, $T_s$ and $T$ can be evaluated. The heat transfer coefficient, on the other hand, is often a difficult parameter to estimate in the natural environment because of turbulence (Kowalski and Mitchell 1976, and Noble 1975).
TrenchR offers the following function for modelling convection. The function accounts for the proportion of the surface area in contact with the substrate, $proportion$, and an enhancement factor multiplier, $e_f$, that can be incorporated to account for increases in heat exchange resulting from air turbulence in field conditions. Conduction can be estimated as follows:
$$Q_{conv}= ef\cdot h_c(A\cdot proportion)(T_a-T_b).$$
The function is available in R:
```{r}
Qconvection(T_a= 293,T_b= 303,H=10.45,A=0.0025, proportion=0.85)
```
Generally, the heat transfer coefficient is evaluated as follows:
\begin{equation}
h_c = \frac{Nu \, k}{D}
(\#eq:heattrans-11)
\end{equation}
where
<ul class="list-unstyled">
<li> $h_c$ is the heat transfer coefficient ($W m^{-2} {^{\circ}C^{-1}}$), </li>
<li> $Nu$ is the Nusselt number, </li>
<li> $k$ is the thermal conductivity of the fluid ($W m^{-1} {^{\circ}C}$), and </li>
<li> $D$ is the characteristic dimension of the system ($m$). </li>
</ul>
The heat transfer coefficient, $h_c$, is a value which has been averaged over the entire surface area of the system. The characteristic dimension $D$ must be defined for each different geometric shape one wishes to consider. Commonly, one might use the diameter of a sphere or the widest point of a leaf in the direction of the wind. The Nusselt number is a non-dimensional number used to scale laboratory results to other wind velocity and fluid properties. Kreith (1973, page 317) gives two physical interpretations for the Nusselt number. It may be thought of 'as the ratio of the temperature gradient in the fluid immediately in contact with the surface to a reference temperature gradient $(T_s - T)/D$' or the 'ratio $D/x$ where $x$ is the fluid thickness of a hypothetical layer which, if completely stagnant, offers the same thermal resistance to the flow of heat as the actual boundary layer.'
In practice, another non-dimensional number, the Reynolds number, $Re$, which is the ratio of inertial ($\rho v^2$) to viscous forces ($\mu V/D$), is introduced to account for the scaling effects of fluid velocity, geometry, and fluid properties (see Kreith 1973 or Cowan 1977 for a discussion of $Re$).
\begin{equation}
Re = \frac{\rho vD}{\mu}
(\#eq:heattrans-12)
\end{equation}
where
<ul class="list-unstyled">
<li> $\rho$ is the fluid density ($kg\,m^{-3}$), </li>
<li> $V$ is the fluid velocity ($m s^{-1}$), </li>
<li> $D$ is the characteristic dimension ($m$), and </li>
<li> $\mu$ is the fluid viscosity ($kg m^{-1} s^{-1}$). </li>
</ul>
For a particular geometry, a functional relationship between the Nusselt number and the Reynolds number can then be calculated from laboratory measurements ($h_c$ versus $V$). Usually, the result is expressed as:
\begin{equation}
Nu = a {Re}^b
(\#eq:heattrans-13)
\end{equation}
where $a$ and $b$ are determined by regression. The parameters will be different for different shaped objects (Kreith 1973). Then, using equation \@ref(eq:heattrans-12), the $Nu$ can be calculated which in turn will yield the convection coefficient from equation \@ref(eq:heattrans-11). This procedure is the standard method used in engineering. In ecological studies, where one is concerned about the effects of wind speed and size and the geometry of the system is constant, the convection coefficient is sometimes given without specifically indicating the coefficient of equation \@ref(eq:heattrans-13) as in the following example. This approach is more direct and is fine to use as long as the student realizes what has been implied.
The Nusselt and Reynolds numbers and additional dimensionless groups are available in TrenchR as follows:
```{r}
Nusselt_number(H_L=20, D=0.01, K=0.5)
Reynolds_number(u=1, D=0.001, nu=1.2)
```
TrenchR offers methods to estimate the convective heat transfer coefficient entails based on either empirical measurements (`heat_transfer_coefficient()`) or approximating the animal shape as a sphere (`heat_transfer_coefficient_approximation()`), which enables simplification while also producing an reasonable approximation [Mitchell 1976]. The functions approximate forced convective heat transfer as a function of windspeed $V (m/s)$, the characteristic dimension $D (m)$, the thermal conductivity of the air $k (W m^{-1} K^{-1})$, the kinematic viscosity of the air $nu (m^2 s^{-1})$, and the taxa or a generic shape. An additional, simplified function (`heat_transfer_coefficient_simple()`) provides a reasonable approximation based on $V$ and $D$ for most environmental conditions.
```{r}
heat_transfer_coefficient(V=0.5,D=0.05,K= 25.7 * 10^(-3),
nu= 15.3 * 10^(-6), "cylinder")
heat_transfer_coefficient_approximation(V=3, D=0.05,
K= 25.7 * 10^(-3), nu= 15.3 * 10^(-6), "sphere")
heat_transfer_coefficient_simple(V=0.5,D=0.05)
```
Tibbals et al. (1964), from earlier experimental work by Gates and Benedict (1963), were able to use the following formula to evaluate convective exchange for a leaf:
\begin{equation}
Q_{conv} = k_1 \bigg(\frac{V}{D}\bigg)^{0.5} (T_s - T_a)
(\#eq:heattrans-14)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_{conv}$ is the convective heat flux ($W m^{-2}$, positive for heat flow from the leaf to the air), </li>
<li> $k_1$ is 9.14 ($J m^{-2} {^{\circ}C^{-1}} s^{-1/2}$), </li>
<li> $V$ is wind velocity ($m s^{-1}$), </li>
<li> $D$ is the characteristic dimension (widest point) of the leaf in the direction of the wind ($m$), </li>
<li> $T_s$ is the surface temperature of the leaf ($^{\circ}C$), and </li>
<li> $T_a$ is the air temperature ($^{\circ}C$). </li>
</ul>
After using this convection term $Q_{conv}$ in the energy budget equation, Tibbals et al. (1964, page 538) concluded for similar energy environments "that . . . that the broad deciduous type leaf would be considerably warmer than the conifers . . ." and " . . . that the demand on transpiration is probably greatest per unit surface area for the broad-leaf plant than the conifers." (Also see Gates 1977.)
The theory of convective transfer is more complex than presented here. Although some additional material will be included in the problems, the reader may wish to refer to Kreith (1973), Monteith (1973) or Campbell (1977).
### Evaporation {#heattransfer-evaporation}
Evaporation is the process of water changing from a liquid to a gas. For animals, water can be lost through respiration, through special glands, or through any part of the skin. Water loss is usually a small component of the heat balance for animals but may be large for animals with moist skins. It usually increases quickly at higher temperatures. Figure \@ref(fig:fig-heattrans-6) from Dawson and Templeton (1963), shows this effect for the collared lizard, *Crotaphytus collaris*. In general, the water loss, $E$, is given by equation \@ref(eq:heattrans-15). Again, this is in the form of a potential divided by a resistance (an Ohm's Law analogy).
\begin{equation}
E = \frac{C_o - C_a}{r_e}
(\#eq:heattrans-15)
\end{equation}
where
<ul class="list-unstyled">
<li> $E$ is water loss ($kg\,s^{-1}$), </li>
<li> $C_o - C_a$ is the water vapor concentration difference between the surface ($o$) and the free atmosphere ($a$) ($kg\,m^{-1}$), </li>
<li> $r_e$ is the resistance to water vapor loss ($s\,m^{-1}$). </li>
</ul>
The TrenchR package incorporates a function based on empirically estimated relationships (`Qevaporation`) to estimate evaporation.
```{r fig-heattrans-6, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Relation of evaporative water loss to ambient temperature in collared lizards weighing 25-35g. Data represent minimal values at various temperatures for animals studied. (From Dawson, W.R., and J.R. Templeton. 1963. P. 231.)'}
knitr::include_graphics('figures/fig-heattrans-6.png')
```
The water vapor concentration at the surface of the water loss site may be saturated such as that of a leaf or a lung of a bird but it may be less than saturated as in the skin of a lizard. The concentration in the air is equal to the saturated concentration (at air temperature $T_a$) times the relative humidity. The resistance to water loss in the skin of a lizard will be controlled by the resistance to water movement in the skin and the boundary layer resistance. In a leaf, the total resistance to water loss is a combination of the stomatal resistance and the boundary layer resistance. But the water loss resistance from the moist skin of a frog was assumed to be equal to the boundary layer resistance only (Tracy 1976). In general, the boundary layer resistance is a function of the diffusion coefficient of water vapor in air and the boundary layer thickness. This thickness in turn depends on the size of the object as well as the wind speed.
To relate the water transport calculated in equation \@ref(eq:heattrans-15) to the energy balance, the mass flux $E$ must be multiplied by the latent heat of evaporation $L$. $L$ can be closely approximated as a function of temperature.
\begin{equation}
L(T) = 2.50 \times 10^6 - 2.38 \times 10^3 T
(\#eq:heattrans-16)
\end{equation}
where
<ul class="list-unstyled">
<li> $L(T)$ is the latent heat of evaporation (J kg^-1^), </li>
<li> $T$ is the surface temperature at the site of evaporation (°C). </li>
</ul>
As an example of the energy flux, the water loss at $T_a = 40^{\circ}C$ for *C. collaris* is 0.8 mg of $H_2 O\,g^{-1} {hr}^{-1}$ Correcting the units to kg $s^{-1}$ for a 30 g lizard yields $6.67 \times 10^{-9} kg\:s^{-1}$. Therefore, using equation \@ref(eq:heattrans-16), the energy loss for the animal is $1.6 \times 10^{-2} W$. In this example, we have not calculated $E$ explicitly, mechanistically accounting for wind speed or water vapor concentration of the environment, but animal physiologists often report evaporation as a function of air or body temperature only. These factors become more important when water loss is a larger fraction of the total energy budget or when one is concerned with the water balance of the organism (Welsh and Tracy 1977). Later in the text, a functional relationship to include these factors is given for water loss from a leaf. Generally, transpiration is a significant energy loss for plants which has led Monteith (1973) to make the distinction between "wet" and "dry" systems.
## Thermal Properties of Materials {#heattransfer-thermalproperties}
In the above examples, we have mentioned several thermal properties such as thermal capacity and specific heat. Now we wish to define them more carefully.
**Specific heat** is defined as:
\begin{equation}
c = \frac{\Delta O}{\Delta T \, M}
(\#eq:heattrans-17)
\end{equation}
where
<ul class="list-unstyled">
<li> $c$ is the specific heat (J kg^-1^ °C^-1^), </li>
<li> $\Delta Q$ is the heat flux (J), </li>
<li> $\Delta T$ is a 1° change temperature (°C), and </li>
<li> $M$ is a 1 kilogram system (kg). </li>
</ul>
We cannot measure the amount of heat a body can hold, so in a sense the term specific heat is misleading, but it is commonly used. It is simply the amount of heat which must be added per unit mass of material for a $1^{\circ}C$ rise in temperature. What actually is changing is the internal energy of the system. Table 7.3 (after Monteith 1973) shows values of specific heat for different materials. See Stevenson (1979a) or Zemansky and Van Ness (1966) for a more formal definition.
The heat capacity of the system can then be obtained by multiplying the mass of the system by specific heat:
\begin{equation}
C = Mc
(\#eq:heattrans-18)
\end{equation}
For instance, if we consider $0.12 kg$ of granite and the same weight of peat soil as two systems (see Table 7.3, the heat capacity of each is the specific heat c times the mass $M$ or $96 J kg^{-1} {^{\circ}C^{-1}}$ for granite and $226J kg^{-1} °C^{-1}$ the peat. To calculate the energy necessary to raise each system $10°C$, we can employ equation \@ref(eq:heattrans-18) in the form
$$\Delta Q = \Delta T \, M \, c$$
The answer is found to 960 J for the granite and 2,200 J for the peat.
>Table 7.3. Thermal properties of natural materials.
Material|Density|Specific heat|Thermal conductivity|Thermal capacity|Thermal diffusivity
:-----:|:-----:|:-----:|:-----:|:-----:|:-----:
| |$\rho$|$c$|$k$|$C_V=\rho c$|$k = \frac{k}{\rho c}$
| |kg m^-3^ $\times$ 10^3^|J kg^-1^ °C^-1^ $\times$ 10^3^|Wm^-1^°C^-1^|J m^-3^ °C^-1^ $\times$ 10^6^|m^2^s^-1^ $\times$ 10^-6^
Granite|2.6|0.8|4.61|2.08|2.22
Quartz|2.66|0.8|8.8|2.13|4.14
Clay minerals|2.65|0.9|2.92|2.39|1.22
Ice|0.9|2.1|2.3|1.89|1.22
Old snow|0.5|2.1|0.29|1.05|0.28
New snow|0.1|2.1|0.08|0.21|0.38
Wet sand|1.6|1.3|1.68|2.08|0.81
Dry sand|1.4|0.8|0.17|1.12|0.15
Wet marsh soil|0.9|3.4|0.84|3.06|0.27
Peat soil|0.3|1.8|0.06|0.54|0.11
Still water|1|4.18|0.63|4.18|0.15
Still air|0.001|1|0.02|0.001|20
Organic matter|1.3|1.92|0.25| |1
Fur|0.98| |0.33| |
Mean body|0.98 - 1.05|3.42| | |
Fat| |1.88|0.14 - 0.20| |
Plant leaf| | | | |
Wood|0.6|1.3|0.15|0.78|0.19
An equally valid way of considering the heat capacity of a system is to define the thermal capacity. It is the heat added per degree change per unit volume and thus is equal to the specific heat times the density of the material of the system (see Table 7.3).
\begin{equation}
c_v = \frac{\Delta Q}{\Delta T \, V}
(\#eq:heattrans-19)
\end{equation}
where
<ul class="list-unstyled">
<li> $c_v$ is thermal capacity ($J m^{-3}$), </li>
<li> $\Delta Q$ is the heat change in the system ($J$), </li>
<li> $\Delta T$ is change in temperature ($^{\circ}C$), and </li>
<li> $V$ is unit volume ($m^3$). </li>
</ul>
Thermal conductivity along with the notions of conductance and thermal resistance have already been discussed and defined in the section on conduction. The last parameter we wish to define is the thermal diffusivity $K$ which is the ratio of the thermal conductivity $K$ divided by density $\rho$ times the specific heat.
\begin{equation}
K = \frac{k}{\rho c} \bigg(\frac{J m^{-1} {^{\circ}C^{-1}} s^{-1}}{kg \, m^{-3} \, kg^{-1} {^{\circ}C^{-1}}}\bigg) \\
= m^2 s^{-1}
(\#eq:heattrans-20)
\end{equation}
The thermal diffusity is important in non-steady state conduction problems where thermal energy can be stored or transported as shown in the first example of heat flow in the soil.
## Examples of Heat Energy Budget {#heattransfer-heatenergy}
To illustrate the heat transfer principles and their biological importance, we chose three systems: the soil, a leaf, and a lizard. Again, the reader is asked to think of the ecological importance of the system and how the thermal balance influences physiological processes as the examples are presented.
### Heat Flow in Soil {#heattransfer-soil}
In soil, heat flow has great biological importance. Not only does the energy balance control the soil temperature, but it greatly affects the moisture content. Both factors are important for photosynthesis in green plants. Soil temperature also influences nutrient uptake as we have seen in our example at the beginning of the module. Fungi, bacteria, insects, as well as many other invertebrates and vertebrates, commonly spend part or all of their life cycles in or surrounded by the soil. Soil temperatures influence metabolic rates and may serve as a behavioral cue for daily and seasonal activity patterns.
The simplest representation of heat flow in the soil is a conduction process where the heat flux $dQ$ per unit time $dt$ is equal to the conductivity $k$ times the difference in temperature $dT$ over a unit path length $dz$.
\begin{equation}
\frac{dQ}{dt} = -k \frac{dT}{dz}
(\#eq:heattrans-21)
\end{equation}
The minus sign is used to indicate that the potential gradient is in the direction of decreasing temperature.
Another result can be derived by considering Fig. \@ref(fig:fig-heattrans-7). The First Law states that the change in internal energy (storage) is equal to the inflow minus the outflow. The change in internal energy will be equal to the mass ($\rho d z$) times the heat capacity ($c$), multiplied by the change in temperature with time ($\Delta T$).
\begin{align}
c \rho \Delta T \, d z &= k \bigg(\frac{dT}{dz}\bigg)_U - k \bigg(\frac{dT}{dz}\bigg)_L \notag \\
\Delta T &= \frac{k}{c\rho} \frac{1}{dz} \Bigg( \bigg(\frac{dT}{dz}\bigg)_U - \bigg(\frac{dT}{dz}\bigg)_L\Bigg) \notag \\
\frac{\partial T}{\partial t} &= \frac{k}{c \rho} \frac{\partial^2 T}{\partial z^2}
(\#eq:heattrans-22)
\end{align}
Equation \@ref(eq:heattrans-22) is a form of the diffusion equation and $\frac{k}{c \rho}$ is called the thermal diffusivity. This equation can be solved analytically if simple enough boundary conditions are assumed and the thermal diffusivity remains constant. In general, the diffusivity is a function of the water content of the soil and the soil temperature (here numerical methods must be used). We can, however, get a feeling for the heat transfer profile by noting the general boundary conditions. We know that at the soil surface under steady state conditions the temperature will cycle daily while at some depth $z_0$ below the surface the temperature will not change.
Figures \@ref(fig:fig-heattrans-8) and \@ref(fig:fig-heattrans-9) from Lowry (1969) give different representations of how the soil might change with time and depth. Simpson (1977), Carslaw and Jaeger (1959), and Van Wijk (1966) present a more detailed discussion of soil heat flow.
```{r fig-heattrans-7, echo=FALSE, fig.height=4, fig.fullwidth=FALSE, fig.cap='Schematic view of a unit of soil, showing heat inflow from above and heat outflow below, leading to derivation of Eq. 7.22. (From Lowry, W.P. 1969. P. 51)'}
knitr::include_graphics('figures/fig-heattrans-7.png')
```
```{r fig-heattrans-8, echo=FALSE, fig.height=4, fig.fullwidth=FALSE, fig.cap='Generalized soil-air temperature profiles (tautochrones) near the soil surface, for four-hour intervals during a diurnal period. (From Lowry, W.P. 1969. P.37.)'}
knitr::include_graphics('figures/fig-heattrans-8.png')
```
```{r fig-heattrans-9, echo=FALSE, fig.height=4, fig.fullwidth=FALSE, fig.cap='Generalized diurnal patterns of isotherms near the soil surface on coordinates of time and distance. (From Lowry, W.P. 1969. P. 37.)'}
knitr::include_graphics('figures/fig-heattrans-9.png')
```
### A Leaf {#heattransfer-leaf}
Our second example is the energy balance of a leaf. Gates (1968) chose to model the heat balance of a leaf because it has a distinct physical geometry and because it is the unit of photosynthesis. The governing heat flux equation for the steady state condition was given in the module on the First Law of Thermodynamics and is repeated here:
\begin{equation}
Q_a = Q_e + C + LE
(\#eq:heattrans-23)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_a$ is the radiant energy absorbed by the leaf ($W m^{-2}$), </li>
<li> $Q_e$ is the energy emitted by the leaf ($W m^{-2}$), </li>
<li> $C$ is the convective flux ($W m^{-2}$), and </li>
<li> $LE$ is the evaporative flux ($W m^{-2}$). </li>
</ul>
With empirical measurements and some assumptions (see Gates 1977), equation \@ref(eq:heattrans-23) is expanded as:
\begin{equation}
Q_a = \varepsilon \sigma (T_l + 273)^4 + k_1 \bigg(\frac{V}{D}\bigg)^{0.5} (T_l - T_a) + L (T_l) \frac{_s d_l (T_l) - [r.h.]_s d_a (T_a)}{r_l + k_2 (D^{0.3} W^{0.20}) / V^{0.50}}
(\#eq:heattrans-24)
\end{equation}
where
<ul class="list-unstyled">
<li> $\sigma$ is the Stefan-Boltzmanm constant ($5.67 \times 10^{-8} W m^{-2} K^{-4}$) </li>
<li> $\varepsilon$ is the emissivity of the leaf </li>
<li> $T_l$ is the leaf temperature ($^{\circ}C$), </li>
<li> $V$ is the wind speed ($m s^{-l}$), </li>
<li> $k_1$ is an experimentally determined coefficient ($9.14 J m^{-2} s^{-0.5} {^{\circ}C^{-1}}$), </li>
<li> $k_2$ is an experimentally determined coefficient ($183 s^{0.5} m^{-1}$), </li>
<li> $T_a$ is the air temperature ($^{\circ}C$), </li>
<li> $D$ is the leaf dimension in the direction of the wind ($m$), </li>
<li> $r.h.$ is the relative humidity, </li>
<li> $W$ is the leaf dimension transverse to the wind (m), </li>
<li> $_s d_l (T_l)$ is the concentration of water vapor saturation at leaf temperature $T_l (kg \, m^{-1})$, </li>
<li> $_s d_a (T_a)$ is the concentration of water vapor in free air saturated at air temperature $T_a (kg \, m^{-1})$, and </li>
<li> $r_l$ is the internal diffusion resistance of the leaf ($s m^{-1}$). </li>
</ul>
Inspection of equation \@ref(eq:heattrans-24) shows that the energy balance of the leaf is very dependent on leaf temperature which in turn affects convection and transpiration. To analyze this multivariate problem, Gates graphed three variables while holding the rest constant. Figures \@ref(fig:fig-heattrans-10) and \@ref(fig:fig-heattrans-11) illustrate thermodynamic conditions that would be common in tropical habitats at midday sunny ($Q_a = 900 W m^{-2}$) and cloudy ($Q_a = 600 W m^{-2}$) radiation levels. Note the differences in transpiration rates and leaf temperatures as a function of leaf resistance. Gates (1968) also considered the effects of leaf size. Figure \@ref(fig:fig-heattrans-12) clearly shows that small leaves, by reducing leaf temperature and transpiration, would be advantageous in desert regions.
```{r, echo = FALSE}
#radiation, convection, and evaporation
epsilon=0.96
sigma= 5.67 * 10^{-8} #Stefan-Boltzmann's constant (W m^-2 K^-4)
k1=9.14 #an experimentally determined coefficient (9.14 J m^-2 s^-0.5 °C^-1),
k2=200 # is an experimentally determined coefficient (183 s^0.5 m^-1),
L=2.26*10^6 #L, latent heat of vaporiation of water in J kg^{-1}, 2.43 x 10^6 at 30°C and 2.5*10^6 at 0°C
#calculate saturation vapor density
#' VAPPRS
#'
#' Calculates saturation vapour pressure for a given air temperature.
#' @param db Dry bulb temperature (°C)
#' @return esat Saturation vapour pressure (Pa)
#' @export
VAPPRS <- function(db=db){
t=db+273.16
loge=t
loge[t<=273.16]=-9.09718*(273.16/t[t<=273.16]-1.)-3.56654*log10(273.16/t[t<=273.16])+.876793*(1.-t[t<=273.16]/273.16)+log10(6.1071)
loge[t>273.16]=-7.90298*(373.16/t[t>273.16]-1.)+5.02808*log10(373.16/t[t>273.16])-1.3816E-07*(10.^(11.344*(1.-t[t>273.16]/373.16))-1.)+8.1328E-03*(10.^(-3.49149*(373.16/t[t>273.16]-1.))-1.)+log10(1013.246)
esat=(10.^loge)*100
return(esat)
}
#Solve vapour density
#rh: relative humidity, decimal%
#T: temperature, °C
#return Vapour density (kg m^{-3})
vd= function(T,rh){
rh=rh*100
tk = T + 273.15
esat = VAPPRS(T)
e = esat * rh / 100
e * 0.018016 / (0.998 * 8.31434 * tk)
}
#____________
#Estimate T_l then estimate transpiration
est_TlTrans <- function(T_a=40, V=0.1, rh=0.2, r_l=0, D=0.05, W=0.05, Q_a=800) {
f<- function(T_l) epsilon *sigma*(T_l + 273)^4 + k1*(V/D)^0.5*(T_l-T_a) + L*(vd(T_l, rh)-rh*vd(T_a, rh))/(r_l + k2*(D^{0.3}*W^{0.20})/ V^{0.50})- Q_a
T_l=uniroot(f, interval=c(-100, 100))$root
#estimate transpiration
E=(vd(T_l, rh)-rh*vd(T_a, rh))/(r_l + k2*(D^{0.3}*W^{0.20})/ V^{0.50})
return(c(T_l, E))
}
```
```{r fig-heattrans-10, fig.height=4, fig.fullwidth=FALSE, echo = FALSE, fig.cap= "Computed transpiration rate versus leaf temperature as a function of wind speed and internal diffusive resistance for the conditions indicated. (From Gates, D. M. 1968. P. 216.)"}
#fig 10 sunny
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=0.1, D=0.05, W=0.05, Q_a=900)
plot(fig.vr[1,], fig.vr[2,], type="l", col='tomato', xlab="Leaf temperature (°C)", ylab= "Leaf transpiration (kg/m^2s)", xlim=range(35,55),ylim=range(0.0,0.0004))
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=2.1, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato2')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=4.1, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato3')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=6.1, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato4')
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=0, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=200, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue2', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=400, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue3', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=600, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue4', lty="dashed")
legend("top", c("V=0.1", "V=2.1","V=4.1","V=6.1"), col = c('tomato','tomato2','tomato3','tomato4'), lty=c(1), bty = "n")
legend("topright", c("r_l=0", "r_l=200","r_l=400","r_l=600"), col = c('skyblue','skyblue2','skyblue3','skyblue4'), lty='dashed', bty = "n")
```
```{r fig-heattrans-11, fig.height=4, fig.fullwidth=FALSE, echo = FALSE, fig.cap= "Computed transpiration rate versus leaf temperature as a function of wind speed and internal diffusive resistance for the conditions indicated. (From Gates, D. M. 1968. P. 217.)"}
#fig 11 cloudy
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=0.1, D=0.05, W=0.05, Q_a=600)
plot(fig.vr[1,], fig.vr[2,], type="l", col='tomato', xlab="Leaf temperature (°C)", ylab= "Leaf transpiration (kg/m^2s)", xlim=range(33,43),ylim=range(0.0,0.0004))
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=2.1, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato2')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=4.1, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato3')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.5, V=6.1, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='tomato4')
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=0, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=200, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue2', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=400, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue3', lty="dashed")
fig.vr=sapply( seq(0.1,6.1,0.2), FUN=est_TlTrans, T_a=40, rh=0.5, r_l=600, D=0.05, W=0.05, Q_a=600)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue4', lty="dashed")
legend("top", c("V=0.1", "V=2.1","V=4.1","V=6.1"), col = c('tomato','tomato2','tomato3','tomato4'), lty=c(1), bty = "n")
legend("topright", c("r_l=0", "r_l=200","r_l=400","r_l=600"), col = c('skyblue','skyblue2','skyblue3','skyblue4'), lty='dashed', bty = "n")
```
```{r fig-heattrans-12, fig.height=4, fig.fullwidth=FALSE, echo = FALSE, fig.cap= "Computed transpiration rate versus leaf temperature for various leaf dimensions and internal diffusive resistances for the conditions indicated. (From Gates, D. M. 1968. P. 229.)"}
#fig 12 vary leaf dimensions, resistances
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, D=0.01, W=0.01, Q_a=900)
plot(fig.vr[1,], fig.vr[2,], type="l", col='darkolivegreen1', xlab="Leaf temperature (°C)", ylab= "Leaf transpiration (kg/m^2s)", xlim=range(35,55),ylim=range(0.0,0.0004))
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, D=0.05, W=0.05, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='darkolivegreen2')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, D=0.1, W=0.1, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='darkolivegreen3')
fig.vr=sapply( seq(0,600,100), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, D=0.2, W=0.2, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='darkolivegreen4')
fig.vr=sapply( seq(0.01,0.2,0.02), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, r_l=0, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue', lty="dashed")
fig.vr=sapply( seq(0.01,0.2,0.02), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, r_l=200, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue2', lty="dashed")
fig.vr=sapply( seq(0.01,0.2,0.02), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, r_l=400, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue3', lty="dashed")
fig.vr=sapply( seq(0.01,0.2,0.02), FUN=est_TlTrans, T_a=40, rh=0.2, V=1, r_l=600, Q_a=900)
points(fig.vr[1,], fig.vr[2,], type="l", col='skyblue4', lty="dashed")
legend("top", c("D=0.01,W=0.01", "D=0.05,W=0.05", "D=0.1,W=0.1", "D=0.2,W=0.2"), col = c('darkolivegreen1','darkolivegreen2','darkolivegreen3','darkolivegreen4'), lty=c(1), bty = "n")
legend("topright", c("r_l=0", "r_l=200","r_l=400","r_l=600"), col = c('skyblue','skyblue2','skyblue3','skyblue4'), lty='dashed', bty = "n")
```
### A Lizard {#heattransfer-lizard}
As a final example, we will review the work of Bartlett and Gates (1967) who computed the heat energy budget for the Western fence lizard, *Sceloporus occidentalis*, on a tree trunk. They hypothesized that *S. occidentalis* oriented itself on the tree trunk so as to maintain its body temperature relatively high and constant. The daily temperature variation of the tree surfaces supported their idea (Fig. \@ref(fig:fig-heattrans-13)). The heat energy equation for equilibrium is
\begin{equation}
Q_a + M - Q_e - LE - C - G = 0
(\#eq:heattrans-25)
\end{equation}
where
<ul class="list-unstyled">
<li> $Q_a$ is energy absorbed ($W m^{-2}$), </li>
<li> $M$ is metabolism ($W m^{-2}$), </li>
<li> $Q_e$ is radiation emitted ($W m^{-2}$), </li>
<li> $LE$ is evaporation ($W m^{-2}$), </li>
<li> $C$ is convection ($W m^{-2}$), and </li>
<li> $G$ is conduction ($W m^{-2}$). </li>
</ul>
Equation \@ref(eq:heattrans-25) may be rewritten:
\begin{equation}
Q_a + M - \varepsilon \sigma A_e (273 + T_s)^4 - LE - h_c A_c (T_s - T_a) - k A_c \frac{dT}{dx} = 0
(\#eq:heattrans-26)
\end{equation}
where
<ul class="list-unstyled">
<li> $\varepsilon$ is emissivity to longwave radiation, </li>
<li> $\sigma$ is Stefan-Boltzmann constant ($5.67 \times 10^{-8} W m^{-2} K^{-4}$), </li>
<li> $A_e$ is the percent of the total surface area of the animal not in contact with substratum, </li>
<li> $T_s$ is surface temperature of the lizard ($^{\circ}C$), </li>
<li> $h_c$ is convection coefficient ($W m^{-2} {^{\circ}C^{-1}}$), </li>
<li> $T_a$ is air temperature ($^{\circ}C$), </li>
<li> $k$ is thermal conductivity of substratum ($W m^{-1} {^{\circ}C^{-1}}$), </li>
<li> $A_c$ is the percent area of the animal total surface area in contact with the substratum, </li>
<li> $\frac{dT}{dx}$ is temperature gradient with the substrate ($^{\circ}C m^{-1}$). </li>
</ul>
```{r fig-heattrans-13, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Tree surface temperature in $^{\\circ}C$ on Chew\'s Ridge at 10:00, 1.:00, and 17:00 Pacific Standard Time June 21 as a function of direction from North. (From Bartlett, P. N. and D. M. Gates. 1967. P. 320.)'}
knitr::include_graphics('figures/fig-heattrans-13.png')
```
The terms of equation \@ref(eq:heattrans-26) were either experimentally determined or taken from the literature. It was then solved for a variety of situations to obtain a range of values for the animal's energy balance:
1. A maximum heat gain: If the lizard's surface temperature $T_s$ equaled 29.3 °C and the lizard was in close contact with the tree.
2. A minimum heat gain: If $T_s = 39.9 ^{\circ}C$ and the lizard was not in contact with the tree.
3. Maximum heat loss of $T_s = 38.9 ^{\circ}C$, wind speed = $2.23 m s^{-1}$ (5 mph) and the animal was oriented at $90^{\circ}$ to the direction of the wind.
4. Minimum heat loss if $T_s = 29.3 ^{\circ}C$, and wind speed was $0.1 m s^{-1}$.
5. Intermediate heat loss if $T_s = 34.1 ^{\circ}C$ and wind speed = $0.45 m s^{-1}$.
Figure \@ref(fig:fig-heattrans-14) gives sample results.
```{r fig-heattrans-14, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Max and min energy gains (concave downward) and maximum, minimum, and estimated energy losses (concave upward) of a lizard on a tree trunk on Chew\'s Ridge for selected times and positions on June 21, with times when lizards could be expected to be found at the selected positions. Areas hatched represent times when the estimated energy loss falls between maximum and minimum energy gains. (From Bartlett, P. N. and D. M. Gates. 1967. P. 321.)'}
knitr::include_graphics('figures/fig-heattrans-14.png')
```
```{r fig-heattrans-15, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap='Estimated hourly positions on a tree trunk on Chew\'s Ridge for June 21 where (*Sceloporus occidentalis* could maintain its characteristic body temperature (arrows) and actual observed positions of lizards on June 21, 1964 (crosses). (From Bartlett, P. N. and D. M. Gates. 1967. P.321.)'}
knitr::include_graphics('figures/fig-heattrans-15.png')
```
Finally, they calculated the energy losses and gains every hour at $45^{\circ}$ increments around the tree. Using the criterion that the energy losses must fall between the energy gains (Fig. \@ref(fig:fig-heattrans-14)), they could predict the position of the lizard on the tree trunk as a function of time of day. The predicted and observed positions of the lizards are compared in Fig. \@ref(fig:fig-heattrans-15). TrenchR includes a `Tb_lizard()` function to model the energy balance of a lizard.
This module has attempted to develop the aspects of heat transfer that are important to biology. Emphasis has been placed on the physical processes, radiation, evaporation, conduction and convection, that influence the physiological, behavioral and ecological activities of all organisms. The discussion in conjunction with the modules on the First Law of Thermodynamics presents the basic physical laws that are needed to describe the heat energy balance of ecological systems.
## Problem Set {#heattransfer-problems}
1a. To measure the oxygen consumption of resting homeotherms as a function of the thermal environment, animals are commonly placed in an environmental chamber where the air temperature can be changed and monitored. The results of the experiment are given as a plot of O~2~ consumption versus air temperature. Imagine that for some reason the wall temperature is not equal to the air temperature. Plot the radiation emitted by the wall per unit surface area, $Q_{ew}$, as a function of wall temperature using Stefan-Boltzmann's Law (assume emissivity equals 0.96).
1b. If the emissivity of an environmental chamber with plastic walls is 0.6 for longwave radiation what is its absorptivity to longwave radiation? Imagine that the air is much cooler than the animal's surface. The radiation leaving the animal, incident on the walls, could heat the walls above the air temperature and increase the radiation incidence on the animal. Name two ways to avoid this problem. A chamber with metal walls will have a small emissivity (~0.15) to longwave radiation. What will be its reflectivity? What will happen to the radiation leaving the animal in this case? How can this effect be minimized?
2a. It is also possible to represent Planck's Law as a function of frequency $f$ rather than wavelength $\lambda$:
$$E_f=\frac{2\pi h}{C_L^2}f^3\bigg[\exp(\frac{hf}{K_bT})-1\bigg]^{-1}$$
Equation \@ref(eq:heattrans-1) of the text gives the relationship between $\lambda$ and $f$. Show how $E_f$ and $E_{\lambda}$ are related. What is the difference in dimensions between $E_f$ and $E_{\lambda}$? The concept of wave number is often introduced to plot $E_f$ and $E_{\lambda}$ of the same graph. Wave number $n = \lambda^{-1}$. How are $f$ and $n$ related? Plot $E_{\lambda}$ and $E_f$ for T = 280 K as a function of $\lambda$. Repeat for T = 6,000 K but show both the $\lambda$ and $n$ scales. How does the relationship of bandwidth/wave number and bandwidth/wavelength change over the spectrum?
2b. Planck also found that the energy in a photon, $e$, is proportional to its frequency ($e = hf$). What does this imply for a $E_{\lambda}$ versus $E_f$ representation? At what wavelength does the sun radiate the most energy? Assume its surface temperature is 6,000 K. How does this value compare with that in Fig. \@ref(fig:fig-heattrans-4)?
3a. Using equation \@ref(eq:heattrans-16), plot the heat of vaporization as a function of temperature. Schmidt-Nielsen (1975, page 313) says that $580 cal \cdot g^{-1}$ is a commonly used value in physiology. Is this a good approximation? Evaluate the error over the range 0 to 40 °C.
b. Schmidt-Nielsen (1975, page 37) gives the lung volume for mammals as a function of weight as
$$V=0.0567M^{1.02}$$
$V$ is lung volume (liters) and $M$ is body mass (kg).
If respiration rate (breaths min$^{-1}$) is a function of air temperature (for a moose (Belovsky 1978)),
$$Br=7.72\exp(0.07T_a)$$
calculate the respiration loss in watts as a function of air temperature ($T_a$ = -20 to 40 °C). Assume $M$ = 358 kg, that the exhaled air is at air temperature, the relative humidity is 50 percent and $L$ is constant at $2.43 \times 10^6 J kg^{-1}$. Repeat the calculation for the exhaled air at $\frac{T_a+T_b}{2}$.
Hint: The energy lost is equal to the net mass flow (the mass of water exhaled minus the mass of water inhaled per unit time multiplied by the latent heat of water). Convert the volume exchange to a mass exchange using the fact that concentration (mass/volume) of water is the product of the molecular weight, the vapor pressure of water at that temperature and the relative humidity divided by the product of the gas constant and the absolute temperature of the sample.
4. The rate of heat transfer by conduction depends on the potential (temperature difference), the area of contact and the conductivity of the material. Estimate the heat transfer between an animal and the ground for all combinations.
- Surface temperature = 20 °C
- Ground temperatures = 2, 14, 27 °C
- Area of contact = 0.054 m$^2$
- Thermal conductivities = 0.02, 0.08, 0.17 W m$^{-1}$ °C$^{-1}$
- Thickness of the material layer limiting heat flow = 0.005 m
5a. In the diagram, heat flows through two materials from the left boundary (temperature $T_1$) to the right boundary (temperature $T_2$). Assure steady state conditions.
```{r fig-heattrans-p5, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default"}
knitr::include_graphics('figures/fig-heattrans-p5.png')
```
How does the temperature drop at the boundary depend on thermal conductivity and the thickness of the material? Let $\frac{k_1}{k_2}=a$ and $\frac{L_1}{L_2}=b$; find $T_B$. Let $\frac{a}{b} = x$ and find $T_B$. If $a = 1.2$, $b = 0.2$, $T_1 = 40 °C$ and $T_2= 10 °C$, in which material is the temperature gradient larger? Which material has the larger temperature drop? What is $T_B$?
b. In the conduction section of the text the heat flow between an alligator and the substrate was calculated. It was assumed that the heat flow into the rock was not important. Discuss this assumption with regard to part "a" of this problem.
c. Imagine that the alligator's skin temperature is initially equal to the body temperature. How will the temperature profile change in the soil and in the animal as the heat exchange approaches a constant
value?
6. Kreith (1973) gives the following relationship for $Nu$ and $Re$ of cylinders:
$$Nu=aRe^b$$
| Re | a | b |
|:--------------:|:------:|:-----:|
| 0.4-4 | 0.891 | 0.330 |
| 4-40 | 0.821 | 0.385 |
| 40-4,000 | 0.615 | 0.466 |
| 4,000-40,000 | 0.174 | 0.618 |
| 40,000-400,000 | 0.0239 | 0.805 |
Assume that wind velocity is $2 m s^{-1}$ and $0.1 m s^{-1}$, the diameter is 0.46 m and 0.002 m. Compute $h_c$ for the four combinations of diameter and wind velocity. Take $\nu = 1.42 \times 10^{-5} m^2 s^{-1}$ and $k = 2.50 \times 10^{-2} W m^{-1} K^{-1}$ at an air temperature of 10 °C.
7a. Calculate the heat transfer coefficient for a flat plate using $Nu = 0.60 Re^{0.5}$ (Monteith 1973, page 224; Kreith 1973, page 341). Let air temperature be 20 °C, so $\nu = 1.51 \times 10^{-5} m^2 s^{-1}$ and $k = 2.53 \times 10^{-2} W m^{-1} K^{-1}$. How does this compare with the convection coefficient for the leaf? This is accurate for laminar flow $Re < 2 \times 10^4$.
b. Show the region $Re < 2 \times 10^4$ on a graph of wind velocity $V$ versus the characteristic length $D$. When $Re < 2 \times 10^4$, Monteith suggests $0.032 Re^{0.8}$. How likely is this to occur naturally? Would a leaf be rigid in these wind speeds?
8. In the text, we discussed the physical process of free convection. To determine the importance of free convection, one must compute the ratio of the Grashof number to the square of the Reynolds number. If the ratio is approximately 1, then free convection cannot be ignored. The Grashof number is
$Gr=\frac{agD^3(T_s-T)}{\nu^2}$
$g$ = gravitational acceleration ($9.8 m s^{-2}$)
$a$ = coefficient of thermal expansion for fluid (a = 1/273 for air),
$T_s$ = surface temperature (°C),
$T$ = fluid temperature (°C),
$\nu$ = kinematic viscosity ($m^2 s^{-1}$).
Plot $\frac{Gr}{Re^2}$ on a graph of $V$ versus $D$. Let $T_s - T$ equal 10, 20 and 30 $^\circ$C. Below the line $Gr = Re^2$, free convection loss cannot be ignored. Is free convection important for leaves in the natural environment?
9a. The energy balance for fruits is important in both cultivated and wild plants because it affects when and at what rate the crop ripens. Grapes for instance must be picked at just the right time to insure the best sugar content for winemaking. McIntosh apples need cold nights and warm days to be of the best quality. When weather conditions are unfavorable, fruit can become overripe or rotten before it is harvested. Wild plant fruits are an energy investment by the plant to attract seed dispersers. This is especially true of birds and bats in the tropics. The color of the fruit is often an important signal to a potential disperser while the size and spacing of the fruits will influence the animal's harvesting rates. These same characteristics are important to the fruit's thermal balance.
An empirical approach based on the "heat unit" or "growing degree day" concept has been developed to predict the harvest times. When the fruits have been exposed to x degree days the theory says they will he ready to pick. Degree days are computed as follows:
$$DD=\sum\bigg[\frac{T_{a,max}+T_{a,min}}2-T_t\bigg]$$
where $DD$ is degree days, $T_{a,max}$ is the maximum air temperature during the day, $T_{a,min}$ is the minimum air temperature for the day and $T_t$ is a threshold temperature specific for each species and which can be thought of as the temperature below which development is stopped. (The summation is over only positive values of the term). From the data below calculate the ripening degree days if $T_t$ is 16 °C.
| Day | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|:---------:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|
| T~amax~°C | 20 | 25 | 21 | 21 | 18 | 20 | 25 | 27 | 26 | 23 |
| T~amin~°C | 16 | 18 | 14 | 13 | 10 | 12 | 15 | 18 | 18 | 16 |
What problems are there with this approach?
b. A more mechanistic viewpoint should allow one to calculate the temperature of the fruit. As an example let us consider a spherical model 1, 4 and 10 cm in diameter. What is the heat energy balance for the fruit. Which terms are small and can be ignored? What terms are you unsure about? As a first approximation, let us start with the following model:
$$Q_a=Q_e+C$$
where
$Q_a$ is absorbed radiation (Wm^-2^)
$Q_e$ is reradiation (W m^-2^) and
$C$ is convection (W m^-2^)
Under steady state conditions the temperature of the fruit core, $T_f$, will equal the temperature of the surface. Therefore, $Q_e=\varepsilon \sigma T_f^4$ and $C=h_c(T_f-T_a)$. For forced convection about a sphere without the increased turbulence of the outdoor environment (Nobel 1975; Kowalski and Mitchell 1976; Monteith (1973, page 224) give two formulae for the relationship between the Nusselt and the Reynolds number.
| Range of Re | Nu |
|:---------------------:|:----------------:|
| 0 - 300 | 2 + 0.54 Re^0.5^ |
| 50 - 1 $\times$ 10^5^ | 0.34 Re^0.6^ |
Calculate $Nu$ by both formulae for $Re$ = 50, 100 and 300. If $D$ = 1 cm, what is the minimum wind speed for which the second relationship is valid? Which formula yields a lower heat transfer coefficient? What will the effect on the energy balance of the fruit be? Find $h_c$ as a function of $D$ (0.01, 0.04 and 0.1 m) and $V$ (0.1, 1.0 and 10.0 m s$^{-1}$) if $Nu = 0.34Re^{0.6}$. Assume $\nu = 1.42 \times 10^{-5} m^2 s^{-1}$ for the entire problem.
For a sphere: $Q_a=a_s[A_1S+A_2s+A_3r+(S+s)]+A_lA_l[R_a+r_g]$
where
$a_s$ = the absorptivity to shortwave radiation (assume 0.7),
$A_1$ = the percent of the total surface hit by direct beam radiation weighted by the angle of incidence (equals $\pi r^2/4\pi r^2=1/4$)
$S$ = direct beam solar radiation (W m$^{-2}$),
$A_2 = A_s = A_l$ = the percent of the total surface hit by the corresponding radiation sources (assume 0.5),
$s$ = diffuse shortwave radiation (assume = 0.1 of total shortwave radiation $R_p$, $W m^{-2}$)
$r$ = reflectivity of the ground (assume 0.15),
$a_l$ = absorptivity to longwave radiation (assume 1.0),
$R_a$ = longwave radiation from the atmosphere (W m$^{-2}$), and
$R_g$ = longwave radiation from the ground (W m$^{-2}$).
From Morhardt and Gates (1974, page 20, Fig. 2c), I have taken $R_p$, $R_a$ and $R_g$ for a sunny day and converted the units to W m$^{-2}$ as tabulated below:
**Hour of the day**|**$R_p$**|**$R_a$**|**$R_g$**|**$T_a$**
:-----:|:-----:|:-----:|:-----:|:-----:
| |(W m^-2^)|(W m^-2^)|(W m^-2^)|(°C)
7|35|223|335|7.5
8|593|223|348|10
9|837|230|369|12
10|1012|237|419|15
11|1116|244|461|19
12|1186|251|502|24
13|1116|258|481|27
14|1012|251|461|25
15|837|244|419|22
16|593|237|391|16
17|35|237|363|12.5
18|0|230|349|10
Calculate $Q_a$ values for each hour of the day. What part of this is shortwave radiation?
Assuming that the wind speed is 1.0 m/s and that the diameter of the fruit is 0.04 m and using the convection coefficient you have derived, calculate the fruit's equilibrium temperature for each hour of the day.
Using $Q_a$ and $T_a$ values for 7 and 12 o'clock calculate the equilibrium fruit temperature for all combinations of $V$ = 0.1, 1.0 and 10.0 m/s and $D$ = 0.01, 0.04, 0.10 m. Size and wind speed affect the fruit temperature in opposite ways at the two times. Why is this? What are the problems with this approach?
## Answers to the Problem Set {#heattransfer-answers}
1
```{r fig-heattrans-ps1, echo=FALSE, fig.height=4, fig.show = "hold", out.width = "100%", fig.align = "default", fig.cap=''}
knitr::include_graphics('figures/fig-heattrans-ps1.png')
```
1a. Metabolic heat will increase the wall temperature. The smaller the chamber, the greater this effect will be. The influence will change as the square of the distance.
b. The absorptivity is 0.96. Two ways to minimize wall heating are to make the chamber large relative to the animal or immerse the chamber in water. If the emissivity for the metal walled chamber is 0.15 absorptivity will be 0.15. Because the walls will not transmit longwave radiation, 85% will be reflected back to the animal and the other sides of the chamber, again making the chamber feel warmer to the animal than the air or wall temperatures would indicate. Changing the inside surface characteristics of the chamber or increasing the chamber size relative to the animal will reduce the importance of reflected radiation. (See Porter 1969 and Morhardt and Gates 1974 for discussion.)
2a. $E_f=\lambda^{-2}E_{\lambda}/c_L$. The dimensions of $E_f$ are $M L^{-2}$ and of $E_{\lambda}$ are $M T^{-1}L^{-3}$. They differ by a factor of $L^{-1}T^{-1}$. If $\lambda f=c_L$ and $n=\lambda^{-1}$ then $n=f/c_L$. (For plots see data below and the following figures.) Because wavelength is inversely proportional to wave number, equal bandwidths on a wavelength plot will cause unequal bandwidths on a wave number plot. For equal wavelength bandwidths larger wave numbers imply larger bandwidths.
**$T$**|**$\lambda$**|**$n$**|**$f$**|**$E_\lambda$**|**$E_f$**
:-----:|:-----:|:-----:|:-----:|:-----:|:-----:
(K)|(m $\times$ 10^-6^)|(m^-1^ $\times$ 10^6^)|(s^-1^ $\times$ 10^14^)|(J m^-3^s^-1^)|(J m^-2^)
280|4.0|0.250|0.750|0.09 $\times$ 107|0.05 $\times$ 10^-12^
| |5.0|0.200|0.600|0.41|0.35
| |6.0|0.167|0.500|0.91|1.10
| |7.0|0.143|0.429|1.43|2.37
| |8.0|0.125|0.375|1.84|3.98
| |9.0|0.111|0.333|2.09|5.71
| |10.0|0.100|0.300|2.19|7.38
| |11.0|0.091|0.273|2.18|8.87
| |12.0|0.083|0.250|2.09|10.31
| |13.0|0.077|0.231|1.96|11.14
| |15.0|0.067|0.200|1.65|12.45
| |17.0|0.659|0.176|1.34|13.00
| |20.0|0.050|0.150|0.97|12.95
| |30.0|0.033|0.100|0.34|10.17