-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuff-em.tex
More file actions
2136 lines (2028 loc) · 85.3 KB
/
Copy pathbuff-em.tex
File metadata and controls
2136 lines (2028 loc) · 85.3 KB
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
\documentclass[letterpaper]{article}
\input{bufftex}
\usepackage{cite}
\graphicspath{{figures/}}
\newcommand{\TInv}{\rotatebox[origin=c]{180}{$T$}}
\newcommand{\vbTInv}{\rotatebox[origin=c]{180}{$\vb T$}}
\newcommand{\vbTInvSmall}{\rotatebox[origin=c]{180}{\scriptsize{$\vb T$}}}
\newcommand{\bbTInv}{\rotatebox[origin=c]{180}{$\mathbb{T}$}}
\newcommand{\bbVInv}{\rotatebox[origin=c]{180}{$\mathbb{V}$}}
\newcommand{\vbSigma}{\boldsymbol{\Sigma}}
\newcommand{\fd}{^{\text{\tiny{F}}\dagger}}
% 'IEM' stands for 'imaginary part of epsilon matrix'
\newcommand{\vbIEM}{\boldsymbol{\Sigma}}
\newcommand{\IEM}{\Sigma}
\newcommand{\citeasnoun}[1]{Ref.~\citen{#1}}
\newcommand{\citeasnouns}[1]{Refs.~\citen{#1}}
%------------------------------------------------------------
%------------------------------------------------------------
%- Special commands for this document -----------------------
%------------------------------------------------------------
%------------------------------------------------------------
\newcommand{\vbxi}{\boldsymbol{\xi}}
\newcommand{\im}{\text{Im }}
\newcommand{\vbeps}{\boldsymbol{\epsilon}}
%------------------------------------------------------------
%------------------------------------------------------------
%- Document header -----------------------------------------
%------------------------------------------------------------
%------------------------------------------------------------
\title { {\sc buff-em}: A Volume-Integral Solver Suite \\
for Classical Scattering and \\
Fluctuational Electrodynamics}
\author {Homer Reid}
\date {June 3, 2014}
%------------------------------------------------------------
%------------------------------------------------------------
%- Start of actual document
%------------------------------------------------------------
%------------------------------------------------------------
\begin{document}
\pagestyle{myheadings}
\markright{Homer Reid: \texttt{buff-em} }
\maketitle
\begin{abstract}
The $\mb T$-matrix approach to fluctuational electrodynamics,
pioneered by the MIT Casimir theory group led by Professors Kardar
and Jaffe, has yielded a bountiful smorgasbord of analytical
formulas expressing quantities in fluctuational
electrodynamics---including equilibrium and non-equilibrium
Casimir forces and thermal heat-transfer rates for compact
and extended bodies---in terms of the $\mb T$-matrices of the
bodies in question\cite{Rahi2009, Krueger2012}.
Although the analytical insight afforded by these formulas
is immensely valuable,
their practical application has typically been restricted
to the small catalog of highly symmetric bodies---such as
homogeneous spheres---for which $\mb T$-matrix element may
be computed in closed form.
In its earliest incarnation, {\sc buff-em} was born as
an attempt to extend the $\mb T$-matrix approach to a more
general class of bodies by computing $\mb T$-matrices
numerically. However, in the course of implementing
these calculations I discovered that the $\mb T$-matrix
formalism may in fact be understood as simply a disguised
version of the well-known volume-integral-equation (VIE)
approach to computational electromagnetism, and that
in implementing a numerical tool for computing
$\mb T$-matrices one is in fact implementing a VIE solver.
The {\sc buff-em} suite\footnote{{\sc buff-em} stands
for \textbf{bu}lk \textbf{f}ield \textbf{f}ormulation of
\textbf{e}lectro\textbf{m}agnetism.} consists of a
core library ({\sc libbuff}) implementing this solver---using
SWG basis functions\cite{SWG1984}---together with
application modules for classical scattering
({\sc buff-scatter}) and non-equilibrium fluctuational
electrodynamics ({\sc buff-neq}).
\end{abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\tableofcontents
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\addcontentsline{toc}{section}{\large Part I: Theory}
\section{VIE formulation of classical EM scattering}
In this section I rederive the volume-integral-equation (VIE)
approach to classical electromagnetic scattering. This formulation
is standard, but I here describe it using terminology and
symbols that emphasize the connection to the $\mathbb{T}$-matrix
scattering approach used by the Kardar-Jaffe group.
%=================================================
%=================================================
%=================================================
\subsection{Continuous VIE formulation}
Consider a material body with relative permittivity tensor
$\vbeps(\vb x)$ lying in vacuum and irradiated by monochromatic
sources which may lie inside or outside the body.
Let the electric field due to the sources be $\vb E\sups{inc}$
and let $\vb J\supt{I}(\vb x)$ be the induced volume current
density throughout the bulk of the body.
(We work at frequency $\omega$ and assume time dependence
of all field and currents $\propto e^{-i\omega t}$.)
The total electric field at any point is a sum of
``incident'' and ``scattered'' contributions:\footnote{We
put the terms ``incident'' and ``scattered'' in quotes
to remind readers that the ``incident''-field sources may
in fact lie \textit{inside} the body; in this case it is
not quite right to refer to the field they produce as
being ``incident'' on the body, but the terminology is
convenient nonetheless.}
%====================================================================%
\begin{align}
\vb E\sups{tot} &= \vb E\sups{inc} + \vb E\sups{scat}
\\
&= \vb E\sups{inc} + ikZ_0 \mathbb{G}*\vb J\supt{I}
\label{ETot}
\end{align}
%====================================================================%
where $k=\omega/c$ is the (free-space) wavenumber,
$Z_0=\sqrt{\mu_0/\epsilon_0}$ is the impedance of free
space\footnote{Here and throughout we consistently eliminate
all reference to the free-space permittivity and
permeability constants $\epsilon_0,\mu_0$ in favor of
$Z_0=\sqrt{\mu_0/\epsilon_0}$ and $c=1/\sqrt{\epsilon_0 \mu_0}.$
For example, we write the combinations
$\{\epsilon_0\omega, \mu_0\omega\}$ respectively in the form
$\{\frac{k}{Z_0}, kZ_0\}$ where
$k=\omega/c$ is the free space wavelength.},
$*$ denotes convolution, and $\mathbb{G}$ is the free-space
dyadic Green's function:
%====================================================================%
\begin{align}
\mathbb{G}_{ij}(\vb x, \vb x^\prime)
&=
\Big(\vb \delta_{ij} - \frac{1}{k^2} \partial_i \partial_j \Big)
\frac{e^{ikr}}{4\pi r}
\qquad (r\equiv |\vb r|=|\vb x-\vb x^\prime|)
\\
%--------------------------------------------------------------------%
&=
\frac{e^{ikr}}{4\pi k^2 r^3}
\Big[ f_1(ikr) \delta_{ij} + f_2(ikr) \frac{r_i r_j}{r^2} \Big]
\label{HelmholtzDyadic}
\\
%--------------------------------------------------------------------%
f_1(x) &\equiv -1 + x -x^2, \qquad
f_2(x) \equiv 3 - 3x + x^2.
\nonumber
\end{align}
%====================================================================%
On the other hand, the induced current is related to the total field
according to
%====================================================================%
\begin{align}
\vb J\supt{I}(\vb x)
&= -i\frac{k}{Z_0} \big[\vbeps(\vb x) - \vb 1\big]\cdot \vb E\sups{tot}(\vb x)
\nn
&\equiv -\frac{1}{ikZ_0} \mathbb{V}(\vb x) \cdot \vb E\sups{tot}(\vb x)
\label{JFromETot}
\end{align}
%====================================================================%
where $\mathbb{V}\equiv k^2\big[\vb 1 - \vbeps(\vb x)\big]$ is
sometimes~\cite{Rahi2009} known as the ``potential.''
At points not in free space, i.e. points at which
$\vbeps(\vb x)\ne \vb 1$, we can invert this equation to read
%====================================================================%
\begin{align}
-ikZ_0 \bbVInv(\vb x) \cdot \vb J\supt{I}(\vb x) &= \vb E\sups{tot}(\vb x)
\nonumber
\intertext{where $\bbVInv\equiv \mathbb{V}^{-1}.$ Now insert (\ref{ETot}):}
-ikZ_0 \bbVInv(\vb x) \cdot \vb J\supt{I}(\vb x)
&= \vb E\sups{inc} + ik Z_0 \mathbb{G} \star \vb J\supt{I} \\
\intertext{Rearranging and writing out the convolution,
we obtain a volume-integral equation for $\vb J\supt{I}$:}
-ikZ_0\left[ \bbVInv(\vb x) \cdot \vb J\supt{I}(\vb x)
+ \int \mathbb{G}(\vb x, \vb x^\prime)
\cdot \vb J\supt{I}(\vb x^\prime) \,d\vb x^\prime
\right]
&= \vb E\sups{inc}(\vb x).
\\
\intertext{In what follows it will be convenient to think of the LHS
here as the convolution of just a single operator with $\vb J\supt{I}$:}
-ikZ_0
\int \bbTInv(\vb x, \vb x^\prime) \cdot \vb J\supt{I}(\vb x^\prime) \,d\vb x^\prime
&= \vb E\sups{inc}(\vb x).
\label{ContinuousVIE}
\end{align}
where
\numeq{TOperator}
{
\bbTInv(\vb x, \vb x^\prime)
=
\bbVInv(\vb x) \delta(\vb x-\vb x^\prime)+ \mathbb{G}(\vb x,\vb x^\prime).
}
(The symbol $\bbTInv$ is pronounced ``tee-inverse'' or ``eet''.)
%=================================================
%=================================================
%=================================================
\subsection{Discretized VIE formulation}
Now let $\vb b_\alpha$ be some convenient set of $N$ vector-valued
basis functions and approximate the induced current in the form
%====================================================================%
\numeq{JExpansion}
{ \vb J\supt{I}(\vb x) \approx \sum_{\alpha} j\supt{I}_\alpha \vb b_\alpha(\vb x). }
%====================================================================%
Insert into (\ref{ContinuousVIE}) and ``test'' both sides
with the elements of the set $\{\vb b_\alpha\}$ to obtain a
discretized version of (\ref{ContinuousVIE}) in the form of an
$N\times N$ linear system:
%====================================================================%
\numeq{VIESystem}
{
\vbTInv \cdot \vb j\supt{I} = \vb v
}
%====================================================================%
where the elements of the vector $\vb j\supt{I}$ are the expansion
coefficients in (\ref{JExpansion}) and the elements of
$\vbTInv$ and $\vb v$ are
%====================================================================%
\numeq{Elements}
{
\TInv_{\alpha\beta}=\exptwoB{\vb b_\alpha}{\bbTInv}{\vb b_\beta},
\qquad
v_{\alpha}=-\frac{1}{ikZ_0} \inpB{\vb E\sups{inc}}{\vb b_\beta}.
}
%====================================================================%
\subsubsection*{VIE matrix for geometries containing multiple bodies}
Equation (\ref{VIESystem}) applies to the case in which we
have only a single material body. For a geometry involving
$N$ separate bodies, this is generalized to read
%====================================================================%
\numeq{VIESystem2}
{
\underbrace{
\left(\begin{array}{cccc}
\vbTInv_1 & \vb G_{12} & \cdots & \vb G_{1N} \\
\vb G_{21} & \vbTInv_{2} & \cdots & \vb G_{2N} \\
\vdots & \vdots & \ddots & \vdots \\
\vb G_{N1} & \vb G_{N2} & \cdots & \vbTInv_N
\end{array}\right)
}_{\vb M}
%--------------------------------------------------------------------%
\underbrace{
\left(\begin{array}{c}
\vphantom{\vbTInv_1} \vb j_1\supt{I} \\
\vphantom{\vbTInv_1} \vb j_2\supt{I} \\
\vphantom{\ddots} \vdots \\
\vphantom{\vbTInv_1} \vb j_N\supt{I} \\
\end{array}\right)
}_{\vb j}
%--------------------------------------------------------------------%
=
\underbrace{
\left(\begin{array}{c}
\vphantom{\vbTInv_1} \vb v_1 \\
\vphantom{\vbTInv_1} \vb v_2 \\
\vphantom{\ddots} \vdots \\
\vphantom{\vbTInv_1} \vb v_N \\
\end{array}\right).
}_{\vb v}
}
%====================================================================%
where $\vb M$ is the VIE matrix for the composite system.
Here the diagonal blocks involve just the matrix elements
of the inverse $\mathbb{T}$-operator [defined by equation (\ref{TOperator})
with the $\bbVInv$ operator appropriate for the $n$th body]
while the off-diagonal blocks involve only the matrix elements of
the $\mathbb{G}$ operator.
The matrices $\vb M$ and $\vb v$ in equation (\ref{VIESystem2})
are the quantities computed by the \texttt{AssembleVIEMatrix()}
and \texttt{AssembleRHSVector()} methods of the
\texttt{SWGGeometry} class in {\sc buff-em}.
%=================================================
%=================================================
%=================================================
\subsection*{Computation of scattered fields}
For a geometry irradiated by incident fields
$\{\vb E, \vb H\}\sups{inc}$, the total fields at
$\vb x$ are
%====================================================================%
\begin{align}
\vb E\sups{tot}(\vb x)
&= \vb E\sups{inc}(\vb x) + \vb E\sups{scat}(\vb x)
\\
\vb H\sups{tot}(\vb x)
&= \vb H\sups{inc}(\vb x) + \vb H\sups{scat}(\vb x)
\label{EHTotIncScat}
\\
%--------------------------------------------------------------------%
\vb E\sups{scat}(\vb x)
&=\sum_\alpha j_\alpha \vb E_\alpha(\vb x)
\\
\vb H\sups{scat}(\vb x)
&=\sum_\alpha j_\alpha \vb H_\alpha(\vb x)
%--------------------------------------------------------------------%
\intertext{where $\{\vb E, \vb H\}_\alpha(\vb x)$ are the fields due
to basis function $\vb b_\alpha$ populated with unit strength:}
%--------------------------------------------------------------------%
\vb E_{\alpha}(\vb x)
&\equiv
ikZ_0 \int_{\sup \vb b_\alpha} \mb G(\vb x, \vb x^\prime)
\vb b_\alpha(\vb x^\prime) d\vb x^\prime
\\
\vb H_{\alpha}(\vb x)
&\equiv
-ik \int_{\sup \vb b_\alpha} \mb C(\vb x, \vb x^\prime)
\vb b_\alpha(\vb x^\prime) d\vb x^\prime.
\end{align}
%====================================================================%
Scattered and total fields are computed by the
\texttt{GetFields()} method of the \texttt{SWGGeometry} class
in the {\sc buff-em} core library.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\section{Computation of power, force, and torque}
As is true for surface-integral solvers like {\sc scuff-em},
in volume-integral solvers like {\sc buff-em} there are
multiple distinct ways of computing the power, force, and
torque (PFT) on a body.
%=================================================
%=================================================
%=================================================
\subsection{Displaced surface-integral (DSI) PFT}
A first approach is to evaluate surface integrals of the
Poynting vector and Maxwell stress tensor over a closed
bounding surface $\mc S$ containing the body but displaced
from its surface:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{align*}
P\sups{abs}
&=
\frac{1}{2}\oint_{\mc S}
\bmc F^\dagger(\vb x)
\bmc N\supt{P}\Big(\vbhat{n}(\vb x)\Big)
\bmc F (\vb x) \, dA
\\
\vb F \cdot \vbhat{u}
&=
\frac{1}{2}\oint_{\mc S}
\bmc F^\dagger(\vb x)
\bmc N\supt{F}\Big(\vbhat{n}(\vb x), \vbhat{u} \Big)
\bmc F (\vb x) \, dA
\\
\bmc T \cdot \vbhat{u}
&=
\frac{1}{2}\oint_{\mc S}
\bmc F^\dagger(\vb x)
\bmc N\supt{T}\Big(\vbhat{n}(\vb x), \vbhat{u} \Big)
\bmc F (\vb x) \, dA
\end{align*}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Here $\bmc F={\vb E \choose \vb H}$ is the 6-vector of fields
computed from (\ref{EHTotIncScat}), and the $\bmc N$ matrices
are certain constant $6\times 6$ matrices whose entries depend on
the surface normal $\vbhat{n}$ to $\mc S$ at $\vb x$.
%=================================================
%=================================================
%=================================================
\subsection{JDEPFT}
An alternative to the surface-integral method of the
previous section is to compute the power, force and torque
on a body using a volume-integral approach:
%====================================================================%
\begin{subequations}
\begin{align}
P\sups{abs}&=\frac{1}{2}\text{Re }\int \vb J^* \cdot \vb E \, dV
\\
F_i&=\frac{1}{2\omega}\text{Im }\int \vb J^* \cdot \partial_i \vb E \, dV
\\
\mc T_i
&=\frac{1}{2\omega}\text{Im }\int
\Big[ \vb J^* \times \vb E + \vb J^* \cdot \partial_{\theta_i} \vb E\Big]dV
\end{align}
\label{JDEPFT}%
\end{subequations}%
%====================================================================%
where $\vb J$ is the induced current and $\vb E$ is the total field.
Equation (\ref{JDEPFT}a) is just the usual Joule heating, while
Equations (\ref{JDEPFT}b,c) follow from Lorenz-force considerations
and are derived in Appendix \ref{ForceFormulaAppendix}.
I call equations (\ref{JDEPFT}) the ``J dot E'' or JDE approach
to power, force, and torque computation. [The second term in
(\ref{JDEPFT}c) is typically small and will be neglected below
For implementation purposes, it is convenient to separate the total
field $\vb E$ in equations (\ref{JDEPFT}) into incident and scattered
portions and to write
%====================================================================%
\begin{align}
\{P\sups{abs}, F_i, \mc T_i\}
= \{P\sups{abs}, F_i, \mc T_i\}\sups{JI}
+ \{P\sups{abs}, F_i, \mc T_i\}\sups{JJ}
\end{align}
%====================================================================%
where the ``JI'' terms involve the interaction of $\vb J$ with
the incident field $\vb E\sups{inc}$ alone, while the ``JJ'' terms
involve the interaction of $\vb J$ with itself.
The JI contribution to the power is
%====================================================================%
\begin{subequations}
\begin{align}
P\sups{JI}
&= \frac{1}{2}\text{Re }\int \vb J^* \cdot \vb E\sups{inc} \, dV
\\
&= \frac{1}{2}\text{Re }\sum_{\alpha} j^*_\alpha
\INP{\vb b_\alpha}{\vb E\sups{inc}}
\\
\intertext{and similarly}
F_i\sups{JI}
&= \frac{1}{2\omega}\text{Im }\sum_{\alpha} j^*_\alpha
\INP{\vb b_\alpha}{\partial_i \vb E\sups{inc}}
\\
\mc T_i\sups{JI}
&= \frac{1}{2\omega}\text{Im }\sum_{\alpha} j^*_\alpha
\Big\langle \vb b_\alpha \times \vb E\sups{inc}\Big\rangle.
\end{align}
\label{JDEPFTTerm1}
\end{subequations}
%====================================================================%
The three-dimensional integrals involved in the matrix elements
in (\ref{JDEPFTTerm1}) are nonsingular and evaluated in {\sc buff-em}
by low-order numerical cubature (Appendix \ref{VolumeIntegralAppendix}).
On the other hand, the JJ contributions to the power, force, and torque
involve \textit{six}-dimensional integrals:
%====================================================================%
\begin{subequations}
\begin{align}
P\sups{JJ}
&= \frac{1}{2}\text{Re }\int \vb J^*(\vb x) \cdot \vb E\sups{scat}(\vb x)\, d\vb x
\intertext{Using $\vb E\sups{scat}=ik\mb G \star \vb J$, this becomes}
&= \frac{kZ_0}{2}
\text{Re }
\iint J_i^*(\vb x)
\Big( i\mb G_{ij}(\vb x, \vb x^\prime) \Big)
J_j(\vb x^\prime)\, d\vb x \, d\vb x^\prime
\intertext{and similarly}
F_i &=\frac{Z_0}{2c}\text{Im }
\iint J^*_j \Big(i\partial_i \mathbb{G}_{jk}\Big) J_k
\, d\vb x \, d\vb x^\prime
\\
\mc T_i &=\frac{Z_0}{2c}\text{Im }\varepsilon_{ijk}
\iint J^*_j \Big(i\mathbb{G}_{k\ell}\Big) J_\ell
\, d\vb x \, d\vb x^\prime
\end{align}%
\label{JDEPFTTerm2a}%
\end{subequations}%
%====================================================================%
Although equations (\ref{JDEPFTTerm2a}) appear to be singular
integrals, this appearance is misleading, as is demonstrated
by the following rewriting, which follows from Onsager
reciprocity [$\mb G_{ij}(\vb x, \vb y)=\mb G_{ji}(\vb y, \vb x)$]:
%====================================================================%
\begin{subequations}
\begin{align}
P\sups{JJ}&=-\frac{kZ_0}{2}
\iint \Big[ \text{Re }\big( J_i^* J_j \big)
\text{Im }\mathbb G_{ij}
\Big] \, dV dV^\prime
\\
F_i\sups{JJ}&=-\frac{Z_0}{2c}
\iint \Big[ \text{Im }\big( J_j^* J_k \big)
\text{Im }\partial_i \mathbb G_{jk}
\Big] \, dV dV^\prime
\\
\mc T_i\sups{JJ}&=\frac{Z_0}{2c} \varepsilon_{ijk}
\iint \Big[ \text{Im }\big( J_j^* J_\ell \big)
\text{Im }\mathbb G_{k\ell}
\Big] \, dV dV^\prime
\end{align}%
\label{JDEPFTTerm2b}
\end{subequations}
%====================================================================%
These equations involve only the imaginary part of $\mb G$,
which is \textit{non-singular}; indeed, in the short-distance
limit one finds immediately from (\ref{HelmholtzDyadic}) that
%====================================================================%
\numeq{ImGExpansion}
{
\text{Im }\mathbb{G}_{ij}(\vb r)
= \frac{k}{6\pi}\delta_{ij}
-\frac{k^3 r^2}{30\pi}
\Big[\delta_{ij} - \frac{1}{2}\frac{r_i r_j}{r^2}\Big]
+\frac{k^5 r^4}{560\pi}
\Big[\delta_{ij} - \frac{2}{3}\frac{r_i r_j}{r^2}\Big]
+O(r^6)
}
%====================================================================%
The discretized versions of equations (\ref{JDEPFTTerm2b}) read, upon
accounting for simplifying symmetries,
%====================================================================%
\begin{subequations}
\begin{align}
P\sups{JJ}
&=-k Z_0 \primedsum_{\beta\ge \alpha}
\Big( \text{Re } j_\alpha^* j_\beta \Big)
\EXPTWO{\vb b_\alpha}{\text{Im }\mb G}{\vb b_\beta}
\\
F_i\sups{JJ}
&=-\frac{Z_0}{ c} \sum_{\beta>\alpha}
\Big( \text{Im } j_\alpha^* j_\beta \Big)
\EXPTWO{\vb b_\alpha}{\text{Im }\partial_i \mb G}{\vb b_\beta}
\\
\mc T_i\sups{JJ}
&=-\frac{Z_0}{c} \sum_{\beta>\alpha}
\Big( \text{Im } j_\alpha^* j_\beta \Big)
\varepsilon_{ijk}
\Big\langle b_{\alpha j} \Big(\text{Im } \mb G_{k\ell}\Big) b_{\beta \ell}
\Big\rangle
\end{align}
\label{JDEPFTTerm2c}%
\end{subequations}
%====================================================================%
where the primed sum in (\ref{JDEPFTTerm2c}) indicates that
summands with $\alpha=\beta$ are to be weighted by $\frac{1}{2}$.
The matrix elements in (\ref{JDEPFTTerm2c}) involve
nonsingular 6-dimensional integrals which are evaluated
in {\sc buff-em} by simple numerical cubature.
\subsection*{Multipole expansion of PFT quantities}
Inserting the short-distance expansion (\ref{ImGExpansion})
into (\ref{JDEPFTTerm2b}a) and keeping only terms of lowest
order in $k$ yields
%====================================================================%
\begin{align}
P\sups{JJ}
&\approx
-\frac{k^2 Z_0}{12 \pi}
\underbrace{ \int J_i^*(\vb x) d\vb x }_{i\omega p^*_i}
\underbrace{ \int J_i (\vb x^\prime) d\vb x^\prime }_{-i\omega p_i}
\\
&=-\frac{c^2 k^4 Z_0}{12 \pi}|\vb p|^2
\label{PMultipole}
\end{align}
%====================================================================%
where $\vb p=-\frac{1}{i\omega} \int \vb J dV$ is the
dipole moment of the induced current distribution.
Note that (\ref{PMultipole}) is minus the usual expression
for the total power radiated by a point dipole radiator.
Proceeding similarly for the force, from (\ref{ImGExpansion})
one first finds
%====================================================================%
$$ \partial_i G_{jk} = \frac{k^3}{60\pi}
\Big( r_j \delta_{ik} + r_k \delta_{ij} - 4r_i \delta_{jk} \Big)
+ O(k^5)
$$
%====================================================================%
whereupon (\ref{JDEPFTTerm2b}b) reads
%====================================================================%
\begin{align}
F_i\sups{JJ}
&\approx
-\frac{k^3 Z_0}{120 \pi c}
\text{Im }
\int \bigg\{ J^*_j(\vb x)(\vb x-\vb x^\prime)_j J_i(\vb x^\prime)
+J^*_i(\vb x)(\vb x-\vb x^\prime)_j J_j(\vb x^\prime)
\nn
&\hspace{2in}
-4J^*_j(\vb x)(\vb x-\vb x^\prime)_i J_j(\vb x^\prime)
\bigg\}\,d\vb x \, d\vb x^\prime
\nn
&= -\frac{k^3 Z_0}{60 \pi c}\text{Im }
\Big[ \mc M^*_{jj} \mc M_i + \mc M^*_{ij} \mc M_j
-4\mc M^*_{ji} \mc M_j \Big]
\label{ForceMultipole1}
\end{align}
where I defined
%====================================================================%
$$ \mc M_{i} \equiv \int J_i(\vb x) \, dV, \qquad
\mc M_{ij} \equiv \int J_i(\vb x) x_j \, dV.
$$
%====================================================================%
The quantity $\mc M_i$ is related to the electric dipole moment $\vb p$ by
$$\vb p_i = -\frac{1}{i\omega} \mc M_i.$$
On the other hand, $\mc M_{ij}$ is related to the magnetic
dipole and electric quadrupole moments; basically,
the magnetic dipole moment $\vb m$
is the antisymmetric part of $\mc M_{ij}$,
while the electric quadrupole moment $Q_{ij}$
is the symmetric part.
From standard definitions in e.g. Jackson one finds
%====================================================================%
\begin{align*}
m_i
&= \frac{1}{2}\varepsilon_{ijk}\int x_i J_j(\vb x) dV
\\
&= \frac{1}{2}\varepsilon_{ijk}\mc M_{ji}
\\
&= -\frac{1}{2}\varepsilon_{ijk}\mc M_{ij}
\\
Q_{ij}
&=
-\frac{1}{i\omega}
\int \Big\{ 3J_i x_j + 3x_i J_j - 2J_k x_k \delta_{ij} \Big\} \, dV
\\
&=
-\frac{1}{i\omega}
\Big[ 3\mc M_{ij} + 3\mc M_{ji} - 2\delta_{ij} \mc M_{kk} \Big].
\end{align*}
%====================================================================%
Using these definitions in (\ref{ForceMultipole1}) and performing
some algebra, one finds the lowest-order terms in the multipole
expansion of the self-force:
%====================================================================%
\begin{align}
F_i\sups{JJ}
\label{ForceMultipole1}
&\approx
\frac{k^4 Z_0}{12\pi}\text{Re}\Big( \vb m^* \times \vb p \Big)_i
+
\frac{c k^5 Z_0}{120\pi}\text{Im}\Big( \vb Q^* \vb p \Big)_i
\end{align}
%====================================================================%
The quantity in the second term involves the matrix-vector product
of the 3$\times $3 matrix $\vb Q^*$ with the 3-vector $\vb p$.
Finally, for the torque, inserting (\ref{ImGExpansion}) into
(\ref{JDEPFTTerm2b}b) yields
%====================================================================%
\begin{align}
\mc T_i\sups{JJ}
&\approx
-\frac{k Z_0}{12 \pi c}\varepsilon_{ijk}
\text{Im }\left\{
\left[\int \vb J^*_j dV\right] \left[\int \vb J_k dV\right]
\right\}
\\
&= -\frac{c k^3 Z_0}{6 \pi}
\Big(\text{Re }\vb p \times \text{Im }\vb p\Big)_i.
\end{align}
%====================================================================%
%=================================================
%=================================================
%=================================================
\subsection{OPFT}
From equation (\ref{JFromtETot}), the total field $\vb E$ may be
expressed in terms of $\vb J$ according to
%====================================================================%
\numeq{EFromJ}{\vb E = -ikZ_0 \mb V^{-1} \vb J.}
%====================================================================%
Using this in equation (\ref{JDEPFT}) yields
%====================================================================%
\begin{subequations}
\begin{align}
P &= \frac{kZ_0}{2}\text{Im }\int \vb J^* \cdot \mb V^{-1} \cdot \vb J \, dV
\\
%--------------------------------------------------------------------%
F_i &= -\frac{Z_0}{2c}
\text{Re }
\int \vb J^* \cdot \partial_i \Big[\mb V^{-1} \cdot \vb J \Big] \,dV
\\
%--------------------------------------------------------------------%
\mc T_i
&=-\frac{Z_0}{2c}\text{Re }\int
\vb J^* \times \Big[ \mb V^{-1} \cdot \vb J\Big]\, dV
\end{align}
\label{OPFT}%
\end{subequations}%
%====================================================================%
The discretized versions of these formulas involve only overlap
integrals between SWG basis functions, which vanish unless the
pairs of basis functions share one or more common tetrahedra.
Thus they amount to vector-matrix-vector products with
highly sparse matrices and are thus, in principle, the most
computationally efficient technique for computing PFTs;
However, equation (\ref{EFromJ}) is only approximately satisfied
in a numerical solver, so
I refer to (\ref{OPFT}) as the ``overlap PFT'' (OPFT) formulas.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\section{FVC approach to fluctuation-induced phenomena}
In this section I consider a collection of one or
more material bodies $\{\mc B_n\}$, at various temperatures
$\{T_n\}$ and embedded in an environment at
temperature $T\subs{env}$, and derive a sequence of concise
matrix-trace formulas expressing thermally and quantum-mechanically
averaged heat-transfer rates, forces, and torques on the bodies
in terms of the $\vb T$ and $\vb G$ matrices discussed in the
previous section. Because the resulting energy and momentum
transfers may be viewed as arising from fluctuations in volume
currents in the bodies, I term this the
``fluctuating volume-current'' (FVC) approach to fluctuation
physics.
The derivation proceeds in two steps.
\begin{enumerate}
%--------------------------------------------------------------------%
\item I first consider a fixed, deterministic volume electric
current distribution $\vb J\supt{F}(\vb x)$---confined to the interiors
of our material bodies but otherwise arbitrary---and use
the VIE formalism of the previous section to derive compact
expressions for the rates of energy and momentum absorption
by the bodies. These expressions will be quadratic (bilinear)
functions of $\vb J\supt{F}$. (The F superscript stands
for ``free''; it distinguishes the fixed, externally-imposed
current $\vb J\supt{F}$ from the \textit{induced} current
$\vb J\supt{I}$ to which it gives rise.)
%--------------------------------------------------------------------%
\item I then average over thermal and quantum-mechanical
fluctuations of $\vb J\supt{F}$ to derive temperature-dependent
mean heat-transfer rates and forces on the bodies.
%--------------------------------------------------------------------%
\end{enumerate}
In what follows I will go back and forth somewhat freely between
continuous operator/field notation
[involving symbols like $\mathbb{G}$ and $\vb E(\vb x)$] and
discretized matrix/vector notation
(involving symbols like $\vb G$ and $\vb e$). For a precise
dictionary of the correspondence, see Appendix \ref{CorrespondenceAppendix}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{Energy and momentum transfer from volume-current bilinears}
Consider a collection of material bodies $\{\mc B_n\}$ and a
fixed, deterministic volume current distribution $\vb J\supt{F}(\vb x)$
that is nonzero only inside the bodies.
(We work at a fixed frequency $\omega$ with all fields and currents
varying in time like $e^{-i\omega t}.$)
In this section we derive formulas expressing time-average rates
of energy and momentum absorption by the bodies as bilinear
functions of $\vb J\supt{F}.$
\subsubsection*{Induced currents from free currents}
The free current distribution $\vb J\supt{F}(\vb x)$ excites an
induced current distribution $\vb J\supt{I}(\vb x)$ which we can
determine using the VIE techniques of the previous section.
Indeed, taking $\vb J\supt{F}$ as the source of the incident field
in a scattering problem, we have
%====================================================================%
\begin{align}
\vb E\sups{inc}(\vb r) &= ikZ_0 \mathbb{G} \star \vb J\supt{F}
\intertext{and the RHS vector of the discretized VIE system, equation
(\ref{VIESystem2}), reads}
\vb v &= -\vb G \, \vb j\supt{F}
\label{ScatProbRHS}
\end{align}
%====================================================================%
where, for a geometry consisting of $N$ bodies, the vectors and
matrices have an $N$-fold block structure:
%====================================================================%
\renewcommand{\arraystretch}{1.5}
$$ \vb v
=
\left(\begin{array}{c}
\vphantom{\vb j\supt{F}_1} \vb v_1 \\
\vphantom{\vb j\supt{F}_2} \vb v_2 \\
\vdots \\
\vphantom{\vb j\supt{F}_N} \vb v_N
\end{array}\right),
%--------------------------------------------------------------------%
\qquad
\vb G = \left(\begin{array}{cccc}
\vphantom{\vb j\supt{F}_1} \vb G_{11} & \vb G_{12} & \cdots & \vb G_{1N} \\
\vphantom{\vb j\supt{F}_1} \vb G_{21} & \vb G_{22} & \cdots & \vb G_{2N} \\
\vdots & \vdots & \ddots & \vdots \\
\vphantom{\vb j\supt{F}_1} \vb G_{N1} & \vb G_{N2} & \cdots & \vb G_{NN}
\end{array}\right),
\qquad
%--------------------------------------------------------------------%
\vb j\supt{F}
=
\left(\begin{array}{c}
\vb j\supt{F}_1 \\
\vb j\supt{F}_2 \\
\vdots \\
\vb j\supt{F}_N
\end{array}\right).
$$
\renewcommand{\arraystretch}{1.0}
%====================================================================%
In particular, the $n$th subblock of $\vb j\supt{F}$ is the
projection of the free current distribution\footnote{Note that
$\vb J_n\supt{F}(\vb x)$ is just the restriction of $\vb J\supt{F}$
to the interior of $\mc B_n$.} in body $\mc B_n$,
$\vb J_n\supt{F}(\vb x)$, onto the subset of basis functions whose
support lies in body $n$:
%====================================================================%
\numeq{jnF}
{ j_{n\alpha}\supt{F}
=
\int \vb b_{n\alpha}(\vb r) \cdot \vb J_n\supt{F}(\vb r) \, d\vb r.
}
%====================================================================%
Now taking equation (\ref{ScatProbRHS}) to be the RHS of the VIE scattering
problem (\ref{VIESystem2}), we obtain an expression for the induced
currents in terms of the free currents,
%====================================================================%
\begin{align}
\vb M \, \vb j\supt{I} &= - \vb G \vb j\supt{F}
\\
\intertext {or}
\vb j\supt{I} &= -\vb W \vb G \vb j\supt{F}
\label{jiFromjf}
\end{align}
%====================================================================%
where $\vb W=\vb M^{-1}$ is the inverse of the VIE matrix
defined by (\ref{VIESystem2}).
The \textit{total} current is
\begin{align}
\vb j &= \vb j\supt{F} + \vb j\supt{I}
\nn
&= \Big[ \vb 1 - \vb W \vb G\Big] \vb j\supt{F}.
\label{jTot}
\end{align}
\subsubsection*{Fields from free currents}
The $\vb E$-field at an arbitrary point in space (either
inside or outside a body) is then simply the sum of
contributions from fixed and induced currents:
%====================================================================%
\begin{align}
\vb E &= ikZ_0 \mathbb{G} \star (\vb J\supt{F} + \vb J\supt{I})
\label{EConvolution} \\
\intertext{or, in discretized form (Appendix \ref{CorrespondenceAppendix}),}
\vb e &= ikZ_0 \vb G (\vb j\supt{F} + \vb j\supt{I})
\nn
&= ikZ_0 \vb G \Big( \vb 1 - \vb W \vb G \Big) \vb j\supt{F}
\label{efromjf}
\end{align}
%====================================================================%
where in going to the last line I used (\ref{jiFromjf}).
In what follows I will also need the the quantity
$\partial_i \vb E(\vb r),$ i.e. the derivative of $\vb E$ with
respect to the evaluation point. Differentiating both sides of
(\ref{EConvolution}), we see that the derivative operates
on the first argument of $\mathbb{G}(\vb r, \vb r^\prime)$
and leaves everything else on the RHS untouched; thus we find
simply
%====================================================================%
\numeq{diefromfj}
{\partial_i \vb e = ikZ_0 \Big[\partial_i \vb G\Big] (\vb j\supt{F} + \vb j\supt{I})}
%====================================================================%
where the matrix elements of the quantity in square brackets are
$$ \Big[ \partial_i \vb G\Big]_{\alpha\beta}
= \int \int \vb b_\alpha(\vb r)
\left[\pard{}{\vb r_i} \mathbb{G}(\vb r, \vb r^\prime)\right]
\vb b_\beta(\vb r^\prime) \, d\vb r \, d\vb r^\prime.
$$
\subsubsection*{Power absorption}
The time-average rate at which body $\mc B_n$ absorbs power from
the source distribution $\vb J\supt{F}$ is obtained by integrating
the quantity $\frac{1}{2}\text{Re }\vb J^* \cdot \vb E$ over the
interior of $\mc B_n$; here $\vb J$ is the \textit{total} current
in $\mc B_n$, consisting of both free and induced contributions:
%====================================================================%
\begin{align}
P_n(\omega)
&=
\frac{1}{2}\text{Re }\int_{\mc B_n} \vb J^*(\vb r) \cdot \vb E(\vb r) \, d\vb r
\label{PowerVolumeIntegral} \\
&= \frac{1}{2}\text{Re }\vb j_n^\dagger \cdot \vb e_n \nonumber
\intertext{where we used equation (\ref{VolIntToDotProd}).
The $n$ subscript on vectors picks out the subblock
corresponding to body $n$; using the projection matrices
$\vb P_n$ defined by (\ref{ProjectionMatrix}), we
could equivalently write this in the form}
&= \frac{1}{2}\text{Re }\vb j^\dagger \vb P_n \vb e \nonumber
\intertext{Now insert equations (\ref{jTot}) and (\ref{efromjf}):}
&= \frac{1}{2}\text{Re }\left\{ ikZ_0 \,
\vb j\fd \Big[\vb 1-\vb G^\dagger \vb W^\dagger \Big]
\vb P_n
\vb G \Big[\vb 1 - \vb W \vb G\Big] \vb j\supt{F} \right\}
\nn
&= -\frac{kZ_0}{2}\text{ Im Tr }\left\{
\Big[\vb 1-\vb G^\dagger \vb W^\dagger \Big]
\vb P_n
\vb G \Big[\vb 1 - \vb W \vb G\Big]
\Big[\vb j\supt{F} \vb j\fd \Big]
\right\}.
\label{DeterministicPowerTraceFormula}
\end{align}
%====================================================================%
As advertised, this expression depends quadratically on
$\vb J\supt{F}$, as witness the appearance of the outer matrix
product $\vb j\supt{F} \vb j\fd$.
%=================================================
%=================================================
%=================================================
\subsubsection*{Momentum absorption}
The time-average rate at which body $\mc B_n$ absorbs $i$-directed
\textit{momentum} from the source distribution $\vb J\supt{F}$---that
is, the $i$-directed force on the body---may be expressed as a
volume-integral expression very similar to that of
(\ref{PowerVolumeIntegral})
but with
\textbf{(i)} ``Re'' replaced by ``Im,''
\textbf{(ii)} $\vb E$ replaced by $\partial_i \vb E$,
and
\textbf{(iii)} an extra factor of $\omega$ in the denominator:
%====================================================================%
\begin{align*}
T_n(\omega)
&=
\frac{1}{2\omega}
\text{Im }\int_{\mc B_n} \vb J^*(\vb r) \cdot \partial_i \vb E(\vb r) d\vb r.
\intertext{(This expression is quoted in~\citeasnoun{Kruger2012}; I
also provide a quick derivation in
Appendix \ref{ForceFormulaAppendix}.)
Going over to the discrete world, we have}
&=
\frac{1}{2\omega}
\text{Im }\vb j^\dagger \vb P_n (\partial_i \vb e)
\intertext{Insert (\ref{jTot}) and (\ref{efromjf}):}
&=
\frac{1}{2\omega}\text{Im }
\left\{ ikZ_0 \,
\vb j\fd \Big[\vb 1-\vb G^\dagger \vb W^\dagger \Big]
\vb P_n
(\partial_i \vb G) \Big[\vb 1 - \vb W \vb G\Big] \vb j\supt{F} \right\}
\nn
&= \frac{kZ_0}{2\omega}\text{Re Tr}
\left\{
\Big[\vb 1-\vb G^\dagger \vb W^\dagger \Big]
\vb P_n
(\partial_i \vb G) \Big[\vb 1 - \vb W \vb G\Big] \vb j\supt{F} \vb j\fd
\right\}
\end{align*}
%====================================================================%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\subsection{Statistical averages of volume-current bilinears}
The classical, deterministic expressions derived above for
time-average quantities $Q$ (where $Q$ is a power, force,
or torque) all take the form
%====================================================================%
\numeq{QofW}
{Q(w)
\propto
\Tr \Big\{ \vb Q(\omega) \cdot \big(\vb j\supt{F} \vb j\fd\big) \Big\}
}
%====================================================================%
where $\vb Q(\omega)$ is a frequency-dependent matrix. The
statistical \textit{average} of such quantities is performed
by averaging over all possible free current distributions
$\vb J\supt{F}(\vb r)$, which amounts to computing the statistical
average of the matrix $\vb j\supt{F} \vb j\fd$:
%====================================================================%
\begin{align*}
\big\langle Q(\omega) \big\rangle
\propto
\Tr \Big\{ \vb Q(\omega) \cdot
\big\langle \vb j\supt{F} \vb j\fd\big\rangle_{\omega}