weheat 2025.1.14rc1__py3-none-any.whl → 2025.1.15__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.
Potentially problematic release.
This version of weheat might be problematic. Click here for more details.
- weheat/__init__.py +7 -2
- weheat/abstractions/discovery.py +6 -6
- weheat/abstractions/heat_pump.py +11 -15
- weheat/abstractions/user.py +7 -7
- weheat/api/__init__.py +1 -0
- weheat/api/energy_log_api.py +306 -132
- weheat/api/heat_pump_api.py +521 -369
- weheat/api/heat_pump_log_api.py +836 -359
- weheat/api/user_api.py +243 -115
- weheat/api_client.py +234 -261
- weheat/api_response.py +10 -18
- weheat/configuration.py +14 -9
- weheat/exceptions.py +59 -25
- weheat/models/__init__.py +6 -0
- weheat/models/boiler_type.py +8 -3
- weheat/models/device_state.py +9 -4
- weheat/models/dhw_type.py +8 -3
- weheat/models/energy_view_dto.py +81 -66
- weheat/models/heat_pump_log_view_dto.py +527 -481
- weheat/models/heat_pump_model.py +8 -3
- weheat/models/heat_pump_status_enum.py +8 -3
- weheat/models/heat_pump_type.py +8 -3
- weheat/models/raw_heat_pump_log_dto.py +353 -315
- weheat/models/read_all_heat_pump_dto.py +64 -48
- weheat/models/read_heat_pump_dto.py +59 -43
- weheat/models/read_user_dto.py +54 -39
- weheat/models/read_user_me_dto.py +124 -0
- weheat/models/role.py +10 -4
- weheat/rest.py +152 -259
- weheat-2025.1.15.dist-info/METADATA +115 -0
- weheat-2025.1.15.dist-info/RECORD +37 -0
- weheat-2025.1.14rc1.dist-info/METADATA +0 -117
- weheat-2025.1.14rc1.dist-info/RECORD +0 -36
- {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15.dist-info}/LICENSE +0 -0
- {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15.dist-info}/WHEEL +0 -0
- {weheat-2025.1.14rc1.dist-info → weheat-2025.1.15.dist-info}/top_level.txt +0 -0
|
@@ -18,753 +18,799 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import Optional, Union
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
|
+
from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
|
|
23
|
+
from pydantic import Field
|
|
22
24
|
try:
|
|
23
|
-
from
|
|
25
|
+
from typing import Self
|
|
24
26
|
except ImportError:
|
|
25
|
-
from
|
|
27
|
+
from typing_extensions import Self
|
|
26
28
|
|
|
27
29
|
class HeatPumpLogViewDto(BaseModel):
|
|
28
30
|
"""
|
|
29
31
|
HeatPumpLogViewDto
|
|
30
|
-
"""
|
|
31
|
-
time_bucket: Optional[datetime] = Field(None,
|
|
32
|
-
interval: Optional[StrictStr] = Field(None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
|
|
33
|
-
time_covered_in_interval: Optional[StrictInt] = Field(None,
|
|
34
|
-
heat_pump_state_standby: Optional[StrictInt] = Field(None,
|
|
35
|
-
heat_pump_state_heating: Optional[StrictInt] = Field(None,
|
|
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
|
-
class Config:
|
|
171
|
-
"""Pydantic configuration"""
|
|
172
|
-
allow_population_by_field_name = True
|
|
173
|
-
validate_assignment = True
|
|
32
|
+
""" # noqa: E501
|
|
33
|
+
time_bucket: Optional[datetime] = Field(default=None, description="Timestamp of the beginning of this interval (UTC)", alias="timeBucket")
|
|
34
|
+
interval: Optional[StrictStr] = Field(default=None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
|
|
35
|
+
time_covered_in_interval: Optional[StrictInt] = Field(default=None, description="Amount of time covered by this interval in seconds out of a maximum of the Interval (Granularity) in seconds", alias="timeCoveredInInterval")
|
|
36
|
+
heat_pump_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the standby state for this interval", alias="heatPumpStateStandby")
|
|
37
|
+
heat_pump_state_heating: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the heating state for this interval", alias="heatPumpStateHeating")
|
|
38
|
+
heat_pump_state_defrost: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the defrost required active state for this interval", alias="heatPumpStateDefrost")
|
|
39
|
+
heat_pump_state_cooling: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the cooling state for this interval", alias="heatPumpStateCooling")
|
|
40
|
+
heat_pump_state_dhw: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the (heating) Domestic Hot Water stae for this interval", alias="heatPumpStateDHW")
|
|
41
|
+
heat_pump_state_legionella: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Legionnaires' Disease Prevention state for this interval", alias="heatPumpStateLegionella")
|
|
42
|
+
rpm_control_startup: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Startup states for this interval", alias="rpmControlStartup")
|
|
43
|
+
rpm_control_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Running state for this interval", alias="rpmControlRunning")
|
|
44
|
+
rpm_control_running_abnormally: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the RPM Control Running Abnormally states for this interval", alias="rpmControlRunningAbnormally")
|
|
45
|
+
rpm_control_shutdown: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in one of the RPM Control Shutdown states for this interval", alias="rpmControlShutdown")
|
|
46
|
+
control_bridge_status_water_pump: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump state to true for this interval", alias="controlBridgeStatusWaterPump")
|
|
47
|
+
control_bridge_status_dhw_valve: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status DHW Valve state to true for this interval", alias="controlBridgeStatusDhwValve")
|
|
48
|
+
control_bridge_status_gas_boiler: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Gas Boiler state to true for this interval", alias="controlBridgeStatusGasBoiler")
|
|
49
|
+
control_bridge_status_electric_heater: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Electric Heater state to true for this interval", alias="controlBridgeStatusElectricHeater")
|
|
50
|
+
control_bridge_status_water_pump2: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Control Bridge Status Water Pump 2 state to true for this interval", alias="controlBridgeStatusWaterPump2")
|
|
51
|
+
dtc_none: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the No DTC codes Error state for this interval (staff only)", alias="dtcNone")
|
|
52
|
+
dtc_continue: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC but can Continue Error state for this interval (staff only)", alias="dtcContinue")
|
|
53
|
+
dtc_compressor_off: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Compressor Off Error state for this interval (staff only)", alias="dtcCompressorOff")
|
|
54
|
+
dtc_defrost_forbidden: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Defrost Forbidden Error state for this interval (staff only)", alias="dtcDefrostForbidden")
|
|
55
|
+
dtc_request_service: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Request Service Error state for this interval (staff only)", alias="dtcRequestService")
|
|
56
|
+
dtc_use_heating_curve: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Use Heating Curve (only) Error state for this interval (staff only)", alias="dtcUseHeatingCurve")
|
|
57
|
+
dtc_dhw_forbidden: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC HW Forbidden Error state for this interval (staff only)", alias="dtcDhwForbidden")
|
|
58
|
+
dtc_error: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC DTC Error state for this interval (staff only)", alias="dtcError")
|
|
59
|
+
dtc_inactive: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the DTC Inactive Error state for this interval (staff only)", alias="dtcInactive")
|
|
60
|
+
signal_strength_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthAverage")
|
|
61
|
+
signal_strength_min: Optional[StrictInt] = Field(default=None, description="Minimal Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthMin")
|
|
62
|
+
signal_strength_max: Optional[StrictInt] = Field(default=None, description="Maximum Signal Strength (integer out of 20) of the heat pump for this interval (staff only)", alias="signalStrengthMax")
|
|
63
|
+
t1_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Average")
|
|
64
|
+
t1_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Min")
|
|
65
|
+
t1_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the top DHW sensor (T1) of the heat pump for this interval", alias="t1Max")
|
|
66
|
+
t2_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Average")
|
|
67
|
+
t2_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Min")
|
|
68
|
+
t2_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the bottom DHW sensor (T2) of the heat pump for this interval", alias="t2Max")
|
|
69
|
+
t_spare_ntc_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcAverage")
|
|
70
|
+
t_spare_ntc_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcMin")
|
|
71
|
+
t_spare_ntc_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the spare DHW sensor (TSpareNTC) of the heat pump for this interval (staff only)", alias="tSpareNtcMax")
|
|
72
|
+
t_board_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardAverage")
|
|
73
|
+
t_board_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardMin")
|
|
74
|
+
t_board_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the control board of the heat pump for this interval (staff only)", alias="tBoardMax")
|
|
75
|
+
t_air_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of air going into the heat pump for this interval", alias="tAirInAverage")
|
|
76
|
+
t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="tAirInMin")
|
|
77
|
+
t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="tAirInMax")
|
|
78
|
+
t_air_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of air going out of the heat pump for this interval", alias="tAirOutAverage")
|
|
79
|
+
t_air_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of air going out of the heat pump for this interval", alias="tAirOutMin")
|
|
80
|
+
t_air_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of air going out of the heat pump for this interval", alias="tAirOutMax")
|
|
81
|
+
t_water_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going into the heat pump for this interval", alias="tWaterInAverage")
|
|
82
|
+
t_water_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going into the heat pump for this interval", alias="tWaterInMin")
|
|
83
|
+
t_water_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going into the heat pump for this interval", alias="tWaterInMax")
|
|
84
|
+
t_water_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going out of the heat pump for this interval", alias="tWaterOutAverage")
|
|
85
|
+
t_water_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going out of the heat pump for this interval", alias="tWaterOutMin")
|
|
86
|
+
t_water_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going out of the heat pump for this interval", alias="tWaterOutMax")
|
|
87
|
+
t_water_house_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the water going into the house for this interval", alias="tWaterHouseInAverage")
|
|
88
|
+
t_water_house_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the water going into the house for this interval", alias="tWaterHouseInMin")
|
|
89
|
+
t_water_house_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the water going into the house for this interval", alias="tWaterHouseInMax")
|
|
90
|
+
rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM of the compressor for this interval (not for consumers)", alias="rpmAverage")
|
|
91
|
+
rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM of the compressor for this interval (not for consumers)", alias="rpmMin")
|
|
92
|
+
rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM of the compressor for this interval (not for consumers)", alias="rpmMax")
|
|
93
|
+
rpm_limiter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterAverage")
|
|
94
|
+
rpm_limiter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterMin")
|
|
95
|
+
rpm_limiter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM value the heat pump was limited to for this interval (staff only)", alias="rpmLimiterMax")
|
|
96
|
+
rpm_limiter_no_limit: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was not Limited at all by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterNoLimit")
|
|
97
|
+
rpm_limiter_power_limit: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited by the amount of Power by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterPowerLimit")
|
|
98
|
+
rpm_limiter_defrost: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Defrost by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterDefrost")
|
|
99
|
+
rpm_limiter_silent_hours: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Silent Hours by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterSilentHours")
|
|
100
|
+
rpm_limiter_hp_control: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of HP Control method by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterHPControl")
|
|
101
|
+
rpm_limiter_pressure: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Pressure by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterPressure")
|
|
102
|
+
rpm_limiter_water_out: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Water Out temperature by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterWaterOut")
|
|
103
|
+
rpm_limiter_envelope: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of Envelope control method by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterEnvelope")
|
|
104
|
+
rpm_limiter_house_in: Optional[StrictInt] = Field(default=None, description="Amount of time the compressor RPM was being most limited because of its Water In temperature by the RPM Limiter state for this interval (staff only)", alias="rpmLimiterHouseIn")
|
|
105
|
+
p_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInAverage")
|
|
106
|
+
p_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInMin")
|
|
107
|
+
p_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum pressure on the intake side of the compressor for this interval (not for consumers)", alias="pCompressorInMax")
|
|
108
|
+
p_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutAverage")
|
|
109
|
+
p_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutMin")
|
|
110
|
+
p_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum pressure on the output side of the compressor for this interval (not for consumers)", alias="pCompressorOutMax")
|
|
111
|
+
p_compressor_in_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetAverage")
|
|
112
|
+
p_compressor_in_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetMin")
|
|
113
|
+
p_compressor_in_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target pressure (on the intake side) of the compressor for this interval (not for consumers)", alias="pCompressorInTargetMax")
|
|
114
|
+
t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the inverter for this interval (staff only)", alias="tInverterAverage")
|
|
115
|
+
t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the inverter for this interval (staff only)", alias="tInverterMin")
|
|
116
|
+
t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the inverter for this interval (staff only)", alias="tInverterMax")
|
|
117
|
+
t_compressor_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInAverage")
|
|
118
|
+
t_compressor_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInMin")
|
|
119
|
+
t_compressor_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of intake side of the compressor for this interval (not for consumers)", alias="tCompressorInMax")
|
|
120
|
+
t_compressor_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutAverage")
|
|
121
|
+
t_compressor_out_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutMin")
|
|
122
|
+
t_compressor_out_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of output side of the compressor for this interval (not for consumers)", alias="tCompressorOutMax")
|
|
123
|
+
t_compressor_in_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientAverage")
|
|
124
|
+
t_compressor_in_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientMin")
|
|
125
|
+
t_compressor_in_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature transient for the intake side of the compressor for this interval (staff only)", alias="tCompressorInTransientMax")
|
|
126
|
+
t_compressor_out_transient_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientAverage")
|
|
127
|
+
t_compressor_out_transient_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientMin")
|
|
128
|
+
t_compressor_out_transient_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature transient for the output side of the compressor for this interval (staff only)", alias="tCompressorOutTransientMax")
|
|
129
|
+
delta_t_compressor_in_superheat_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatAverage")
|
|
130
|
+
delta_t_compressor_in_superheat_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatMin")
|
|
131
|
+
delta_t_compressor_in_superheat_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature difference in the compressor for Superheat for this interval (staff only)", alias="deltaTCompressorInSuperheatMax")
|
|
132
|
+
compressor_power_low_accuracy_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyAverage")
|
|
133
|
+
compressor_power_low_accuracy_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyMin")
|
|
134
|
+
compressor_power_low_accuracy_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the compressor (low accuracy) for this interval (staff only)", alias="compressorPowerLowAccuracyMax")
|
|
135
|
+
fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average percentage of the fan used for this interval (staff only)", alias="fanAverage")
|
|
136
|
+
fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum percentage of the fan used for this interval (staff only)", alias="fanMin")
|
|
137
|
+
fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum percentage of the fan used for this interval (staff only)", alias="fanMax")
|
|
138
|
+
fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the fan for this interval (staff only)", alias="fanPowerAverage")
|
|
139
|
+
fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the fan for this interval (staff only)", alias="fanPowerMin")
|
|
140
|
+
fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the fan for this interval (staff only)", alias="fanPowerMax")
|
|
141
|
+
cm_mass_power_in_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the total amount of energy produced by the heat pump for this interval (staff only)", alias="cmMassPowerInAverage")
|
|
142
|
+
cm_mass_power_out_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average of the total amount of energy produced by the heat pump for this interval (staff only)", alias="cmMassPowerOutAverage")
|
|
143
|
+
temperature_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralAverage")
|
|
144
|
+
temperature_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMin")
|
|
145
|
+
temperature_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMax")
|
|
146
|
+
thermostat_state_off: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Thermostat State Off state for this interval", alias="thermostatStateOff")
|
|
147
|
+
thermostat_state_on: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the Thermostat State On state for this interval", alias="thermostatStateOn")
|
|
148
|
+
t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the room for this interval", alias="tRoomAverage")
|
|
149
|
+
t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the room for this interval", alias="tRoomMin")
|
|
150
|
+
t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the room for this interval", alias="tRoomMax")
|
|
151
|
+
t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target room temperature of the thermostat for this interval", alias="tRoomTargetAverage")
|
|
152
|
+
t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target room temperature of the thermostat for this interval", alias="tRoomTargetMin")
|
|
153
|
+
t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target room temperature of the thermostat for this interval", alias="tRoomTargetMax")
|
|
154
|
+
t_thermostat_setpoint_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointAverage")
|
|
155
|
+
t_thermostat_setpoint_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointMin")
|
|
156
|
+
t_thermostat_setpoint_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature setpoint of the thermostat for this interval OR the water setpoint of the heat pump", alias="tThermostatSetpointMax")
|
|
157
|
+
ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureAverage")
|
|
158
|
+
ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMin")
|
|
159
|
+
ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMax")
|
|
160
|
+
ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureAverage")
|
|
161
|
+
ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMin")
|
|
162
|
+
ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMax")
|
|
163
|
+
__properties: ClassVar[List[str]] = ["timeBucket", "interval", "timeCoveredInInterval", "heatPumpStateStandby", "heatPumpStateHeating", "heatPumpStateDefrost", "heatPumpStateCooling", "heatPumpStateDHW", "heatPumpStateLegionella", "rpmControlStartup", "rpmControlRunning", "rpmControlRunningAbnormally", "rpmControlShutdown", "controlBridgeStatusWaterPump", "controlBridgeStatusDhwValve", "controlBridgeStatusGasBoiler", "controlBridgeStatusElectricHeater", "controlBridgeStatusWaterPump2", "dtcNone", "dtcContinue", "dtcCompressorOff", "dtcDefrostForbidden", "dtcRequestService", "dtcUseHeatingCurve", "dtcDhwForbidden", "dtcError", "dtcInactive", "signalStrengthAverage", "signalStrengthMin", "signalStrengthMax", "t1Average", "t1Min", "t1Max", "t2Average", "t2Min", "t2Max", "tSpareNtcAverage", "tSpareNtcMin", "tSpareNtcMax", "tBoardAverage", "tBoardMin", "tBoardMax", "tAirInAverage", "tAirInMin", "tAirInMax", "tAirOutAverage", "tAirOutMin", "tAirOutMax", "tWaterInAverage", "tWaterInMin", "tWaterInMax", "tWaterOutAverage", "tWaterOutMin", "tWaterOutMax", "tWaterHouseInAverage", "tWaterHouseInMin", "tWaterHouseInMax", "rpmAverage", "rpmMin", "rpmMax", "rpmLimiterAverage", "rpmLimiterMin", "rpmLimiterMax", "rpmLimiterNoLimit", "rpmLimiterPowerLimit", "rpmLimiterDefrost", "rpmLimiterSilentHours", "rpmLimiterHPControl", "rpmLimiterPressure", "rpmLimiterWaterOut", "rpmLimiterEnvelope", "rpmLimiterHouseIn", "pCompressorInAverage", "pCompressorInMin", "pCompressorInMax", "pCompressorOutAverage", "pCompressorOutMin", "pCompressorOutMax", "pCompressorInTargetAverage", "pCompressorInTargetMin", "pCompressorInTargetMax", "tInverterAverage", "tInverterMin", "tInverterMax", "tCompressorInAverage", "tCompressorInMin", "tCompressorInMax", "tCompressorOutAverage", "tCompressorOutMin", "tCompressorOutMax", "tCompressorInTransientAverage", "tCompressorInTransientMin", "tCompressorInTransientMax", "tCompressorOutTransientAverage", "tCompressorOutTransientMin", "tCompressorOutTransientMax", "deltaTCompressorInSuperheatAverage", "deltaTCompressorInSuperheatMin", "deltaTCompressorInSuperheatMax", "compressorPowerLowAccuracyAverage", "compressorPowerLowAccuracyMin", "compressorPowerLowAccuracyMax", "fanAverage", "fanMin", "fanMax", "fanPowerAverage", "fanPowerMin", "fanPowerMax", "cmMassPowerInAverage", "cmMassPowerOutAverage", "temperatureErrorIntegralAverage", "temperatureErrorIntegralMin", "temperatureErrorIntegralMax", "thermostatStateOff", "thermostatStateOn", "tRoomAverage", "tRoomMin", "tRoomMax", "tRoomTargetAverage", "tRoomTargetMin", "tRoomTargetMax", "tThermostatSetpointAverage", "tThermostatSetpointMin", "tThermostatSetpointMax", "otBoilerFeedTemperatureAverage", "otBoilerFeedTemperatureMin", "otBoilerFeedTemperatureMax", "otBoilerReturnTemperatureAverage", "otBoilerReturnTemperatureMin", "otBoilerReturnTemperatureMax"]
|
|
164
|
+
|
|
165
|
+
model_config = {
|
|
166
|
+
"populate_by_name": True,
|
|
167
|
+
"validate_assignment": True,
|
|
168
|
+
"protected_namespaces": (),
|
|
169
|
+
}
|
|
170
|
+
|
|
174
171
|
|
|
175
172
|
def to_str(self) -> str:
|
|
176
173
|
"""Returns the string representation of the model using alias"""
|
|
177
|
-
return pprint.pformat(self.
|
|
174
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
178
175
|
|
|
179
176
|
def to_json(self) -> str:
|
|
180
177
|
"""Returns the JSON representation of the model using alias"""
|
|
178
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
181
179
|
return json.dumps(self.to_dict())
|
|
182
180
|
|
|
183
181
|
@classmethod
|
|
184
|
-
def from_json(cls, json_str: str) ->
|
|
182
|
+
def from_json(cls, json_str: str) -> Self:
|
|
185
183
|
"""Create an instance of HeatPumpLogViewDto from a JSON string"""
|
|
186
184
|
return cls.from_dict(json.loads(json_str))
|
|
187
185
|
|
|
188
|
-
def to_dict(self):
|
|
189
|
-
"""
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
186
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
187
|
+
"""Return the dictionary representation of the model using alias.
|
|
188
|
+
|
|
189
|
+
This has the following differences from calling pydantic's
|
|
190
|
+
`self.model_dump(by_alias=True)`:
|
|
191
|
+
|
|
192
|
+
* `None` is only added to the output dict for nullable fields that
|
|
193
|
+
were set at model initialization. Other fields with value `None`
|
|
194
|
+
are ignored.
|
|
195
|
+
"""
|
|
196
|
+
_dict = self.model_dump(
|
|
197
|
+
by_alias=True,
|
|
198
|
+
exclude={
|
|
199
|
+
},
|
|
200
|
+
exclude_none=True,
|
|
201
|
+
)
|
|
194
202
|
# set to None if interval (nullable) is None
|
|
195
|
-
# and
|
|
196
|
-
if self.interval is None and "interval" in self.
|
|
203
|
+
# and model_fields_set contains the field
|
|
204
|
+
if self.interval is None and "interval" in self.model_fields_set:
|
|
197
205
|
_dict['interval'] = None
|
|
198
206
|
|
|
207
|
+
# set to None if rpm_control_startup (nullable) is None
|
|
208
|
+
# and model_fields_set contains the field
|
|
209
|
+
if self.rpm_control_startup is None and "rpm_control_startup" in self.model_fields_set:
|
|
210
|
+
_dict['rpmControlStartup'] = None
|
|
211
|
+
|
|
212
|
+
# set to None if rpm_control_running (nullable) is None
|
|
213
|
+
# and model_fields_set contains the field
|
|
214
|
+
if self.rpm_control_running is None and "rpm_control_running" in self.model_fields_set:
|
|
215
|
+
_dict['rpmControlRunning'] = None
|
|
216
|
+
|
|
217
|
+
# set to None if rpm_control_shutdown (nullable) is None
|
|
218
|
+
# and model_fields_set contains the field
|
|
219
|
+
if self.rpm_control_shutdown is None and "rpm_control_shutdown" in self.model_fields_set:
|
|
220
|
+
_dict['rpmControlShutdown'] = None
|
|
221
|
+
|
|
199
222
|
# set to None if control_bridge_status_dhw_valve (nullable) is None
|
|
200
|
-
# and
|
|
201
|
-
if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.
|
|
223
|
+
# and model_fields_set contains the field
|
|
224
|
+
if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.model_fields_set:
|
|
202
225
|
_dict['controlBridgeStatusDhwValve'] = None
|
|
203
226
|
|
|
204
227
|
# set to None if dtc_none (nullable) is None
|
|
205
|
-
# and
|
|
206
|
-
if self.dtc_none is None and "dtc_none" in self.
|
|
228
|
+
# and model_fields_set contains the field
|
|
229
|
+
if self.dtc_none is None and "dtc_none" in self.model_fields_set:
|
|
207
230
|
_dict['dtcNone'] = None
|
|
208
231
|
|
|
209
232
|
# set to None if dtc_continue (nullable) is None
|
|
210
|
-
# and
|
|
211
|
-
if self.dtc_continue is None and "dtc_continue" in self.
|
|
233
|
+
# and model_fields_set contains the field
|
|
234
|
+
if self.dtc_continue is None and "dtc_continue" in self.model_fields_set:
|
|
212
235
|
_dict['dtcContinue'] = None
|
|
213
236
|
|
|
214
237
|
# set to None if dtc_compressor_off (nullable) is None
|
|
215
|
-
# and
|
|
216
|
-
if self.dtc_compressor_off is None and "dtc_compressor_off" in self.
|
|
238
|
+
# and model_fields_set contains the field
|
|
239
|
+
if self.dtc_compressor_off is None and "dtc_compressor_off" in self.model_fields_set:
|
|
217
240
|
_dict['dtcCompressorOff'] = None
|
|
218
241
|
|
|
219
242
|
# set to None if dtc_defrost_forbidden (nullable) is None
|
|
220
|
-
# and
|
|
221
|
-
if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.
|
|
243
|
+
# and model_fields_set contains the field
|
|
244
|
+
if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.model_fields_set:
|
|
222
245
|
_dict['dtcDefrostForbidden'] = None
|
|
223
246
|
|
|
224
247
|
# set to None if dtc_request_service (nullable) is None
|
|
225
|
-
# and
|
|
226
|
-
if self.dtc_request_service is None and "dtc_request_service" in self.
|
|
248
|
+
# and model_fields_set contains the field
|
|
249
|
+
if self.dtc_request_service is None and "dtc_request_service" in self.model_fields_set:
|
|
227
250
|
_dict['dtcRequestService'] = None
|
|
228
251
|
|
|
229
252
|
# set to None if dtc_use_heating_curve (nullable) is None
|
|
230
|
-
# and
|
|
231
|
-
if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.
|
|
253
|
+
# and model_fields_set contains the field
|
|
254
|
+
if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.model_fields_set:
|
|
232
255
|
_dict['dtcUseHeatingCurve'] = None
|
|
233
256
|
|
|
234
257
|
# set to None if dtc_dhw_forbidden (nullable) is None
|
|
235
|
-
# and
|
|
236
|
-
if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.
|
|
258
|
+
# and model_fields_set contains the field
|
|
259
|
+
if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.model_fields_set:
|
|
237
260
|
_dict['dtcDhwForbidden'] = None
|
|
238
261
|
|
|
239
262
|
# set to None if dtc_error (nullable) is None
|
|
240
|
-
# and
|
|
241
|
-
if self.dtc_error is None and "dtc_error" in self.
|
|
263
|
+
# and model_fields_set contains the field
|
|
264
|
+
if self.dtc_error is None and "dtc_error" in self.model_fields_set:
|
|
242
265
|
_dict['dtcError'] = None
|
|
243
266
|
|
|
244
267
|
# set to None if dtc_inactive (nullable) is None
|
|
245
|
-
# and
|
|
246
|
-
if self.dtc_inactive is None and "dtc_inactive" in self.
|
|
268
|
+
# and model_fields_set contains the field
|
|
269
|
+
if self.dtc_inactive is None and "dtc_inactive" in self.model_fields_set:
|
|
247
270
|
_dict['dtcInactive'] = None
|
|
248
271
|
|
|
249
272
|
# set to None if signal_strength_average (nullable) is None
|
|
250
|
-
# and
|
|
251
|
-
if self.signal_strength_average is None and "signal_strength_average" in self.
|
|
273
|
+
# and model_fields_set contains the field
|
|
274
|
+
if self.signal_strength_average is None and "signal_strength_average" in self.model_fields_set:
|
|
252
275
|
_dict['signalStrengthAverage'] = None
|
|
253
276
|
|
|
254
277
|
# set to None if signal_strength_min (nullable) is None
|
|
255
|
-
# and
|
|
256
|
-
if self.signal_strength_min is None and "signal_strength_min" in self.
|
|
278
|
+
# and model_fields_set contains the field
|
|
279
|
+
if self.signal_strength_min is None and "signal_strength_min" in self.model_fields_set:
|
|
257
280
|
_dict['signalStrengthMin'] = None
|
|
258
281
|
|
|
259
282
|
# set to None if signal_strength_max (nullable) is None
|
|
260
|
-
# and
|
|
261
|
-
if self.signal_strength_max is None and "signal_strength_max" in self.
|
|
283
|
+
# and model_fields_set contains the field
|
|
284
|
+
if self.signal_strength_max is None and "signal_strength_max" in self.model_fields_set:
|
|
262
285
|
_dict['signalStrengthMax'] = None
|
|
263
286
|
|
|
264
287
|
# set to None if t1_average (nullable) is None
|
|
265
|
-
# and
|
|
266
|
-
if self.t1_average is None and "t1_average" in self.
|
|
288
|
+
# and model_fields_set contains the field
|
|
289
|
+
if self.t1_average is None and "t1_average" in self.model_fields_set:
|
|
267
290
|
_dict['t1Average'] = None
|
|
268
291
|
|
|
269
292
|
# set to None if t1_min (nullable) is None
|
|
270
|
-
# and
|
|
271
|
-
if self.t1_min is None and "t1_min" in self.
|
|
293
|
+
# and model_fields_set contains the field
|
|
294
|
+
if self.t1_min is None and "t1_min" in self.model_fields_set:
|
|
272
295
|
_dict['t1Min'] = None
|
|
273
296
|
|
|
274
297
|
# set to None if t1_max (nullable) is None
|
|
275
|
-
# and
|
|
276
|
-
if self.t1_max is None and "t1_max" in self.
|
|
298
|
+
# and model_fields_set contains the field
|
|
299
|
+
if self.t1_max is None and "t1_max" in self.model_fields_set:
|
|
277
300
|
_dict['t1Max'] = None
|
|
278
301
|
|
|
279
302
|
# set to None if t2_average (nullable) is None
|
|
280
|
-
# and
|
|
281
|
-
if self.t2_average is None and "t2_average" in self.
|
|
303
|
+
# and model_fields_set contains the field
|
|
304
|
+
if self.t2_average is None and "t2_average" in self.model_fields_set:
|
|
282
305
|
_dict['t2Average'] = None
|
|
283
306
|
|
|
284
307
|
# set to None if t2_min (nullable) is None
|
|
285
|
-
# and
|
|
286
|
-
if self.t2_min is None and "t2_min" in self.
|
|
308
|
+
# and model_fields_set contains the field
|
|
309
|
+
if self.t2_min is None and "t2_min" in self.model_fields_set:
|
|
287
310
|
_dict['t2Min'] = None
|
|
288
311
|
|
|
289
312
|
# set to None if t2_max (nullable) is None
|
|
290
|
-
# and
|
|
291
|
-
if self.t2_max is None and "t2_max" in self.
|
|
313
|
+
# and model_fields_set contains the field
|
|
314
|
+
if self.t2_max is None and "t2_max" in self.model_fields_set:
|
|
292
315
|
_dict['t2Max'] = None
|
|
293
316
|
|
|
294
317
|
# set to None if t_spare_ntc_average (nullable) is None
|
|
295
|
-
# and
|
|
296
|
-
if self.t_spare_ntc_average is None and "t_spare_ntc_average" in self.
|
|
318
|
+
# and model_fields_set contains the field
|
|
319
|
+
if self.t_spare_ntc_average is None and "t_spare_ntc_average" in self.model_fields_set:
|
|
297
320
|
_dict['tSpareNtcAverage'] = None
|
|
298
321
|
|
|
299
322
|
# set to None if t_spare_ntc_min (nullable) is None
|
|
300
|
-
# and
|
|
301
|
-
if self.t_spare_ntc_min is None and "t_spare_ntc_min" in self.
|
|
323
|
+
# and model_fields_set contains the field
|
|
324
|
+
if self.t_spare_ntc_min is None and "t_spare_ntc_min" in self.model_fields_set:
|
|
302
325
|
_dict['tSpareNtcMin'] = None
|
|
303
326
|
|
|
304
327
|
# set to None if t_spare_ntc_max (nullable) is None
|
|
305
|
-
# and
|
|
306
|
-
if self.t_spare_ntc_max is None and "t_spare_ntc_max" in self.
|
|
328
|
+
# and model_fields_set contains the field
|
|
329
|
+
if self.t_spare_ntc_max is None and "t_spare_ntc_max" in self.model_fields_set:
|
|
307
330
|
_dict['tSpareNtcMax'] = None
|
|
308
331
|
|
|
309
332
|
# set to None if t_board_average (nullable) is None
|
|
310
|
-
# and
|
|
311
|
-
if self.t_board_average is None and "t_board_average" in self.
|
|
333
|
+
# and model_fields_set contains the field
|
|
334
|
+
if self.t_board_average is None and "t_board_average" in self.model_fields_set:
|
|
312
335
|
_dict['tBoardAverage'] = None
|
|
313
336
|
|
|
314
337
|
# set to None if t_board_min (nullable) is None
|
|
315
|
-
# and
|
|
316
|
-
if self.t_board_min is None and "t_board_min" in self.
|
|
338
|
+
# and model_fields_set contains the field
|
|
339
|
+
if self.t_board_min is None and "t_board_min" in self.model_fields_set:
|
|
317
340
|
_dict['tBoardMin'] = None
|
|
318
341
|
|
|
319
342
|
# set to None if t_board_max (nullable) is None
|
|
320
|
-
# and
|
|
321
|
-
if self.t_board_max is None and "t_board_max" in self.
|
|
343
|
+
# and model_fields_set contains the field
|
|
344
|
+
if self.t_board_max is None and "t_board_max" in self.model_fields_set:
|
|
322
345
|
_dict['tBoardMax'] = None
|
|
323
346
|
|
|
347
|
+
# set to None if t_air_out_average (nullable) is None
|
|
348
|
+
# and model_fields_set contains the field
|
|
349
|
+
if self.t_air_out_average is None and "t_air_out_average" in self.model_fields_set:
|
|
350
|
+
_dict['tAirOutAverage'] = None
|
|
351
|
+
|
|
352
|
+
# set to None if t_air_out_min (nullable) is None
|
|
353
|
+
# and model_fields_set contains the field
|
|
354
|
+
if self.t_air_out_min is None and "t_air_out_min" in self.model_fields_set:
|
|
355
|
+
_dict['tAirOutMin'] = None
|
|
356
|
+
|
|
357
|
+
# set to None if t_air_out_max (nullable) is None
|
|
358
|
+
# and model_fields_set contains the field
|
|
359
|
+
if self.t_air_out_max is None and "t_air_out_max" in self.model_fields_set:
|
|
360
|
+
_dict['tAirOutMax'] = None
|
|
361
|
+
|
|
324
362
|
# set to None if rpm_average (nullable) is None
|
|
325
|
-
# and
|
|
326
|
-
if self.rpm_average is None and "rpm_average" in self.
|
|
363
|
+
# and model_fields_set contains the field
|
|
364
|
+
if self.rpm_average is None and "rpm_average" in self.model_fields_set:
|
|
327
365
|
_dict['rpmAverage'] = None
|
|
328
366
|
|
|
329
367
|
# set to None if rpm_min (nullable) is None
|
|
330
|
-
# and
|
|
331
|
-
if self.rpm_min is None and "rpm_min" in self.
|
|
368
|
+
# and model_fields_set contains the field
|
|
369
|
+
if self.rpm_min is None and "rpm_min" in self.model_fields_set:
|
|
332
370
|
_dict['rpmMin'] = None
|
|
333
371
|
|
|
334
372
|
# set to None if rpm_max (nullable) is None
|
|
335
|
-
# and
|
|
336
|
-
if self.rpm_max is None and "rpm_max" in self.
|
|
373
|
+
# and model_fields_set contains the field
|
|
374
|
+
if self.rpm_max is None and "rpm_max" in self.model_fields_set:
|
|
337
375
|
_dict['rpmMax'] = None
|
|
338
376
|
|
|
339
377
|
# set to None if rpm_limiter_average (nullable) is None
|
|
340
|
-
# and
|
|
341
|
-
if self.rpm_limiter_average is None and "rpm_limiter_average" in self.
|
|
378
|
+
# and model_fields_set contains the field
|
|
379
|
+
if self.rpm_limiter_average is None and "rpm_limiter_average" in self.model_fields_set:
|
|
342
380
|
_dict['rpmLimiterAverage'] = None
|
|
343
381
|
|
|
344
382
|
# set to None if rpm_limiter_min (nullable) is None
|
|
345
|
-
# and
|
|
346
|
-
if self.rpm_limiter_min is None and "rpm_limiter_min" in self.
|
|
383
|
+
# and model_fields_set contains the field
|
|
384
|
+
if self.rpm_limiter_min is None and "rpm_limiter_min" in self.model_fields_set:
|
|
347
385
|
_dict['rpmLimiterMin'] = None
|
|
348
386
|
|
|
349
387
|
# set to None if rpm_limiter_max (nullable) is None
|
|
350
|
-
# and
|
|
351
|
-
if self.rpm_limiter_max is None and "rpm_limiter_max" in self.
|
|
388
|
+
# and model_fields_set contains the field
|
|
389
|
+
if self.rpm_limiter_max is None and "rpm_limiter_max" in self.model_fields_set:
|
|
352
390
|
_dict['rpmLimiterMax'] = None
|
|
353
391
|
|
|
354
392
|
# set to None if rpm_limiter_no_limit (nullable) is None
|
|
355
|
-
# and
|
|
356
|
-
if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.
|
|
393
|
+
# and model_fields_set contains the field
|
|
394
|
+
if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.model_fields_set:
|
|
357
395
|
_dict['rpmLimiterNoLimit'] = None
|
|
358
396
|
|
|
359
397
|
# set to None if rpm_limiter_power_limit (nullable) is None
|
|
360
|
-
# and
|
|
361
|
-
if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.
|
|
398
|
+
# and model_fields_set contains the field
|
|
399
|
+
if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.model_fields_set:
|
|
362
400
|
_dict['rpmLimiterPowerLimit'] = None
|
|
363
401
|
|
|
364
402
|
# set to None if rpm_limiter_defrost (nullable) is None
|
|
365
|
-
# and
|
|
366
|
-
if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.
|
|
403
|
+
# and model_fields_set contains the field
|
|
404
|
+
if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.model_fields_set:
|
|
367
405
|
_dict['rpmLimiterDefrost'] = None
|
|
368
406
|
|
|
369
407
|
# set to None if rpm_limiter_silent_hours (nullable) is None
|
|
370
|
-
# and
|
|
371
|
-
if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.
|
|
408
|
+
# and model_fields_set contains the field
|
|
409
|
+
if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.model_fields_set:
|
|
372
410
|
_dict['rpmLimiterSilentHours'] = None
|
|
373
411
|
|
|
374
412
|
# set to None if rpm_limiter_hp_control (nullable) is None
|
|
375
|
-
# and
|
|
376
|
-
if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.
|
|
413
|
+
# and model_fields_set contains the field
|
|
414
|
+
if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.model_fields_set:
|
|
377
415
|
_dict['rpmLimiterHPControl'] = None
|
|
378
416
|
|
|
379
417
|
# set to None if rpm_limiter_pressure (nullable) is None
|
|
380
|
-
# and
|
|
381
|
-
if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.
|
|
418
|
+
# and model_fields_set contains the field
|
|
419
|
+
if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.model_fields_set:
|
|
382
420
|
_dict['rpmLimiterPressure'] = None
|
|
383
421
|
|
|
384
422
|
# set to None if rpm_limiter_water_out (nullable) is None
|
|
385
|
-
# and
|
|
386
|
-
if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.
|
|
423
|
+
# and model_fields_set contains the field
|
|
424
|
+
if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.model_fields_set:
|
|
387
425
|
_dict['rpmLimiterWaterOut'] = None
|
|
388
426
|
|
|
389
427
|
# set to None if rpm_limiter_envelope (nullable) is None
|
|
390
|
-
# and
|
|
391
|
-
if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.
|
|
428
|
+
# and model_fields_set contains the field
|
|
429
|
+
if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.model_fields_set:
|
|
392
430
|
_dict['rpmLimiterEnvelope'] = None
|
|
393
431
|
|
|
394
432
|
# set to None if rpm_limiter_house_in (nullable) is None
|
|
395
|
-
# and
|
|
396
|
-
if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.
|
|
433
|
+
# and model_fields_set contains the field
|
|
434
|
+
if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.model_fields_set:
|
|
397
435
|
_dict['rpmLimiterHouseIn'] = None
|
|
398
436
|
|
|
399
437
|
# set to None if p_compressor_in_average (nullable) is None
|
|
400
|
-
# and
|
|
401
|
-
if self.p_compressor_in_average is None and "p_compressor_in_average" in self.
|
|
438
|
+
# and model_fields_set contains the field
|
|
439
|
+
if self.p_compressor_in_average is None and "p_compressor_in_average" in self.model_fields_set:
|
|
402
440
|
_dict['pCompressorInAverage'] = None
|
|
403
441
|
|
|
404
442
|
# set to None if p_compressor_in_min (nullable) is None
|
|
405
|
-
# and
|
|
406
|
-
if self.p_compressor_in_min is None and "p_compressor_in_min" in self.
|
|
443
|
+
# and model_fields_set contains the field
|
|
444
|
+
if self.p_compressor_in_min is None and "p_compressor_in_min" in self.model_fields_set:
|
|
407
445
|
_dict['pCompressorInMin'] = None
|
|
408
446
|
|
|
409
447
|
# set to None if p_compressor_in_max (nullable) is None
|
|
410
|
-
# and
|
|
411
|
-
if self.p_compressor_in_max is None and "p_compressor_in_max" in self.
|
|
448
|
+
# and model_fields_set contains the field
|
|
449
|
+
if self.p_compressor_in_max is None and "p_compressor_in_max" in self.model_fields_set:
|
|
412
450
|
_dict['pCompressorInMax'] = None
|
|
413
451
|
|
|
414
452
|
# set to None if p_compressor_out_average (nullable) is None
|
|
415
|
-
# and
|
|
416
|
-
if self.p_compressor_out_average is None and "p_compressor_out_average" in self.
|
|
453
|
+
# and model_fields_set contains the field
|
|
454
|
+
if self.p_compressor_out_average is None and "p_compressor_out_average" in self.model_fields_set:
|
|
417
455
|
_dict['pCompressorOutAverage'] = None
|
|
418
456
|
|
|
419
457
|
# set to None if p_compressor_out_min (nullable) is None
|
|
420
|
-
# and
|
|
421
|
-
if self.p_compressor_out_min is None and "p_compressor_out_min" in self.
|
|
458
|
+
# and model_fields_set contains the field
|
|
459
|
+
if self.p_compressor_out_min is None and "p_compressor_out_min" in self.model_fields_set:
|
|
422
460
|
_dict['pCompressorOutMin'] = None
|
|
423
461
|
|
|
424
462
|
# set to None if p_compressor_out_max (nullable) is None
|
|
425
|
-
# and
|
|
426
|
-
if self.p_compressor_out_max is None and "p_compressor_out_max" in self.
|
|
463
|
+
# and model_fields_set contains the field
|
|
464
|
+
if self.p_compressor_out_max is None and "p_compressor_out_max" in self.model_fields_set:
|
|
427
465
|
_dict['pCompressorOutMax'] = None
|
|
428
466
|
|
|
429
467
|
# set to None if p_compressor_in_target_average (nullable) is None
|
|
430
|
-
# and
|
|
431
|
-
if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.
|
|
468
|
+
# and model_fields_set contains the field
|
|
469
|
+
if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.model_fields_set:
|
|
432
470
|
_dict['pCompressorInTargetAverage'] = None
|
|
433
471
|
|
|
434
472
|
# set to None if p_compressor_in_target_min (nullable) is None
|
|
435
|
-
# and
|
|
436
|
-
if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.
|
|
473
|
+
# and model_fields_set contains the field
|
|
474
|
+
if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.model_fields_set:
|
|
437
475
|
_dict['pCompressorInTargetMin'] = None
|
|
438
476
|
|
|
439
477
|
# set to None if p_compressor_in_target_max (nullable) is None
|
|
440
|
-
# and
|
|
441
|
-
if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.
|
|
478
|
+
# and model_fields_set contains the field
|
|
479
|
+
if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.model_fields_set:
|
|
442
480
|
_dict['pCompressorInTargetMax'] = None
|
|
443
481
|
|
|
444
482
|
# set to None if t_inverter_average (nullable) is None
|
|
445
|
-
# and
|
|
446
|
-
if self.t_inverter_average is None and "t_inverter_average" in self.
|
|
483
|
+
# and model_fields_set contains the field
|
|
484
|
+
if self.t_inverter_average is None and "t_inverter_average" in self.model_fields_set:
|
|
447
485
|
_dict['tInverterAverage'] = None
|
|
448
486
|
|
|
449
487
|
# set to None if t_inverter_min (nullable) is None
|
|
450
|
-
# and
|
|
451
|
-
if self.t_inverter_min is None and "t_inverter_min" in self.
|
|
488
|
+
# and model_fields_set contains the field
|
|
489
|
+
if self.t_inverter_min is None and "t_inverter_min" in self.model_fields_set:
|
|
452
490
|
_dict['tInverterMin'] = None
|
|
453
491
|
|
|
454
492
|
# set to None if t_inverter_max (nullable) is None
|
|
455
|
-
# and
|
|
456
|
-
if self.t_inverter_max is None and "t_inverter_max" in self.
|
|
493
|
+
# and model_fields_set contains the field
|
|
494
|
+
if self.t_inverter_max is None and "t_inverter_max" in self.model_fields_set:
|
|
457
495
|
_dict['tInverterMax'] = None
|
|
458
496
|
|
|
459
497
|
# set to None if t_compressor_in_average (nullable) is None
|
|
460
|
-
# and
|
|
461
|
-
if self.t_compressor_in_average is None and "t_compressor_in_average" in self.
|
|
498
|
+
# and model_fields_set contains the field
|
|
499
|
+
if self.t_compressor_in_average is None and "t_compressor_in_average" in self.model_fields_set:
|
|
462
500
|
_dict['tCompressorInAverage'] = None
|
|
463
501
|
|
|
464
502
|
# set to None if t_compressor_in_min (nullable) is None
|
|
465
|
-
# and
|
|
466
|
-
if self.t_compressor_in_min is None and "t_compressor_in_min" in self.
|
|
503
|
+
# and model_fields_set contains the field
|
|
504
|
+
if self.t_compressor_in_min is None and "t_compressor_in_min" in self.model_fields_set:
|
|
467
505
|
_dict['tCompressorInMin'] = None
|
|
468
506
|
|
|
469
507
|
# set to None if t_compressor_in_max (nullable) is None
|
|
470
|
-
# and
|
|
471
|
-
if self.t_compressor_in_max is None and "t_compressor_in_max" in self.
|
|
508
|
+
# and model_fields_set contains the field
|
|
509
|
+
if self.t_compressor_in_max is None and "t_compressor_in_max" in self.model_fields_set:
|
|
472
510
|
_dict['tCompressorInMax'] = None
|
|
473
511
|
|
|
474
512
|
# set to None if t_compressor_out_average (nullable) is None
|
|
475
|
-
# and
|
|
476
|
-
if self.t_compressor_out_average is None and "t_compressor_out_average" in self.
|
|
513
|
+
# and model_fields_set contains the field
|
|
514
|
+
if self.t_compressor_out_average is None and "t_compressor_out_average" in self.model_fields_set:
|
|
477
515
|
_dict['tCompressorOutAverage'] = None
|
|
478
516
|
|
|
479
517
|
# set to None if t_compressor_out_min (nullable) is None
|
|
480
|
-
# and
|
|
481
|
-
if self.t_compressor_out_min is None and "t_compressor_out_min" in self.
|
|
518
|
+
# and model_fields_set contains the field
|
|
519
|
+
if self.t_compressor_out_min is None and "t_compressor_out_min" in self.model_fields_set:
|
|
482
520
|
_dict['tCompressorOutMin'] = None
|
|
483
521
|
|
|
484
522
|
# set to None if t_compressor_out_max (nullable) is None
|
|
485
|
-
# and
|
|
486
|
-
if self.t_compressor_out_max is None and "t_compressor_out_max" in self.
|
|
523
|
+
# and model_fields_set contains the field
|
|
524
|
+
if self.t_compressor_out_max is None and "t_compressor_out_max" in self.model_fields_set:
|
|
487
525
|
_dict['tCompressorOutMax'] = None
|
|
488
526
|
|
|
489
527
|
# set to None if t_compressor_in_transient_average (nullable) is None
|
|
490
|
-
# and
|
|
491
|
-
if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.
|
|
528
|
+
# and model_fields_set contains the field
|
|
529
|
+
if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.model_fields_set:
|
|
492
530
|
_dict['tCompressorInTransientAverage'] = None
|
|
493
531
|
|
|
494
532
|
# set to None if t_compressor_in_transient_min (nullable) is None
|
|
495
|
-
# and
|
|
496
|
-
if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.
|
|
533
|
+
# and model_fields_set contains the field
|
|
534
|
+
if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.model_fields_set:
|
|
497
535
|
_dict['tCompressorInTransientMin'] = None
|
|
498
536
|
|
|
499
537
|
# set to None if t_compressor_in_transient_max (nullable) is None
|
|
500
|
-
# and
|
|
501
|
-
if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.
|
|
538
|
+
# and model_fields_set contains the field
|
|
539
|
+
if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.model_fields_set:
|
|
502
540
|
_dict['tCompressorInTransientMax'] = None
|
|
503
541
|
|
|
504
542
|
# set to None if t_compressor_out_transient_average (nullable) is None
|
|
505
|
-
# and
|
|
506
|
-
if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.
|
|
543
|
+
# and model_fields_set contains the field
|
|
544
|
+
if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.model_fields_set:
|
|
507
545
|
_dict['tCompressorOutTransientAverage'] = None
|
|
508
546
|
|
|
509
547
|
# set to None if t_compressor_out_transient_min (nullable) is None
|
|
510
|
-
# and
|
|
511
|
-
if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.
|
|
548
|
+
# and model_fields_set contains the field
|
|
549
|
+
if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.model_fields_set:
|
|
512
550
|
_dict['tCompressorOutTransientMin'] = None
|
|
513
551
|
|
|
514
552
|
# set to None if t_compressor_out_transient_max (nullable) is None
|
|
515
|
-
# and
|
|
516
|
-
if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.
|
|
553
|
+
# and model_fields_set contains the field
|
|
554
|
+
if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.model_fields_set:
|
|
517
555
|
_dict['tCompressorOutTransientMax'] = None
|
|
518
556
|
|
|
519
557
|
# set to None if delta_t_compressor_in_superheat_average (nullable) is None
|
|
520
|
-
# and
|
|
521
|
-
if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.
|
|
558
|
+
# and model_fields_set contains the field
|
|
559
|
+
if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.model_fields_set:
|
|
522
560
|
_dict['deltaTCompressorInSuperheatAverage'] = None
|
|
523
561
|
|
|
524
562
|
# set to None if delta_t_compressor_in_superheat_min (nullable) is None
|
|
525
|
-
# and
|
|
526
|
-
if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.
|
|
563
|
+
# and model_fields_set contains the field
|
|
564
|
+
if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.model_fields_set:
|
|
527
565
|
_dict['deltaTCompressorInSuperheatMin'] = None
|
|
528
566
|
|
|
529
567
|
# set to None if delta_t_compressor_in_superheat_max (nullable) is None
|
|
530
|
-
# and
|
|
531
|
-
if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.
|
|
568
|
+
# and model_fields_set contains the field
|
|
569
|
+
if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.model_fields_set:
|
|
532
570
|
_dict['deltaTCompressorInSuperheatMax'] = None
|
|
533
571
|
|
|
534
572
|
# set to None if compressor_power_low_accuracy_average (nullable) is None
|
|
535
|
-
# and
|
|
536
|
-
if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.
|
|
573
|
+
# and model_fields_set contains the field
|
|
574
|
+
if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.model_fields_set:
|
|
537
575
|
_dict['compressorPowerLowAccuracyAverage'] = None
|
|
538
576
|
|
|
539
577
|
# set to None if compressor_power_low_accuracy_min (nullable) is None
|
|
540
|
-
# and
|
|
541
|
-
if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.
|
|
578
|
+
# and model_fields_set contains the field
|
|
579
|
+
if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.model_fields_set:
|
|
542
580
|
_dict['compressorPowerLowAccuracyMin'] = None
|
|
543
581
|
|
|
544
582
|
# set to None if compressor_power_low_accuracy_max (nullable) is None
|
|
545
|
-
# and
|
|
546
|
-
if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.
|
|
583
|
+
# and model_fields_set contains the field
|
|
584
|
+
if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.model_fields_set:
|
|
547
585
|
_dict['compressorPowerLowAccuracyMax'] = None
|
|
548
586
|
|
|
549
587
|
# set to None if fan_average (nullable) is None
|
|
550
|
-
# and
|
|
551
|
-
if self.fan_average is None and "fan_average" in self.
|
|
588
|
+
# and model_fields_set contains the field
|
|
589
|
+
if self.fan_average is None and "fan_average" in self.model_fields_set:
|
|
552
590
|
_dict['fanAverage'] = None
|
|
553
591
|
|
|
554
592
|
# set to None if fan_min (nullable) is None
|
|
555
|
-
# and
|
|
556
|
-
if self.fan_min is None and "fan_min" in self.
|
|
593
|
+
# and model_fields_set contains the field
|
|
594
|
+
if self.fan_min is None and "fan_min" in self.model_fields_set:
|
|
557
595
|
_dict['fanMin'] = None
|
|
558
596
|
|
|
559
597
|
# set to None if fan_max (nullable) is None
|
|
560
|
-
# and
|
|
561
|
-
if self.fan_max is None and "fan_max" in self.
|
|
598
|
+
# and model_fields_set contains the field
|
|
599
|
+
if self.fan_max is None and "fan_max" in self.model_fields_set:
|
|
562
600
|
_dict['fanMax'] = None
|
|
563
601
|
|
|
564
602
|
# set to None if fan_power_average (nullable) is None
|
|
565
|
-
# and
|
|
566
|
-
if self.fan_power_average is None and "fan_power_average" in self.
|
|
603
|
+
# and model_fields_set contains the field
|
|
604
|
+
if self.fan_power_average is None and "fan_power_average" in self.model_fields_set:
|
|
567
605
|
_dict['fanPowerAverage'] = None
|
|
568
606
|
|
|
569
607
|
# set to None if fan_power_min (nullable) is None
|
|
570
|
-
# and
|
|
571
|
-
if self.fan_power_min is None and "fan_power_min" in self.
|
|
608
|
+
# and model_fields_set contains the field
|
|
609
|
+
if self.fan_power_min is None and "fan_power_min" in self.model_fields_set:
|
|
572
610
|
_dict['fanPowerMin'] = None
|
|
573
611
|
|
|
574
612
|
# set to None if fan_power_max (nullable) is None
|
|
575
|
-
# and
|
|
576
|
-
if self.fan_power_max is None and "fan_power_max" in self.
|
|
613
|
+
# and model_fields_set contains the field
|
|
614
|
+
if self.fan_power_max is None and "fan_power_max" in self.model_fields_set:
|
|
577
615
|
_dict['fanPowerMax'] = None
|
|
578
616
|
|
|
579
617
|
# set to None if cm_mass_power_in_average (nullable) is None
|
|
580
|
-
# and
|
|
581
|
-
if self.cm_mass_power_in_average is None and "cm_mass_power_in_average" in self.
|
|
618
|
+
# and model_fields_set contains the field
|
|
619
|
+
if self.cm_mass_power_in_average is None and "cm_mass_power_in_average" in self.model_fields_set:
|
|
582
620
|
_dict['cmMassPowerInAverage'] = None
|
|
583
621
|
|
|
584
622
|
# set to None if cm_mass_power_out_average (nullable) is None
|
|
585
|
-
# and
|
|
586
|
-
if self.cm_mass_power_out_average is None and "cm_mass_power_out_average" in self.
|
|
623
|
+
# and model_fields_set contains the field
|
|
624
|
+
if self.cm_mass_power_out_average is None and "cm_mass_power_out_average" in self.model_fields_set:
|
|
587
625
|
_dict['cmMassPowerOutAverage'] = None
|
|
588
626
|
|
|
589
|
-
# set to None if
|
|
590
|
-
# and
|
|
591
|
-
if self.
|
|
592
|
-
_dict['
|
|
593
|
-
|
|
594
|
-
# set to None if
|
|
595
|
-
# and
|
|
596
|
-
if self.
|
|
597
|
-
_dict['
|
|
598
|
-
|
|
599
|
-
# set to None if
|
|
600
|
-
# and
|
|
601
|
-
if self.
|
|
602
|
-
_dict['
|
|
603
|
-
|
|
604
|
-
# set to None if
|
|
605
|
-
# and
|
|
606
|
-
if self.
|
|
607
|
-
_dict['
|
|
608
|
-
|
|
609
|
-
# set to None if
|
|
610
|
-
# and
|
|
611
|
-
if self.
|
|
612
|
-
_dict['
|
|
613
|
-
|
|
614
|
-
# set to None if
|
|
615
|
-
# and
|
|
616
|
-
if self.
|
|
617
|
-
_dict['
|
|
627
|
+
# set to None if temperature_error_integral_average (nullable) is None
|
|
628
|
+
# and model_fields_set contains the field
|
|
629
|
+
if self.temperature_error_integral_average is None and "temperature_error_integral_average" in self.model_fields_set:
|
|
630
|
+
_dict['temperatureErrorIntegralAverage'] = None
|
|
631
|
+
|
|
632
|
+
# set to None if temperature_error_integral_min (nullable) is None
|
|
633
|
+
# and model_fields_set contains the field
|
|
634
|
+
if self.temperature_error_integral_min is None and "temperature_error_integral_min" in self.model_fields_set:
|
|
635
|
+
_dict['temperatureErrorIntegralMin'] = None
|
|
636
|
+
|
|
637
|
+
# set to None if temperature_error_integral_max (nullable) is None
|
|
638
|
+
# and model_fields_set contains the field
|
|
639
|
+
if self.temperature_error_integral_max is None and "temperature_error_integral_max" in self.model_fields_set:
|
|
640
|
+
_dict['temperatureErrorIntegralMax'] = None
|
|
641
|
+
|
|
642
|
+
# set to None if ot_boiler_feed_temperature_average (nullable) is None
|
|
643
|
+
# and model_fields_set contains the field
|
|
644
|
+
if self.ot_boiler_feed_temperature_average is None and "ot_boiler_feed_temperature_average" in self.model_fields_set:
|
|
645
|
+
_dict['otBoilerFeedTemperatureAverage'] = None
|
|
646
|
+
|
|
647
|
+
# set to None if ot_boiler_feed_temperature_min (nullable) is None
|
|
648
|
+
# and model_fields_set contains the field
|
|
649
|
+
if self.ot_boiler_feed_temperature_min is None and "ot_boiler_feed_temperature_min" in self.model_fields_set:
|
|
650
|
+
_dict['otBoilerFeedTemperatureMin'] = None
|
|
651
|
+
|
|
652
|
+
# set to None if ot_boiler_feed_temperature_max (nullable) is None
|
|
653
|
+
# and model_fields_set contains the field
|
|
654
|
+
if self.ot_boiler_feed_temperature_max is None and "ot_boiler_feed_temperature_max" in self.model_fields_set:
|
|
655
|
+
_dict['otBoilerFeedTemperatureMax'] = None
|
|
656
|
+
|
|
657
|
+
# set to None if ot_boiler_return_temperature_average (nullable) is None
|
|
658
|
+
# and model_fields_set contains the field
|
|
659
|
+
if self.ot_boiler_return_temperature_average is None and "ot_boiler_return_temperature_average" in self.model_fields_set:
|
|
660
|
+
_dict['otBoilerReturnTemperatureAverage'] = None
|
|
661
|
+
|
|
662
|
+
# set to None if ot_boiler_return_temperature_min (nullable) is None
|
|
663
|
+
# and model_fields_set contains the field
|
|
664
|
+
if self.ot_boiler_return_temperature_min is None and "ot_boiler_return_temperature_min" in self.model_fields_set:
|
|
665
|
+
_dict['otBoilerReturnTemperatureMin'] = None
|
|
666
|
+
|
|
667
|
+
# set to None if ot_boiler_return_temperature_max (nullable) is None
|
|
668
|
+
# and model_fields_set contains the field
|
|
669
|
+
if self.ot_boiler_return_temperature_max is None and "ot_boiler_return_temperature_max" in self.model_fields_set:
|
|
670
|
+
_dict['otBoilerReturnTemperatureMax'] = None
|
|
618
671
|
|
|
619
672
|
return _dict
|
|
620
673
|
|
|
621
674
|
@classmethod
|
|
622
|
-
def from_dict(cls, obj:
|
|
675
|
+
def from_dict(cls, obj: Dict) -> Self:
|
|
623
676
|
"""Create an instance of HeatPumpLogViewDto from a dict"""
|
|
624
677
|
if obj is None:
|
|
625
678
|
return None
|
|
626
679
|
|
|
627
680
|
if not isinstance(obj, dict):
|
|
628
|
-
return
|
|
681
|
+
return cls.model_validate(obj)
|
|
629
682
|
|
|
630
|
-
_obj =
|
|
631
|
-
"
|
|
683
|
+
_obj = cls.model_validate({
|
|
684
|
+
"timeBucket": obj.get("timeBucket"),
|
|
632
685
|
"interval": obj.get("interval"),
|
|
633
|
-
"
|
|
634
|
-
"
|
|
635
|
-
"
|
|
636
|
-
"
|
|
637
|
-
"
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"
|
|
642
|
-
"
|
|
643
|
-
"
|
|
644
|
-
"
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
675
|
-
"
|
|
676
|
-
"
|
|
677
|
-
"
|
|
678
|
-
"
|
|
679
|
-
"
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"
|
|
684
|
-
"
|
|
685
|
-
"
|
|
686
|
-
"
|
|
687
|
-
"
|
|
688
|
-
"
|
|
689
|
-
"
|
|
690
|
-
"
|
|
691
|
-
"
|
|
692
|
-
"
|
|
693
|
-
"
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"
|
|
698
|
-
"
|
|
699
|
-
"
|
|
700
|
-
"
|
|
701
|
-
"
|
|
702
|
-
"
|
|
703
|
-
"
|
|
704
|
-
"
|
|
705
|
-
"
|
|
706
|
-
"
|
|
707
|
-
"
|
|
708
|
-
"
|
|
709
|
-
"
|
|
710
|
-
"
|
|
711
|
-
"
|
|
712
|
-
"
|
|
713
|
-
"
|
|
714
|
-
"
|
|
715
|
-
"
|
|
716
|
-
"
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
"
|
|
720
|
-
"
|
|
721
|
-
"
|
|
722
|
-
"
|
|
723
|
-
"
|
|
724
|
-
"
|
|
725
|
-
"
|
|
726
|
-
"
|
|
727
|
-
"
|
|
728
|
-
"
|
|
729
|
-
"
|
|
730
|
-
"
|
|
731
|
-
"
|
|
732
|
-
"
|
|
733
|
-
"
|
|
734
|
-
"
|
|
735
|
-
"
|
|
736
|
-
"
|
|
737
|
-
"
|
|
738
|
-
"
|
|
739
|
-
"
|
|
740
|
-
"
|
|
741
|
-
"
|
|
742
|
-
"
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
"
|
|
746
|
-
"
|
|
747
|
-
"
|
|
748
|
-
"
|
|
749
|
-
"
|
|
750
|
-
"
|
|
751
|
-
"
|
|
752
|
-
"
|
|
753
|
-
"
|
|
754
|
-
"
|
|
755
|
-
"
|
|
756
|
-
"
|
|
757
|
-
"
|
|
758
|
-
"
|
|
759
|
-
"
|
|
760
|
-
"
|
|
761
|
-
"t_thermostat_setpoint_max": obj.get("tThermostatSetpointMax"),
|
|
762
|
-
"ot_boiler_feed_temperature_average": obj.get("otBoilerFeedTemperatureAverage"),
|
|
763
|
-
"ot_boiler_feed_temperature_min": obj.get("otBoilerFeedTemperatureMin"),
|
|
764
|
-
"ot_boiler_feed_temperature_max": obj.get("otBoilerFeedTemperatureMax"),
|
|
765
|
-
"ot_boiler_return_temperature_average": obj.get("otBoilerReturnTemperatureAverage"),
|
|
766
|
-
"ot_boiler_return_temperature_min": obj.get("otBoilerReturnTemperatureMin"),
|
|
767
|
-
"ot_boiler_return_temperature_max": obj.get("otBoilerReturnTemperatureMax")
|
|
686
|
+
"timeCoveredInInterval": obj.get("timeCoveredInInterval"),
|
|
687
|
+
"heatPumpStateStandby": obj.get("heatPumpStateStandby"),
|
|
688
|
+
"heatPumpStateHeating": obj.get("heatPumpStateHeating"),
|
|
689
|
+
"heatPumpStateDefrost": obj.get("heatPumpStateDefrost"),
|
|
690
|
+
"heatPumpStateCooling": obj.get("heatPumpStateCooling"),
|
|
691
|
+
"heatPumpStateDHW": obj.get("heatPumpStateDHW"),
|
|
692
|
+
"heatPumpStateLegionella": obj.get("heatPumpStateLegionella"),
|
|
693
|
+
"rpmControlStartup": obj.get("rpmControlStartup"),
|
|
694
|
+
"rpmControlRunning": obj.get("rpmControlRunning"),
|
|
695
|
+
"rpmControlRunningAbnormally": obj.get("rpmControlRunningAbnormally"),
|
|
696
|
+
"rpmControlShutdown": obj.get("rpmControlShutdown"),
|
|
697
|
+
"controlBridgeStatusWaterPump": obj.get("controlBridgeStatusWaterPump"),
|
|
698
|
+
"controlBridgeStatusDhwValve": obj.get("controlBridgeStatusDhwValve"),
|
|
699
|
+
"controlBridgeStatusGasBoiler": obj.get("controlBridgeStatusGasBoiler"),
|
|
700
|
+
"controlBridgeStatusElectricHeater": obj.get("controlBridgeStatusElectricHeater"),
|
|
701
|
+
"controlBridgeStatusWaterPump2": obj.get("controlBridgeStatusWaterPump2"),
|
|
702
|
+
"dtcNone": obj.get("dtcNone"),
|
|
703
|
+
"dtcContinue": obj.get("dtcContinue"),
|
|
704
|
+
"dtcCompressorOff": obj.get("dtcCompressorOff"),
|
|
705
|
+
"dtcDefrostForbidden": obj.get("dtcDefrostForbidden"),
|
|
706
|
+
"dtcRequestService": obj.get("dtcRequestService"),
|
|
707
|
+
"dtcUseHeatingCurve": obj.get("dtcUseHeatingCurve"),
|
|
708
|
+
"dtcDhwForbidden": obj.get("dtcDhwForbidden"),
|
|
709
|
+
"dtcError": obj.get("dtcError"),
|
|
710
|
+
"dtcInactive": obj.get("dtcInactive"),
|
|
711
|
+
"signalStrengthAverage": obj.get("signalStrengthAverage"),
|
|
712
|
+
"signalStrengthMin": obj.get("signalStrengthMin"),
|
|
713
|
+
"signalStrengthMax": obj.get("signalStrengthMax"),
|
|
714
|
+
"t1Average": obj.get("t1Average"),
|
|
715
|
+
"t1Min": obj.get("t1Min"),
|
|
716
|
+
"t1Max": obj.get("t1Max"),
|
|
717
|
+
"t2Average": obj.get("t2Average"),
|
|
718
|
+
"t2Min": obj.get("t2Min"),
|
|
719
|
+
"t2Max": obj.get("t2Max"),
|
|
720
|
+
"tSpareNtcAverage": obj.get("tSpareNtcAverage"),
|
|
721
|
+
"tSpareNtcMin": obj.get("tSpareNtcMin"),
|
|
722
|
+
"tSpareNtcMax": obj.get("tSpareNtcMax"),
|
|
723
|
+
"tBoardAverage": obj.get("tBoardAverage"),
|
|
724
|
+
"tBoardMin": obj.get("tBoardMin"),
|
|
725
|
+
"tBoardMax": obj.get("tBoardMax"),
|
|
726
|
+
"tAirInAverage": obj.get("tAirInAverage"),
|
|
727
|
+
"tAirInMin": obj.get("tAirInMin"),
|
|
728
|
+
"tAirInMax": obj.get("tAirInMax"),
|
|
729
|
+
"tAirOutAverage": obj.get("tAirOutAverage"),
|
|
730
|
+
"tAirOutMin": obj.get("tAirOutMin"),
|
|
731
|
+
"tAirOutMax": obj.get("tAirOutMax"),
|
|
732
|
+
"tWaterInAverage": obj.get("tWaterInAverage"),
|
|
733
|
+
"tWaterInMin": obj.get("tWaterInMin"),
|
|
734
|
+
"tWaterInMax": obj.get("tWaterInMax"),
|
|
735
|
+
"tWaterOutAverage": obj.get("tWaterOutAverage"),
|
|
736
|
+
"tWaterOutMin": obj.get("tWaterOutMin"),
|
|
737
|
+
"tWaterOutMax": obj.get("tWaterOutMax"),
|
|
738
|
+
"tWaterHouseInAverage": obj.get("tWaterHouseInAverage"),
|
|
739
|
+
"tWaterHouseInMin": obj.get("tWaterHouseInMin"),
|
|
740
|
+
"tWaterHouseInMax": obj.get("tWaterHouseInMax"),
|
|
741
|
+
"rpmAverage": obj.get("rpmAverage"),
|
|
742
|
+
"rpmMin": obj.get("rpmMin"),
|
|
743
|
+
"rpmMax": obj.get("rpmMax"),
|
|
744
|
+
"rpmLimiterAverage": obj.get("rpmLimiterAverage"),
|
|
745
|
+
"rpmLimiterMin": obj.get("rpmLimiterMin"),
|
|
746
|
+
"rpmLimiterMax": obj.get("rpmLimiterMax"),
|
|
747
|
+
"rpmLimiterNoLimit": obj.get("rpmLimiterNoLimit"),
|
|
748
|
+
"rpmLimiterPowerLimit": obj.get("rpmLimiterPowerLimit"),
|
|
749
|
+
"rpmLimiterDefrost": obj.get("rpmLimiterDefrost"),
|
|
750
|
+
"rpmLimiterSilentHours": obj.get("rpmLimiterSilentHours"),
|
|
751
|
+
"rpmLimiterHPControl": obj.get("rpmLimiterHPControl"),
|
|
752
|
+
"rpmLimiterPressure": obj.get("rpmLimiterPressure"),
|
|
753
|
+
"rpmLimiterWaterOut": obj.get("rpmLimiterWaterOut"),
|
|
754
|
+
"rpmLimiterEnvelope": obj.get("rpmLimiterEnvelope"),
|
|
755
|
+
"rpmLimiterHouseIn": obj.get("rpmLimiterHouseIn"),
|
|
756
|
+
"pCompressorInAverage": obj.get("pCompressorInAverage"),
|
|
757
|
+
"pCompressorInMin": obj.get("pCompressorInMin"),
|
|
758
|
+
"pCompressorInMax": obj.get("pCompressorInMax"),
|
|
759
|
+
"pCompressorOutAverage": obj.get("pCompressorOutAverage"),
|
|
760
|
+
"pCompressorOutMin": obj.get("pCompressorOutMin"),
|
|
761
|
+
"pCompressorOutMax": obj.get("pCompressorOutMax"),
|
|
762
|
+
"pCompressorInTargetAverage": obj.get("pCompressorInTargetAverage"),
|
|
763
|
+
"pCompressorInTargetMin": obj.get("pCompressorInTargetMin"),
|
|
764
|
+
"pCompressorInTargetMax": obj.get("pCompressorInTargetMax"),
|
|
765
|
+
"tInverterAverage": obj.get("tInverterAverage"),
|
|
766
|
+
"tInverterMin": obj.get("tInverterMin"),
|
|
767
|
+
"tInverterMax": obj.get("tInverterMax"),
|
|
768
|
+
"tCompressorInAverage": obj.get("tCompressorInAverage"),
|
|
769
|
+
"tCompressorInMin": obj.get("tCompressorInMin"),
|
|
770
|
+
"tCompressorInMax": obj.get("tCompressorInMax"),
|
|
771
|
+
"tCompressorOutAverage": obj.get("tCompressorOutAverage"),
|
|
772
|
+
"tCompressorOutMin": obj.get("tCompressorOutMin"),
|
|
773
|
+
"tCompressorOutMax": obj.get("tCompressorOutMax"),
|
|
774
|
+
"tCompressorInTransientAverage": obj.get("tCompressorInTransientAverage"),
|
|
775
|
+
"tCompressorInTransientMin": obj.get("tCompressorInTransientMin"),
|
|
776
|
+
"tCompressorInTransientMax": obj.get("tCompressorInTransientMax"),
|
|
777
|
+
"tCompressorOutTransientAverage": obj.get("tCompressorOutTransientAverage"),
|
|
778
|
+
"tCompressorOutTransientMin": obj.get("tCompressorOutTransientMin"),
|
|
779
|
+
"tCompressorOutTransientMax": obj.get("tCompressorOutTransientMax"),
|
|
780
|
+
"deltaTCompressorInSuperheatAverage": obj.get("deltaTCompressorInSuperheatAverage"),
|
|
781
|
+
"deltaTCompressorInSuperheatMin": obj.get("deltaTCompressorInSuperheatMin"),
|
|
782
|
+
"deltaTCompressorInSuperheatMax": obj.get("deltaTCompressorInSuperheatMax"),
|
|
783
|
+
"compressorPowerLowAccuracyAverage": obj.get("compressorPowerLowAccuracyAverage"),
|
|
784
|
+
"compressorPowerLowAccuracyMin": obj.get("compressorPowerLowAccuracyMin"),
|
|
785
|
+
"compressorPowerLowAccuracyMax": obj.get("compressorPowerLowAccuracyMax"),
|
|
786
|
+
"fanAverage": obj.get("fanAverage"),
|
|
787
|
+
"fanMin": obj.get("fanMin"),
|
|
788
|
+
"fanMax": obj.get("fanMax"),
|
|
789
|
+
"fanPowerAverage": obj.get("fanPowerAverage"),
|
|
790
|
+
"fanPowerMin": obj.get("fanPowerMin"),
|
|
791
|
+
"fanPowerMax": obj.get("fanPowerMax"),
|
|
792
|
+
"cmMassPowerInAverage": obj.get("cmMassPowerInAverage"),
|
|
793
|
+
"cmMassPowerOutAverage": obj.get("cmMassPowerOutAverage"),
|
|
794
|
+
"temperatureErrorIntegralAverage": obj.get("temperatureErrorIntegralAverage"),
|
|
795
|
+
"temperatureErrorIntegralMin": obj.get("temperatureErrorIntegralMin"),
|
|
796
|
+
"temperatureErrorIntegralMax": obj.get("temperatureErrorIntegralMax"),
|
|
797
|
+
"thermostatStateOff": obj.get("thermostatStateOff"),
|
|
798
|
+
"thermostatStateOn": obj.get("thermostatStateOn"),
|
|
799
|
+
"tRoomAverage": obj.get("tRoomAverage"),
|
|
800
|
+
"tRoomMin": obj.get("tRoomMin"),
|
|
801
|
+
"tRoomMax": obj.get("tRoomMax"),
|
|
802
|
+
"tRoomTargetAverage": obj.get("tRoomTargetAverage"),
|
|
803
|
+
"tRoomTargetMin": obj.get("tRoomTargetMin"),
|
|
804
|
+
"tRoomTargetMax": obj.get("tRoomTargetMax"),
|
|
805
|
+
"tThermostatSetpointAverage": obj.get("tThermostatSetpointAverage"),
|
|
806
|
+
"tThermostatSetpointMin": obj.get("tThermostatSetpointMin"),
|
|
807
|
+
"tThermostatSetpointMax": obj.get("tThermostatSetpointMax"),
|
|
808
|
+
"otBoilerFeedTemperatureAverage": obj.get("otBoilerFeedTemperatureAverage"),
|
|
809
|
+
"otBoilerFeedTemperatureMin": obj.get("otBoilerFeedTemperatureMin"),
|
|
810
|
+
"otBoilerFeedTemperatureMax": obj.get("otBoilerFeedTemperatureMax"),
|
|
811
|
+
"otBoilerReturnTemperatureAverage": obj.get("otBoilerReturnTemperatureAverage"),
|
|
812
|
+
"otBoilerReturnTemperatureMin": obj.get("otBoilerReturnTemperatureMin"),
|
|
813
|
+
"otBoilerReturnTemperatureMax": obj.get("otBoilerReturnTemperatureMax")
|
|
768
814
|
})
|
|
769
815
|
return _obj
|
|
770
816
|
|