juham-automation 0.0.34__py3-none-any.whl → 0.1.1__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.
- juham_automation/automation/energybalancer.py +1 -1
- juham_automation/automation/heatingoptimizer.py +12 -12
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/METADATA +14 -4
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/RECORD +8 -8
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/WHEEL +0 -0
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/entry_points.txt +0 -0
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/licenses/LICENSE.rst +0 -0
- {juham_automation-0.0.34.dist-info → juham_automation-0.1.1.dist-info}/top_level.txt +0 -0
|
@@ -46,7 +46,7 @@ class EnergyBalancer(Juham):
|
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
48
|
#: Description of the attribute
|
|
49
|
-
energy_balancing_interval: int =
|
|
49
|
+
energy_balancing_interval: int = 900
|
|
50
50
|
"""The time interval in seconds for energy balancing."""
|
|
51
51
|
|
|
52
52
|
def __init__(self, name: str = "energybalancer") -> None:
|
|
@@ -61,18 +61,18 @@ class HeatingOptimizer(Juham):
|
|
|
61
61
|
"""Weight determining how large a share of the time slot a consumer receives compared to others ."""
|
|
62
62
|
|
|
63
63
|
temperature_limits: dict[int, tuple[float, float]] = {
|
|
64
|
-
1: (
|
|
65
|
-
2: (
|
|
66
|
-
3: (
|
|
67
|
-
4: (
|
|
68
|
-
5: (
|
|
69
|
-
6: (
|
|
70
|
-
7: (
|
|
71
|
-
8: (
|
|
72
|
-
9: (
|
|
73
|
-
10: (
|
|
74
|
-
11: (
|
|
75
|
-
12: (
|
|
64
|
+
1: (68.0, 70.0), # January
|
|
65
|
+
2: (68.0, 70.0), # February
|
|
66
|
+
3: (65.0, 70.0), # March
|
|
67
|
+
4: (60.0, 70.0), # April
|
|
68
|
+
5: (50.0, 70.0), # May
|
|
69
|
+
6: (40.0, 60.0), # June
|
|
70
|
+
7: (40.0, 60.0), # July
|
|
71
|
+
8: (60.0, 65.0), # August
|
|
72
|
+
9: (60.0, 65.0), # September
|
|
73
|
+
10: (65.0, 66.0), # October
|
|
74
|
+
11: (66.0, 68.0), # November
|
|
75
|
+
12: (67.0, 70.0), # December
|
|
76
76
|
}
|
|
77
77
|
"""Temperature limits for each month. The minimum temperature is maintained regardless of the cost.
|
|
78
78
|
The limits are defined as a dictionary where the keys are month numbers (1-12)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: juham-automation
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Juha's Ultimate Home Automation Masterpiece
|
|
5
5
|
Author-email: J Meskanen <juham.api@gmail.com>
|
|
6
6
|
Maintainer-email: "J. Meskanen" <juham.api@gmail.com>
|
|
@@ -36,7 +36,7 @@ Project-URL: Funding, https://meskanen.com
|
|
|
36
36
|
Project-URL: Say Thanks!, http://meskanen.com
|
|
37
37
|
Project-URL: Source, https://gitlab.com/juham/juham/juham-automation.git
|
|
38
38
|
Keywords: home,automation,juham
|
|
39
|
-
Classifier: Development Status ::
|
|
39
|
+
Classifier: Development Status :: 3 - Alpha
|
|
40
40
|
Classifier: Intended Audience :: Developers
|
|
41
41
|
Classifier: Topic :: Software Development
|
|
42
42
|
Classifier: License :: Public Domain
|
|
@@ -47,7 +47,7 @@ License-File: LICENSE.rst
|
|
|
47
47
|
Requires-Dist: juham_core>=0.1.5
|
|
48
48
|
Provides-Extra: dev
|
|
49
49
|
Requires-Dist: check-manifest; extra == "dev"
|
|
50
|
-
Requires-Dist:
|
|
50
|
+
Requires-Dist: coverage>=7.0; extra == "dev"
|
|
51
51
|
Dynamic: license-file
|
|
52
52
|
|
|
53
53
|
Welcome to Juham™ - Juha's Ultimate Home Automation Masterpiece
|
|
@@ -71,11 +71,21 @@ This package extends the ``juham_core`` package, providing home automation build
|
|
|
71
71
|
Project Status
|
|
72
72
|
--------------
|
|
73
73
|
|
|
74
|
-
**Current State**: **
|
|
74
|
+
**Current State**: **Alpha (Status 3)**
|
|
75
75
|
|
|
76
76
|
All classes have been tested to some extent, and no known bugs have been reported. However, the code still requires work in terms of design and robustness. For example, electricity prices are currently hard-coded to use euros, but this should be configurable to support multiple currencies.
|
|
77
77
|
|
|
78
78
|
|
|
79
|
+
Project Links
|
|
80
|
+
-------------
|
|
81
|
+
|
|
82
|
+
- **Source code:** https://gitlab.com/juham/juham/juham-automation
|
|
83
|
+
- **Issue tracker:** https://gitlab.com/juham/juham/juham-automation/-/issues
|
|
84
|
+
- **Documentation:** https://juham-automation-c6383e.gitlab.io
|
|
85
|
+
- **PyPI page:** https://pypi.org/project/juham-automation
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
79
89
|
Features
|
|
80
90
|
--------
|
|
81
91
|
|
|
@@ -2,9 +2,9 @@ juham_automation/__init__.py,sha256=32BL36bhT7OaSw22H7st-7-3IXcFM2Pf5js80hNA8W0,
|
|
|
2
2
|
juham_automation/japp.py,sha256=L2u1mfKvun2fiXhB3AEJD9zMDcdFZ3_doXZYJJzu9tg,1646
|
|
3
3
|
juham_automation/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
4
4
|
juham_automation/automation/__init__.py,sha256=uxkIrcRSp1cFikn-oBRtQ8XiT9cSf7xjm3CS1RN7lAQ,522
|
|
5
|
-
juham_automation/automation/energybalancer.py,sha256=
|
|
5
|
+
juham_automation/automation/energybalancer.py,sha256=Mf9bK-Xo4zNalePL5EIGvlFObMkjWgeh76gvcU-ydIk,11532
|
|
6
6
|
juham_automation/automation/energycostcalculator.py,sha256=v30wxRpuY2gGBSMJifrFRTjsRU9t-iCiq33Vds7s3O8,10877
|
|
7
|
-
juham_automation/automation/heatingoptimizer.py,sha256=
|
|
7
|
+
juham_automation/automation/heatingoptimizer.py,sha256=JV6PChMzGzMnqoN-Io0TZ_pTDNblTKVzHhzjCYB9dho,24601
|
|
8
8
|
juham_automation/automation/powermeter_simulator.py,sha256=3WZcjByRTdqnC77l7LjP-TEjmZ8XBEO4hClYsrjxmBE,4549
|
|
9
9
|
juham_automation/automation/spothintafi.py,sha256=cZbi7w2fVweHX_fh1r5MTjGdesX9wDQta2mfVjtiwvw,4331
|
|
10
10
|
juham_automation/automation/watercirculator.py,sha256=a8meMNaONbHcIH3y0vP0UulJc1-gZiLZpw7H8kAOreY,6410
|
|
@@ -17,9 +17,9 @@ juham_automation/ts/log_ts.py,sha256=XsNaazuPmRUZLUqxU0DZae_frtT6kAFcXJTc598CtOA
|
|
|
17
17
|
juham_automation/ts/power_ts.py,sha256=e7bSeZjitY4C_gLup9L0NjvU_WnQsl3ayDhVShj32KY,1399
|
|
18
18
|
juham_automation/ts/powermeter_ts.py,sha256=gXzfK2S4SzrQ9GqM0tsLaV6z_vYmTkBatTcaivASSXs,2188
|
|
19
19
|
juham_automation/ts/powerplan_ts.py,sha256=LZeE7TnzPCDaugggKlaV-K48lDwwnC1ZNum50JYAWaY,1482
|
|
20
|
-
juham_automation-0.
|
|
21
|
-
juham_automation-0.
|
|
22
|
-
juham_automation-0.
|
|
23
|
-
juham_automation-0.
|
|
24
|
-
juham_automation-0.
|
|
25
|
-
juham_automation-0.
|
|
20
|
+
juham_automation-0.1.1.dist-info/licenses/LICENSE.rst,sha256=QVHD5V5_HSys2PdPdig_xKggDj8cGX33ALKqRsYyjtI,1089
|
|
21
|
+
juham_automation-0.1.1.dist-info/METADATA,sha256=_dLM_-h0wa8wC4ck2gzKP1dy6J370SnK2LLc6MyYyfg,7133
|
|
22
|
+
juham_automation-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
23
|
+
juham_automation-0.1.1.dist-info/entry_points.txt,sha256=h-KzuKjmGPd4_iX_oiGvxx4IEc97dVbGGlhdh5ctbpI,605
|
|
24
|
+
juham_automation-0.1.1.dist-info/top_level.txt,sha256=jfohvtocvX_gfT21AhJk7Iay5ZiQsS3HzrDjF7S4Qp0,17
|
|
25
|
+
juham_automation-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|