Skip to content

Commit

Permalink
footer, header and some page section are modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Wail Samjouni committed Apr 23, 2024
1 parent 7e0807c commit 071165a
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 25 deletions.
7 changes: 6 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
</head>
<body>
<footer>
<span>© Institut Wohnen und Umwelt GmbH, 2024</span>
<div class="wrapper">
<div class="logo">
<a href="."><span id="dibs_span">DIBS</span></a>
</div>
<span>© Institut Wohnen und Umwelt GmbH, 2024</span>
</div>
<!-- <div class="links">
<a href="https://github.com/IWUGERMANY"><i class="fa-brands fa-github fa-xl" style="color: #333;"></i></a>
<a href="https://www.xing.com/pages/institutwohnenundumweltgmbh"><i class="fa-brands fa-xing fa-xl" style="color: #026466;"></i></a>
Expand Down
21 changes: 11 additions & 10 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,22 @@
</head>
<body>
<nav>
<div class="logo">
<div class="wrapper">
<div class="logo">
<a href="."><span id="dibs_span">DIBS</span></a>
</div>
<div class="navlinks">
<ul id="my_elements">
<li><a class="a_tag" href="overview">Overwiew</a></li>
<li><a class="a_tag" href="contri">How to cite</a></li>
<li><a class="a_tag" href="faq">FAQ</a></li>
<li><a class="a_tag" href="impressum">Impressum</a></li>
</ul>
</div>
<div class="navlinks">
<ul id="my_elements">
<li><a class="a_tag" href="overview">Overview</a></li>
<li><a class="a_tag" href="contri">How to cite</a></li>
<li><a class="a_tag" href="faq">FAQ</a></li>
<li><a class="a_tag" href="impressum">Impressum</a></li>
</ul>
</div>
</div>
<div class="github">
<a href="https://github.com/IWUGERMANY/DibsCLI" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#fff; color:#333F50; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a><style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
</div>

</nav>
<script src="assets/js/script.js"></script>

Expand Down
1 change: 0 additions & 1 deletion assets/css/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ footer{
background-color: #20232A;
padding: 10px 0;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
gap: 40px;
}


Expand Down
15 changes: 9 additions & 6 deletions assets/css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

nav{
width: 100vw;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #20232A;
height: 70px;
padding: 10px 0;
Expand All @@ -18,6 +15,13 @@ nav{
box-shadow: rgba(227, 227, 230, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
text-transform: capitalize;
}

.wrapper{
width: 60%;
display: flex;
justify-content: space-between;
align-items: center;
}

ul {
display: flex;
Expand All @@ -39,7 +43,6 @@ nav{
font-size: 16px;
font-weight: 600;
transition-delay: 100ms;
margin: 0 10px;
transition: .4s;
}

Expand All @@ -58,8 +61,8 @@ nav{
justify-content: center;
padding: 10px;
border-radius: 12px;
width: 80px;
height: 50px;
width: 70px;
height: 40px;
background-color: white;
font-weight: bold;
font-size: 30px;
Expand Down
6 changes: 5 additions & 1 deletion contri.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ title: Contributers
permalink: /contri
---

Contributions are welcome. Raise or respond to an issue, or create a new branch to develop a `feature / modification` and submit a pull request.
Please cite the DIBS as follows:\
Bischof, Julian; Knoll, Simon; Hörner, Michael; Samjouni, Wail; Müller, André; Calisti, Jens; 2024: DIBS---Dynamic-ISO-Building-Simulator, Pypi version 1.0.0, Institute for Housing and Environment (IWU), Darmstadt, Germany, Online available: [https://github.com/IWUGERMANY/DibsCLI/blob/main/README.md](https://github.com/IWUGERMANY/DibsCLI/blob/main/README.md) and [https://github.com/IWUGERMANY/DibsComputingCore](https://github.com/IWUGERMANY/DibsComputingCore)

Publications:\
Bischof, Julian; Knoll, Simon; Duffy, Aidan (2022): DEVELOPMENT OF A PYTHON-BASED SIMPLIFIED HOURLY BUILDING MODEL FOR NON-DOMESTIC BUILDING STOCK OPERATIONAL ENERGY SIMULATIONS. In the proceedings of the BauSIM 2022 in Weimar, 20. – 22. September 2022. In: BauSIM2022 2022. URL: [https://www.researchgate.net/publication/364386249_DEVELOPMENT_OF_A_PYTHON-BASED_SIMPLIFIED_HOURLY_BUILDING_MODEL_FOR_NON-DOMESTIC_BUILDING_STOCK_OPERATIONAL_ENERGY_SIMULATIONS](https://www.researchgate.net/publication/364386249_DEVELOPMENT_OF_A_PYTHON-BASED_SIMPLIFIED_HOURLY_BUILDING_MODEL_FOR_NON-DOMESTIC_BUILDING_STOCK_OPERATIONAL_ENERGY_SIMULATIONS).
4 changes: 1 addition & 3 deletions faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ If you have a question that isn't answered here, feel free to contact us!
**Contact Information**:


Email: [email protected]

Phone: 06151 2904-0
Email: [email protected]

Website: [IWUGERMANY](https://www.iwu.de/aktuell/)
11 changes: 9 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ layout: home
---

![DIBS_Logo](./assets/images/DIBS_Logo.png)
Dynamic ISO Building Simulator (DIBS) is a simulation program for calculating the space heating, occupancy hot water, cooling and electricity demand of German non-residential buildings. Further the DIBS calculates the heating value based energy uses, the primary energy and the greenhouse gas emission based on the defined factors of the German building energy ordinance (Gebäudeenergiegesetz). The adapted hourly dynamic building energy simulator for single buildings and building stocks is ready to use with [ENOB:dataNWG interview](https://www.datanwg.de/stichprobenerhebung/breitenerhebung) and [on-site inspection](https://www.datanwg.de/stichprobenerhebung/tiefenerhebung) data. The underlying resistance-capacity-model is based on the simplified hourly method of ISO 13790:2008. DIBS is based on the [RC_BuildingSimulator](https://github.com/architecture-building-systems/RC_BuildingSimulator) and represents an extension of capabilities and adaptation to the requirements of the ENOB:dataNWG project.
Dynamic ISO Building Simulator (DIBS) is a simulation program for calculating the space heating, occupancy hot water, cooling and electricity demand of German non-residential buildings. Further the DIBS calculates the heating value based energy uses, the primary energy and the greenhouse gas emission based on the defined factors of the German building energy ordinance (Gebäudeenergiegesetz). The adapted hourly dynamic building energy simulator for single buildings and building stocks is ready to use with minimal input data set. The underlying resistance-capacity-model is based on the simplified hourly method of ISO 13790:2008. DIBS is based on the [RC_BuildingSimulator](https://github.com/architecture-building-systems/RC_BuildingSimulator) and represents an extension of capabilities and adaptation to the requirements of the ENOB:dataNWG project.

The Dynamic ISO Building Simulator has been developed in context of the 'ENOB:DataNWG Forschungsdatenbank Nichtwohngebäude' (www.datanwg.de) project and the project 'FlexGeber - Demonstration of flexibility options in the building sector and their integration with the energy system in Germany' at Institut Wohnen und Umwelt (IWU), Darmstadt.

<p float="left">
<img src="./assets/images/IWU_Logo.png" width="20%" />
</p>

<b>ENOB:DataNWG<b>
<b>Funding code:</b> Fkz.: 03ET1315
<b>Project duration:</b> 01.12.2015 until 31.05.2021
Expand All @@ -22,6 +26,9 @@ The Dynamic ISO Building Simulator has been developed in context of the 'ENOB:Da
<b>Funding code:</b> Fkz.: 03EN1074A <br />
<b>Project duration:</b> 01.01.2023 until 31.12.2025

**All funded by:**
<p float="left">
<img src="./assets/images/BMWi_Logo.png" width="30%" />
</p>
</p>

**in accordance with the parliamentary resolution of the German Parliament**
16 changes: 15 additions & 1 deletion overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Overview
permalink: /overview
---

Welcome to the Project Overview!
<!-- Welcome to the Project Overview!
This project consists of four packages designed to facilitate building simulation tasks:
Expand All @@ -15,8 +15,22 @@ This project consists of four packages designed to facilitate building simulatio
For more detailed information on each package and its functionalities, please refer to the README.md of each package:
1. [dibs_computing_core README.md](https://github.com/IWUGERMANY/DibsComputingCore/blob/main/README.md)
2. [dibs_datasource_csv README.md](https://github.com/IWUGERMANY/DibsDataSourceCSV/blob/main/README.md)
3. [dibs_data README.md](https://github.com/IWUGERMANY/DibsData/blob/main/README.md)
4. [dibs_cli README.md](https://github.com/IWUGERMANY/DibsCLI/blob/main/README.md) -->

Welcome to the Dynamic ISO Building Simulator (DIBS) Overview!
The DIBS project consists of four packages designed to facilitate building simulation tasks:
1. **dibs_computing_core**: This package contains the core calculation functionality for the building simulations.
2. **dibs_datasource_csv**: It provides utilities to handle CSV input files, which are commonly used as data sources in the default input file type for DIBS building simulations.
3. **dibs_data**: This package contains auxiliary data, such as occupancy schedules or weather files, required for the that aids in building simulation tasks.
4. **dibs_cli**: A provides a command-line interface (CLI) tool that which allows users to simulate buildings using the functionality provided by dibs_computing_core.
For more detailed information on each package and its functionalities, please refer to the README.md of each package:

1. [dibs_computing_core README.md](https://github.com/IWUGERMANY/DibsComputingCore/blob/main/README.md)
2. [dibs_datasource_csv README.md](https://github.com/IWUGERMANY/DibsDataSourceCSV/blob/main/README.md)
3. [dibs_data README.md](https://github.com/IWUGERMANY/DibsData/blob/main/README.md)
4. [dibs_cli README.md](https://github.com/IWUGERMANY/DibsCLI/blob/main/README.md)


0 comments on commit 071165a

Please sign in to comment.