-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware.html
More file actions
67 lines (58 loc) · 2.24 KB
/
software.html
File metadata and controls
67 lines (58 loc) · 2.24 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
<!DOCTYPE HTML>
<!--
Striped by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Software - HeX Lab</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<div id="sidebar">
<!-- Logo -->
<h1 id="logo"><a href="index.html">HeX Lab</a></h1>
</div>
<!-- Content -->
<div id="content">
<div class="inner">
<p style="text-align:justify">
<a>HADES</a>: an in-house finitie volume aerodyanmics solver for internal and external flows.
</p>
<a class="image centered"><img src="images/hades_gallery.png" alt="" style="width:100%" /></a>
<hr />
<a href="https://github.com/HexFluid/spod_python" class="image centered"><img src="images/SPOD_logo.png" alt="" style="width:35%" /></a>
<p style="text-align:justify">
<a href="https://github.com/HexFluid/spod_python">SPOD_Python</a>: an open-source Pythonic realization of SPOD
and its applications to a range of fluid mechanics problems.
</p>
<hr />
<a href="https://github.com/HexFluid/TurbAna" class="image centered"><img src="images/TurbAna_logo.png" alt="" style="width:35%" /></a>
<p style="text-align:justify">
<a href="https://github.com/HexFluid/TurbAna">TurbAna</a>: a Python toolkit that calculates and visualizes
turbulence anisotropy and turbulent viscosity from Reynolds stress components.
</p>
<hr />
</div>
</div>
<!-- Sidebar -->
<script>
// Fetch the sidebar content and insert it into the sidebar-container div
fetch('sidebar.html')
.then(response => response.text())
.then(data => {
document.getElementById('sidebar').innerHTML = data;
})
.catch(error => console.error('Error fetching sidebar:', error));
</script>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>