-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathall_models.html
60 lines (54 loc) · 2.21 KB
/
all_models.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
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Simple toy fluid simulation models</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
body {
font-family: Sans-Serif;
}
form {
display: table;
border-spacing: 5px;
}
form>div {
display: table-row;
}
label {
display: table-cell;
text-align: right;
}
img {
display: block;
width: 600px;
height: 150px;
object-fit: contain;
margin-bottom: 1em;
}
</style>
<body>
<h1>List of toy models</h1>
<ul>
<li><a href="index.html">2D Navier-Stokes equations <img src="images/test_fluid_sim.png"></a></li>
<li><a href="ShallowWater/">2D shallow water equations <img src="images/ShallowWater.png"></a></li>
<ul>
<li><a href="ShallowWater/?dx=30e3&f=1e-4&dt=400">Coastal Kelvin waves</a></li>
<li><a href="ShallowWater/?dx=50e3&beta=2e-11&dt=4000&grav=0.01&hmin=-0.6&hmax=0.6&velocity_scale=5000&velocity_subsample=3&velocity_min=0.0001">Reduced gravity model of equatorial dynamics with a baroclinic Kelvin and Rossby wave</a></li>
</ul>
<li><a href="SmoothedParticleHydrodynamics/">Smoothed-particle hydrodynamics <img src="images/SmoothedParticleHydrodynamics.png"></a></li>
<li><a href="NLayers/">Layered ocean model <img src="images/NLayers.png"></a></li>
<ul>
<li><a href="NLayers/?modeindex=1&nplot=1">barotropic mode</a></li>
<li><a href="NLayers/?modeindex=2&nplot=10">1st baroclinic wave</a></li>
<li><a href="NLayers/?modeindex=3&nplot=10">2nd baroclinic wave</a></li>
<li><a href="NLayers/?modeindex=4&nplot=10&m=9">3rd baroclinic wave</a></li>
<li><a href="NLayers/?modeindex=0&nplot=1&m=9">random perturbation</a></li>
<li><a href="NLayers/?f=1e-4&dx=1e3&dt=20">Small-scale barotropic wave with Coriolis force</a></li>
<li><a href="NLayers/?f=1e-4&dx=5e4&dt=200">Large-scale barotropic wave with Coriolis force</a></li>
</ul>
<li><a href="GrayScott/">Gray-Scott model <img src="images/GrayScott.png"></a></li>
</ul>
</body>
</html>