-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
52 lines (49 loc) · 1.93 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LBM Lattice Models</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/skeleton.css">
<!-- Custom styles -->
<link rel="stylesheet" href="./css/custom.css">
<link rel="icon" type="image/png" href="./img/favicon.png">
</head>
<body>
<div class="container">
<div class="row">
<div class="one-half column" style="margin-top: 10%">
<h3>Interactive Lattice Models for lattice Boltzmann Method</h3>
<p><a href="https://en.wikipedia.org/wiki/Lattice_Boltzmann_methods">Read about Lattice Boltzmann methods on Wikipedia</a></p>
</div>
</div>
<div class="row">
<div class="one-half column" style="margin-top: 10%">
<a href="./d3q27.html"><img class="column" src="./img/d3q27.gif" alt="D3Q27" /></a>
<h4>D3Q27</h4>
<p>27 discrete velocities in 3 dimensions.</p>
<p><a href="./d3q27.html">View model</a></p>
</div>
<div class="one-half column" style="margin-top: 10%">
<a href="./d3q19.html"><img class="column" src="./img/d3q19.gif" alt="D3Q19" /></a>
<h4>D3Q19</h4>
<p>19 discrete velocities in 3 dimensions.</p>
<p><a href="./d3q19.html">View model</a></p>
</div>
<div class="row">
<div class="one-half column">
<a href="./d3q6.html"><img class="column" src="./img/d3q6.gif" alt="D3Q6" /></a>
<h4>D3Q6</h4>
<p>6 discrete velocities in 3 dimensions.</p>
<p><a href="./d3q6.html">View model</a></p>
</div>
</div>
</div>
</div>
</body>
</html>