-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture1ASlide4.html
More file actions
80 lines (63 loc) · 3.68 KB
/
Copy pathLecture1ASlide4.html
File metadata and controls
80 lines (63 loc) · 3.68 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
<!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>Coordinate Systems</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">Coordinate Systems</div>
<div class="slide">
<div class="description">
<p><i>A two-dimensional, or plane</i>, flow is one in which the variation of flow characteristics can be described by two spatial coordinates. The flow of an ideal fluid past a circular cylinder of infinite length having its axis perpendicular to the primary flow direction is an example of a plane flow. This definition of two-dimensional flow officially includes the flow around bodies of revolution where flow characteristics are identical in any plane that contains the body’s axis. However, such flows are customarily called <i>three-dimensional axisymmetric flows</i>.</p>
</div>
</div>
<div class="slide">
<div class="description">
<p><i>A three-dimensional</i> flow is one that can only be properly described with three independent spatial coordinates and is the most general case considered in this text. Sometimes curvilinear coordinates that match flow-field boundaries or symmetries greatly simplify the analysis and description of flow fields.</p>
<p>Several different coordinate systems are used. Two-dimensional (plane) Cartesian and polar coordinates for an arbitrary point P may be denoted by the coordinate pairs \((x,y)\), \((x_1,x_2)\), or \((r, \theta)\) with the corresponding velocity components \((u, v)\), \((u_1, u_2)\), or \((u_r, u_\theta)\).</p>
<p>In three dimensions, Cartesian coordinates may be used to locate a point P via the coordinate triplets \((x,y,z)\) or \((x_1,x_2,x_3)\) with corresponding velocity components \((u, v, w)\) or \((u_1, u_2, u_3)\).</p>
</div>
</div>
<!-- Image Replacement for Equations and Explanation -->
<div class="image-container" style="text-align: center;">
<img src="Figures/Lecture1A_CoordinateSystems.png" alt="Coordinate Systems" style="max-width: 100%; height: auto; display: block; margin: auto;">
</div>
<!-- Navigation Arrows -->
<a href="Lecture1ASlide3.html" class="nav-button left">◀</a>
<a href="Lecture1ASlide5.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>