open-fdd 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- open_fdd/__init__.py +39 -0
- open_fdd/air_handling_unit/__init__.py +0 -0
- open_fdd/air_handling_unit/faults/__init__.py +0 -0
- open_fdd/air_handling_unit/faults/fault_condition.py +49 -0
- open_fdd/air_handling_unit/faults/fault_condition_eight.py +67 -0
- open_fdd/air_handling_unit/faults/fault_condition_eleven.py +68 -0
- open_fdd/air_handling_unit/faults/fault_condition_fifteen.py +90 -0
- open_fdd/air_handling_unit/faults/fault_condition_five.py +68 -0
- open_fdd/air_handling_unit/faults/fault_condition_four.py +93 -0
- open_fdd/air_handling_unit/faults/fault_condition_fourteen.py +80 -0
- open_fdd/air_handling_unit/faults/fault_condition_nine.py +68 -0
- open_fdd/air_handling_unit/faults/fault_condition_one.py +60 -0
- open_fdd/air_handling_unit/faults/fault_condition_seven.py +55 -0
- open_fdd/air_handling_unit/faults/fault_condition_six.py +120 -0
- open_fdd/air_handling_unit/faults/fault_condition_ten.py +62 -0
- open_fdd/air_handling_unit/faults/fault_condition_thirteen.py +66 -0
- open_fdd/air_handling_unit/faults/fault_condition_three.py +58 -0
- open_fdd/air_handling_unit/faults/fault_condition_twelve.py +71 -0
- open_fdd/air_handling_unit/faults/fault_condition_two.py +61 -0
- open_fdd/air_handling_unit/faults/helper_utils.py +191 -0
- open_fdd/air_handling_unit/faults/shared_utils.py +75 -0
- open_fdd/air_handling_unit/reports/__init__.py +0 -0
- open_fdd/air_handling_unit/reports/report_fc1.py +115 -0
- open_fdd/air_handling_unit/reports/report_fc10.py +126 -0
- open_fdd/air_handling_unit/reports/report_fc11.py +128 -0
- open_fdd/air_handling_unit/reports/report_fc12.py +126 -0
- open_fdd/air_handling_unit/reports/report_fc13.py +126 -0
- open_fdd/air_handling_unit/reports/report_fc14.py +124 -0
- open_fdd/air_handling_unit/reports/report_fc15.py +124 -0
- open_fdd/air_handling_unit/reports/report_fc2.py +119 -0
- open_fdd/air_handling_unit/reports/report_fc3.py +119 -0
- open_fdd/air_handling_unit/reports/report_fc4.py +148 -0
- open_fdd/air_handling_unit/reports/report_fc5.py +132 -0
- open_fdd/air_handling_unit/reports/report_fc6.py +156 -0
- open_fdd/air_handling_unit/reports/report_fc7.py +124 -0
- open_fdd/air_handling_unit/reports/report_fc8.py +118 -0
- open_fdd/air_handling_unit/reports/report_fc9.py +120 -0
- open_fdd/tests/__init__.py +0 -0
- open_fdd/tests/ahu/__init__.py +0 -0
- open_fdd/tests/ahu/test_ahu_fc1.py +159 -0
- open_fdd/tests/ahu/test_ahu_fc10.py +132 -0
- open_fdd/tests/ahu/test_ahu_fc11.py +136 -0
- open_fdd/tests/ahu/test_ahu_fc12.py +167 -0
- open_fdd/tests/ahu/test_ahu_fc13.py +163 -0
- open_fdd/tests/ahu/test_ahu_fc14.py +197 -0
- open_fdd/tests/ahu/test_ahu_fc15.py +183 -0
- open_fdd/tests/ahu/test_ahu_fc2.py +132 -0
- open_fdd/tests/ahu/test_ahu_fc3.py +131 -0
- open_fdd/tests/ahu/test_ahu_fc4.py +200 -0
- open_fdd/tests/ahu/test_ahu_fc5.py +180 -0
- open_fdd/tests/ahu/test_ahu_fc6.py +246 -0
- open_fdd/tests/ahu/test_ahu_fc7.py +71 -0
- open_fdd/tests/ahu/test_ahu_fc8.py +131 -0
- open_fdd/tests/ahu/test_ahu_fc9.py +136 -0
- open_fdd-0.1.0.dist-info/LICENSE +21 -0
- open_fdd-0.1.0.dist-info/METADATA +65 -0
- open_fdd-0.1.0.dist-info/RECORD +59 -0
- open_fdd-0.1.0.dist-info/WHEEL +5 -0
- open_fdd-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,136 @@
|
|
1
|
+
import pandas as pd
|
2
|
+
import pytest
|
3
|
+
from open_fdd.air_handling_unit.faults.fault_condition_nine import FaultConditionNine
|
4
|
+
from open_fdd.air_handling_unit.faults.helper_utils import HelperUtils
|
5
|
+
|
6
|
+
"""
|
7
|
+
To see print statements in pytest run with:
|
8
|
+
$ py -3.12 -m pytest tests/ahu/test_ahu_fc9.py -rP -s
|
9
|
+
|
10
|
+
OAT too high in economizer mode without mechanical clg
|
11
|
+
"""
|
12
|
+
|
13
|
+
# Constants
|
14
|
+
TEST_DELTA_SUPPLY_FAN = 2.0
|
15
|
+
TEST_OAT_DEGF_ERR_THRES = 5.0
|
16
|
+
TEST_SUPPLY_DEGF_ERR_THRES = 2.0
|
17
|
+
TEST_AHU_MIN_OA_DPR = 0.2
|
18
|
+
TEST_SAT_SP_COL = "supply_air_sp_temp"
|
19
|
+
TEST_OAT_COL = "out_air_temp"
|
20
|
+
TEST_COOLING_COIL_SIG_COL = "cooling_sig_col"
|
21
|
+
TEST_MIX_AIR_DAMPER_COL = "economizer_sig_col"
|
22
|
+
ROLLING_WINDOW_SIZE = 5
|
23
|
+
|
24
|
+
# Initialize FaultConditionNine with a dictionary
|
25
|
+
fault_condition_params = {
|
26
|
+
"DELTA_T_SUPPLY_FAN": TEST_DELTA_SUPPLY_FAN,
|
27
|
+
"OUTDOOR_DEGF_ERR_THRES": TEST_OAT_DEGF_ERR_THRES,
|
28
|
+
"SUPPLY_DEGF_ERR_THRES": TEST_SUPPLY_DEGF_ERR_THRES,
|
29
|
+
"AHU_MIN_OA_DPR": TEST_AHU_MIN_OA_DPR,
|
30
|
+
"SAT_SETPOINT_COL": TEST_SAT_SP_COL,
|
31
|
+
"OAT_COL": TEST_OAT_COL,
|
32
|
+
"COOLING_SIG_COL": TEST_COOLING_COIL_SIG_COL,
|
33
|
+
"ECONOMIZER_SIG_COL": TEST_MIX_AIR_DAMPER_COL,
|
34
|
+
"TROUBLESHOOT_MODE": False,
|
35
|
+
"ROLLING_WINDOW_SIZE": ROLLING_WINDOW_SIZE,
|
36
|
+
}
|
37
|
+
|
38
|
+
fc9 = FaultConditionNine(fault_condition_params)
|
39
|
+
|
40
|
+
|
41
|
+
class TestFaultConditionNine:
|
42
|
+
|
43
|
+
def no_fault_df_no_econ(self) -> pd.DataFrame:
|
44
|
+
data = {
|
45
|
+
TEST_SAT_SP_COL: [55, 55, 55, 55, 55, 55],
|
46
|
+
TEST_OAT_COL: [70.2, 70.9, 70.5, 70.3, 70.4, 70.5],
|
47
|
+
TEST_COOLING_COIL_SIG_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
48
|
+
TEST_MIX_AIR_DAMPER_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
49
|
+
}
|
50
|
+
return pd.DataFrame(data)
|
51
|
+
|
52
|
+
def fault_df_in_econ(self) -> pd.DataFrame:
|
53
|
+
data = {
|
54
|
+
TEST_SAT_SP_COL: [55, 55, 55, 55, 55, 55],
|
55
|
+
TEST_OAT_COL: [80.3, 80.2, 80.3, 80.1, 80.2, 80.1],
|
56
|
+
TEST_COOLING_COIL_SIG_COL: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0],
|
57
|
+
TEST_MIX_AIR_DAMPER_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
58
|
+
}
|
59
|
+
return pd.DataFrame(data)
|
60
|
+
|
61
|
+
def test_no_fault_no_econ(self):
|
62
|
+
results = fc9.apply(self.no_fault_df_no_econ())
|
63
|
+
actual = results["fc9_flag"].sum()
|
64
|
+
expected = 0
|
65
|
+
message = (
|
66
|
+
f"FC9 no_fault_df_no_econ actual is {actual} and expected is {expected}"
|
67
|
+
)
|
68
|
+
assert actual == expected, message
|
69
|
+
|
70
|
+
def test_fault_in_econ(self):
|
71
|
+
results = fc9.apply(self.fault_df_in_econ())
|
72
|
+
actual = results["fc9_flag"].sum()
|
73
|
+
expected = 2
|
74
|
+
message = f"FC9 fault_df_in_econ actual is {actual} and expected is {expected}"
|
75
|
+
assert actual == expected, message
|
76
|
+
|
77
|
+
|
78
|
+
class TestFaultOnInt:
|
79
|
+
|
80
|
+
def fault_df_on_output_int(self) -> pd.DataFrame:
|
81
|
+
data = {
|
82
|
+
TEST_SAT_SP_COL: [55, 55, 55, 55, 55, 55],
|
83
|
+
TEST_OAT_COL: [75, 75, 75, 75, 75, 75],
|
84
|
+
TEST_COOLING_COIL_SIG_COL: [11, 11, 11, 11, 11, 11], # Incorrect type
|
85
|
+
TEST_MIX_AIR_DAMPER_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
86
|
+
}
|
87
|
+
return pd.DataFrame(data)
|
88
|
+
|
89
|
+
def test_fault_on_int(self):
|
90
|
+
with pytest.raises(
|
91
|
+
TypeError,
|
92
|
+
match=HelperUtils().float_int_check_err(TEST_COOLING_COIL_SIG_COL),
|
93
|
+
):
|
94
|
+
fc9.apply(self.fault_df_on_output_int())
|
95
|
+
|
96
|
+
|
97
|
+
class TestFaultOnFloatGreaterThanOne:
|
98
|
+
|
99
|
+
def fault_df_on_output_greater_than_one(self) -> pd.DataFrame:
|
100
|
+
data = {
|
101
|
+
TEST_SAT_SP_COL: [55, 55, 55, 55, 55, 55],
|
102
|
+
TEST_OAT_COL: [75, 75, 75, 75, 75, 75],
|
103
|
+
TEST_COOLING_COIL_SIG_COL: [1.1, 1.2, 1.1, 1.3, 1.1, 1.2], # Values > 1.0
|
104
|
+
TEST_MIX_AIR_DAMPER_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
105
|
+
}
|
106
|
+
return pd.DataFrame(data)
|
107
|
+
|
108
|
+
def test_fault_on_float_greater_than_one(self):
|
109
|
+
with pytest.raises(
|
110
|
+
TypeError,
|
111
|
+
match=HelperUtils().float_max_check_err(TEST_COOLING_COIL_SIG_COL),
|
112
|
+
):
|
113
|
+
fc9.apply(self.fault_df_on_output_greater_than_one())
|
114
|
+
|
115
|
+
|
116
|
+
class TestFaultOnMixedTypes:
|
117
|
+
|
118
|
+
def fault_df_on_mixed_types(self) -> pd.DataFrame:
|
119
|
+
data = {
|
120
|
+
TEST_SAT_SP_COL: [55, 55, 55, 55, 55, 55],
|
121
|
+
TEST_OAT_COL: [75, 75, 75, 75, 75, 75],
|
122
|
+
TEST_COOLING_COIL_SIG_COL: [1.1, 0.55, 1.2, 1.3, 0.55, 1.1], # Mixed types
|
123
|
+
TEST_MIX_AIR_DAMPER_COL: [0.80, 0.80, 0.80, 0.80, 0.80, 0.80],
|
124
|
+
}
|
125
|
+
return pd.DataFrame(data)
|
126
|
+
|
127
|
+
def test_fault_on_mixed_types(self):
|
128
|
+
with pytest.raises(
|
129
|
+
TypeError,
|
130
|
+
match=HelperUtils().float_max_check_err(TEST_COOLING_COIL_SIG_COL),
|
131
|
+
):
|
132
|
+
fc9.apply(self.fault_df_on_mixed_types())
|
133
|
+
|
134
|
+
|
135
|
+
if __name__ == "__main__":
|
136
|
+
pytest.main()
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 bbartling
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
@@ -0,0 +1,65 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: open_fdd
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: A package for fault detection and diagnosis in HVAC systems
|
5
|
+
Home-page: https://github.com/bbartling/open-fdd
|
6
|
+
Author: Ben Bartling
|
7
|
+
Author-email: ben.bartling@gmail.com
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.6
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
Requires-Dist: pandas
|
15
|
+
Requires-Dist: matplotlib
|
16
|
+
Requires-Dist: pytest
|
17
|
+
|
18
|
+
# open-fdd
|
19
|
+
|
20
|
+

|
21
|
+

|
22
|
+

|
23
|
+
|
24
|
+
|
25
|
+

|
26
|
+
|
27
|
+
This is a Python-based Fault Detection and Diagnostics (FDD) tool for running fault equations inspired by ASHRAE and NIST standards for HVAC systems across historical datasets using the Pandas computing library. The tool evaluates various fault conditions and outputs fault flags as boolean columns within typical Pandas DataFrames. These fault flags indicate the presence (True) or absence (False) of specific issues identified by the fault equations. This approach integrates seamlessly into standard data science and computer science workflows, allowing for efficient analysis, visualization, and further processing of fault conditions within familiar data structures like DataFrames.
|
28
|
+
|
29
|
+
|
30
|
+
## Getting Setup
|
31
|
+
* Some features may be broken or not work as expected while the project is undergoing a significant makeover to become installable from PyPI. The aim is to streamline the reporting processes and make them much easier to use. I appreciate your patience during this transition.
|
32
|
+
|
33
|
+
```bash
|
34
|
+
git clone https://github.com/bbartling/open-fdd
|
35
|
+
cd open-fdd
|
36
|
+
```
|
37
|
+
For now until this project is on PyPI as a Python library install `open-fdd` as a local python library.
|
38
|
+
|
39
|
+
```bash
|
40
|
+
pip install .
|
41
|
+
```
|
42
|
+
I am on Windows, using a version of Python 3.12, and run this project on SharePoint drives to make reports. Future examples could be Linux OS on a cloud machine for a more AFDD approach but in Windows OS world.
|
43
|
+
|
44
|
+
```bash
|
45
|
+
py -m pip install .
|
46
|
+
```
|
47
|
+
|
48
|
+
See the examples directory for Jupyter notebook tutorials as well as the `README` inside the `air_handling_unit` directory for parameter definitions. Coming soon more faults and reports for `vav_system` and `central_plants` and examples getting data from SQL databases.
|
49
|
+
|
50
|
+
## Contribute
|
51
|
+
This project is a community-driven initiative, focusing on the development of free and open-source tools. I believe that Fault Detection and Diagnostics (FDD) should be free and accessible to anyone who wants to try it out, embodying the spirit of open-source philosophy. Additionally, this project aims to serve as an educational resource, empowering individuals to learn about and implement FDD in their own systems. As someone wisely said, `"Knowledge should be shared, not hoarded,"` and this project strives to put that wisdom into practice.
|
52
|
+
|
53
|
+
Got any ideas or questions? Submit a Git issue or start a Discussion...
|
54
|
+
|
55
|
+
## License
|
56
|
+
|
57
|
+
【MIT License】
|
58
|
+
|
59
|
+
Copyright 2024 Ben Bartling
|
60
|
+
|
61
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
62
|
+
|
63
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
64
|
+
|
65
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,59 @@
|
|
1
|
+
open_fdd/__init__.py,sha256=iGj8QTOZJUTE4nNnBiCHXEXsOdV6YvKcGiLrnOusJCg,1411
|
2
|
+
open_fdd/air_handling_unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
+
open_fdd/air_handling_unit/faults/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
open_fdd/air_handling_unit/faults/fault_condition.py,sha256=UHMnwTaMJkxsUP2h9NXyVeDvIR2c7d96xkiigwf0CmU,1674
|
5
|
+
open_fdd/air_handling_unit/faults/fault_condition_eight.py,sha256=G1hhP6YOZSOK5su_LmZsumbaM4VGHwFXrkGbT-Tgx2Q,2326
|
6
|
+
open_fdd/air_handling_unit/faults/fault_condition_eleven.py,sha256=gs_sA4CxE8wM8gn7qxd7ToCtOcvJDSH5PAqdkRghw6c,2404
|
7
|
+
open_fdd/air_handling_unit/faults/fault_condition_fifteen.py,sha256=y_S-NbaQQTyqnQkUYF7MNS2NON2jgVnnzv0Qo7dHGLE,3287
|
8
|
+
open_fdd/air_handling_unit/faults/fault_condition_five.py,sha256=_G2WqzElrftj09P3w_qcSnAPQprtjfB1axaLusRK6g8,2605
|
9
|
+
open_fdd/air_handling_unit/faults/fault_condition_four.py,sha256=sHwCA0_aP49_ILL8tzjrHJdumIRalxplAmgh16nah9Q,3519
|
10
|
+
open_fdd/air_handling_unit/faults/fault_condition_fourteen.py,sha256=NHYp43RROOTErhoDfxW01Aw_txfZOBd9PsgZzcdlwQw,2954
|
11
|
+
open_fdd/air_handling_unit/faults/fault_condition_nine.py,sha256=QQwuNCAIJM8_1KYIaCsU3sZSxozb6cWPQEsij50drJE,2475
|
12
|
+
open_fdd/air_handling_unit/faults/fault_condition_one.py,sha256=Ae5CXagUwlQCOUebLb4dfoY-4mqGv_xGOCpRAXRTnrY,2113
|
13
|
+
open_fdd/air_handling_unit/faults/fault_condition_seven.py,sha256=s2yLhnn5Es_ECqG3BIlZgx1Vgt9ro0Pq9sqjKl7yFwU,2004
|
14
|
+
open_fdd/air_handling_unit/faults/fault_condition_six.py,sha256=HuQrdZNjXXPDU_8EtWVBPF4JcRGWG6nrqAE2RKRxTiY,4757
|
15
|
+
open_fdd/air_handling_unit/faults/fault_condition_ten.py,sha256=SOPUbMwGHYHcNxTc-0OPlL-rRAuINd9fB01IVF8JLjQ,2243
|
16
|
+
open_fdd/air_handling_unit/faults/fault_condition_thirteen.py,sha256=5OnzbTILlqX_Rs7Fcla-FfxSfwh7z8H2cFE8BW8LB-U,2419
|
17
|
+
open_fdd/air_handling_unit/faults/fault_condition_three.py,sha256=YWG1QJqimzxogY7K97RIeKWwctPDEDPnuYaEk7BCmcI,2094
|
18
|
+
open_fdd/air_handling_unit/faults/fault_condition_twelve.py,sha256=EJOYgLPEKRF3UOHz5veZs6Do2_1YTNr0d3nL2k1k_qE,2747
|
19
|
+
open_fdd/air_handling_unit/faults/fault_condition_two.py,sha256=Tth5OnXgeEC_wgct9F3tIBmgZmxDxOIuJoOLblaPcVA,2140
|
20
|
+
open_fdd/air_handling_unit/faults/helper_utils.py,sha256=huHmhxtoE2Js8GOYHZ6yRupTbj4y13B2V7HLjtqe7CI,7253
|
21
|
+
open_fdd/air_handling_unit/faults/shared_utils.py,sha256=Kp8ZUBhtrh-jU2Q_bbXTpnbVVUAyacp41tDMknY50i4,2252
|
22
|
+
open_fdd/air_handling_unit/reports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
+
open_fdd/air_handling_unit/reports/report_fc1.py,sha256=ZlfTP4Pzv0l0hBHRWmTFMXKWPnuMNW38mHPPD8QW460,4565
|
24
|
+
open_fdd/air_handling_unit/reports/report_fc10.py,sha256=Dgh0L4A-D-VYqTfVcMwhxdw67R-31c24ydtrpJ-gLyU,5179
|
25
|
+
open_fdd/air_handling_unit/reports/report_fc11.py,sha256=fLb004y59i_2LegfGlpgEpEzQadqsCWrJPNLZ6obgqg,5197
|
26
|
+
open_fdd/air_handling_unit/reports/report_fc12.py,sha256=MVjoHul32K0hJCP4WL9bLd6g55HMcKLdxzvPN94AlDA,5090
|
27
|
+
open_fdd/air_handling_unit/reports/report_fc13.py,sha256=YjU6PBJl2ae_2WD2n-GoRGmwj6BtjQFClcCibHgcJmA,5026
|
28
|
+
open_fdd/air_handling_unit/reports/report_fc14.py,sha256=j_o3X6BFYhW7IBwGZATQ7afgiXlKmUMGbGY7UuSwfD4,4832
|
29
|
+
open_fdd/air_handling_unit/reports/report_fc15.py,sha256=Rg4NiheUsCmSxv42s7OFKRD7dweGZxtN83I5iDDzNoo,4831
|
30
|
+
open_fdd/air_handling_unit/reports/report_fc2.py,sha256=ao_2ZeY10BLJ0GEDMMGAuD-8FbHBCGnIvQg9rF6om_U,4840
|
31
|
+
open_fdd/air_handling_unit/reports/report_fc3.py,sha256=xyGjwYxJU2kveVJHLzAM3T_MLFlUZNQGBUyJ-YTjAsk,4843
|
32
|
+
open_fdd/air_handling_unit/reports/report_fc4.py,sha256=0PpPwPnzeUZZybad04IslroBoCcIseDGq5it389wx9s,6052
|
33
|
+
open_fdd/air_handling_unit/reports/report_fc5.py,sha256=welqsYh9TzIfpbdl3i9pvpaDWTsz_rnFbem6lXvz5K0,5699
|
34
|
+
open_fdd/air_handling_unit/reports/report_fc6.py,sha256=R-2OONOZS1ZFLkUBv0syrZ7XjrR0TSwI1Wu70opTVeM,6042
|
35
|
+
open_fdd/air_handling_unit/reports/report_fc7.py,sha256=_hlAvJvbDtLOOPlcCcPaCH8Hu2U5zL1l__xrbL80C20,5256
|
36
|
+
open_fdd/air_handling_unit/reports/report_fc8.py,sha256=3jZPq2piethtqly1faSc8hk0aFCbQe2Y0RMNv3DFzpk,5057
|
37
|
+
open_fdd/air_handling_unit/reports/report_fc9.py,sha256=hJbYMYnwptVSEI2NVdnV3Ads-h_9Hl4oFD1HDDLZWHQ,4909
|
38
|
+
open_fdd/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
+
open_fdd/tests/ahu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
40
|
+
open_fdd/tests/ahu/test_ahu_fc1.py,sha256=IJTLAF87xHSyCgU0Ow-gzP8rP8z7TQb46nQHdirW-vs,4899
|
41
|
+
open_fdd/tests/ahu/test_ahu_fc10.py,sha256=eJ3msPdgkXwYRJOb6mGDaIZBDJfXhyVFAyr27DVwagY,4597
|
42
|
+
open_fdd/tests/ahu/test_ahu_fc11.py,sha256=uMLAQ2o-m8czAh7q6xzKlrmGd9m6SGjIfvd4hswOD9E,4746
|
43
|
+
open_fdd/tests/ahu/test_ahu_fc12.py,sha256=KedYWmVSwb8b-0TZYdC16ysELGHOIsI_xd2va-SqBgg,5871
|
44
|
+
open_fdd/tests/ahu/test_ahu_fc13.py,sha256=qz_dol4W6M3cIvunkHyFDfqEkB8TA9r9UnoycS2x37I,5750
|
45
|
+
open_fdd/tests/ahu/test_ahu_fc14.py,sha256=SlnQF37K73tgfUtp1bQl0nH46YV5aByzonUNXJ50CGE,8077
|
46
|
+
open_fdd/tests/ahu/test_ahu_fc15.py,sha256=jQGgZPbh83q3_oJJVYhobC7KdD-2InbA1zdbsQBlhuc,7685
|
47
|
+
open_fdd/tests/ahu/test_ahu_fc2.py,sha256=3njwLWjzIT6B6RCMgEGqdPvP3kykYwzQTZ9IOgx_BSE,4756
|
48
|
+
open_fdd/tests/ahu/test_ahu_fc3.py,sha256=iFHLdTzyMvDw7lFwl5J4I7omXXwrDh7kIyoXTI1YxmM,4680
|
49
|
+
open_fdd/tests/ahu/test_ahu_fc4.py,sha256=gWquIQsBiF65RGUBLe741oj1Yqs-JDM4K0kmkPP7mOE,6334
|
50
|
+
open_fdd/tests/ahu/test_ahu_fc5.py,sha256=mEbhX5IlDkMwXPv3jPMlE_v3QJH47qsZIL99_KzV7_U,6559
|
51
|
+
open_fdd/tests/ahu/test_ahu_fc6.py,sha256=M7eHdQexcSDN0CGjnR3bcwk_wbjDxqhJwqg_VjsoGB0,10369
|
52
|
+
open_fdd/tests/ahu/test_ahu_fc7.py,sha256=ughSBHwrergnFsI5ayVaBoWRUMEetFcYQ59CNBNIS1k,2491
|
53
|
+
open_fdd/tests/ahu/test_ahu_fc8.py,sha256=KKnDyclhzxppC4bk2Kj9cguqg53sZ7I7CSqqWexpWdE,4685
|
54
|
+
open_fdd/tests/ahu/test_ahu_fc9.py,sha256=YbO1jZSZD6eAXjQkidjp3TEVCcaL7ADhUsTyKy_jmL0,4817
|
55
|
+
open_fdd-0.1.0.dist-info/LICENSE,sha256=eghao_GGx_0gB2Sll3x2vV29knONEzUQKrkaXpX1F7w,1087
|
56
|
+
open_fdd-0.1.0.dist-info/METADATA,sha256=u6QNbWqgZkQ1T1QvgBWZApKkHbg1r2_Exr2noKQ0DO0,4326
|
57
|
+
open_fdd-0.1.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
58
|
+
open_fdd-0.1.0.dist-info/top_level.txt,sha256=Q7sB6UB2d8Ch1v_xIsTiNegmgcCXPkwkrxK3ug6VEOs,9
|
59
|
+
open_fdd-0.1.0.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
open_fdd
|