Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue745 add kfw archetypes #757

Merged
merged 30 commits into from
Jul 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f1fc186
added KFW efficiency house standards and refactored the parameters me…
jonas0902 Mar 12, 2024
91dc969
adjusted all tests and examples with the two new parameters construct…
jonas0902 Apr 16, 2024
40aa4fe
Updated the documentation, example and tests to new variables
jonas0902 May 7, 2024
a150592
Formal changes: changed 'geometry_data' back to 'usage' in context of…
jonas0902 May 7, 2024
4f5f01f
Merge remote-tracking branch 'origin/development' into issue745_AddKf…
FWuellhorst May 7, 2024
2641e66
enable again
FWuellhorst May 7, 2024
277cebc
rename to usage as discussed
FWuellhorst May 7, 2024
656c0ce
rename to usage as discussed
FWuellhorst May 7, 2024
39aadef
Only calc_building_parameters if not tabula, as in current developmen…
FWuellhorst May 21, 2024
c0798fe
correction of construction_data variable in json data
jonas0902 May 21, 2024
37bc442
Merge remote-tracking branch 'origin/issue745_AddKfWArchetypes' into …
jonas0902 May 21, 2024
0317be8
set raise_errors default to False again
FWuellhorst May 21, 2024
4d13703
set default after setting it to None
FWuellhorst May 21, 2024
b90c5bd
Merge branch 'development' into issue745_AddKfWArchetypes
FWuellhorst May 23, 2024
d87059d
Use warnings without f-string =
FWuellhorst May 23, 2024
0ce1679
chore(examples): Automatic commit of example files in Markdown and Ju…
May 23, 2024
2d63ed1
Use optional import
FWuellhorst May 23, 2024
6c7c5c6
Merge remote-tracking branch 'origin/issue745_AddKfWArchetypes' into …
FWuellhorst May 23, 2024
3028567
Changes based on the review
jonas0902 May 28, 2024
4d9e72b
Moved the construction_data setter functions to data/utilities
jonas0902 May 29, 2024
9ee3d1d
chore(examples): Automatic commit of example files in Markdown and Ju…
May 29, 2024
8d43aa5
updated version number
jonas0902 May 31, 2024
8a40ae0
Merge branch 'development' into issue745_AddKfWArchetypes
DaJansenGit Jul 16, 2024
94b07b7
minor linting changes
DaJansenGit Jul 16, 2024
0c7e3f5
fix wrong indentation
DaJansenGit Jul 16, 2024
4ea919b
updated and deleted version number in json files
jonas0902 Jul 23, 2024
09b7962
Adjusted documentation in e1 and e6
jonas0902 Jul 23, 2024
884c61f
chore(examples): Automatic commit of example files in Markdown and Ju…
Jul 23, 2024
3682606
Edited docs of e1 and e6
jonas0902 Jul 23, 2024
063bfbd
chore(examples): Automatic commit of example files in Markdown and Ju…
Jul 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use warnings without f-string =
  • Loading branch information
FWuellhorst committed May 23, 2024
commit d87059de5578c4c9caeac5634054f0a31b80d0b4
3 changes: 2 additions & 1 deletion teaser/data/input/buildingelement_input_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ def load_type_element(element, year, construction, data_class):
return
except Exception as e:
logging.warning(f"Warning loading TypeElement {element_in} from JSON Template: {e}")
logging.warning(f"No database entry found for {construction=}, {year=}, element={type(element).__name__}")
logging.warning(f"No database entry found for construction={construction}, "
f"year{year}, element={type(element).__name__}")


def _set_basic_data(element, element_in):
Expand Down