-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture1BSlide3.html
More file actions
81 lines (72 loc) · 3.12 KB
/
Copy pathLecture1BSlide3.html
File metadata and controls
81 lines (72 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.png" type="image/x-icon">
<title>From Leibniz's Theorem to the Reynolds Transport Theorem</title>
<link rel="stylesheet" href="styles.css">
<!-- Include MathJax for LaTeX Rendering -->
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script>
function scaleContainer() {
const container = document.querySelector('.container');
const padding = 0; // optional padding margin
const viewportHeight = window.innerHeight - padding;
const containerHeight = container.offsetHeight;
// Compute the scale ratio
const scale = Math.min(1, viewportHeight / containerHeight);
container.style.transform = `scale(${scale})`;
}
// Run on load
window.addEventListener('load', scaleContainer);
// Run on resize
window.addEventListener('resize', scaleContainer);
</script>
<script src="exit.js" defer></script>
</head>
<body>
<div class="container">
<div class="title">From Leibniz's Theorem to the Reynolds Transport Theorem</div>
<div class="slide">
<div class="description">
<p><span class="sql">Leibniz's Theorem:</span>
<div class="blue-box">
\[
\frac{d}{dt} \int_{a(t)}^{b(t)} F(x,t) dx = \int_{a}^{b} \frac{\partial F}{\partial t} dx + \frac{db}{dt} F(b,t) - \frac{da}{dt} F(a,t)
\]
</div>
</div>
</div>
<div class="slide">
<div class="description">
A geometrical generalization of Leibniz's rule is presented using control volumes.</p>
<div class="blue-box">
\[
\frac{d}{dt} \int_{V^*(t)} F(x,t) dV = \lim_{\Delta t \to 0} \frac{1}{\Delta t} \left\{ \int_{V^*(t+\Delta t)} F(x,t+\Delta t) dV - \int_{V^*(t)} F(x,t) dV \right\}
\]
</div>
</div>
</div>
<!-- Image Replacement for Equations and Explanation -->
<div class="image-container" style="text-align: center;">
<img src="Figures/Lecture1B_GraphicalLeibnizControl.png" alt="Graphical Leibniz Control" style="max-width: 90%; height: 90%;">
</div>
<!-- Left Arrow to go back to Slide -->
<a href="Lecture1BSlide2.html" class="nav-button left">◀</a>
<!-- Right Arrow to go to Slide -->
<a href="Lecture1BSlide4.html" class="nav-button right">▶</a>
</div>
<!-- Footer -->
<div class="footer">
<div style="display:inline-block; width:0; height:0; overflow:hidden; visibility:hidden;">
<script type='text/javascript'
id='clustrmaps'
src='//cdn.clustrmaps.com/map_v2.js?cl=ddf1f3&w=120&t=n&d=OPKQOGhHo-7gCMldcljdv8lVxlAlOY6UExXXPy46lfI&co=ffffff&cmo=4b8ddf&cmn=7dcdf4&ct=808080'>
</script>
</div>
</div>
</body>
</html>