-
Notifications
You must be signed in to change notification settings - Fork 74
Description
Issue Description
I'm working with TEASER 1.3.0 to create individualized retrofit scenarios for real building data. My Python script automates TEASER model creation from Excel data and applies various retrofit standards (EH40/EG40, Custom City Standard and Passivhaus) with custom U-values.
Current Implementation
Excel integration for real building data (20 buildings)
Mapping from building types to TEASER parameters
Custom U-value configurations
Retrofit application
Export to OpenModelica for energy consumption analysis
retrofit_configurations = { 'EG40_Standard': { 'base_parameters': { 'year_of_retrofit': 2025, # <-- Potential issue? 'type_of_retrofit': 'adv_retrofit', 'window_type': 'Kunststofffenster, Waermeschutzverglasung, dreifach',#aus JSON 'material': 'EPS_032' }, 'custom_u_values': { 'exterior_wall': 0.20, 'roof': 0.14, 'windows': 0.95 # ... } } }
Problem
To my understanding of example e7 and the project.py, year_of_retrofit represents the intended (future) year of retrofit and needs to be set. However my retrofit year_of_retrofit configurations currently use 2025+. As a result division by zero errors occur.
Questions
Is year_of_retrofit limited to specific year ranges and how do I retrofit a specific scenario in the future.
Should I use a historical year (e.g., 2016) for current standards like EH40/EG40 and individual u-values, window_type etc.? In a previous approach I just set them to 2014 and 2016 respectively but that's not necessarily wanted.
Maybe there is something obvious that I don't see. Thanks for any idea into the right direction.