Skip to content

Commit 08306d4

Browse files
committed
update package
1 parent 005027e commit 08306d4

File tree

68 files changed

+38
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+38
-79
lines changed

README.md

Lines changed: 1 addition & 1 deletion

controls.egg-info/PKG-INFO

Lines changed: 0 additions & 3 deletions
This file was deleted.

controls.egg-info/SOURCES.txt

Lines changed: 0 additions & 26 deletions
This file was deleted.

controls.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

controls.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

dflexlibs.egg-info/PKG-INFO

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,7 @@ Classifier: Programming Language :: Python :: 3.10
1616
Classifier: Programming Language :: Python :: 3.11
1717
Requires-Python: >=3.7
1818
Description-Content-Type: text/markdown
19-
Requires-Dist: rdflib
20-
Requires-Dist: pandas
21-
Requires-Dist: numpy
22-
Requires-Dist: matplotlib
23-
Requires-Dist: pyyaml
24-
Requires-Dist: requests
25-
Requires-Dist: typing
26-
Requires-Dist: notebook
27-
Requires-Dist: ipykernel
28-
Requires-Dist: pipenv
29-
Requires-Dist: pyshacl
30-
Requires-Dist: python-dotenv
19+
License-File: License.txt
3120

3221
# Demand Flexibility Controls Library using Semantics (DFLEXLIBS)
3322

@@ -56,7 +45,7 @@ To access the library, follow these steps:
5645
pip install -r requirements.txt
5746
```
5847

59-
Alternatively, create a virtual environment with the controls package and other required dependencies using `pipenv`. Run the following command:
48+
Create a virtual environment with the controls package and other required dependencies using `pipenv`. Run the following command:
6049

6150
```
6251
pipenv install --dev
@@ -124,7 +113,7 @@ The strategy works as follows
124113
- **Function object** based on the DRControlFunctions protocol
125114
- **Control object** based on the DRControlStrategy protocol
126115

127-
* Call SPARQL query to instantiate the test cases’ control points (case-agnostic/control-specific routine)
116+
* Call SPARQL query to instantiate the test cases’ control points (case-agnostic/control-specific routine)
128117
- **TZonPoint**: identifier for the temperature measurement point per zone
129118
- **TSetHeaZonPoint**: identifier for the heating temperature setpoint per zone
130119
- **TSetCooZonPoint**: identifier for the cooling temperature setpoint per zone
@@ -133,7 +122,7 @@ The strategy works as follows
133122
- **TSetMaxPoint**: identifier for the maximum temperature setpoint per zone (baseline)
134123
- **occSensorPoint**: identifier for the occupancy sensor per zone (baseline)
135124

136-
The query can capture TSetZon as an alternative when there aren’t Heat and Cool setpoints, and then logic inside controller_agent defines if it corresponds to heating or cooling according to HVAC operation mode.
125+
The query can capture TSetZon as an alternative when there aren’t Heat and Cool setpoints, and then logic inside controller_agent defines if it corresponds to heating or cooling according to HVAC operation mode.
137126

138127
* Compute the control strategy (case-agnostic/control-specific routine)
139128

@@ -192,5 +181,5 @@ DFLEXLIBS is available under the following open-source [license](https://github.
192181

193182
Paul, Lazlo; De Andrade Pereira, Flavia; Ham, Sang woo;Pritoni, Marco; Brown, Rich; Feng, Jingjuan Dove. Open Building Operating System: an Open-Source Grid Responsive Control Platform for Buildings (2023). ASHRAE Annual Conference 2023.
194183

195-
de Andrade Pereira, Flavia; Pritoni, Marco; Martín-Toral, Susana; Finn, Donal; O’Donnell, James. A semantics-driven framework for scalable demand flexibility control applications (2023). Proceedings of the 2023 European Conference on Computing in Construction and the 40th International CIB W78 Conference.
184+
de Andrade Pereira, Flavia; Pritoni, Marco; Martín-Toral, Susana; Finn, Donal; O’Donnell, James. A semantics-driven framework for scalable demand flexibility control applications (2023). Proceedings of the 2023 European Conference on Computing in Construction and the 40th International CIB W78 Conference.
196185
http://www.doi.org/10.35490/EC3.2023.341

dflexlibs.egg-info/SOURCES.txt

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1+
License.txt
12
README.md
23
setup.py
3-
controls/__init__.py
4-
controls/hvac/__init__.py
5-
controls/hvac/protocols_zone_temp.py
6-
controls/hvac/sequences/__init__.py
7-
controls/hvac/sequences/python/__init__.py
8-
controls/hvac/sequences/python/functions/__init__.py
9-
controls/hvac/sequences/python/functions/fu_ashrae_TSet_adjust.py
10-
controls/hvac/sequences/python/functions/fu_new_comfort_range.py
11-
controls/hvac/sequences/python/functions/fu_runaway_TsetCooZon.py
12-
controls/hvac/sequences/python/functions/fu_runaway_TsetHeaZon.py
13-
controls/hvac/sequences/python/functions/fu_runaway_condition.py
14-
controls/hvac/sequences/python/functions/fu_shed_TsetCooZon.py
15-
controls/hvac/sequences/python/functions/fu_shed_TsetHeaZon.py
16-
controls/hvac/sequences/python/functions/fu_shed_price_event.py
17-
controls/hvac/sequences/python/functions/fu_shift_TsetCooZon.py
18-
controls/hvac/sequences/python/functions/fu_shift_TsetHeaZon.py
19-
controls/hvac/sequences/python/functions/fu_shift_occ_price_event.py
20-
controls/hvac/sequences/python/strategies/__init__.py
21-
controls/hvac/sequences/python/strategies/stra_zone_temp_shed_price.py
22-
controls/hvac/sequences/python/strategies/stra_zone_temp_shift_shed_price.py
4+
dflexlibs/__init__.py
235
dflexlibs.egg-info/PKG-INFO
246
dflexlibs.egg-info/SOURCES.txt
257
dflexlibs.egg-info/dependency_links.txt
268
dflexlibs.egg-info/requires.txt
27-
dflexlibs.egg-info/top_level.txt
9+
dflexlibs.egg-info/top_level.txt
10+
dflexlibs/hvac/__init__.py
11+
dflexlibs/hvac/protocols_zone_temp.py
12+
dflexlibs/hvac/sequences/__init__.py
13+
dflexlibs/hvac/sequences/python/__init__.py
14+
dflexlibs/hvac/sequences/python/functions/__init__.py
15+
dflexlibs/hvac/sequences/python/functions/fu_ashrae_TSet_adjust.py
16+
dflexlibs/hvac/sequences/python/functions/fu_new_comfort_range.py
17+
dflexlibs/hvac/sequences/python/functions/fu_runaway_TsetCooZon.py
18+
dflexlibs/hvac/sequences/python/functions/fu_runaway_TsetHeaZon.py
19+
dflexlibs/hvac/sequences/python/functions/fu_runaway_condition.py
20+
dflexlibs/hvac/sequences/python/functions/fu_shed_TsetCooZon.py
21+
dflexlibs/hvac/sequences/python/functions/fu_shed_TsetHeaZon.py
22+
dflexlibs/hvac/sequences/python/functions/fu_shed_price_event.py
23+
dflexlibs/hvac/sequences/python/functions/fu_shift_TsetCooZon.py
24+
dflexlibs/hvac/sequences/python/functions/fu_shift_TsetHeaZon.py
25+
dflexlibs/hvac/sequences/python/functions/fu_shift_occ_price_event.py
26+
dflexlibs/hvac/sequences/python/strategies/__init__.py
27+
dflexlibs/hvac/sequences/python/strategies/stra_zone_temp_shed_price.py
28+
dflexlibs/hvac/sequences/python/strategies/stra_zone_temp_shift_shed_price.py

dflexlibs.egg-info/top_level.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
controls
1+
dflexlibs
File renamed without changes.
167 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)