workflow_launcher/workflows/energy_plus/main.html

70 lines
5.2 KiB
HTML
Raw Permalink Normal View History

2024-04-25 00:54:32 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self';">
<title>Energy+ workflow</title>
2024-04-25 00:54:32 -04:00
<link rel="stylesheet" href="css/styles.css">
<link href="../../css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../../css/styles.css">
2024-04-25 00:54:32 -04:00
</head>
<body>
2024-05-13 05:35:46 -04:00
<a href="../../index.html" class="nav-link home"><i class="bi bi-house-fill"></i> Home</a>
<h1><img src="logo/logo.png" id="img_logo">Energy+ workflow</h1>
<div class="container">
<div class="right">
<div id="info">EnergyPlus™ is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption—for heating, cooling, ventilation, lighting and plug and process loads—and water use in buildings. Some of the notable features and capabilities of EnergyPlus include:<ul ><li ><strong >Integrated, simultaneous solution</strong> of thermal zone conditions and HVAC system response that does not assume that the HVAC system can meet zone loads and can simulate un-conditioned and under-conditioned spaces. </li><li><strong>Heat balance-based solution</strong> of radiant and convective effects that produce surface temperatures thermal comfort and condensation calculations.</li><li><strong>Sub-hourly, user-definable time steps</strong> for interaction between thermal zones and the environment; with automatically varied time steps for interactions between thermal zones and HVAC systems. These allow EnergyPlus to model systems with fast dynamics while also trading off simulation speed for precision.</li><li><strong>Combined heat and mass transfer</strong> model that accounts for air movement between zones.</li><li><strong>Advanced fenestration models</strong> including controllable window blinds, electrochromic glazings, and layer-by-layer heat balances that calculate solar energy absorbed by window panes.</li><li><strong>Illuminance and glare calculations</strong> for reporting visual comfort and driving lighting controls. </li><li ><strong>Component-based HVAC</strong> that supports both standard and novel system configurations. </li><li><strong>A large number of built-in HVAC and lighting control strategies</strong> and an extensible runtime scripting system for user-defined control.</li><li ><strong>Functional Mockup Interface</strong> import and export for co-simulation with other engines.</li><li><strong>Standard summary and detailed output reports</strong> as well as user definable reports with selectable time-resolution from annual to sub-hourly, all with energy source multipliers.</li></ul></div>
</div>
<div class="left">
2024-04-25 00:54:32 -04:00
<form id="form">
<div class="form-element">
<input type="file" id="geometry_file" name="geometry_file" accept=".geojson, .gml"/>
2024-04-25 00:54:32 -04:00
</div>
<div id="parameters">
<div class="form-element" id="height">
<label for="height_field" class="p-1">Height field</label><input type="text" id="height_field" name="height_field" />
</div>
<div class="form-element" id="function">
<label for="function_field" class="p-1">Function field</label><input type="text" id="function_field" name="function_field" />
</div>
<div class="form-element" id="year_of_construction">
<label for="year_of_construction_field" class="p-1">Year of construction field</label><input type="text" id="year_of_construction_field" name="year_of_construction_field" />
</div>
<div class="form-element">
<label for="construction_handler" class="p-1">Construction handler</label>
<select id="construction_handler" name="construction_handler">
<option value="nrcan" selected>NRCAN</option>
<option value="nrel">NREL</option>
<option value="eilat">Eilat</option>
</select>
</div>
<div class="form-element">
<label for="usage_handler" class="p-1">Usage handler</label>
<select id="usage_handler" name="usage_handler">
<option value="nrcan" selected>NRCAN</option>
<option value="comnet">Comnet</option>
<option value="eilat">Eilat</option>
</select>
</div>
<div class="form-element">
<label for="function_to_hub" class="p-1">Function to hub dictionary</label>
<select id="function_to_hub" name="function_to_hub">
<option value="montreal" selected>Montreal</option>
<option value="hft">Hft Alkis subset</option>
<option value="alkis">Alkis</option>
<option value="pluto">NYC Pluto</option>
<option value="eilat">Eilat</option>
</select>
</div>
<div class="form-element">
<a href="#" id="runWorkflow" class="btn btn-bd-primary mb-4">Run workflow</a>
</div>
2024-04-25 00:54:32 -04:00
</div>
</form>
<div id="links"></div>
</div>
</div>
<script src="./run.js"></script>
<script src="../../js/bootstrap.bundle.min.js"></script>
</body>
</html>