workflow_launcher/workflows/retrofit/main.html

45 lines
2.4 KiB
HTML
Raw Normal View History

2024-03-11 11:01:07 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
2024-03-12 02:13:02 -04:00
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self';">
2024-03-11 11:01:07 -04:00
<title>Retrofit workflow</title>
<link rel="stylesheet" href="css/styles.css">
2024-03-12 08:38:55 -04:00
<link href="../../css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../../css/styles.css">
2024-03-11 11:01:07 -04:00
</head>
<body>
2024-03-12 08:38:55 -04:00
<a href="../../index.html" class="nav-link"><i class="bi bi-house-fill"></i> Home</a>
2024-04-25 00:54:32 -04:00
<h1><img src="logo/logo.png" id="img_logo"> Retrofit workflow</h1>
<div class="container">
<div class="right">
Retrofit workflow consist in a comparison of the cost-benefits for 3 different levels of retrofitting using the Insel monthly energy balance, co2 and cost workflows as a base to calculate the CO2 Energy and Cost values for each level.
<ul>
<li>R0 Business as usual: current status of the building, with its skin, but renewing the energy systems once its lifetime is finished (with the same performance as the original).</li>
<li>R1 1st Scenario with improved walls, windows, roof, and basement to current legislation.</li>
<li>R2 2nd Scenario HVAC systems optimization + PV: an update on HVAC systems to an aerothermal heat pump coupled with baseboard heaters for peak loads, with a combined seasonal COP of 2.79, coupled with the use of the available roof space for PV, in case the shaded area is less than 30% of the total available roof area. The panels are at a slope of 35º.</li>
<li>R3 3rd Scenario Combining R1 and R2</li>
</ul>
</div>
<div class="left">
2024-03-12 02:13:02 -04:00
<form id="form">
<div class="form-element">
<select name="application" id="application">
<option value="citylayers" selected>Montreal retrofit scenario (City-Layers)</option>
</select>
</div>
<div class="form-element">
Buildings Name or Alias (semicolon splitted):<br>
<textarea id="buildings" name="buildings" rows="5" cols="33"></textarea>
</div>
<div class="form-element">
<a href="#" id="runWorkflow" class="btn btn-bd-primary mb-4">Run workflow</a>
2024-03-12 02:13:02 -04:00
</div>
</form>
<div id="links"></div>
2024-03-11 11:01:07 -04:00
</div>
2024-03-12 02:13:02 -04:00
</div>
2024-03-11 11:01:07 -04:00
<script src="./run.js"></script>
2024-03-12 02:13:02 -04:00
<script src="../../js/bootstrap.bundle.min.js"></script>
2024-03-11 11:01:07 -04:00
</body>
</html>