diff --git a/_includes/header.html b/_includes/header.html index ad2f40b..d6de644 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -9,21 +9,18 @@
diff --git a/assets/css/footer.css b/assets/css/footer.css index c1d9fe9..6971fb1 100644 --- a/assets/css/footer.css +++ b/assets/css/footer.css @@ -14,9 +14,9 @@ footer{ footer span{ - font-size: 16px; + font-size: 15px; font-weight: 500; padding: 10px 20px; border-radius: 10px; - color: #3998B6; + color: white; } \ No newline at end of file diff --git a/assets/css/header.css b/assets/css/header.css index ce0768c..cb7ff7d 100644 --- a/assets/css/header.css +++ b/assets/css/header.css @@ -16,6 +16,7 @@ nav{ top: 0; z-index: 3; 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; } ul { @@ -31,7 +32,7 @@ nav{ .a_tag{ display: block; text-decoration: none !important; - color: #3998B6 !important; + color: white !important; padding: 10px 15px; border-radius: 7px; background-color: transparent; @@ -39,14 +40,19 @@ nav{ font-weight: 600; transition-delay: 100ms; margin: 0 10px; + transition: .4s; } .a_tag:hover{ - color:white !important; + color:#3998B6 !important; + } + + a{ + text-decoration: none !important; } - .logo{ + #dibs_span{ display: flex; align-items: center; justify-content: center; @@ -55,16 +61,19 @@ nav{ width: 80px; height: 50px; background-color: white; + font-weight: bold; + font-size: 30px; + color: #333F50; + transition: .4s; } - .logo img { - width: 80px; - height: 50px; - object-fit: contain; + #dibs_span:hover{ + background-color: #333F50; + color: white; } .active { - color: white !important; + color: #3998B6 !important; text-decoration: none; display: block; text-decoration: none; @@ -75,4 +84,4 @@ nav{ font-weight: 600; transition-delay: 100ms; margin: 0 10px; - } + } \ No newline at end of file diff --git a/impressum.md b/impressum.md new file mode 100644 index 0000000..3f8fd9b --- /dev/null +++ b/impressum.md @@ -0,0 +1,29 @@ +--- +layout: page +title: Impressum +permalink: /impressum +--- + +Institut Wohnen und Umwelt GmbH\ +Rheinstraße 65\ +64295 Darmstadt + +Telefon: 06151 2904-0\ +Fax: 06151 2904-97\ +E-Mail: info@iwu.de\ +Internet: [www.iwu.de](https://www.iwu.de/aktuell/) + +Vertretungsberechtigte Geschäftsführerin ist Dr. Monika Meyer.\ +Prokuristen sind Ingo Fuß und Dr. Holger Cischinsky. + +**Registergericht**: Amtsgericht Darmstadt\ +**Registernummer**: HRB 1649 + +**Umsatzsteuer-Identifikationsnummer gemäß § 27 a Umsatzsteuergesetz**: DE 168170950 + +**Inhaltlich verantwortlich**: Dr. Monika Meyer + +**Haftungshinweis**\ +Trotz sorgfältiger inhaltlicher Kontrolle übernehmen wir keine Haftung für die Inhalte externer Links. Für den Inhalt der verlinkten Seiten sind ausschließlich deren Betreiber verantwortlich. + +Hinsichtlich der bereitgestellten Informationen wird keine Gewähr für Aktualität, Korrektheit, Vollständigkeit oder Qualität übernommen. Die Benutzung dieses Services erfolgt auf eigene Gefahr und eigenes Risiko! Wir schließen ausdrücklich jede Haftung für Schäden aus, die auf die Verwendung unseres Systems zurückzuführen sind. Wir übernehmen keine Garantie für die Erreichbarkeit und die Aktualität der von uns erstellten Seiten und Internet-Links. \ No newline at end of file diff --git a/index.md b/index.md index dfa5003..6e26752 100644 --- a/index.md +++ b/index.md @@ -5,8 +5,6 @@ layout: home --- -# DIBS - ![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. diff --git a/overview.md b/overview.md index f6cb11c..808cbd3 100644 --- a/overview.md +++ b/overview.md @@ -2,4 +2,21 @@ layout: page title: Overview permalink: /overview ---- \ No newline at end of file +--- + +Welcome to the Project Overview! + +This project consists of four packages designed to facilitate building simulation tasks: + +1. **dibs_computing_core**: This package contains the core calculation functionality for building simulations. +2. **dibs_datasource_csv**: It provides utilities to handle CSV files, which are commonly used as data sources in building simulations. +3. **dibs_data**: This package contains data that aids in building simulation tasks. +4. **dibs_cli**: A command-line interface (CLI) tool that 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) + diff --git a/wikii.md b/wikii.md index 5cc9eb8..d77aba0 100644 --- a/wikii.md +++ b/wikii.md @@ -4,35 +4,33 @@ title: Wiki permalink: /wikii --- -Welcome to the `dibs_computing_core` wiki! +Welcome to the `dibs_cli` wiki! ## Prerequisites - Before running this program, ensure you have Python 3.10 or higher installed on your system. If Python is not already installed, you can download and install it from the official website: [Python.org](https://www.python.org/downloads/) ### Installing Python - 1. Visit the [Python Downloads](https://www.python.org/downloads/) page. 2. Choose the version appropriate for your operating system (Windows, macOS, or Linux) and click on the download link. 3. Run the installer and follow the installation instructions. -4. During the installation process, make sure to check the box that says "Add Python to **PATH**" or "Add Python to - environment variables" to ensure Python is added to your system **PATH**. +4. During the installation process, make sure to check the box that says "Add Python to **PATH**" or "Add Python to environment variables" to ensure Python is added to your system **PATH**. 5. Once the installation is complete, open a command prompt or terminal and type `python --version` to verify that Python is installed correctly. ## Installation Guide -To install the module `dibs_computing_core` use the command `pip` like this: +You can install `dibs_cli` using `pip`. First, make sure you have Python and pip ([How to install pip](https://pip.pypa.io/en/stable/installation/)) installed on your system. Then, open a terminal or command prompt and run the following command: ```bash -pip install dibs_computing_core == 1.0.0 +pip install dibs_cli ``` +This will download and install the package `dibs_cli` and all its dependencies from the Python Package Index (PyPI). While the installation, The Package `dibs_cli` will automatically install packages [dibs_computing_core](https://github.com/IWUGERMANY/DibsComputingCore), [dibs_datasource_csv](https://github.com/IWUGERMANY/DibsDataSourceCSV) and [dibs_data](https://github.com/IWUGERMANY/DibsData), which are necessary for buildings simulation. ## Documentation Full documentation of the structure of `dibs_computing_core` (classes, interfaces and methodes) has been bundled in a PDF document which can be found in this repository. [Open PDF document](https://github.com/IWUGERMANY/DibsComputingCore/blob/main/src/DibsDocumentation.pdf). #### Usage -There are two ways +To use this package `dibs_cli` read the Repository [**README.md**](https://github.com/IWUGERMANY/DibsCLI) ## Description of input parameters The following input parameters are used in the building simulation: