-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (85 loc) · 3.34 KB
/
Copy pathindex.html
File metadata and controls
87 lines (85 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Homepage for Rónán Gissler's Projects in Mechanical Engineering">
<meta name="google-site-verification" content="a5yGE61wbLl2nfdXtS-jhn2NdsYSYXnah-SQnvN8668" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Home</title>
<link href="https://fonts.cdnfonts.com/css/latin-modern-roman" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<!-- jquery -->
<script src="jquery-3.6.3.min.js"></script>
<!--mathjax stuff -->
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<header role='banner' id = "mainTitle">
<!-- Add background image for title -->
<h1>Fluid Fluency</h1>
<h2>An Online Repository for Fluid Physics Notes</h2>
<h2>by Rónán Gissler</h2>
<nav role='navigation' class='pageNav'>
<ul>
<li>
<a href="index.html" title="Home Page">
Home
</a>
</li>
</ul>
</nav>
</header>
<main role='main'>
<article role='article'>
<section id="intro">
<h3>Introduction</h3>
<p>  
This repository is a place for me and you to review core fluid
physics concepts. You still need a textbook to learn the material
in the first place, but if you're like me and you've learned it
before but can't remember it now, this website is for you.
</p>
<p>  
This website was inspired by
<a href="https://tutorial.math.lamar.edu/">Paul's Online Math Notes</a>
and seeks to make fluid physics education more accesible through
the use of interactive features available in javascript and not
in a traditional textbook hardcopy or pdf. The mass conservation page
is the most populated page at the moment.
</p>
</section>
<section>
<h3>Fundamental Conservation Equations</h3>
<p>
<a href="conservation_pages/mass/mass_conservation.html" class="pageLink">Mass Conservation</a>
— What is the mass conservation equation for a fluid? It's sometimes also called the continuity equation.
</p>
<br>
<p>
<a href="conservation_pages/momentum/momentum_conservation.html" class="pageLink">Momentum Conservation</a>
— What is the momentum conservation equation for a fluid? It's sometimes also called the Navier-Stokes
equations or simply Newton's second law.
</p>
<br>
<p>
<a href="conservation_pages/energy/energy_conservation.html" class="pageLink">Energy Conservation</a>
— What is the energy conservation equation for a fluid?
</p>
<br>
<p>
<a href="conservation_pages/bernoulli/bernoulli.html" class="pageLink">Bernoulli's Equation</a>
— What is Bernoulli's equation for a fluid?
</p>
</section>
<section>
<h3>Dimensionless Numbers</h3>
<p>
<a href="reynolds.html" class="pageLink">Reynolds Number</a>
— How is the Reynolds number defined and why is it useful?
</p>
</section>
</article>
</main>
<body>
</html>