Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- utils/ctf_calculations.py +1 -1
- utils/solar.py +1 -1
utils/ctf_calculations.py
CHANGED
@@ -15,7 +15,7 @@ import hashlib
|
|
15 |
import logging
|
16 |
import threading
|
17 |
from typing import List
|
18 |
-
|
19 |
from enum import Enum
|
20 |
from typing import Dict, List, Optional, NamedTuple
|
21 |
|
|
|
15 |
import logging
|
16 |
import threading
|
17 |
from typing import List
|
18 |
+
from data.material_library import Construction
|
19 |
from enum import Enum
|
20 |
from typing import Dict, List, Optional, NamedTuple
|
21 |
|
utils/solar.py
CHANGED
@@ -2,7 +2,7 @@ import numpy as np
|
|
2 |
from typing import List, Dict, Any, Optional, Tuple
|
3 |
import math
|
4 |
from datetime import datetime
|
5 |
-
from
|
6 |
from utils.ctf_calculations import ComponentType
|
7 |
import logging
|
8 |
|
|
|
2 |
from typing import List, Dict, Any, Optional, Tuple
|
3 |
import math
|
4 |
from datetime import datetime
|
5 |
+
from data.material_library import MaterialLibrary, Construction, GlazingMaterial, DoorMaterial, Material
|
6 |
from utils.ctf_calculations import ComponentType
|
7 |
import logging
|
8 |
|