-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
137 lines (110 loc) · 4.38 KB
/
about.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
top: 0;
overflow: hidden;
border: 1px solid #e7e7e7;
background-color: #f3f3f3;
text-align: center
}
li {
list-style: none;
display: inline;
}
li a, .dropbtn {
display: inline-block;
color: #666;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active), .dropdown:hover .dropbtn {
background-color: #ddd;
}
li a.active {
color: white;
background-color: #4CAF50;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="https://hues.empa.ch/index.php/" class="dropbtn">Wiki</a>
<div class="dropdown-content">
<a href="https://hues.empa.ch/index.php/Model_repository">Model repository</a>
<a href="https://hues.empa.ch/index.php/Code_repository">Code repository</a>
<a href="https://hues.empa.ch/index.php/External_resources">External resources</a>
</div>
</li>
<li class="dropdown">
<a href="about.html" class="dropbtn">Modeling tools</a>
<div class="dropdown-content">
<a href="https://github.com/hues-platform/ehub-modeling-tool">Ehub Modeling Tool</a>
</div>
</li>
<li class="dropdown">
<a href="about.html" class="dropbtn">Data</a>
<div class="dropdown-content">
<a href="https://hues.empa.ch/data_portal/about">DES data portal</a>
<a href="http://wisesccer1.unige.ch/">Swiss energy supply and demand web service</a>
</div>
</li>
<li><a href="https://hues.empa.ch/index.php/Contribute_-_add_models,_code_or_data">Contribute</a></li>
<li><a class="active" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</body>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>HUES Platform - About</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
</body>
<h2>
<a id="welcome-to-the-hues-platform" class="anchor" href="#welcome-to-the-hues-platform" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>About the HUES Platform </h2>
<p> Widespread realization of <b>distributed energy systems (DES)</b> is essential to enhancing the sustainability and resilience of the energy supply infrastructure. This requires the development and deployment of advanced computational tools to support the intelligent design and control of DES. </p>
<p> We aim to develop an <b>open source ecology of computational resources</b> to support DES design and control. By bringing together diverse computational resources reflecting cutting-edge DES research, we aim to accelerate future research and facilitate the deployment of DES research in practice. </p>
<h3>
<a id="welcome-to-the-hues-platform" class="anchor" href="#welcome-to-the-hues-platform" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>Purpose</h3>
<p> The purpose of the Holistic Urban Energy Simulation (HUES) Platform is:</p>
<p> 1. To <b>accelerate DES research</b> by making existing models, data and code more accessible and understandable to researchers.</p>
<p> 2. To <b>improve DES design & control</b> in practice by developing innovative, validated tools for practitioners.</p>
<p> We plan to achieve this by bringing together the raw outputs of computational research on DES, and gradually integrating and building these into useful tools for research and industry. All resources developed as part of the HUES Platform are released under open source licensing terms.</p>
<p> <img src="HUES_linking.png" alt="HUES linking" align="middle"> </p>
</html>