BuildingBench commited on
Commit
9649746
·
verified ·
1 Parent(s): b935ea0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -17
README.md CHANGED
@@ -53,26 +53,42 @@ HOT addresses the critical infrastructure gap in building control transfer learn
53
 
54
  ## Dataset Structure
55
 
56
- ```
57
- data/
58
- ├── buildings/ # Building model files (.epJSON)
59
- │ ├── base/ # Original DOE reference buildings
60
- │ ├── variations/
 
 
 
 
 
 
 
 
 
61
  │ │ ├── occupancy/ # Occupancy schedule variations
 
 
 
 
62
  │ │ ├── thermal/ # Thermal performance variations
 
 
 
63
  │ │ └── combined/ # Multi-variable combinations
64
- ├── weather/ # Weather data files (.epw)
65
- │ ├── tmy/ # Typical Meteorological Year files
66
- │ └── real/ # Historical weather (2014-2024)
67
- ├── tables/ # Metadata and combination tables
68
- │ ├── buildings.csv # Building characteristics
69
- │ ├── weather.csv # Weather file metadata
70
- └── combinations.csv # Building-weather pairings
71
- └── tools/ # Processing and analysis scripts
72
- ├── preprocessing/
73
- ├── variations/
74
- └── analysis/
75
- ```
76
 
77
  ## Key Features
78
 
 
53
 
54
  ## Dataset Structure
55
 
56
+ HOT/
57
+ ├── data/
58
+ ├── base/ # Raw building models by geometry type
59
+ ├── ApartmentHighRise_STD2013/
60
+ ├── ApartmentMidRise_STD2013/
61
+ │ │ ├── Hospital_STD2013/
62
+ │ │ ├── OfficeSmall_STD2013/
63
+ │ │ └── ... # 16 building geometry folders
64
+ │ ├── processed/
65
+ │ │ └── base/ # Processed EPJSONs ready for control
66
+ │ │ ├── ApartmentHighRise_STD2013.epJSON
67
+ │ │ ├── Hospital_STD2013.epJSON
68
+ │ │ └── ... # All processed buildings
69
+ │ ├── variations/ # Building variations
70
  │ │ ├── occupancy/ # Occupancy schedule variations
71
+ │ │ │ ├── standard/
72
+ │ │ │ ├── low_occupancy/
73
+ │ │ │ ├── hospital/
74
+ │ │ │ └── ... # 12 occupancy patterns
75
  │ │ ├── thermal/ # Thermal performance variations
76
+ │ │ │ ├── default/
77
+ │ │ │ ├── high_performance/
78
+ │ │ │ └── low_performance/
79
  │ │ └── combined/ # Multi-variable combinations
80
+ │ │ ├── occupancy_24_7_thermal_default/
81
+ ├── occupancy_hospital_thermal_high_performance/
82
+ └── ... # All combinations
83
+ ├── weather/ # Weather data files (.epw)
84
+ ├── base/ # Base TMY weather files (19 locations)
85
+ ├── expanded/ # Extended TMY files (57 locations)
86
+ │ ├── real_base/ # Historical weather (2014-2024)
87
+ │ │ └── tables/ # Weather metadata tables
88
+ │ └── tables/ # Dataset metadata and combinations
89
+ ├── buildings.csv # Building characteristics
90
+ └── building_weather_combinations.csv # All 159,744 pairings
91
+
92
 
93
  ## Key Features
94