File size: 13,423 Bytes
845939b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
"""
Component library module for HVAC Load Calculator.
This module implements the preset component database and component selection interface.
"""

from typing import Dict, List, Any, Optional, Tuple
import pandas as pd
import numpy as np
import os
import json
import uuid
from dataclasses import asdict

# Import data models
from data.building_components import (
    BuildingComponent, Wall, Roof, Floor, Window, Door, Skylight,
    MaterialLayer, Orientation, ComponentType, BuildingComponentFactory
)
from data.reference_data import reference_data

# Define paths
DATA_DIR = os.path.dirname(os.path.abspath(__file__))


class ComponentLibrary:
    """Class for managing building component library."""
    
    def __init__(self):
        """Initialize component library."""
        self.components = {}
        self.load_preset_components()
    
    def load_preset_components(self):
        """Load preset components from reference data."""
        # Load preset walls
        for wall_id, wall_data in reference_data.wall_types.items():
            # Create material layers
            material_layers = []
            for layer_data in wall_data.get("layers", []):
                material_id = layer_data.get("material")
                thickness = layer_data.get("thickness")
                
                material = reference_data.get_material(material_id)
                if material:
                    layer = MaterialLayer(
                        name=material["name"],
                        thickness=thickness,
                        conductivity=material["conductivity"],
                        density=material.get("density"),
                        specific_heat=material.get("specific_heat")
                    )
                    material_layers.append(layer)
            
            # Create wall component
            component_id = f"preset_wall_{wall_id}"
            wall = Wall(
                id=component_id,
                name=wall_data["name"],
                component_type=ComponentType.WALL,
                u_value=wall_data["u_value"],
                area=1.0,  # Area will be set when component is used
                orientation=Orientation.NOT_APPLICABLE,  # Orientation will be set when component is used
                wall_type=wall_data["name"],
                wall_group=wall_data["wall_group"],
                material_layers=material_layers
            )
            
            self.components[component_id] = wall
        
        # Load preset roofs
        for roof_id, roof_data in reference_data.roof_types.items():
            # Create material layers
            material_layers = []
            for layer_data in roof_data.get("layers", []):
                material_id = layer_data.get("material")
                thickness = layer_data.get("thickness")
                
                material = reference_data.get_material(material_id)
                if material:
                    layer = MaterialLayer(
                        name=material["name"],
                        thickness=thickness,
                        conductivity=material["conductivity"],
                        density=material.get("density"),
                        specific_heat=material.get("specific_heat")
                    )
                    material_layers.append(layer)
            
            # Create roof component
            component_id = f"preset_roof_{roof_id}"
            roof = Roof(
                id=component_id,
                name=roof_data["name"],
                component_type=ComponentType.ROOF,
                u_value=roof_data["u_value"],
                area=1.0,  # Area will be set when component is used
                orientation=Orientation.HORIZONTAL,
                roof_type=roof_data["name"],
                roof_group=roof_data["roof_group"],
                material_layers=material_layers
            )
            
            self.components[component_id] = roof
        
        # Load preset floors
        for floor_id, floor_data in reference_data.floor_types.items():
            # Create material layers
            material_layers = []
            for layer_data in floor_data.get("layers", []):
                material_id = layer_data.get("material")
                thickness = layer_data.get("thickness")
                
                material = reference_data.get_material(material_id)
                if material:
                    layer = MaterialLayer(
                        name=material["name"],
                        thickness=thickness,
                        conductivity=material["conductivity"],
                        density=material.get("density"),
                        specific_heat=material.get("specific_heat")
                    )
                    material_layers.append(layer)
            
            # Create floor component
            component_id = f"preset_floor_{floor_id}"
            floor = Floor(
                id=component_id,
                name=floor_data["name"],
                component_type=ComponentType.FLOOR,
                u_value=floor_data["u_value"],
                area=1.0,  # Area will be set when component is used
                orientation=Orientation.HORIZONTAL,
                floor_type=floor_data["name"],
                is_ground_contact=floor_data["is_ground_contact"],
                material_layers=material_layers
            )
            
            self.components[component_id] = floor
        
        # Load preset windows
        for window_id, window_data in reference_data.window_types.items():
            # Create window component
            component_id = f"preset_window_{window_id}"
            window = Window(
                id=component_id,
                name=window_data["name"],
                component_type=ComponentType.WINDOW,
                u_value=window_data["u_value"],
                area=1.0,  # Area will be set when component is used
                orientation=Orientation.NOT_APPLICABLE,  # Orientation will be set when component is used
                shgc=window_data["shgc"],
                vt=window_data["vt"],
                window_type=window_data["name"],
                glazing_layers=window_data["glazing_layers"],
                gas_fill=window_data["gas_fill"],
                low_e_coating=window_data["low_e_coating"]
            )
            
            self.components[component_id] = window
        
        # Load preset doors
        for door_id, door_data in reference_data.door_types.items():
            # Create door component
            component_id = f"preset_door_{door_id}"
            door = Door(
                id=component_id,
                name=door_data["name"],
                component_type=ComponentType.DOOR,
                u_value=door_data["u_value"],
                area=1.0,  # Area will be set when component is used
                orientation=Orientation.NOT_APPLICABLE,  # Orientation will be set when component is used
                door_type=door_data["door_type"],
                glazing_percentage=door_data["glazing_percentage"],
                shgc=door_data.get("shgc", 0.0),
                vt=door_data.get("vt", 0.0)
            )
            
            self.components[component_id] = door
    
    def get_component(self, component_id: str) -> Optional[BuildingComponent]:
        """
        Get a component by ID.
        
        Args:
            component_id: Component identifier
            
        Returns:
            BuildingComponent object or None if not found
        """
        return self.components.get(component_id)
    
    def get_components_by_type(self, component_type: ComponentType) -> List[BuildingComponent]:
        """
        Get all components of a specific type.
        
        Args:
            component_type: Component type
            
        Returns:
            List of BuildingComponent objects
        """
        return [comp for comp in self.components.values() if comp.component_type == component_type]
    
    def get_preset_components_by_type(self, component_type: ComponentType) -> List[BuildingComponent]:
        """
        Get all preset components of a specific type.
        
        Args:
            component_type: Component type
            
        Returns:
            List of BuildingComponent objects
        """
        return [comp for comp in self.components.values() 
                if comp.component_type == component_type and comp.id.startswith("preset_")]
    
    def get_custom_components_by_type(self, component_type: ComponentType) -> List[BuildingComponent]:
        """
        Get all custom components of a specific type.
        
        Args:
            component_type: Component type
            
        Returns:
            List of BuildingComponent objects
        """
        return [comp for comp in self.components.values() 
                if comp.component_type == component_type and comp.id.startswith("custom_")]
    
    def add_component(self, component: BuildingComponent) -> str:
        """
        Add a component to the library.
        
        Args:
            component: BuildingComponent object
            
        Returns:
            Component ID
        """
        if component.id in self.components:
            # Generate a new ID if the component ID already exists
            component.id = f"custom_{component.component_type.value.lower()}_{str(uuid.uuid4())[:8]}"
        
        self.components[component.id] = component
        return component.id
    
    def update_component(self, component_id: str, component: BuildingComponent) -> bool:
        """
        Update a component in the library.
        
        Args:
            component_id: ID of the component to update
            component: Updated BuildingComponent object
            
        Returns:
            True if the component was updated, False otherwise
        """
        if component_id not in self.components:
            return False
        
        # Preserve the original ID
        component.id = component_id
        self.components[component_id] = component
        return True
    
    def remove_component(self, component_id: str) -> bool:
        """
        Remove a component from the library.
        
        Args:
            component_id: ID of the component to remove
            
        Returns:
            True if the component was removed, False otherwise
        """
        if component_id not in self.components:
            return False
        
        # Don't allow removing preset components
        if component_id.startswith("preset_"):
            return False
        
        del self.components[component_id]
        return True
    
    def clone_component(self, component_id: str, new_name: str = None) -> Optional[str]:
        """
        Clone a component in the library.
        
        Args:
            component_id: ID of the component to clone
            new_name: Name for the cloned component (optional)
            
        Returns:
            ID of the cloned component or None if the original component was not found
        """
        if component_id not in self.components:
            return None
        
        # Get the original component
        original = self.components[component_id]
        
        # Create a copy of the component
        component_dict = asdict(original)
        
        # Generate a new ID
        component_dict["id"] = f"custom_{original.component_type.value.lower()}_{str(uuid.uuid4())[:8]}"
        
        # Set new name if provided
        if new_name:
            component_dict["name"] = new_name
        else:
            component_dict["name"] = f"Copy of {original.name}"
        
        # Create a new component
        new_component = BuildingComponentFactory.create_component(component_dict)
        
        # Add the new component to the library
        self.components[new_component.id] = new_component
        
        return new_component.id
    
    def export_to_json(self, file_path: str) -> None:
        """
        Export all components to a JSON file.
        
        Args:
            file_path: Path to the output JSON file
        """
        data = {comp_id: comp.to_dict() for comp_id, comp in self.components.items()}
        
        with open(file_path, 'w') as f:
            json.dump(data, f, indent=4)
    
    def import_from_json(self, file_path: str) -> int:
        """
        Import components from a JSON file.
        
        Args:
            file_path: Path to the input JSON file
            
        Returns:
            Number of components imported
        """
        with open(file_path, 'r') as f:
            data = json.load(f)
        
        count = 0
        for comp_id, comp_data in data.items():
            try:
                component = BuildingComponentFactory.create_component(comp_data)
                self.components[comp_id] = component
                count += 1
            except Exception as e:
                print(f"Error importing component {comp_id}: {e}")
        
        return count


# Create a singleton instance
component_library = ComponentLibrary()

# Export component library to JSON if needed
if __name__ == "__main__":
    component_library.export_to_json(os.path.join(DATA_DIR, "component_library.json"))