-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_snippets.tex
2387 lines (1813 loc) · 155 KB
/
old_snippets.tex
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%
%%%% OLD SNIPPETS
%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
We can also consider a \emph{temporal sequence} of control volumes, one for each instant of time. They can have positions, shapes, sizes that change smoothly from one time instant to the next. This sequence is often also called \enquote*{control volume} for short; but note the difference from the original meaning, which refers to one time instant only.
The instantaneous movement and velocity of such a surface is important; therefore this region must, intuitively speaking, exist also an instant right before and right after the given time.
\smallskip
We can also consider a \emph{temporal sequence} of control surfaces, one for each instant of time. They can have positions, shapes, sizes that change smoothly from one time instant to the next. This sequence is often also called \enquote*{control surface} for short; but note the difference from the original meaning, which refers to only one time instant.
In the case of a control volume, movement does not matter: \emph{the volume content in a control volume does not depend on the instantaneous motion of the volume}. In fact we can even imagine a control volume that exists for just one time instant.
%
\marginpar{\vspace{0\baselineskip}\centering\includegraphics[width=\linewidth]{images/ball_wall.png}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}The golf ball is moving leftwards. Will it hit the metal surface? We don't know unless we know how the surface is moving.%
}%
In the case of a control surface the situation is different. The flux through a control surface \emph{depends also on the motion of the surface}. As a trivial example, consider a glass surface, and a person on one side of it, moving with a high velocity directed towards the surface. Will the person crash on the glass? We can't say for sure. The glass surface could be a glass wall in a building, which is not moving with respect to the person. In this case the person will likely crash on it. Or the glass surface could be the windscreen of a car, and the person could be the car's driver. In this case the person won't crash on the glass surface, because they're moving together with the same motion. Therefore we can't just imagine a surface that exists for one time instant: we need to imagine it at least for a very short time lapse, and be able to say how it's moving. If someone asks us what's the flux through a control surface at a given instant, but we are not told what's the motion of the surface, then the flux is unknown.
----
of the quantity through the given surface. This measurement has the unit of the quantity divided by time. Remember that the flux through a surface depends on how that surface is moving.
The \textbf{volume content} or \textbf{volume integral} is the amount of a quantity contained within a three-dimensional region, at a specific time instant. It has the same physical dimension as the quantity.
\begin{definition}{Volume content}
The \textbf{volume content} or \textbf{volume integral} is the amount of a quantity contained within a three-dimensional region, at a specific time instant. It has the same physical dimension as the quantity.
\end{definition}
\smallskip
Measurement~(2b) is called the \textbf{flux} of the quantity through the given surface. This measurement has the unit of the quantity divided by time. Remember that the flux through a surface depends on how that surface is moving.
\smallskip
Measurement~(3b) is called the \textbf{supply} or \textbf{source} of the quantity in the given volume. This measurement has the unit of the quantity divided by time. The supply can be \emph{negative}, in which case it means that the quantity is being destroyed.
\end{definition}
\begin{enumerate}[noitemsep]
\item[(1)] We can speak about the amount of quantity contained within a three-dimensional region, at a specific time instant.
\smallskip
\item[(2a)] We can speak about the amount of quantity flowing through a two-dimensional surface during a time lapse\textellipsis
\item[(2b)] \textellipsis or alternatively we can speak about the amount of quantity flowing through a two-dimensional surface \emph{per time}, at a particular time instant.
\smallskip
\item[(3a)] We can speak about the amount of quantity produced within a three-dimensional region during a time lapse\textellipsis
\item[(3b)] \textellipsis or alternatively we can speak about the amount of quantity being produced within a three-dimensional region \emph{per time}, at a particular time instant.
\end{enumerate}
Let's give definite names to these three measurements:
\begin{definition}{{Volume content, flux, supply}}
Measurement~(1) is called the \textbf{volume content} or \textbf{volume integral} of the quantity. This measurement has the same unit as the quantity.
\smallskip
Measurement~(2b) is called the \textbf{flux} of the quantity through the given surface. This measurement has the unit of the quantity divided by time. Remember that the flux through a surface depends on how that surface is moving.
\smallskip
Measurement~(3b) is called the \textbf{supply} or \textbf{source} of the quantity in the given volume. This measurement has the unit of the quantity divided by time. The supply can be \emph{negative}, in which case it means that the quantity is being destroyed.
\end{definition}
----
\subsection{The difference between flux and supply}
\label{sec:supply}
When we speak of \emph{supply} in the technical sense of measurement~(3b) above, we mean that there is \emph{creation} (positive supply) or \emph{destruction} (negative supply) of some amount of quantity in a region of space, during a lapse of time. By \enquote{creation} we mean that there's an increase in the amount of quantity in the region, which cannot be accounted for by the amount that \emph{entered} the region. In a manner of speaking, some of that quantity \enquote{appears from nowhere}, or \enquote{disappears into nowhere}.
In some cases the creation or destruction of a quantity is accompanied by the simultaneous destruction or creation of another quantity: there is actually a transformation taking place. So if we take both quantities together there is no creation or destruction. For example, in a container we may have some amounts of oxygen and hydrogen disappearing, and some amount of water appearing. We know that it is because the \emph{atoms} of these three substances are recombining in different ways; they are not created or destroyed. Yet it's a fact that there is a decrease of oxygen and hydrogen \emph{molecules}: we can count them, and observe that their number diminishes with time, and not because they are exiting the container. The opposite is true for water molecules: we observe their number increases with time, and not because they are entering the container.
Therefore it does make sense to speak about, and to quantify, such increase or decrease of a quantity that occurs in a region of space during a lapse of time, which occurs not because the quantity is entering or leaving through the region's boundary. % We call the increase in the unit of time the \textbf{supply} or \textbf{source} of that quantity.
\begin{definition}{Supply}
We call \textbf{supply} or \textbf{source} the amount of a quantity created (as opposed to flowed in) in a given volume in the unit of time.
The supply can be \emph{negative}, in which case it means that the quantity is destroyed.
The supply has the unit of the quantity divided by time.
\end{definition}
\medskip
----
\begin{definition}{Three basic measurements that can be made on the seven quantities}
\begin{enumerate}[label=\arabic*.]\bfseries
\item How much of this quantity is contained in a particular three-dimensional region of space at a particular time instant?
\item How much of this quantity flows through a particular two-dimensional surface during a particular time lapse?
\item How much of this quantity is produced in a particular three-dimensional region of space during a particular time lapse?
\end{enumerate}
\end{definition}
%
\marginpar{\vspace{-11\baselineskip}\centering\includegraphics[width=\linewidth]{images/howmuch_volume.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
For six main quantities we can ask: how much of it is in a given volume, at a given time?
\mbox{}
\\[2\baselineskip]\centering\includegraphics[width=0.7\linewidth]{images/howmuch_surface.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
For six main quantities we can ask: how much of it is flowing through a given surface, during a given time lapse?%
}%
We can ask these questions of any region of space, any time instant, and any time lapse. The surface in the second question can be moving and deforming. The results of the three measurements above are numbers (positive or negative) for scalar quantities; and vectors for vector quantities. In the case of magnetic flux we can ask the three questions above in 2 and 1 dimensions, rather than in 3 and 2 dimensions, as we shall see in \chap~\ref{cha:cons_magneticflux}.
% This number depends only on the chosen region, surfaces, and times.
The second and third questions, about the flow through a surface and the production in a region, can also be asked in a slightly different way. We can consider a very short lapse of time, and divide the net flow and the net production by that time lapse. This way we have an alternative form of the second and third measurements, as flow or production divided by time. They are called the \textbf{flux} and the \textbf{supply} of the quantity:
\begin{definition}{Flux of a quantity through a surface}
\begin{enumerate}[label=\arabic*.]\bfseries
\item[2b.] How much of this quantity is flowing through a particular two-dimensional surface, per time, at a particular time instant?
\end{enumerate}
\end{definition}
\begin{definition}{Supply of a quantity in a region}
\begin{enumerate}[label=\arabic*.]\bfseries
\item[3b.] How much of this quantity is being produced through a particular three-dimensional region of space, per time, at a particular time instant?
\end{enumerate}
\end{definition}
\medskip
The second property common to all seven quantities tells how the measurements above combine for several regions of space and several surfaces:
\begin{definition}{Extensivity or additivity,label={def:extensivity}}
\begin{enumerate}[label=\arabic*.]\bfseries
\item[3.] If we consider two or more non-overlapping volumes, the amount of quantity in the total volume is equal to the sum of the amounts in the individual volumes.
If we consider two or more non-overlapping surfaces, the amount of quantity flowing through the total surface is equal to the sum of the amounts flowing through the individual surfaces.
\end{enumerate}
We say that each of the seven quantities is an \textbf{extensive} or \textbf{additive} quantity.
\end{definition}
% We shall later see that analogous properties hold for the magnetic flux, the only difference being that instead of holding in 3 and 2 dimensions, they hold in 2 and 1 dimensions.
----
Given a coordinate time it is possible to define an alternative distance, which we can call \textbf{spatial coordinate distance} or just \enquote*{coordinate distance} for short. It is the length of the path joining you and the object at coordinate time $t$ for both; all points of the path are also understood to be at coordinate time $t$ as well. The path should be a \emph{straight line} (geodesic) between you and the object. As mentioned before, there may be several geodesics connecting you and the object at coordinate time $t$. This fact may lead to some complications. For instance there may be different paths having shortest distance; therefore saying \enquote{the path of shortest distance} may be ambiguous.
Coordinate distance has two advantages. First, it does \emph{not} depend on the relative motion between you and the object. Second, it can also be defined for very faraway objects. It is often difficult to measure directly, however, and often can only be extrapolated.
These problems are all bypassed by using a \textbf{spatial coordinate system}, or \enquote*{coordinate system} for short. A coordinate system is the assignment, by agreement, of three numerical labels to every point in a given region of space, \emph{for each coordinate time}. We use symbols for these labels, such as $(x,y,z)$ or $(r, \theta,\phi)$ or others. The values of these labels are thus the same for all observers. Often these labels have physical meaning, such as the distance from some event as measured by a specific observer, but they don't need to. In situations where only two or just one dimension are relevant, we can just use two or one spatial coordinates.
We take a metallic spring (or a rubber band) and attach two identical clocks at either extremity, let's call the extremities A and B. We contract the spring so that the two clocks touch; and right when they touch, we synchronize them so that they show the same time. The spring is then released; its two extremities move; the spring alternately stretches and contract while moving.
Later on we observe the spring while its two end happen, for an instant, to touch again and to be very close to us. As the two ends A and B touch, we can agree that the length of the spring is zero. But \emph{at what time} is it zero? Our clock shows time $t_{\textrm{us}}$, the clock at end A of the spring shows time $t_{A}$, and the clock at end B shows time $t_{B}$. These three times will generally be different. So \emph{for us} the spring has zero length at time $t_{\textrm{us}}$. For end A, the length is zero at the different time $t_{A}$. And for end B, the length is zero at a yet different time $t_{B}$. Clearly we cannot specify an absolute time at which the spring has zero length: we can only specify it relative to some moving clock.
The situation is even more complicated if we ask \enquote{what is the length of the spring at time $t$?}. First of all we must specify \emph{whose} time $t$. Let's say it's the time shown by our clock.
The time elapsed for us, for one spring end, and for the other end will generally be different.
Think of a metallic spring or a rubber band that is alternately stretching and contracting, while moving. The question \enquote{what is the length of the metallic spring \emph{right now}?} does not make sense, because there is no universal \enquote*{now}. Imagine of attaching a clock to either end of the metallic spring
We could attach one clock at either end of the metallic spring, but the synchronization of these two clocks would be arbitrary, and the time elapsed for each would depend on its motion in spacetime. The synchronization
Traditionally when we speak of the distance of a moving object at a given time, we mean the distance at the same instant of time, measured on a straight line. But we have seen that it does not make sense for us to ask \enquote{what is the time for the object, right now?}; and moreover, spacetime is curved. Owing to the path-dependence of time and to curvature, we can define and measure several \enquote*{distances}, which are \emph{not} equivalent to one another.
%%%% Time space begin
Note therefore the following curious situation. In setting up a time to meet a friend, you don't need to worry about the discrepancies between your and your friend's proper times: if your friend walks \qty{1000}{m} away from you and then immediately back to you, at \qty{1}{m/s}, then the time elapsed for you will be \qty{1000}{s} (around \qty{17}{min}), but the time elapsed for your friend will be \qty{999.999999999999994437}{s}. That's a difference of less than \qty{e-14}{s}, clearly negligible for the two of you, so you don't need to worry with General Relativity formulae in setting up your meeting time. Yet, if you set up a meeting place via GPS, then the true nature of time and General Relativity formulae become important: if they were not accounted for, you and your friend might end up off your meeting place by \qty{100}{m}.
% In most everyday situations for us, who live on or nearby Earth's surface and move at speeds much smaller than $\yc$ with respect to one another, the discrepancies between our proper times are so small that they cannot be measured with ordinary clocks or with our internal clocks. Consider a person walking \qty{10}{m} away from you and then immediately walking back to you, at \qty{1}{m/s}. The time elapsed for you will be \qty{20}{s}, but for that person will be \qty{19.999999999999999889}{s}, a difference of \qty{e-16}{s}, which is the error of an atomic clock. %%***add ref
% If human beings will still exist in some decades or centuries, in space travel they will have to deal with large proper-time discrepancies also in everyday life.
Time lapse or duration has SI dimension \enquote*{\textsf{time}}, and we shall usually measure it using the unit \emph{second}, symbol \enquote*{$\unit{s}$}.
% *** add short explanation of second
\subsection{Coordinate time}
\label{sec:coord_time}
The fact that the time elapsed for you can be different from that elapsed for a satellite can therefore make it difficult to coordinate activities and to operate some technologies.
But luckily there's a way to bypass proper-time discrepancies. Instead of referring to my proper time or to your proper time, we can agree on assigning a somewhat arbitrary numerical time label to every event: this is called a \textbf{coordinate time}.
\medskip
Coordinate time is generally different from the proper times measured by different observers. It can nevertheless be used for \enquote{doing physics}, and it is the time we shall most often use in our equations. The coordinate time commonly used for Earth-physics purposes is \furl{https://www.nist.gov/pml/time-and-frequency-division/time-realization/utcnist-time-scale-0/}{Universal Coordinated Time UTC}, or the \furl{https://gssc.esa.int/navipedia/index.php?title=Atomic_Time}{International Atomic Time TAI} for astronomy purposes:
%\autocites[]{icwg1983_r2022}
\begin{quote}\footnotesize
International Atomic Time (TAI) is based on more than 250 atomic clocks distributed worldwide that provide its stability, whereas a small number of primary frequency standards provide its accuracy. Universal Coordinated Time, which is the basis of all legal time scales, is derived from TAI. To allow the construction of TAI and the general dissemination of time, clocks separated by thousands of kilometres must be compared and synchronized. \textelp{} The achieved performances of atomic clocks and time transfer techniques imply that the definition of time scales and the clock comparison procedures must be considered within the framework of General Relativity. \sourceatright{\parencites{petitetal2005}}
%\mbox{}\hfill (\cites{petitetal2005})
\end{quote}
% \begin{figure}[h!]\footnotesize\centering%
% \includegraphics[align=t,width=0.75\linewidth]{images/datetime_2x.png}
% \\%
% \url{https://xkcd.com/2867}
% \end{figure}
UTC and TAI have the same time lapse, but UTC differ by irregular readjustments of its \enquote{zero}, the \furl{https://webtai.bipm.org/ftp/pub/tai/Circular-T/cirthtm/cirt.442.html}{leap seconds}.
The clock on your phone, and on devices synchronized via internet, shows UTC, not your proper time. An observer on Earth at \qty{0}{m} over sea level, and not moving, measures a proper-time lapse equal to UTC or TAI (besides small variations coming from the irregularity and internal motions of the Earth). But observers at other altitudes and observers moving with respect to Earth's surface can measure that their proper-times lapses are slightly different from UTC and TAI.
\medskip
In applications related to interplanetary spacecraft navigation and cosmological observations, the Barycentric Coordinate Time TCB is used. Its time lapse is slightly faster than the one of UTC: for each second that passes in UTC, \qty{1.0000000148}{s} pass in TCB on average. Two coordinate times to be used around an on the Moon, \furl{https://doi.org/10.1103/Physics.17.140}{Lunar Coordinate Time TCL} and Lunar Time LT, are on the making in the year 2025. Lunar Time will lapse faster by \qty{5.6e-5}{s} per day compared to our UTC. The establishment of all these kinds of coordinate times shows how important the difference between coordinate and proper time is for our current technology.
\medskip
When we use coordinate time, some important physics formulae turn out to be the same no matter whether we use General Relativity or an approximate theory such as Newtonian Mechanics. Thanks to this fact, for the most part of these notes we will not need to deal with proper-time details. But it is important for you to keep in mind how time really works, and the small time discrepancies that exist and occur all the time along your \emph{worldline}.
\begin{exercise}[label={ex:clocks}]
Consider two clocks: one at rest on the Earth's surface, at a distance $\color{green}r_{\text{e}}$ from the Earth's centre; the other on a GPS satellite or, say, on the \furl{https://www.nasa.gov/international-space-station/}{International Space Station}, right above the first clock, at a distance $\color{red}r_{\text{s}}$ from the Earth's centre. An observer by the clock on Earth measuring a time lapse $\Dt_{\text{e}}$ will see that the clock on the satellite has run for a time lapse $\Dt_{\text{s}}$. The relation between two time lapses is approximately given by
\sidepar{\centering%
\includegraphics[align=t,width=0.75\linewidth]{images/re_rs.pdf}
}
\begin{equation*}
\frac{\Dt_{\text{s}}}{\Dt_{\text{e}}} =
\frac{
\sqrt{1-2\frac{G}{c^{2}}\frac{M}{r_{s}}}
}{
\sqrt{1-2\frac{G}{c^{2}}\frac{M}{r_{e}}}
}
\end{equation*}
where $G\approx\qty{6.7e-11}{m^{3}/(kg.s^{2})}$, $c=\qty{3.0e8}{m/s}$, and the Earth's mass $M=\qty{6.0e24}{kg}$.
\begin{enumerate}[exerc]
\item\label{item:gps_clock} Take the case of a GPS satellite, with $r_{\text{e}}=\qty{6.4e6}{m}$ and $r_{\text{s}}=\qty{2.6e7}{m}$ (\furl{https://www.nasa.gov/directorates/somd/space-communications-navigation-program/gps/}{NASA data}). If you, on the ground, measure a time lapse of $\Dt_{\text{e}}=\qty{10}{years}$, what's the difference, in seconds, with the time lapse $\Dt_{\text{s}}$ you see on the satellite?
\item\label{item:interstellar} If the time lapses are large compared with the time needed to go from ground to orbit or vice versa, then $\Dt_{\text{s}}/\Dt_{\text{e}}$ is also the ratio between the real \emph{ageing} of a person who's been in orbit and one who's been on the ground, when they meet again.
Now consider the case with a black hole instead of Earth. The formula above can still be applied as an approximation.
In the film \furl{https://www.imdb.com/title/tt0816692/}{\emph{Interstellar}}, two
astronauts travel to Miller's planet, at a distance $r_{\text{e}}$ from the black hole Gargantua, while leaving a third astronaut in orbit at a distance $r_{\text{s}}\approx \infty$ (the distance is large enough that it can be approximated as infinity). The two astronauts stay on Miller's planet for \qty{3}{hours}. When they meet the latter astronaut in orbit again, the latter has aged \emph{23\;years}.
\sidepar{\footnotesize\centering%
\vspace{-7em}\includegraphics[width=\linewidth]{images/gargantua.png}
}
Given that Gargantua's mass is $M=\qty{2.0e38}{kg}$, calculate the distance $r_{\text{e}}$ of Miller's planet from the black hole.
\end{enumerate}
\end{exercise}
\section{Space}
\label{sec:space}
\subsection{Distances}
\label{sec:distances}
Together with the notion of time, also the notions of space and distance lose some of their traditional intuition. Traditionally when we speak of the distance of a moving object at a given time, we mean the distance at the same instant of time, measured on a straight line. But we have seen that it does not make sense for us to ask \enquote{what is the time for the object, right now?}; and moreover, spacetime is curved. Owing to the path-dependence of time and to curvature, we can define and measure several \enquote*{distances}, which are \emph{not} equivalent to one another.
\medskip
%
\marginpar{\vspace{-\baselineskip}\centering\includegraphics[width=0.9\linewidth]{images/radar_distance.jpg}%
% \\[\jot]\footnotesize\flushleftright\color{mpcolor}%
}%
If an object~B is enough close to you, we define the \textbf{radar distance} of B from you at your particular proper time $t$ in the following way, illustrated in the side figure. The figure shows your \emph{worldline} in spacetime (similarly to what we did in \fig~\ref{fig:ABC_spacetime}) in \textcolor{blue}{blue} on the left, and the worldline of object~B in \textcolor{green}{green} on the right. At your proper time $\yti$ you send a light pulse towards object~B. The pulse travels in empty space, and upon hitting object~B it immediately bounces back to you. It reaches you at your proper time $\ytf$. The worldline of the light pulse is the \textcolor{yellow}{dashed yellow} line. A proper time $\Dt = \ytf - \yti$ has elapsed for you between emission and reception of the light pulse, and the time exactly in between emission and reception is $t = (\ytf + \yti)/2$. The radar distance $d$ of object~B from you at time $t$ is then defined as
\begin{equation}
\label{eq:physical_distance}
d \defd \tfrac12 c\, \Dt
\end{equation}
where $\yc$ is the speed of light in vacuum, a universal physical constant:
% %
% \marginpar{\vspace{-\baselineskip}%
% \footnotesize\color{mpcolor}The SI symbol for the speed of light in vacuum is \enquote{$c_{0}$} \parencites[item~6-35.2]{iso2008}. For simplicity we shall omit the subscript \enquote{${}_{0}$} in these notes.%
% }%
\begin{equation}
\label{eq:c}
\yc = \qty{299792458}{m/s}\quad\text{(exactly).}
\end{equation}
%
\marginpar{\vspace{-\baselineskip}\centering\includegraphics[width=0.75\linewidth]{images/laser_meter.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}A laser distance meter (the light beam is not visible in reality).%
}%
The \furl{https://www.nist.gov/si-redefinition/meter}{metre}, SI unit of length, is based on the measuring procedure above. Common laser distance meters also work by the same procedure, and therefore yield radar distance. When we speak of \enquote*{physical} distance, we typically mean radar distance.
Radar distance, however, makes sense only if the time lapse $\Dt$ is small enough, so that the relative motion between you and the object is approximately uniform. For this reason this distance cannot be used if the object is too far away: the farther away it is, the longer it takes for a light beam to travel to and fro. Radar distances can be used between the Earth and other Solar System planets; but they cannot be used for galaxies or other distant cosmological objects.
The value of the radar distance \emph{depends on the relative motion} between you and the object. Imagine that a friend of yours is located very close to you at time $t$, but is moving with respect to you. Upon measuring object~B's radar distance, your friend will generally find a value different from yours. The discrepancy between you and your friend's measured values will be the larger, the higher is the relative velocity between you two. Several observers in motion with respect to one another will generally disagree on the dimensions of an approximately rigid objects in their vicinity.
%
\marginpar{\vspace{-5\baselineskip}\centering\includegraphics[width=\linewidth]{images/tuebingen.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}How a street in T{\"u}bingen would look like (except for colour and some other features) if we travelled through it at around \qty{240000000}{m/s} (from \textit{\furl{https://www.spacetimetravel.org/}{Relativity visualized}})%
}%
The dependence on relative motion also affects, at high speeds, how we \emph{see} objects, which appears more and more deformed. You can find beautiful visualizations, both static and animated, at \textit{\furl{https://www.spacetimetravel.org/}{Relativity visualized}}.
\medskip
Given a coordinate time it is possible to define an alternative distance, which we can call \textbf{spatial coordinate distance} or just \enquote*{coordinate distance} for short. It is the length of the path joining you and the object at coordinate time $t$ for both; all points of the path are also understood to be at coordinate time $t$ as well. The path should be a \emph{straight line} between you and the object; but we must remember that spacetime is curved. The notion closest to a \enquote*{straight line} in a curved space is that of a \furl{https://mathworld.wolfram.com/Geodesic.html}{\emph{geodesic}}. It turns out that there may be several geodesics connecting you and the object at coordinate time $t$. This fact may lead to some complications. For instance there may be different paths having shortest distance; therefore saying \enquote{the path of shortest distance} may be ambiguous.
Coordinate distance has two advantages. First, it does \emph{not} depend on the relative motion between you and the object. Second, it can also be defined for very faraway objects. It is often difficult to measure directly, however, and often can only be extrapolated.
Note also that the speed of light defined with respect to coordinate distance need not have the value $\yc$ or even be constant! You might have heard or read about distant cosmological objects, like \furl{https://esahubble.org/wordbank/quasar}{quasars}, that are said to be receding from us at speeds faster than light's. How is that possible? The reason is that the \enquote*{speeds} they're talking about are defined with respect to \emph{coordinate distance}, not radar distance.
\medskip
Many other distances -- and corresponding speeds -- can be defined; \furl{https://doi.org/10.48550/arXiv.astro-ph/9905116}{cosmology uses a plethora of them}. One must therefore be careful about which definition of distance is being used.
Luckily, for objects and events that are not too far away, and for observers whose relative speeds are not too high compared to the speed of light, all differently defined distances have very small discrepancies. In many everyday situations we can therefore speak of \enquote*{distance} without specify exactly which distance we're using. As an example, consider a car moving on a road at \qty{100}{km/h}, that is around \qty{28}{m/s}. The car's driver measures the length of the car to be \qty{4}{m} by radar distance. A pedestrian that sees the car passing by instead measures its length to be \qty{3.99999999999998}{m} by radar distance, which in this case is also equal to coordinate distance. This is a negligible measurement discrepancy in many ordinary situations.
The distances we'll use in these notes can be interpreted either as coordinate distances or as radar distances.
\medskip
% %
% \marginpar{\vspace{0\baselineskip}\centering%
% %\includegraphics[width=\linewidth]{images/gravitational_lens3.jpg}%
% \includegraphics[width=\linewidth]{images/gravitational_lens1.png}%
% \\[2ex]\includegraphics[width=\linewidth]{images/quasar_lens2.jpg}%
% \\[\jot]\footnotesize\flushleftright\color{mpcolor}Top: from
% %\furl{https://www.jpl.nasa.gov/images/pia23641-gravitational-lensing-graphic}{NASA JPL}.
% \emph{\furl{https://www.astro.ucla.edu/~wright/distance.htm}{The ABC's of Distances}}.
% Bottom: from \furl{https://esawebb.org/images/potm2406a}{ESA/Webb}.%
% }%
%
\marginpar{\vspace{0\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/gravitational_lens1.png}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}From
\emph{\furl{https://www.astro.ucla.edu/~wright/distance.htm}{The ABC's of Distances}}.%
}%
\marginpar{\vspace{0\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/quasar_lens2.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}From \furl{https://esawebb.org/images/potm2406a}{ESA/Webb}.%
}%
A spectacular case of the effect of spacetime curvature is the phenomenon of \furl{https://science.nasa.gov/mission/hubble/science/science-behind-the-discoveries/hubble-gravitational-lenses}{gravitational lensing}. Owing to the curvature of spacetime, light and other electromagnetic radiation emanating from the object reach us along different paths in spacetime. All these paths are \enquote{straight lines} (geodesics). Coming from different directions, to us these look like distorted, duplicated images of the object, as schematized in the top side figure. The curvature is generated by some large distribution of energy-mass, such as a galaxy, between us and the object. A beautiful example of this phenomenon is given by the \furl{https://www.nasa.gov/image-article/distant-quasar-rx-j1131}{quasar RX~J1131-1231}, bottom side image. Spacetime curvature separates the light arriving to us from this quasar into four \textcolor{yellow}{yellow} \amp\ \textcolor{red}{red} spots, three at the top and one at the bottom in the image. The curvature is generated by a galaxy visible as the \textcolor{blue}{blue spot} at the centre.% but get also deformed into the almost-closed \textcolor{blue}{blue arc}.
\medskip
Length and distance have SI dimension \enquote*{\textsf{length}}, and we shall usually measure them using the unit \emph{metre}, symbol \enquote*{$\unit{m}$}.
\begin{exercise}[label={ex:distance}]
% **** Add figure
Imagine that you and a friend of yours are measuring your distance from a wall, using a laser distance meter each. You and the wall are static with respect to Earth's surface. Your friend is moving with a speed $v$ towards the wall, and is right beside you at the exact moment of the measurement.
\smallskip
In this specific situation, if $d_{\textrm{you}}$ is the distance measured by you, and $d_{\textrm{friend}}$ the distance measured by your friend, the two are related by the formula
\begin{equation*}
d_{\textrm{friend}} = d_{\textrm{you}} \cdot \sqrt{1 - v^{2}/\yc^{2}} \ ,
\end{equation*}
where $\yc$ is the speed of light, given in \eqn~\eqref{eq:c}. Note that this formula is also valid if your friend is moving away from the wall, rather than towards it.
\begin{enumerate}[exerc]
\item\label{item:distance_friend} Suppose you find that the distance of the wall from you is \qty{200}{m}. Your friend's speed is \qty{300}{m/s}. How much is the distance from the wall to your friend, who's right beside you, as measured by your friend? (You'll need a high-precision calculator and 18 significant digits.)
\item\label{item:velocity_friend} Now instead suppose you find that the distance of the wall from you is \qty{500}{m}. Your friend measured (when right beside you) a distance of \qty{499}{m}. How fast was your friend moving?
\end{enumerate}
\end{exercise}
\subsection{Spatial coordinates}
\label{sec:coord_space}
The peculiarities of space and the curvature of spacetime can make it difficult to communicate the positions of objects and events by relying on distances. In giving indications about the location of a shop we can say \enquote{it's 200 metres down the road} without ambiguity. But in situations where much higher precision is needed and extreme motions or gravitational fields are involved, we would need to know the velocity of the person we're talking to, because the distances measured by us and by that person could be very different. Moreover, the communication of locations usually involves reference to places that are known to all parties involved in the communication.
These problems are all bypassed by using a \textbf{spatial coordinate system}, or \enquote*{coordinate system} for short. A coordinate system is the assignment, by agreement, of three numerical labels to every point in a given region of space, \emph{for each coordinate time}. We use symbols for these labels, such as $(x,y,z)$ or $(r, \theta,\phi)$ or others. The values of these labels are thus the same for all observers. Often these labels have physical meaning, such as the distance from some event as measured by a specific observer, but they don't need to. In situations where only two or just one dimension are relevant, we can just use two or one spatial coordinates. Note that a coordinate system is usually defined on a limited region of space.
%
\marginpar{\vspace{-\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/coords_curv.jpg}%
% \\[\jot]\footnotesize\flushleftright\color{mpcolor}%
% Grid representing a two-dimensional coordinate system.%
}%
A coordinate system can be visualized as a grid made by a set of lines or planes, one set for each coordinate, which allow us to read the coordinates of any point. The side figure shows an example with coordinates $(x,y)$ in two dimensions. It is of course assumed that the grid can be refined as much as needed. We are all familiar with the coordinate system $(\lambda, \phi)$ of \emph{latitude} and \emph{longitude} to identify locations on Earth's surface, and used internally by the location systems of mobile phones.
Whereas in the case of time we typically use a standard time coordinate~\autoref{sec:coord_time}, in the case of spatial coordinates we typically use more freedom: we set up peculiar coordinate systems adapted to the physics problem. In many exercises in these notes you'll see sketches of tailor-made reference systems.
\medskip
Spatial coordinate systems may be constructed so as to have particular physical properties, which in turn may lead to simpler expressions for some physical laws, \autoref{sec:constitutive}{as we shall see later}. For instance, the coordinate lines of a coordinate system might be straight lines (geodesics). If they are not, then we call the coordinate system \emph{curvilinear}; the coordinates in the previous side figure are an example.
One useful property for a coordinate system is to have its coordinate lines always \emph{orthogonal} to one another, that is, they intersect at $\pi/2\:\unit{rad}$ at every point. We call this an \textbf{orthogonal coordinate system}. In these notes we shall always use orthogonal coordinates. A coordinate system can be curvilinear \emph{and} orthogonal.
\begin{exercise}[label={ex:latlong}]
% **** Add figure
On Earth's surface we often use the system of two coordinates called \emph{latitude} and \emph{longitude}. Coordinate lines of constant latitude are called \emph{parallels}; those of constant longitude are called \emph{meridians}. Earth's surface is curved, and the \enquote{straight lines} in this space are maximal circles. All the meridians are maximal circles; therefore longitude is \emph{not} a curvilinear coordinate.
\begin{enumerate}[exerc]
\item\label{item:latitude_curvilinear} Is latitude a curvilinear coordinate? Explain why or why not.
\item\label{item:latlong_ortho} Are latitude and longitude orthogonal coordinates? Explain why or why not.
\end{enumerate}
\end{exercise}
%
\marginpar{\vspace{\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/gcrf.jpg}
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
The assignment of coordinates on and around Earth depends on nominal values assigned to distant astronomical objects (from \cites{capitaine2010})%
}%
\mynotew{to be continued}
%%%% Time space end
:\enspace
\begin{enumerate*}[label=(\arabic*)]
\item how many people are in the rear half, right now;\enspace
\item how many people are crossing the imaginary division between the front and rear half during one minute, starting from now.
\end{enumerate*}
The more an observer's speed is close to the speed of light in vacuum $\yc$, a universal physical constant:
%
\marginpar{\vspace{-\baselineskip}%
\footnotesize\color{mpcolor}The SI symbol for the speed of light in vacuum is \enquote{$c_{0}$} \parencites[item~6-35.2]{iso2008}. For simplicity we shall omit the subscript \enquote{${}_{0}$} in these notes.%
}%
\begin{equation}
\label{eq:c}
\yc = \qty{299792458}{m/s}\quad\text{(exactly).}
\end{equation}
Let's say that we want to measure the \enquote*{distance} of a moving object; a couple of problems appear. One problem is that when we speak of the distance of an object, traditionally we mean the distance between us and the object \enquote{at the same instant of time}. But as we have seen, it does not make sense for us to ask \enquote{what is the time for the object, right now?}. We could bypass this problem by specifying \enquote{when our clock shows time $a$ and the object's clock shows time $b$}, instead of saying \enquote{now}. Another problem appears, though. Distance is traditionally measured along a \emph{straight line} between us and the object. But spacetime is curved. The closest notion to a \enquote{straight line} is that of a \furl{https://mathworld.wolfram.com/Geodesic.html}{\emph{geodesic}}. It turns out, however, that there may be several geodesics connecting us at our time $a$ and the object at its time $b$, and the distances measured along these geodesics will generally be different. The very notion of \enquote*{distance} therefore becomes tricky and has different and non-equivalent definitions.
Luckily, for objects and events that are not too far away, and for observers whose relative speeds are not too high compared to the speed of light, all differently defined distances have very small discrepancies. In many everyday situations we can therefore speak of just one unique distance, up to some precision. As an example, consider a car moving on a road at \qty{100}{km/h}, that is around \qty{28}{m/s}. The car's driver measures the length of the car to be \qty{4}{m}. A pedestrian that sees the car passing by instead measures its length to be \qty{3.99999999999998}{m}. This is a negligible measurement discrepancy in many ordinary situations.
%
\marginpar{\vspace{-8\baselineskip}\centering\includegraphics[width=\linewidth]{images/tuebingen.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}How a street in T{\"u}bingen would look like (except for colour and some other features) if we travelled through it at around \qty{240000000}{m/s} (from \textit{\furl{https://www.spacetimetravel.org/}{Relativity visualized}})%
}%
These peculiarities of space and time also affect, at high speeds, how we \emph{see} objects. You can find beautiful visualizations, both static and animated, at \textit{\furl{https://www.spacetimetravel.org/}{Relativity visualized}}.
\smallskip
The discrepancies between distances measured by different observers, and the fact that in some cases there is no uniquely defined distance, lead to difficulties in the locating events. As in the case of time we can bypass these difficulties by agreeing on a set of three unique numbers assigned to each event at each coordinate time, called the \emph{spatial coordinates} of that event. We discuss them in the next section. When we use spatial coordinates, some important physics formulae turn out to be the same no matter whether we use General Relativity or an approximate theory such as Newtonian Mechanics.
\iffalse
\newpage
\nonoaddchap{Introduction}
\label{sec:intro}
% %\setlength{\beforeepigraphskip}{0pt}
% %\setlength{\afterepigraphskip}{0pt}
\epigraph{The loss implied in such an acquisition can be estimated only by those who have been compelled to unlearn a science that they might at length begin to learn it.}{J. C. Maxwell \cites*{maxwell1878}}
Until some decades ago, the 18th-century physical notions typically taught in introductory Bachelor physics courses were enough to prepare an engineer for future specializations and jobs. Students who wanted to venture into modern theories, such as Relativity, were required to \textbf{re-learn} some of the most important physical notions -- \emph{Energy}, mass, time, entropy above all -- which in these theories are quite different from the 18th-century ones. But at that time the modern theories still mostly had only theoretical, not practical, importance. So the re-learning efforts of the curious students could perhaps be justified.
%% \mynotew{add about re-learning necessary for continuum mechanics}
\smallskip
% \marginpar{\footnotesize%
% {\color{mpcolor}\enquote{\emph{The achieved performances of atomic clocks and time
% transfer techniques imply that the definition of time scales
% and the clock comparison procedures must be considered
% within the framework of General Relativity}}\sourceatright{\cites{petitetal2005}}}
% }
\marginpar{%
\color{mpcolor}\footnotesize%
\enquote{\emph{Numerous relativistic issues and effects play roles in the global positioning system, on which millions of drivers, hikers, sailors, and pilots depend to find out where they are. The GPS system is, in effect, a realization of Einstein's view of space and time. Indeed, the system cannot function properly without taking account of fundamental relativistic principles.}}\sourceatright{\cites{ashby2002}}
}
%
That situation has changed today. Modern theories and modern physical notions are an essential part of many everyday technologies, like nuclear reactors and the \furl{https://www.gps.gov}{Global Positioning System} (see the entertaining discussion in \cites[Project~A]{tayloretal2000}, and also \cites{petitetal2005,fliegeletal1996,ashby2002,muelleretal2008}). Modern theories and modern physical notions are required for the development of new technological possibilities, from \furl{https://www.ibm.com/topics/quantum-computing}{quantum computers} to solar sails, such as NASA's \furl{https://www.nasa.gov/mission/acs3/}{Advanced Composite Solar Sail System}. An engineering student (including communication, computer, and data engineering) may likely end up in a job that requires an understanding of modern physical notions. The diffusion of \furl{https://www.ibm.com/topics/large-language-models}{large language models} will moreover lead to a future demand for engineers who actually \textbf{understand} those physical notions, not little monkeys who have been trained to mechanically manipulate some equations while throwing some technobabble around. Automated large language models are faster, cheaper, and more precise in doing this kind of monkey activities. So why should one hire a human to do the same?
While moving from the older to the newer notions often requires re-learning efforts and conceptual re-orientations, the move in the opposite direction is less demanding. The modern physical notions are more encompassing than their 18th-century parents. Their understanding leads to an understanding of their older counterparts as approximate and special cases. Students, moreover, have often been hearing quite early about the new notions from mass media; for instance about the equivalence of mass and energy, or about the discrepancy in time reckoning by different observers. Owing to this early exposure, students sometimes ask very intelligent and deep questions -- for instance \enquote{\emph{should the mass of the body be included in its internal energy?}} -- when exposed to the old notions.
\medskip
It is therefore high time that introductory Bachelor physics courses be based on modern physical notions. Students should not be required to waste time and mental effort to learn something that they must unlearn and re-learn, only because of the inertia of academia and teachers.
Some teachers say \enquote{it would be too difficult for students to understand modern ideas, because they are too familiar with the old ones. This is why we need to teach the old and slightly incorrect ideas first, and correct them later}. I think that this kind of reasoning is scientifically unacceptable and leads to a vicious circle. Students are unfamiliar with new notions only because they were raised by a generation who was taught old ones. New notions become familiar only after a couple of generations learn them at an early stage. This is obvious if you consider that notions like \enquote{energy}, \enquote{electromagnetic field}, \enquote{vector} are very familiar today, but were absolutely \emph{un}familiar a century or so ago. If we had always taught what's familiar, then we would still be teaching about the \emph{air, earth, water, fire} elements, and that the Sun revolves around the Earth. Arguments in favour of teaching old notions are for the most part just pretexts for laziness.
\medskip
The present lecture notes are an experiment and attempt to introduce classical mechanics and thermodynamics from modern physical notions and viewpoints. The core equations remain the same, but the students should have a broader conception of their meaning and of the symbols that appear in them.
\iffalse % replies from NASA/JPL, 2024-04-12
"Yes, NASA/JPL include relativistic effects when we plan or calculate trajectories for Earth, Moon, and beyond. The same PPN (parameterized post-Newtonian) metric is used to calculate and plan spacecraft dynamics. For example, if we don’t include the relativistic effect, GPS orbits will be not as good as what we have now. 😊" Ryan Park, Group Supervisor of JPL's Solar System Dynamics Group
"Further to what Ryan said, we use the same dynamical models for navigating in cis-lunar or geocentric space as we do for interplanetary missions: the physics doesn’t change between the two regimes, and the same software is use for navigating in both regimes.
It seems the professor has already found the key document by Moyer, which I would have referenced myself. In fact, I used the relativistic expressions in Moyer’s earlier internal JPL document when I coded up the dynamical models used in our Small Body software, back in the early ‘90s, and the same Moyer expressions were used in JPL navigation software for a couple decades before that (back at least to the ‘70s)." Paul Chodas, JPL's director for the Center of Near Earth Object Studies.
\fi
% ** 6
% *** Importance of physics, necessity of maths: numbers (precision) and formulae (compact relations)
% *** Different languages (show examples) and points of view. What's chosen here
% *** Arena for physics (one point of view): space, time, "stuff"
%
\printpagenotes*
\fi
%% old parts of the book
\iffalse
\printpagenotes*
\clearpage
\nonochapter{Conservation of matter}
\label{ncha:cons_matter}
\epigraph{\emph{%
\enquote{What you do in this world is a matter of no consequence,} returned my companion, bitterly. \enquote{The question is, what can you make people believe that you have done?\textellipsis}%
}}{Sherlock Holmes (A. C. Doyle) \cites*{doyle1887}}
\nonosection{Formulation and generalities}
\label{nsec:cons_matter_formulation}
Choose an arbitrary sequence of closed control surfaces between coordinate times $\yti$ and $\ytf$, enclosing a sequence of control volumes. Denote by $\yN(t)$ and $\yJ(t)$ the amount of matter in the control volume and the influx through the control surface at time $t$. Then the law of \textbf{conservation of matter} is expressed by either of the equations
\begin{definition}{Conservation of matter}
\begin{equation}
\label{neq:cons_matter}
\begin{gathered}
\underbracket[0pt]{\yN(\ytf) - \yN(\yti) - \int_{\yti}^{\ytf}\!\!\yJ(t)\,\di t = 0}_{\mathclap{\text{\color{grey}integral form}}}
\qquad%\text{\footnotesize\color{grey}or}
\qquad
\underbracket[0pt]{\frac{\di\yN(t)}{\di t} - \yJ(t) = 0}_{\mathclap{\text{\color{grey}differential form}}}
\end{gathered}
\end{equation}
\end{definition}
Conservation of matter is a law that we intuitively take for granted and use continuously in our life. The very notion of \enquote*{object} -- including living objects -- is possible thanks to this fundamental regularity of nature: we can speak of objects because they exist for some time and we can follow them as they move in space. % This is possible because the integrated flux through a small surface of the \enquote{stuff} that makes the object equals the amount that disappeared in a nearby small region: we can then say that the \enquote{stuff} has moved.
% In fact even the notion of \emph{velocity} of an object is actually built from the notions of flux and of volume content, but it would make little sense if the flux didn't equal the rate of change of the volume content.
% \begin{extra}{Velocity from flux and volume content}\label{nextra:velocity_matter}
% Suppose we have a coordinate system $(t,x,y,z)$. Consider a small spatial region of cuboid shape delimited by two surfaces having $x$ constant, two having $y$ constant, and two having $z$ constant. The instantaneous velocity component $v_{x}$ is defined as the ratio of:
% \begin{enumerate*}[label=(\alph*)]
% \item the flux $\yJ_{x}$ through any of the two $x$-constant surfaces, crossing in the positive-$x$ orientation, divided by surface area $A$, and
% \item the volume content $\yN$ in the cuboid region, divided by the region's volume $V$:
% \end{enumerate*}
% \begin{equation*}
% v_{x} \defd \frac{\yJ_{x}/A}{\yN/V}
% \end{equation*}
% And analogously for the other two velocity components. This relation is valid as a first approximation for enough small velocities and weak gravitational fields (Newtonian approximation).
% \end{extra}
\nonosubsection{Balances of matter}
\label{nsec:matter_balances}
The law of \emph{conservation} of matter holds, as far as we know, for all kinds of matter \emph{considered together}. \marginpar{\vspace{-\baselineskip}\footnotesize\flushleftright\color{mpcolor}%
\emph{\enquote{All these operators conserve $B-L$, so in any superunified theory we expect $B-L$ to be conserved\textellipsis}}}%
\sourceatright{\cites{wilczeketal1979}%
}%
More specifically, it seems to hold in extreme physical conditions if we count baryonic and anti-leptonic matter as \enquote*{positive} and leptonic and anti-baryonic matter as negative.
When we consider different kinds of matter, such as different chemical elements, individual conservation laws still hold and can be applied in many common and important physical situations.
For some kinds of matter, conservation does not hold, however; for example in the previously mentioned {phenomena involving radioactive decay and nuclear energy}. For these kinds of matter we can still apply a \emph{balance} law, with a non-zero supply or sink.
\nonosection{Examples of constitutive relations}
\label{nsec:matter_constitutive}
\nonosubsection{Relation between matter and \masse}
\label{nsec:const_matter_mass}
The most common constitutive relation used together with conservation of matter is the one relating a constant amount of \masse\ $\yM$ to a particular amount of matter $\yN$:
\begin{definition}{Molar mass}
\begin{equation}
\label{neq:molar_mass}
\yM = \yrho\, \yN
\end{equation}
where the proportionality constant $\yrho=\yM/\yN$ is called \textbf{molar-mass constant}, and depends on the kind of matter considered.
\end{definition}
For instance, in many physical phenomena involving water we assume the constitutive relation above, with a
of \furl{https://webbook.nist.gov/cgi/inchi/InChI\%3D1S/H2O/h1H2}{water molar-mass constant} of approximately $\yrho_{\mathrm{H_2O}}=\qty{0.0180}{kg/mol}$. If a volume contains $\yN=\qty{20}{mol}$ of water, we usually attribute to it a \masse\ of
\begin{equation*}
\begin{split}
\yM &= \yrho_{\mathrm{H_2O}}\, \yN
\\
&=\qty{0.0180}{kg/mol} \times \qty{20}{mol}
\\
&= \qty{0.36}{kg}\,.
\end{split}
\end{equation*}
The exact value of the molar-mass constant depends not only on the substance but also on the context and application: the substance may actually consist of a mixture of different kinds of matter. \enquote*{Air} for example is a mixture of different chemical elements, and their proportion in the mixture may depend on physical conditions such as temperature, and on geographical position.
\marginpar{\vspace{0\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/water_isotopes.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
There are several different isotopes of water, with different masses (image from \furl{https://www.usgs.gov/media/images/water-isotopes-diagram}{U.S. Geological Survey})%
}%
\enquote*{Water} is a mixture of different \furl{https://www.britannica.com/science/isotope}{isotopes} (molecules differing in the number of neutrons), and again the mixture proportions may vary with physical conditions.
The constant relating \masse\ and amount of matter is the same for volume contents and for fluxes. So to a matter flux $\yJ$ we can associate a \masse\ flux $\yrho\yJ$. For instance, if through a surface there's a flux of $\yJ=\qty{30}{mol/s}$ of water, then we associate to it a mass flux of
$$\yrho_{\mathrm{H_2O}}\,\yJ = \qty{0.0180}{kg/mol} \times \qty{30}{mol/s} = \qty{0.54}{kg/s}\,.$$
\smallskip
Using this constitutive relation we can re-express the conservation of matter in terms of mass. Suppose that for a given kind of matter the proportionality constant is $\yrho$; then conservation of matter implies
\begin{equation*}
\begin{gathered}
\yrho\yN(\ytf) - \yrho\yN(\yti) - \int_{\yti}^{\ytf}\!\!\yrho\yJ(t)\,\di t = 0
\qquad%\text{\footnotesize\color{grey}or}
\qquad
\frac{\di\yrho\yN(t)}{\di t} - \yrho\yJ(t) = 0
\end{gathered}
\end{equation*}
This is the \enquote*{law of conservation of mass}. Keep in mind that this is not a universal law: it's only an approximate law, only valid as long as the constitutive relation between matter and \masse\ is acceptable.
Phenomena for which this constitutive equation is no longer valid appear for example in particle physics, nuclear physics, and astrophysics.
\begin{exercise}
At a particular time, a party balloon contains \qty{0.012}{kg} of Helium. A minute later, the same balloon contains \qty{0.010}{kg} of helium. Assume conservation of Helium, as well as a constitutive relation between amount and mass with \furl{https://webbook.nist.gov/cgi/inchi/InChI\%3D1S/He}{Helium molar-mass constant} $\yrho_{\mathrm{He}} = \qty{4e-3}{kg/mol}$.
\begin{enumerate}[exerc]
\item How much is the \emph{integrated efflux} of Helium, \textbf{in moles}, through the balloon's surface during the one-minute lapse of time?
\item Assume that the efflux of Helium was constant in time during the one-minute time lapse. How much was the efflux of Helium, in moles/second?
\end{enumerate}
\end{exercise}
\marginpar{\vspace{-11\baselineskip}\centering%
\includegraphics[height=7em]{images/helium_balloons.jpg}%
}
\nonosubsection{Relation between matter and momentum}
\label{nsec:const_matter_momentum}
Closely related to the previous constitutive relation is the one {relating an amount of matter and an amount of momentum}, briefly discussed before. Let us examine this constitutive relation more thoroughly.
Fix a coordinate system $(t,x,y,z)$. At a given point in space, take a small rectangular control surface of area $A$, with sides parallel to the coordinate axes $y$ and $z$. See side picture below. The surface must \emph{not} be moving in that coordinate system. Through this surface, in the positive-$x$ direction, there's a flux of matter that we denote $J_{x}$.
Construct two more surfaces of area $A$ through the same point in a analogous way: one parallel to the $zx$ axes and one to the $xy$ axes. The matter fluxes through them are $J_{y}$ and $J_{z}$.
Finally take a control volume of cuboid shape that fits the three surfaces. This cuboid has volume $V$, and contains an amount of matter $\yN$ and an amount of momentum $\yP$. Recall the {association between the matter flux} through the first surface and the velocity component $v_{x} \equiv \frac{J_{x}/A}{\yN/V}$, and similarly for the other two surfaces.
% Take a small control volume of cuboid shape, with side surfaces \emph{not moving} in the coordinate system $(t,x,y,z)$, and parallel to the $yz$-, $zx$-, and $xy$-coordinates. The cuboid has volume $V$ and each side surface has area $A$.
%
% The control volume contains an amount of matter $\yN$. The flux across the side parallel to $yz$, in the positive-$x$ direction, is $\yJ_{x}$; and similarly for the other two directions. Remember from \sect\,\ref{nsec:fluxes_velocities} that we can consider the matter in the control volume as moving with velocity
% \begin{equation*}
% \yv = (v_{x}, v_{y}, v_{z}) = \frac{V}{A\,\yN}\, (\yJ_{x}, \yJ_{y}, \yJ_{z})
% \end{equation*}
%
% Then this control volume also contains an amount of momentum
% \marginpar{%
% \footnotesize\flushleftright{\color{mpcolor}%
% This is the famous relation that old textbooks take as the \emph{definition} of momentum.}}%
% \begin{equation*}
% \yP = \yM\yv \equiv \yrho\,\yN\,\yv \equiv \yrho\, \frac{V}{A}\,
% \begin{bmatrix}
% J_{x}\\J_{y}\\J_{z}
% \end{bmatrix}
% \end{equation*}
% The relation \enquote{$\yP=\yM\yv$} is the traditional one; but we see that it is completely equivalent to a relation between momentum and \emph{flux} of matter.
Assume that the constitutive relation between matter and mass, previously discussed, is valid, and associates a \masse\ $\yM=\yrho\yN$ to the amount of matter $\yN$.
\marginpar{\vspace{\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/Px_Jx2.pdf}%
% \\[\jot]\footnotesize\flushleftright{\color{mpcolor}%
% }%
}%
\begin{definition}{Newtonian constitutive relation for momentum}
The \textbf{Newtonian relation for the momentum of matter} is a constitutive relation saying that the flux and velocity of matter and the volume content of momentum are proportional:
\begin{equation}
\label{neq:matter_momentum_Newton}
\yP = \yM\yv = \yrho\, \frac{V}{A}\,
\begin{bmatrix}
J_{x}\\J_{y}\\J_{z}
\end{bmatrix}
% \qquad\text{with}\qquad
% \yM=\yrho\yN
\end{equation}
\end{definition}
This relation is only valid for very small areas and volumes (we should really take a limit), so small that the flux of matter or the volume content of momentum wouldn't change if we choose a surface and a volume in slightly different positions.
\bigskip
An analogous constitutive relation also exists between \emph{flux} of momentum and flux and volume content of matter. Its most general formulation involves many mathematical terms, so let's consider a simplified situation instead.
\begin{definition}{Convective flux of momentum (special case)}
Through the $yz$-surface above there's a flux of momentum
\begin{equation}
\label{neq:matterflux_force_Newton}
\yF_{\text{conv}} = \yrho J_{x}\,\yv \equiv
\yrho\, \frac{V}{A}\,\frac{J_{x}}{\yN}\,
\begin{bmatrix}
J_{x}\\J_{y}\\J_{z}
\end{bmatrix}
% \qquad\text{\color{midgrey}(also equivalent to\enspace$\yF=\yM\yv\,\yJ_{x}/\yN$)}
\end{equation}
called a \textbf{convective flux}. Analogous relations hold for the surfaces parallel to the $zx$ and $xy$ coordinates.
\end{definition}
\begin{warning}
Usually there are additional, non-convective flows of momentum (forces) associated with matter, as we shall see later.
\end{warning}
These constitutive relations are only approximate and become incorrect when the speeds involved are close to the speed of light or the energy concentrations are so high to create strong gravitational fields (high spacetime curvature), or when some kind of electromagnetic phenomena are also involved.
In particular, according to the Newtonian constitutive relation, \emph{momentum and velocity of matter are always parallel}, because they are two vectors that differ by a multiplicative scalar. In general this is not exactly true: momentum can have a different direction from velocity. In General Relativity one must often take this fact into account.
\begin{extra}{More symmetric relation between mass \amp\ momentum and matter}
When we work with \emph{densities}, which express the amounts of a quantity per unit volume or per unit surface, the relation between \masse\ \amp\ momentum on one side, and matter \amp\ its flux on the other, becomes more explicit and symmetric. We have
\begin{equation*}
\ym = \rho\yn \qquad \yp = \rho\yj
\end{equation*}
where $\ym$ and $\yp$ are the mass and momentum densities, and $\yn$ and $\yj$ are the matter and matter-flux densities.
\end{extra}
\smallskip
\begin{exercise}
The side picture illustrates the section of a river. The river has an approximately \emph{steady flow} of water; this means that if we choose a static control volume anywhere in the river, such as the one in the depicted section, the amount of water $\yN$ therein is \emph{constant in time}.
Assume that
\begin{enumerate*}[label=(\alph*)]
\item water satisfies conservation of matter;
\item the amount of water in the illustrated volume is $\yN=\qty{4e5}{mol}$;
\item water only flows across the imaginary vertical surfaces that delimit the river section on the front and back of the picture, cutting across the river.
\end{enumerate*}
\begin{enumerate}[exerc]
\item What can you say about the two fluxes across the two imaginary vertical surfaces, each considered as crossed from right to left in the picture? Can you find their numerical values?
\item You are told that the illustrated volume of water has total momentum $P=\qty{21600}{N\,s}$, directed from left to right perpendicularly to the imaginary vertical surfaces. Assuming the Newtonian constitutive relation for momentum, and the molar-mass constant $\yrho_{\mathrm{H_2O}}=\qty{0.0180}{kg/mol}$, can you find the values of the fluxes from the previous question?
\end{enumerate}
\end{exercise}
\marginpar{\vspace{-19\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/riverbed3.png}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
(Illustration by \furl{https://dribbble.com/squarefountain}{Cathryn Briggs})%
}%
\nonosubsection{Gas pressure}
\label{nsec:matter_const_thermodynamics}
In the previous section we saw a constitutive relation between matter and \emph{flux} of momentum, which we called \enquote*{convective flux}. It is a flux that's always present whenever there's matter in motion.
In some circumstances, matter gives rise to a flux of momentum even when it is not in (visible) motion. In such cases it is said to be in a \furl{https://www.britannica.com/science/gas-state-of-matter}{\emph{gaseous} state}. The most cogent example is the air around us, which has a continuous flux of momentum, of approximately \qty[print-unity-mantissa=false]{1e5}{N} on every square-metre of surface, called \furl{https://www.britannica.com/science/atmospheric-pressure}{\emph{atmospheric pressure}}. This flux is always {\emph{compressive}} and occurs through any surface: any imaginary surface within the body of air itself, and any real surface between air and any other object.
\smallskip
For some kinds of matter in a gaseous state, the magnitude of their compressive flux of momentum $\yF_{\text{press}}$ can be approximated by the formula:
% \marginpar{\vspace{3\baselineskip}\centering%
% \includegraphics[width=\linewidth]{images/idealgas_mug.jpg}%
% % \\[\jot]\footnotesize\flushleftright{\color{mpcolor}%
% % The famous \enquote{$pV=NRT$} formula}%
% }%
\begin{definition}{Ideal-gas law}
\begin{equation*}
\frac{F_{\text{press}}}{A} = R\,\yT\,\frac{\yN}{V}
\end{equation*}
called the \textbf{ideal-gas law}, where $A$ is the area through which the momentum flux occurs, $V$ is the volume of a small region adjacent to the area, $\yN$ is the amount of matter in that volume, $\yT$ is its temperature, and $$R = \qty{8.31446261815324}{N\,m/(K\,mol)}\qquad\text{(exactly)}$$ is the \furl{https://www.britannica.com/science/universal-gas-constant}{molar gas constant}. The ratio $\yF_{\text{press}}/A$ of force and area is called \emph{pressure}.
\end{definition}
\marginpar{\vspace{-13\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/barometer.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
A barometer for measuring atmospheric pressure (image from \furl{https://education.nationalgeographic.org/resource/atmospheric-pressure/}{National Geographic})%
}%
This law is very important in thermodynamics and chemistry, even if it's only an approximation.
\nonosubsection{Radioactive decay}
\label{nsec:matter_const_radioactive}
For radioactive substances, for which conservation of mass does not hold, we still have a balance law where the {supply}, which we can denote with the symbol $-\ya$, has a specific constitutive equation:
\begin{definition}{Matter supply in radioactive decay}
\begin{equation*}
-\ya(t) = -\lambda\,\yN(t)
\end{equation*}
where $\lambda$ is positive and called the \textbf{decay constant} of that particular substance. The supply with changed sign, $-\ya$, is usually called \furl{https://goldbook.iupac.org/terms/view/A00114}{\textbf{activity}}.
If there is no influx of matter, $\yJ(t)=0$, the balance law for the substance then takes the form
\begin{equation*}
\frac{\di\yN(t)}{\di t} = -\lambda\,\yN(t)
\end{equation*}
called the \furl{https://www.britannica.com/science/radioactivity/Rates-of-radioactive-transitions\#ref496415}{\emph{law of radioactive decay}}.
\end{definition}
\marginpar{\vspace{-13\baselineskip}\centering%
\includegraphics[width=0.75\linewidth]{images/radioactive.png}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
When we see this symbol we know that there's matter that's only balanced, not conserved -- which involves danger%
}%
\nonosection{Examples of applications}
\label{nsec:matter_applic}
\nonosubsection{Rigid-body and particle mechanics}
\label{nsec:cons_matter_particle}
In many applications we set up our description of the physical phenomenon of interest in such a way that the law of conservation of matter is automatically satisfied. This is achieved by choosing a sequence of closed control surfaces for which the flux of matter is zero, and therefore the amount of matter in the control volumes is constant. This procedure is often carried without many comments -- to the point of being almost forgotten at times.
We saw an example of this procedure in the {numerical evolution of the motion of a falling object}.
\marginpar{\centering%
\includegraphics[align=t,width=\linewidth]{images/timesteps.png}%
\\[2\jot]\footnotesize\color{mpcolor}%
Snippet of formula~\eqref{eq:timestep_momentum_position}%
}%
Take again a look at the timesteps in formula~\eqref{eq:timestep_momentum_position}: you see that at each timestep we calculate the velocity $\yv$ of matter from the momentum $\yP$, simply dividing by the mass $\yM$. \emph{This mass is assumed to be constant, not changing with time}. But this mass is proportional to the amount of matter: $\yM = \yrho \yN$. We are therefore assuming that the amount of matter $\yN$ doesn't change with time: $\di\yN(t)/\di t = 0$. This assumption is indeed guaranteed by the balance of matter~\eqref{neq:cons_matter}, by choosing a sequence of control surfaces that have no net flux of matter through them: $\yJ(t)=0$; in other words, they tightly wrap and follow the moving object.
\nonosubsection{Chemistry}
\label{nsec:cons_matter_chemistry}
One of the main assumptions in chemistry is the \enquote*{permanence of atoms}. This assumption imposes important restrictions in the \furl{https://doi.org/10.1351/goldbook.S06026}{stoichiometry} of chemical reactions, that is, in determining the amounts of products that can appear from given amounts of reactants.
\marginpar{\centering%
\includegraphics[align=t,width=\linewidth]{images/match_reaction.jpg}%
% \\[2\jot]\footnotesize{\color{mpcolor}%
% A match burning}%
}%
For instance, the \furl{https://chem.washington.edu/lecture-demos/match-head-reaction}{match-head reaction}
\begin{equation*}
3\,\mathrm{P_{4}} + 10\,\mathrm{K\,Cl\,O_{3}}
\to 3\,\mathrm{P_{4}O_{10}} + 10\,\mathrm{K\,Cl}
% \mathrm{CH_{3}CHO} \to \mathrm{CH_{4}} + \mathrm{CO}
\end{equation*}
expresses that if 30 moles of oxygen (O) atoms appear among the reactants, they must also appear among the products; same for the 12 moles of \furl{https://pubchem.ncbi.nlm.nih.gov/element/Phosphorus}{phosphorus (P) atoms}, the 10 moles of \furl{https://pubchem.ncbi.nlm.nih.gov/element/Potassium}{potassium (K) atoms}, and so on.
This assumption is simply the statement of conservation of matter, \emph{separately} for each chemical element: since the reaction doesn't let any other matter go in or out, the flux $\yJ$ for each chemical element must be zero. Therefore the amount $\yN$ of each chemical element must be constant: $\di\yN(t)/\di t = \yJ = 0$.
This assumption is often called \enquote*{conservation of mass}, but, as previously explained, \autoref{nsec:cons_matter_formulation}{\enquote{mass} is in this case only a proxy for matter}. The assumption of the permanence of atoms is only approximate and no longer valid in phenomena for which nuclear physics or particle physics become relevant.
\nonosubsection{Climate}
\label{nsec:cons_matter_climate}
The laws of conservation and balances of matter turn out to be very useful also in problems related to climate.
On the Earth's surface and atmosphere we can assume a law of conservation of matter for each of the \furl{https://www.britannica.com/science/isotope/The-discovery-of-isotopes\#ref496311}{stable isotopes} of the chemical elements, for instance the \furl{https://education.jlab.org/itselemental/ele006.html}{two stable carbon isotopes} and the \furl{https://education.jlab.org/itselemental/ele008.html}{three stable oxygen isotopes}. We can therefore follow these isotopes as they flow between different physical systems, like the atmosphere, the oceans, and the biosphere, especially plants -- in practice we are using huge control volumes.
For the radioactive isotopes, the \autoref{sec:matter_const_radioactive}{law of radioactive decay} applies, and from it we can deduce the age of different materials and objects like ice or wood.
% %
% \marginpar{\centering%
% \includegraphics[align=t,width=\linewidth]{images/carbon_cycle.jpg}%
% \\[2\jot]\footnotesize\flushleftright{\color{mpcolor}%
% The fluxes of carbon across the \enquote*{control volumes} of atmosphere, oceans, and other environments (image from \furl{https://gml.noaa.gov/outreach/isotopes/}{Global Monitoring Laboratory})}%
% }%
This is how we are able to say that human usage of fossil fuel is an important factor in the increase of carbon dioxide ($\mathrm{CO_{2}}$) in the atmosphere during the past 200 years or so. Take a look at the more detailed explanations given by the \furl{https://gml.noaa.gov/outreach/isotopes/}{Global Monitoring Laboratory}.
%
\marginpar{\vspace{2\baselineskip}\centering%
\includegraphics[width=\linewidth]{images/ice_core.png}%
\\\footnotesize\color{mpcolor}\url{https://xkcd.com/2902}%
}%
\begin{exercise}
Measuring the relative amounts of carbon within an air pocket near the surface of a block of ice, you find that one mole of air contains \qty[print-unity-mantissa=false]{1e-12}{mol} of the radioactive isotope \nuclide[14]{C}. Making an analogous measurement for an air pocket deeper in the ice, you find instead a relative abundance of \qty{2e-13}{mol} of \nuclide[14]{C}. How old is the deeper section of ice?
Find out the ice's age $t_{\text{ice}}$ by numerically evolving the balance equation
$$\frac{\di\yN(t)}{\di t} = -\lambda\,\yN(t)$$
with $\lambda=\qty{0.000122}{yr^{-1}}$, until you reach the amount $\yN(t_{\text{ice}})= \qty{2e-13}{mol}$.
Use the procedure of \autoref{sec:numeric_simulation}{\eqn~\eqref{eq:finite_diff}}, starting from time $\yti=\qty{0}{yr}$ and $\yN(\yti)=\qty[print-unity-mantissa=false]{1e-12}{mol}$, and assuming that the flow $\yJ(t)$ of \nuclide[14]{C} is zero. You can use a timestep $\Dt = (1/365)\:\unit{yr}$.
\end{exercise}
\nonosubsection{Fluid dynamics}
\label{nsec:fluid_dyn_areavel}
The law of conservation of matter in its explicit form is at the heart of fluid-dynamic problems. Consider the flow of a fluid (liquid or gas) for instance through a pipe or through a jet engine. When we say that a flow is \textbf{steady} we mean that the volume contents and the fluxes taken for whatever control volumes and surfaces do not change in time (though they may change in space). This condition can be viewed as a constitutive relation.
%
\marginpar{\vspace{-\baselineskip}\centering%
\includegraphics[height=15em]{images/pipesection.pdf}%
}%
Consider a control volume, for instance the one indicated in \textcolor{cyan}{light blue} in the side picture. The amount of fluid $\yN$ in this volume is constant in time: $\frac{\di\yN(t)}{\di t}=0$. By the law of conservation of matter, the total influx must then be zero:
\begin{equation*}
{\color{grey}\underbrace{\color{black}\frac{\di\yN(t)}{\di t}}_{\color{grey}{}=0}\color{black}} - \yJ(t) = 0
\qquad\Longrightarrow\qquad
\yJ(t) = 0
\end{equation*}
and it is given by the influxes through three surfaces: the side surface, the one at the top, and the one at the bottom. The influx through the side surface is zero. Let us denote the influx through the top surface by $\yJ_{1}$, and the influx through the bottom surface by $\yJ_{2}$. We must therefore have
\begin{equation*}
0 = \yJ(t) = \yJ_{1}(t) + \yJ_{2}(t)
\qquad\Longrightarrow\qquad
\yJ_{1}(t) = -\yJ_{2}(t)
\end{equation*}
%
\marginpar{\centering%
\includegraphics[align=t,width=\linewidth]{images/jet1.png}%
\\[\jot]\footnotesize\color{mpcolor}%
(image from \furl{https://www.jet-x.org/a8.html}{JetX})%
}%
that is, the influx through the top surface must equal the efflux through the bottom one.
This is a very powerful deduction: consider that it is valid even if the flow of the fluid is turbulent, and it is valid in more general situations such as at different sections of a jet engine.
\medskip
If the surfaces are small enough, we can also use the {connection between flux and velocity}:
\begin{equation*}
v_{1} = \frac{\yJ_{1}/A_{1}}{\yN/V}
\qquad
v_{2} = \frac{-\yJ_{2}/A_{2}}{\yN/V}
\end{equation*}
where $A_{1}, A_{2}$ are the areas of the top and bottom surfaces, and $v_{1}, v_{2}$ the \emph{downward} velocities through them (hence the minus sign for the bottom surface). From $\yJ_{1} = -\yJ_{2}$ we then find this important relationship:
\begin{equation*}
v_{1}\,A_{1} = v_{2}\,A_{2}
\end{equation*}
that is, if the area through which the flux occur decreases, then the velocity of the fluid through it increases, and vice versa.
%
\marginpar{\vspace{-7\baselineskip}\centering%
\includegraphics[width=0.5\linewidth]{images/tap_water.jpg}%
\\[\jot]\footnotesize\flushleftright\color{mpcolor}%
The thickness and velocity variations of tap water are a consequence of the law of conservation of matter%
}%
This is what we often observe in running water from our taps.
\bigskip
%%%***venturi tube
\printpagenotes*
\clearpage
\nonochapter{Balance of energy}
\label{ncha:bal_energy}
\printpagenotes*
\clearpage
\nonochapter{Balance of momentum}
\label{ncha:bal_momentum}
\epigraph{\emph{%
I hold in fact
\begin{enumerate}[label=(\arabic*),wide,itemindent=2em]
\item That small portions of space \emph{are} in fact of a nature analogous to little hills on a surface which is on the average flat; namely, that the ordinary laws of geometry are not valid in them.
\item That this property of being curved or distorted is continually being passed on from one portion of space to another after the manner of a wave.
\item That this variation of the curvature of space is what really happens in that phenomenon which we call the \emph{motion of matter}, whether ponderable or etherial.
\item That in the physical world nothing else takes place but this variation, subject (possibly) to the law of continuity.
\end{enumerate}
}}{W. K. Clifford \cites*{clifford1876}}
\printpagenotes*
\clearpage
\nonochapter{Balance of angular momentum}
\label{ncha:bal_ang_momentum}
% \printpagenotes*
% \clearpage
% \nonochapter{Conservation of electric charge and magnetic flux}
% \label{ncha:cons_charge_magneticflux}
%
% \printpagenotes*
% \clearpage
% \nonochapter{Balance of entropy}
% \label{ncha:bal_entropy}
\smallskip