weheat 2024.11.1__py3-none-any.whl → 2025.11.24rc1__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.
- weheat/__init__.py +6 -2
- weheat/abstractions/__init__.py +1 -1
- weheat/abstractions/discovery.py +11 -7
- weheat/abstractions/heat_pump.py +223 -81
- weheat/abstractions/user.py +16 -11
- weheat/api/__init__.py +1 -0
- weheat/api/energy_log_api.py +615 -127
- weheat/api/heat_pump_api.py +580 -374
- weheat/api/heat_pump_log_api.py +884 -360
- weheat/api/user_api.py +260 -115
- weheat/api_client.py +238 -265
- weheat/api_response.py +11 -15
- weheat/configuration.py +14 -9
- weheat/exceptions.py +59 -25
- weheat/models/__init__.py +8 -0
- weheat/models/boiler_type.py +8 -3
- weheat/models/device_state.py +9 -5
- weheat/models/dhw_type.py +8 -3
- weheat/models/energy_view_dto.py +87 -65
- weheat/models/heat_pump_log_view_dto.py +1394 -559
- weheat/models/heat_pump_model.py +8 -3
- weheat/models/heat_pump_status_enum.py +9 -4
- weheat/models/pagination_metadata.py +95 -0
- weheat/models/raw_heat_pump_log_dto.py +438 -375
- weheat/models/raw_heatpump_log_and_is_online_dto.py +578 -0
- weheat/models/read_all_heat_pump_dto.py +69 -53
- weheat/models/read_all_heat_pump_dto_paged_response.py +107 -0
- weheat/models/read_heat_pump_dto.py +64 -48
- weheat/models/read_user_dto.py +55 -37
- weheat/models/read_user_me_dto.py +124 -0
- weheat/models/role.py +10 -4
- weheat/models/total_energy_aggregate.py +111 -0
- weheat/rest.py +152 -259
- weheat-2025.11.24rc1.dist-info/METADATA +104 -0
- weheat-2025.11.24rc1.dist-info/RECORD +39 -0
- {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info}/WHEEL +1 -1
- weheat/abstractions/auth.py +0 -34
- weheat/models/heat_pump_type.py +0 -42
- weheat-2024.11.1.dist-info/METADATA +0 -107
- weheat-2024.11.1.dist-info/RECORD +0 -36
- {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info/licenses}/LICENSE +0 -0
- {weheat-2024.11.1.dist-info → weheat-2025.11.24rc1.dist-info}/top_level.txt +0 -0
|
@@ -18,750 +18,1585 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import Optional, Union
|
|
22
|
-
from pydantic import BaseModel,
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
22
|
+
from pydantic import BaseModel, StrictFloat, StrictInt, StrictStr
|
|
23
|
+
from pydantic import Field
|
|
24
|
+
try:
|
|
25
|
+
from typing import Self
|
|
26
|
+
except ImportError:
|
|
27
|
+
from typing_extensions import Self
|
|
23
28
|
|
|
24
29
|
class HeatPumpLogViewDto(BaseModel):
|
|
25
30
|
"""
|
|
26
31
|
HeatPumpLogViewDto
|
|
27
|
-
"""
|
|
28
|
-
time_bucket: Optional[datetime] = Field(None,
|
|
29
|
-
interval: Optional[StrictStr] = Field(None, description="Interval Granularity of this HeatPumpLogViewDto (Correct intervals include: \"Hour\", \"Day\", \"Week\", \"Month\", \"Year\")")
|
|
30
|
-
time_covered_in_interval: Optional[StrictInt] = Field(None,
|
|
31
|
-
heat_pump_state_standby: Optional[StrictInt] = Field(None,
|
|
32
|
-
heat_pump_state_heating: Optional[StrictInt] = Field(None,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
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_cooling: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in the cooling state for this interval", alias="heatPumpStateCooling")
|
|
39
|
+
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")
|
|
40
|
+
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")
|
|
41
|
+
heat_pump_state_manual_control: Optional[StrictInt] = Field(default=None, description="Amount of seconds the heat pump spend in Manual Control state for this interval", alias="heatPumpStateManualControl")
|
|
42
|
+
heat_pump_state_dhw_defrost: Optional[StrictInt] = Field(default=None, alias="heatPumpStateDhwDefrost")
|
|
43
|
+
heat_pump_state_heating_defrost: Optional[StrictInt] = Field(default=None, alias="heatPumpStateHeatingDefrost")
|
|
44
|
+
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")
|
|
45
|
+
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")
|
|
46
|
+
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")
|
|
47
|
+
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")
|
|
48
|
+
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")
|
|
49
|
+
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")
|
|
50
|
+
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")
|
|
51
|
+
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")
|
|
52
|
+
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")
|
|
53
|
+
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")
|
|
54
|
+
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")
|
|
55
|
+
t_air_in_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of air going into the heat pump for this interval", alias="tAirInMin")
|
|
56
|
+
t_air_in_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of air going into the heat pump for this interval", alias="tAirInMax")
|
|
57
|
+
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")
|
|
58
|
+
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")
|
|
59
|
+
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")
|
|
60
|
+
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")
|
|
61
|
+
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")
|
|
62
|
+
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")
|
|
63
|
+
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")
|
|
64
|
+
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")
|
|
65
|
+
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")
|
|
66
|
+
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")
|
|
67
|
+
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")
|
|
68
|
+
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")
|
|
69
|
+
t_room_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the room for this interval", alias="tRoomAverage")
|
|
70
|
+
t_room_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the room for this interval", alias="tRoomMin")
|
|
71
|
+
t_room_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the room for this interval", alias="tRoomMax")
|
|
72
|
+
t_room_target_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average target room temperature of the thermostat for this interval", alias="tRoomTargetAverage")
|
|
73
|
+
t_room_target_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum target room temperature of the thermostat for this interval", alias="tRoomTargetMin")
|
|
74
|
+
t_room_target_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum target room temperature of the thermostat for this interval", alias="tRoomTargetMax")
|
|
75
|
+
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")
|
|
76
|
+
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")
|
|
77
|
+
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")
|
|
78
|
+
ot_boiler_feed_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureAverage")
|
|
79
|
+
ot_boiler_feed_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMin")
|
|
80
|
+
ot_boiler_feed_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water feed temperature for this interval", alias="otBoilerFeedTemperatureMax")
|
|
81
|
+
ot_boiler_return_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureAverage")
|
|
82
|
+
ot_boiler_return_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMin")
|
|
83
|
+
ot_boiler_return_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum OpenTherm boiler water return temperature for this interval", alias="otBoilerReturnTemperatureMax")
|
|
84
|
+
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")
|
|
85
|
+
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")
|
|
86
|
+
rpm_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average RPM of the compressor for this interval (not for consumers)", alias="rpmAverage")
|
|
87
|
+
rpm_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum RPM of the compressor for this interval (not for consumers)", alias="rpmMin")
|
|
88
|
+
rpm_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum RPM of the compressor for this interval (not for consumers)", alias="rpmMax")
|
|
89
|
+
central_heating_flow_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowAverage")
|
|
90
|
+
central_heating_flow_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowMin")
|
|
91
|
+
central_heating_flow_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum flow rate for central heating circuit for this interval (staff only)", alias="centralHeatingFlowMax")
|
|
92
|
+
central_heating_flow_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in standby state for this interval (staff only)", alias="centralHeatingFlowStateStandby")
|
|
93
|
+
central_heating_flow_state_standby_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in standby (no PWM) state for this interval (staff only)", alias="centralHeatingFlowStateStandbyNoPwm")
|
|
94
|
+
central_heating_flow_state_motor_blocked: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in motor blocked state for this interval (staff only)", alias="centralHeatingFlowStateMotorBlocked")
|
|
95
|
+
central_heating_flow_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in pumping state for this interval (staff only)", alias="centralHeatingFlowStatePumping")
|
|
96
|
+
central_heating_flow_state_pumping_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in pumping (no PWM) state for this interval (staff only)", alias="centralHeatingFlowStatePumpingNoPwm")
|
|
97
|
+
central_heating_flow_state_suboptimal_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in suboptimal running state for this interval (staff only)", alias="centralHeatingFlowStateSuboptimalRunning")
|
|
98
|
+
central_heating_flow_state_stopped_momentarily: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in stopped momentarily state for this interval (staff only)", alias="centralHeatingFlowStateStoppedMomentarily")
|
|
99
|
+
central_heating_flow_state_stopped_permanent_damage: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating flow was in stopped permanent damage state for this interval (staff only)", alias="centralHeatingFlowStateStoppedPermanentDamage")
|
|
100
|
+
dhw_flow_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowAverage")
|
|
101
|
+
dhw_flow_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowMin")
|
|
102
|
+
dhw_flow_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum flow rate for DHW circuit for this interval (staff only)", alias="dhwFlowMax")
|
|
103
|
+
dhw_flow_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in standby state for this interval (staff only)", alias="dhwFlowStateStandby")
|
|
104
|
+
dhw_flow_state_standby_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in standby (no PWM) state for this interval (staff only)", alias="dhwFlowStateStandbyNoPwm")
|
|
105
|
+
dhw_flow_state_motor_blocked: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in motor blocked state for this interval (staff only)", alias="dhwFlowStateMotorBlocked")
|
|
106
|
+
dhw_flow_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in pumping state for this interval (staff only)", alias="dhwFlowStatePumping")
|
|
107
|
+
dhw_flow_state_pumping_no_pwm: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in pumping (no PWM) state for this interval (staff only)", alias="dhwFlowStatePumpingNoPwm")
|
|
108
|
+
dhw_flow_state_suboptimal_running: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in suboptimal running state for this interval (staff only)", alias="dhwFlowStateSuboptimalRunning")
|
|
109
|
+
dhw_flow_state_stopped_momentarily: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in stopped momentarily state for this interval (staff only)", alias="dhwFlowStateStoppedMomentarily")
|
|
110
|
+
dhw_flow_state_stopped_permanent_damage: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW flow was in stopped permanent damage state for this interval (staff only)", alias="dhwFlowStateStoppedPermanentDamage")
|
|
111
|
+
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")
|
|
112
|
+
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")
|
|
113
|
+
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")
|
|
114
|
+
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")
|
|
115
|
+
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")
|
|
116
|
+
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")
|
|
117
|
+
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")
|
|
118
|
+
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")
|
|
119
|
+
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")
|
|
120
|
+
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")
|
|
121
|
+
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")
|
|
122
|
+
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")
|
|
123
|
+
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")
|
|
124
|
+
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")
|
|
125
|
+
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")
|
|
126
|
+
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")
|
|
127
|
+
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")
|
|
128
|
+
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")
|
|
129
|
+
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")
|
|
130
|
+
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")
|
|
131
|
+
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")
|
|
132
|
+
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")
|
|
133
|
+
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")
|
|
134
|
+
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")
|
|
135
|
+
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")
|
|
136
|
+
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")
|
|
137
|
+
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")
|
|
138
|
+
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")
|
|
139
|
+
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")
|
|
140
|
+
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")
|
|
141
|
+
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")
|
|
142
|
+
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")
|
|
143
|
+
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")
|
|
144
|
+
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")
|
|
145
|
+
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")
|
|
146
|
+
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")
|
|
147
|
+
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")
|
|
148
|
+
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")
|
|
149
|
+
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")
|
|
150
|
+
fan_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average percentage of the fan used for this interval (staff only)", alias="fanAverage")
|
|
151
|
+
fan_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum percentage of the fan used for this interval (staff only)", alias="fanMin")
|
|
152
|
+
fan_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum percentage of the fan used for this interval (staff only)", alias="fanMax")
|
|
153
|
+
fan_power_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power used by the fan for this interval (staff only)", alias="fanPowerAverage")
|
|
154
|
+
fan_power_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power used by the fan for this interval (staff only)", alias="fanPowerMin")
|
|
155
|
+
fan_power_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power used by the fan for this interval (staff only)", alias="fanPowerMax")
|
|
156
|
+
temperature_error_integral_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralAverage")
|
|
157
|
+
temperature_error_integral_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMin")
|
|
158
|
+
temperature_error_integral_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum value of the TemperatureErrorIntegral for this interval (staff only)", alias="temperatureErrorIntegralMax")
|
|
159
|
+
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")
|
|
160
|
+
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")
|
|
161
|
+
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")
|
|
162
|
+
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")
|
|
163
|
+
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")
|
|
164
|
+
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")
|
|
165
|
+
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")
|
|
166
|
+
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")
|
|
167
|
+
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")
|
|
168
|
+
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")
|
|
169
|
+
valve_average: Optional[StrictInt] = Field(default=None, description="Average valve position for this interval.", alias="valveAverage")
|
|
170
|
+
valve_min: Optional[StrictInt] = Field(default=None, description="Minimum valve position for this interval.", alias="valveMin")
|
|
171
|
+
valve_max: Optional[StrictInt] = Field(default=None, description="Maximum valve position for this interval.", alias="valveMax")
|
|
172
|
+
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")
|
|
173
|
+
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")
|
|
174
|
+
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")
|
|
175
|
+
t_inverter_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the inverter for this interval (staff only)", alias="tInverterAverage")
|
|
176
|
+
t_inverter_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the inverter for this interval (staff only)", alias="tInverterMin")
|
|
177
|
+
t_inverter_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the inverter for this interval (staff only)", alias="tInverterMax")
|
|
178
|
+
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")
|
|
179
|
+
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")
|
|
180
|
+
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")
|
|
181
|
+
cm_mass_power_in_standby_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyAverage")
|
|
182
|
+
cm_mass_power_in_standby_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyMin")
|
|
183
|
+
cm_mass_power_in_standby_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during standby state for this interval (staff only)", alias="cmMassPowerInStandbyMax")
|
|
184
|
+
cm_mass_power_in_heating_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingAverage")
|
|
185
|
+
cm_mass_power_in_heating_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingMin")
|
|
186
|
+
cm_mass_power_in_heating_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during heating state for this interval (staff only)", alias="cmMassPowerInHeatingMax")
|
|
187
|
+
cm_mass_power_in_cooling_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingAverage")
|
|
188
|
+
cm_mass_power_in_cooling_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingMin")
|
|
189
|
+
cm_mass_power_in_cooling_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during cooling state for this interval (staff only)", alias="cmMassPowerInCoolingMax")
|
|
190
|
+
cm_mass_power_in_heating_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostAverage")
|
|
191
|
+
cm_mass_power_in_heating_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostMin")
|
|
192
|
+
cm_mass_power_in_heating_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during heating with defrost state for this interval (staff only)", alias="cmMassPowerInHeatingDefrostMax")
|
|
193
|
+
cm_mass_power_in_dhw_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostAverage")
|
|
194
|
+
cm_mass_power_in_dhw_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostMin")
|
|
195
|
+
cm_mass_power_in_dhw_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during DHW with defrost state for this interval (staff only)", alias="cmMassPowerInDhwDefrostMax")
|
|
196
|
+
cm_mass_power_in_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostAverage")
|
|
197
|
+
cm_mass_power_in_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostMin")
|
|
198
|
+
cm_mass_power_in_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during defrost state for this interval (staff only)", alias="cmMassPowerInDefrostMax")
|
|
199
|
+
cm_mass_power_in_dhw_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwAverage")
|
|
200
|
+
cm_mass_power_in_dhw_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwMin")
|
|
201
|
+
cm_mass_power_in_dhw_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during DHW state for this interval (staff only)", alias="cmMassPowerInDhwMax")
|
|
202
|
+
cm_mass_power_in_manual_control_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power input during manual control state for this interval (staff only)", alias="cmMassPowerInManualControlAverage")
|
|
203
|
+
cm_mass_power_in_manual_control_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power input during manual control state for this interval (staff only)", alias="cmMassPowerInManualControlMin")
|
|
204
|
+
cm_mass_power_out_heating_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power input during manual control state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostAverage")
|
|
205
|
+
cm_mass_power_out_heating_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during heating with defrost state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostMin")
|
|
206
|
+
cm_mass_power_out_heating_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during heating with defrost state for this interval (staff only)", alias="cmMassPowerOutHeatingDefrostMax")
|
|
207
|
+
cm_mass_power_out_dhw_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostAverage")
|
|
208
|
+
cm_mass_power_out_dhw_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostMin")
|
|
209
|
+
cm_mass_power_out_dhw_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during DHW with defrost state for this interval (staff only)", alias="cmMassPowerOutDhwDefrostMax")
|
|
210
|
+
cm_mass_power_in_manual_control_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, alias="cmMassPowerInManualControlMax")
|
|
211
|
+
cm_mass_power_out_standby_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyAverage")
|
|
212
|
+
cm_mass_power_out_standby_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyMin")
|
|
213
|
+
cm_mass_power_out_standby_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during standby state for this interval (staff only)", alias="cmMassPowerOutStandbyMax")
|
|
214
|
+
cm_mass_power_out_heating_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingAverage")
|
|
215
|
+
cm_mass_power_out_heating_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingMin")
|
|
216
|
+
cm_mass_power_out_heating_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during heating state for this interval (staff only)", alias="cmMassPowerOutHeatingMax")
|
|
217
|
+
cm_mass_power_out_cooling_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingAverage")
|
|
218
|
+
cm_mass_power_out_cooling_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingMin")
|
|
219
|
+
cm_mass_power_out_cooling_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during cooling state for this interval (staff only)", alias="cmMassPowerOutCoolingMax")
|
|
220
|
+
cm_mass_power_out_defrost_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostAverage")
|
|
221
|
+
cm_mass_power_out_defrost_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostMin")
|
|
222
|
+
cm_mass_power_out_defrost_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during defrost state for this interval (staff only)", alias="cmMassPowerOutDefrostMax")
|
|
223
|
+
cm_mass_power_out_dhw_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwAverage")
|
|
224
|
+
cm_mass_power_out_dhw_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwMin")
|
|
225
|
+
cm_mass_power_out_dhw_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during DHW state for this interval (staff only)", alias="cmMassPowerOutDhwMax")
|
|
226
|
+
cm_mass_power_out_manual_control_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlAverage")
|
|
227
|
+
cm_mass_power_out_manual_control_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlMin")
|
|
228
|
+
cm_mass_power_out_manual_control_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum power output during manual control state for this interval (staff only)", alias="cmMassPowerOutManualControlMax")
|
|
229
|
+
inverter_input_voltage_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageAverage")
|
|
230
|
+
inverter_input_voltage_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageMin")
|
|
231
|
+
inverter_input_voltage_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum input voltage measured by the compressor inverter for this interval (staff only)", alias="inverterInputVoltageMax")
|
|
232
|
+
central_heating_pwm_requested_duty_cycle_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleAverage")
|
|
233
|
+
central_heating_pwm_requested_duty_cycle_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleMin")
|
|
234
|
+
central_heating_pwm_requested_duty_cycle_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum requested duty cycle to pwm pump for central heating circuit for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleMax")
|
|
235
|
+
central_heating_pwm_requested_duty_cycle_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating PWM was in standby state (2%) for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleStateStandby")
|
|
236
|
+
central_heating_pwm_requested_duty_cycle_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the central heating PWM was in pumping state (6%-75%) for this interval (staff only)", alias="centralHeatingPwmRequestedDutyCycleStatePumping")
|
|
237
|
+
dhw_pwm_requested_duty_cycle_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleAverage")
|
|
238
|
+
dhw_pwm_requested_duty_cycle_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleMin")
|
|
239
|
+
dhw_pwm_requested_duty_cycle_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum requested duty cycle to pwm pump for DHW circuit for this interval (staff only)", alias="dhwPwmRequestedDutyCycleMax")
|
|
240
|
+
dhw_pwm_requested_duty_cycle_state_standby: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW PWM was in standby state (2%) for this interval (staff only)", alias="dhwPwmRequestedDutyCycleStateStandby")
|
|
241
|
+
dhw_pwm_requested_duty_cycle_state_pumping: Optional[StrictInt] = Field(default=None, description="Amount of seconds the DHW PWM was in pumping state (6%-75%) for this interval (staff only)", alias="dhwPwmRequestedDutyCycleStatePumping")
|
|
242
|
+
indoor_unit_heater_temperature_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureAverage")
|
|
243
|
+
indoor_unit_heater_temperature_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureMin")
|
|
244
|
+
indoor_unit_heater_temperature_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum temperature of the indoor unit heater for this interval (staff only)", alias="indoorUnitHeaterTemperatureMax")
|
|
245
|
+
indoor_unit_input_current_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentAverage")
|
|
246
|
+
indoor_unit_input_current_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentMin")
|
|
247
|
+
indoor_unit_input_current_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum current of the indoor unit heater for this interval (staff only)", alias="indoorUnitInputCurrentMax")
|
|
248
|
+
signal_sinr_average: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Average Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrAverage")
|
|
249
|
+
signal_sinr_min: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Minimum Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrMin")
|
|
250
|
+
signal_sinr_max: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Maximum Signal-to-Interference-plus-Noise Ratio (SINR) for this interval (staff only)", alias="signalSinrMax")
|
|
251
|
+
__properties: ClassVar[List[str]] = ["timeBucket", "interval", "timeCoveredInInterval", "heatPumpStateStandby", "heatPumpStateHeating", "heatPumpStateCooling", "heatPumpStateDhw", "heatPumpStateLegionella", "heatPumpStateManualControl", "heatPumpStateDhwDefrost", "heatPumpStateHeatingDefrost", "controlBridgeStatusWaterPump", "controlBridgeStatusGasBoiler", "controlBridgeStatusElectricHeater", "controlBridgeStatusWaterPump2", "t1Average", "t1Min", "t1Max", "t2Average", "t2Min", "t2Max", "tAirInAverage", "tAirInMin", "tAirInMax", "tAirOutAverage", "tAirOutMin", "tAirOutMax", "tWaterInAverage", "tWaterInMin", "tWaterInMax", "tWaterOutAverage", "tWaterOutMin", "tWaterOutMax", "tWaterHouseInAverage", "tWaterHouseInMin", "tWaterHouseInMax", "tRoomAverage", "tRoomMin", "tRoomMax", "tRoomTargetAverage", "tRoomTargetMin", "tRoomTargetMax", "tThermostatSetpointAverage", "tThermostatSetpointMin", "tThermostatSetpointMax", "otBoilerFeedTemperatureAverage", "otBoilerFeedTemperatureMin", "otBoilerFeedTemperatureMax", "otBoilerReturnTemperatureAverage", "otBoilerReturnTemperatureMin", "otBoilerReturnTemperatureMax", "thermostatStateOff", "thermostatStateOn", "rpmAverage", "rpmMin", "rpmMax", "centralHeatingFlowAverage", "centralHeatingFlowMin", "centralHeatingFlowMax", "centralHeatingFlowStateStandby", "centralHeatingFlowStateStandbyNoPwm", "centralHeatingFlowStateMotorBlocked", "centralHeatingFlowStatePumping", "centralHeatingFlowStatePumpingNoPwm", "centralHeatingFlowStateSuboptimalRunning", "centralHeatingFlowStateStoppedMomentarily", "centralHeatingFlowStateStoppedPermanentDamage", "dhwFlowAverage", "dhwFlowMin", "dhwFlowMax", "dhwFlowStateStandby", "dhwFlowStateStandbyNoPwm", "dhwFlowStateMotorBlocked", "dhwFlowStatePumping", "dhwFlowStatePumpingNoPwm", "dhwFlowStateSuboptimalRunning", "dhwFlowStateStoppedMomentarily", "dhwFlowStateStoppedPermanentDamage", "signalStrengthAverage", "signalStrengthMin", "signalStrengthMax", "rpmLimiterAverage", "rpmLimiterMin", "rpmLimiterMax", "rpmLimiterNoLimit", "rpmLimiterPowerLimit", "rpmLimiterDefrost", "rpmLimiterSilentHours", "rpmLimiterHPControl", "rpmLimiterPressure", "rpmLimiterWaterOut", "rpmLimiterEnvelope", "rpmLimiterHouseIn", "pCompressorInAverage", "pCompressorInMin", "pCompressorInMax", "pCompressorOutAverage", "pCompressorOutMin", "pCompressorOutMax", "pCompressorInTargetAverage", "pCompressorInTargetMin", "pCompressorInTargetMax", "tCompressorInAverage", "tCompressorInMin", "tCompressorInMax", "tCompressorOutAverage", "tCompressorOutMin", "tCompressorOutMax", "tCompressorInTransientAverage", "tCompressorInTransientMin", "tCompressorInTransientMax", "tCompressorOutTransientAverage", "tCompressorOutTransientMin", "tCompressorOutTransientMax", "deltaTCompressorInSuperheatAverage", "deltaTCompressorInSuperheatMin", "deltaTCompressorInSuperheatMax", "fanAverage", "fanMin", "fanMax", "fanPowerAverage", "fanPowerMin", "fanPowerMax", "temperatureErrorIntegralAverage", "temperatureErrorIntegralMin", "temperatureErrorIntegralMax", "dtcNone", "dtcContinue", "dtcCompressorOff", "dtcDefrostForbidden", "dtcRequestService", "dtcUseHeatingCurve", "dtcDhwForbidden", "dtcError", "dtcInactive", "controlBridgeStatusDhwValve", "valveAverage", "valveMin", "valveMax", "tBoardAverage", "tBoardMin", "tBoardMax", "tInverterAverage", "tInverterMin", "tInverterMax", "compressorPowerLowAccuracyAverage", "compressorPowerLowAccuracyMin", "compressorPowerLowAccuracyMax", "cmMassPowerInStandbyAverage", "cmMassPowerInStandbyMin", "cmMassPowerInStandbyMax", "cmMassPowerInHeatingAverage", "cmMassPowerInHeatingMin", "cmMassPowerInHeatingMax", "cmMassPowerInCoolingAverage", "cmMassPowerInCoolingMin", "cmMassPowerInCoolingMax", "cmMassPowerInHeatingDefrostAverage", "cmMassPowerInHeatingDefrostMin", "cmMassPowerInHeatingDefrostMax", "cmMassPowerInDhwDefrostAverage", "cmMassPowerInDhwDefrostMin", "cmMassPowerInDhwDefrostMax", "cmMassPowerInDefrostAverage", "cmMassPowerInDefrostMin", "cmMassPowerInDefrostMax", "cmMassPowerInDhwAverage", "cmMassPowerInDhwMin", "cmMassPowerInDhwMax", "cmMassPowerInManualControlAverage", "cmMassPowerInManualControlMin", "cmMassPowerOutHeatingDefrostAverage", "cmMassPowerOutHeatingDefrostMin", "cmMassPowerOutHeatingDefrostMax", "cmMassPowerOutDhwDefrostAverage", "cmMassPowerOutDhwDefrostMin", "cmMassPowerOutDhwDefrostMax", "cmMassPowerInManualControlMax", "cmMassPowerOutStandbyAverage", "cmMassPowerOutStandbyMin", "cmMassPowerOutStandbyMax", "cmMassPowerOutHeatingAverage", "cmMassPowerOutHeatingMin", "cmMassPowerOutHeatingMax", "cmMassPowerOutCoolingAverage", "cmMassPowerOutCoolingMin", "cmMassPowerOutCoolingMax", "cmMassPowerOutDefrostAverage", "cmMassPowerOutDefrostMin", "cmMassPowerOutDefrostMax", "cmMassPowerOutDhwAverage", "cmMassPowerOutDhwMin", "cmMassPowerOutDhwMax", "cmMassPowerOutManualControlAverage", "cmMassPowerOutManualControlMin", "cmMassPowerOutManualControlMax", "inverterInputVoltageAverage", "inverterInputVoltageMin", "inverterInputVoltageMax", "centralHeatingPwmRequestedDutyCycleAverage", "centralHeatingPwmRequestedDutyCycleMin", "centralHeatingPwmRequestedDutyCycleMax", "centralHeatingPwmRequestedDutyCycleStateStandby", "centralHeatingPwmRequestedDutyCycleStatePumping", "dhwPwmRequestedDutyCycleAverage", "dhwPwmRequestedDutyCycleMin", "dhwPwmRequestedDutyCycleMax", "dhwPwmRequestedDutyCycleStateStandby", "dhwPwmRequestedDutyCycleStatePumping", "indoorUnitHeaterTemperatureAverage", "indoorUnitHeaterTemperatureMin", "indoorUnitHeaterTemperatureMax", "indoorUnitInputCurrentAverage", "indoorUnitInputCurrentMin", "indoorUnitInputCurrentMax", "signalSinrAverage", "signalSinrMin", "signalSinrMax"]
|
|
252
|
+
|
|
253
|
+
model_config = {
|
|
254
|
+
"populate_by_name": True,
|
|
255
|
+
"validate_assignment": True,
|
|
256
|
+
"protected_namespaces": (),
|
|
257
|
+
}
|
|
258
|
+
|
|
171
259
|
|
|
172
260
|
def to_str(self) -> str:
|
|
173
261
|
"""Returns the string representation of the model using alias"""
|
|
174
|
-
return pprint.pformat(self.
|
|
262
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
175
263
|
|
|
176
264
|
def to_json(self) -> str:
|
|
177
265
|
"""Returns the JSON representation of the model using alias"""
|
|
266
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
178
267
|
return json.dumps(self.to_dict())
|
|
179
268
|
|
|
180
269
|
@classmethod
|
|
181
|
-
def from_json(cls, json_str: str) ->
|
|
270
|
+
def from_json(cls, json_str: str) -> Self:
|
|
182
271
|
"""Create an instance of HeatPumpLogViewDto from a JSON string"""
|
|
183
272
|
return cls.from_dict(json.loads(json_str))
|
|
184
273
|
|
|
185
|
-
def to_dict(self):
|
|
186
|
-
"""
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
274
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
275
|
+
"""Return the dictionary representation of the model using alias.
|
|
276
|
+
|
|
277
|
+
This has the following differences from calling pydantic's
|
|
278
|
+
`self.model_dump(by_alias=True)`:
|
|
279
|
+
|
|
280
|
+
* `None` is only added to the output dict for nullable fields that
|
|
281
|
+
were set at model initialization. Other fields with value `None`
|
|
282
|
+
are ignored.
|
|
283
|
+
"""
|
|
284
|
+
_dict = self.model_dump(
|
|
285
|
+
by_alias=True,
|
|
286
|
+
exclude={
|
|
287
|
+
},
|
|
288
|
+
exclude_none=True,
|
|
289
|
+
)
|
|
191
290
|
# set to None if interval (nullable) is None
|
|
192
|
-
# and
|
|
193
|
-
if self.interval is None and "interval" in self.
|
|
291
|
+
# and model_fields_set contains the field
|
|
292
|
+
if self.interval is None and "interval" in self.model_fields_set:
|
|
194
293
|
_dict['interval'] = None
|
|
195
294
|
|
|
196
|
-
# set to None if
|
|
197
|
-
# and
|
|
198
|
-
if self.
|
|
199
|
-
_dict['
|
|
200
|
-
|
|
201
|
-
# set to None if
|
|
202
|
-
# and
|
|
203
|
-
if self.
|
|
204
|
-
_dict['
|
|
205
|
-
|
|
206
|
-
# set to None if
|
|
207
|
-
# and
|
|
208
|
-
if self.
|
|
209
|
-
_dict['
|
|
210
|
-
|
|
211
|
-
# set to None if
|
|
212
|
-
# and
|
|
213
|
-
if self.
|
|
214
|
-
_dict['
|
|
215
|
-
|
|
216
|
-
# set to None if
|
|
217
|
-
# and
|
|
218
|
-
if self.
|
|
219
|
-
_dict['
|
|
220
|
-
|
|
221
|
-
# set to None if
|
|
222
|
-
# and
|
|
223
|
-
if self.
|
|
224
|
-
_dict['
|
|
225
|
-
|
|
226
|
-
# set to None if
|
|
227
|
-
# and
|
|
228
|
-
if self.
|
|
229
|
-
_dict['
|
|
230
|
-
|
|
231
|
-
# set to None if
|
|
232
|
-
# and
|
|
233
|
-
if self.
|
|
234
|
-
_dict['
|
|
235
|
-
|
|
236
|
-
# set to None if
|
|
237
|
-
# and
|
|
238
|
-
if self.
|
|
239
|
-
_dict['
|
|
240
|
-
|
|
241
|
-
# set to None if
|
|
242
|
-
# and
|
|
243
|
-
if self.
|
|
244
|
-
_dict['
|
|
245
|
-
|
|
246
|
-
# set to None if
|
|
247
|
-
# and
|
|
248
|
-
if self.
|
|
249
|
-
_dict['
|
|
250
|
-
|
|
251
|
-
# set to None if
|
|
252
|
-
# and
|
|
253
|
-
if self.
|
|
254
|
-
_dict['
|
|
255
|
-
|
|
256
|
-
# set to None if signal_strength_max (nullable) is None
|
|
257
|
-
# and __fields_set__ contains the field
|
|
258
|
-
if self.signal_strength_max is None and "signal_strength_max" in self.__fields_set__:
|
|
259
|
-
_dict['signalStrengthMax'] = None
|
|
295
|
+
# set to None if heat_pump_state_standby (nullable) is None
|
|
296
|
+
# and model_fields_set contains the field
|
|
297
|
+
if self.heat_pump_state_standby is None and "heat_pump_state_standby" in self.model_fields_set:
|
|
298
|
+
_dict['heatPumpStateStandby'] = None
|
|
299
|
+
|
|
300
|
+
# set to None if heat_pump_state_heating (nullable) is None
|
|
301
|
+
# and model_fields_set contains the field
|
|
302
|
+
if self.heat_pump_state_heating is None and "heat_pump_state_heating" in self.model_fields_set:
|
|
303
|
+
_dict['heatPumpStateHeating'] = None
|
|
304
|
+
|
|
305
|
+
# set to None if heat_pump_state_cooling (nullable) is None
|
|
306
|
+
# and model_fields_set contains the field
|
|
307
|
+
if self.heat_pump_state_cooling is None and "heat_pump_state_cooling" in self.model_fields_set:
|
|
308
|
+
_dict['heatPumpStateCooling'] = None
|
|
309
|
+
|
|
310
|
+
# set to None if heat_pump_state_dhw (nullable) is None
|
|
311
|
+
# and model_fields_set contains the field
|
|
312
|
+
if self.heat_pump_state_dhw is None and "heat_pump_state_dhw" in self.model_fields_set:
|
|
313
|
+
_dict['heatPumpStateDhw'] = None
|
|
314
|
+
|
|
315
|
+
# set to None if heat_pump_state_legionella (nullable) is None
|
|
316
|
+
# and model_fields_set contains the field
|
|
317
|
+
if self.heat_pump_state_legionella is None and "heat_pump_state_legionella" in self.model_fields_set:
|
|
318
|
+
_dict['heatPumpStateLegionella'] = None
|
|
319
|
+
|
|
320
|
+
# set to None if heat_pump_state_manual_control (nullable) is None
|
|
321
|
+
# and model_fields_set contains the field
|
|
322
|
+
if self.heat_pump_state_manual_control is None and "heat_pump_state_manual_control" in self.model_fields_set:
|
|
323
|
+
_dict['heatPumpStateManualControl'] = None
|
|
324
|
+
|
|
325
|
+
# set to None if heat_pump_state_dhw_defrost (nullable) is None
|
|
326
|
+
# and model_fields_set contains the field
|
|
327
|
+
if self.heat_pump_state_dhw_defrost is None and "heat_pump_state_dhw_defrost" in self.model_fields_set:
|
|
328
|
+
_dict['heatPumpStateDhwDefrost'] = None
|
|
329
|
+
|
|
330
|
+
# set to None if heat_pump_state_heating_defrost (nullable) is None
|
|
331
|
+
# and model_fields_set contains the field
|
|
332
|
+
if self.heat_pump_state_heating_defrost is None and "heat_pump_state_heating_defrost" in self.model_fields_set:
|
|
333
|
+
_dict['heatPumpStateHeatingDefrost'] = None
|
|
334
|
+
|
|
335
|
+
# set to None if control_bridge_status_water_pump (nullable) is None
|
|
336
|
+
# and model_fields_set contains the field
|
|
337
|
+
if self.control_bridge_status_water_pump is None and "control_bridge_status_water_pump" in self.model_fields_set:
|
|
338
|
+
_dict['controlBridgeStatusWaterPump'] = None
|
|
339
|
+
|
|
340
|
+
# set to None if control_bridge_status_gas_boiler (nullable) is None
|
|
341
|
+
# and model_fields_set contains the field
|
|
342
|
+
if self.control_bridge_status_gas_boiler is None and "control_bridge_status_gas_boiler" in self.model_fields_set:
|
|
343
|
+
_dict['controlBridgeStatusGasBoiler'] = None
|
|
344
|
+
|
|
345
|
+
# set to None if control_bridge_status_electric_heater (nullable) is None
|
|
346
|
+
# and model_fields_set contains the field
|
|
347
|
+
if self.control_bridge_status_electric_heater is None and "control_bridge_status_electric_heater" in self.model_fields_set:
|
|
348
|
+
_dict['controlBridgeStatusElectricHeater'] = None
|
|
349
|
+
|
|
350
|
+
# set to None if control_bridge_status_water_pump2 (nullable) is None
|
|
351
|
+
# and model_fields_set contains the field
|
|
352
|
+
if self.control_bridge_status_water_pump2 is None and "control_bridge_status_water_pump2" in self.model_fields_set:
|
|
353
|
+
_dict['controlBridgeStatusWaterPump2'] = None
|
|
260
354
|
|
|
261
355
|
# set to None if t1_average (nullable) is None
|
|
262
|
-
# and
|
|
263
|
-
if self.t1_average is None and "t1_average" in self.
|
|
356
|
+
# and model_fields_set contains the field
|
|
357
|
+
if self.t1_average is None and "t1_average" in self.model_fields_set:
|
|
264
358
|
_dict['t1Average'] = None
|
|
265
359
|
|
|
266
360
|
# set to None if t1_min (nullable) is None
|
|
267
|
-
# and
|
|
268
|
-
if self.t1_min is None and "t1_min" in self.
|
|
361
|
+
# and model_fields_set contains the field
|
|
362
|
+
if self.t1_min is None and "t1_min" in self.model_fields_set:
|
|
269
363
|
_dict['t1Min'] = None
|
|
270
364
|
|
|
271
365
|
# set to None if t1_max (nullable) is None
|
|
272
|
-
# and
|
|
273
|
-
if self.t1_max is None and "t1_max" in self.
|
|
366
|
+
# and model_fields_set contains the field
|
|
367
|
+
if self.t1_max is None and "t1_max" in self.model_fields_set:
|
|
274
368
|
_dict['t1Max'] = None
|
|
275
369
|
|
|
276
370
|
# set to None if t2_average (nullable) is None
|
|
277
|
-
# and
|
|
278
|
-
if self.t2_average is None and "t2_average" in self.
|
|
371
|
+
# and model_fields_set contains the field
|
|
372
|
+
if self.t2_average is None and "t2_average" in self.model_fields_set:
|
|
279
373
|
_dict['t2Average'] = None
|
|
280
374
|
|
|
281
375
|
# set to None if t2_min (nullable) is None
|
|
282
|
-
# and
|
|
283
|
-
if self.t2_min is None and "t2_min" in self.
|
|
376
|
+
# and model_fields_set contains the field
|
|
377
|
+
if self.t2_min is None and "t2_min" in self.model_fields_set:
|
|
284
378
|
_dict['t2Min'] = None
|
|
285
379
|
|
|
286
380
|
# set to None if t2_max (nullable) is None
|
|
287
|
-
# and
|
|
288
|
-
if self.t2_max is None and "t2_max" in self.
|
|
381
|
+
# and model_fields_set contains the field
|
|
382
|
+
if self.t2_max is None and "t2_max" in self.model_fields_set:
|
|
289
383
|
_dict['t2Max'] = None
|
|
290
384
|
|
|
291
|
-
# set to None if
|
|
292
|
-
# and
|
|
293
|
-
if self.
|
|
294
|
-
_dict['
|
|
295
|
-
|
|
296
|
-
# set to None if
|
|
297
|
-
# and
|
|
298
|
-
if self.
|
|
299
|
-
_dict['
|
|
300
|
-
|
|
301
|
-
# set to None if
|
|
302
|
-
# and
|
|
303
|
-
if self.
|
|
304
|
-
_dict['
|
|
305
|
-
|
|
306
|
-
# set to None if
|
|
307
|
-
# and
|
|
308
|
-
if self.
|
|
309
|
-
_dict['
|
|
310
|
-
|
|
311
|
-
# set to None if
|
|
312
|
-
# and
|
|
313
|
-
if self.
|
|
314
|
-
_dict['
|
|
315
|
-
|
|
316
|
-
# set to None if
|
|
317
|
-
# and
|
|
318
|
-
if self.
|
|
319
|
-
_dict['
|
|
385
|
+
# set to None if t_air_in_average (nullable) is None
|
|
386
|
+
# and model_fields_set contains the field
|
|
387
|
+
if self.t_air_in_average is None and "t_air_in_average" in self.model_fields_set:
|
|
388
|
+
_dict['tAirInAverage'] = None
|
|
389
|
+
|
|
390
|
+
# set to None if t_air_in_min (nullable) is None
|
|
391
|
+
# and model_fields_set contains the field
|
|
392
|
+
if self.t_air_in_min is None and "t_air_in_min" in self.model_fields_set:
|
|
393
|
+
_dict['tAirInMin'] = None
|
|
394
|
+
|
|
395
|
+
# set to None if t_air_in_max (nullable) is None
|
|
396
|
+
# and model_fields_set contains the field
|
|
397
|
+
if self.t_air_in_max is None and "t_air_in_max" in self.model_fields_set:
|
|
398
|
+
_dict['tAirInMax'] = None
|
|
399
|
+
|
|
400
|
+
# set to None if t_air_out_average (nullable) is None
|
|
401
|
+
# and model_fields_set contains the field
|
|
402
|
+
if self.t_air_out_average is None and "t_air_out_average" in self.model_fields_set:
|
|
403
|
+
_dict['tAirOutAverage'] = None
|
|
404
|
+
|
|
405
|
+
# set to None if t_air_out_min (nullable) is None
|
|
406
|
+
# and model_fields_set contains the field
|
|
407
|
+
if self.t_air_out_min is None and "t_air_out_min" in self.model_fields_set:
|
|
408
|
+
_dict['tAirOutMin'] = None
|
|
409
|
+
|
|
410
|
+
# set to None if t_air_out_max (nullable) is None
|
|
411
|
+
# and model_fields_set contains the field
|
|
412
|
+
if self.t_air_out_max is None and "t_air_out_max" in self.model_fields_set:
|
|
413
|
+
_dict['tAirOutMax'] = None
|
|
414
|
+
|
|
415
|
+
# set to None if t_water_in_average (nullable) is None
|
|
416
|
+
# and model_fields_set contains the field
|
|
417
|
+
if self.t_water_in_average is None and "t_water_in_average" in self.model_fields_set:
|
|
418
|
+
_dict['tWaterInAverage'] = None
|
|
419
|
+
|
|
420
|
+
# set to None if t_water_in_min (nullable) is None
|
|
421
|
+
# and model_fields_set contains the field
|
|
422
|
+
if self.t_water_in_min is None and "t_water_in_min" in self.model_fields_set:
|
|
423
|
+
_dict['tWaterInMin'] = None
|
|
424
|
+
|
|
425
|
+
# set to None if t_water_in_max (nullable) is None
|
|
426
|
+
# and model_fields_set contains the field
|
|
427
|
+
if self.t_water_in_max is None and "t_water_in_max" in self.model_fields_set:
|
|
428
|
+
_dict['tWaterInMax'] = None
|
|
429
|
+
|
|
430
|
+
# set to None if t_water_out_average (nullable) is None
|
|
431
|
+
# and model_fields_set contains the field
|
|
432
|
+
if self.t_water_out_average is None and "t_water_out_average" in self.model_fields_set:
|
|
433
|
+
_dict['tWaterOutAverage'] = None
|
|
434
|
+
|
|
435
|
+
# set to None if t_water_out_min (nullable) is None
|
|
436
|
+
# and model_fields_set contains the field
|
|
437
|
+
if self.t_water_out_min is None and "t_water_out_min" in self.model_fields_set:
|
|
438
|
+
_dict['tWaterOutMin'] = None
|
|
439
|
+
|
|
440
|
+
# set to None if t_water_out_max (nullable) is None
|
|
441
|
+
# and model_fields_set contains the field
|
|
442
|
+
if self.t_water_out_max is None and "t_water_out_max" in self.model_fields_set:
|
|
443
|
+
_dict['tWaterOutMax'] = None
|
|
444
|
+
|
|
445
|
+
# set to None if t_water_house_in_average (nullable) is None
|
|
446
|
+
# and model_fields_set contains the field
|
|
447
|
+
if self.t_water_house_in_average is None and "t_water_house_in_average" in self.model_fields_set:
|
|
448
|
+
_dict['tWaterHouseInAverage'] = None
|
|
449
|
+
|
|
450
|
+
# set to None if t_water_house_in_min (nullable) is None
|
|
451
|
+
# and model_fields_set contains the field
|
|
452
|
+
if self.t_water_house_in_min is None and "t_water_house_in_min" in self.model_fields_set:
|
|
453
|
+
_dict['tWaterHouseInMin'] = None
|
|
454
|
+
|
|
455
|
+
# set to None if t_water_house_in_max (nullable) is None
|
|
456
|
+
# and model_fields_set contains the field
|
|
457
|
+
if self.t_water_house_in_max is None and "t_water_house_in_max" in self.model_fields_set:
|
|
458
|
+
_dict['tWaterHouseInMax'] = None
|
|
459
|
+
|
|
460
|
+
# set to None if t_room_average (nullable) is None
|
|
461
|
+
# and model_fields_set contains the field
|
|
462
|
+
if self.t_room_average is None and "t_room_average" in self.model_fields_set:
|
|
463
|
+
_dict['tRoomAverage'] = None
|
|
464
|
+
|
|
465
|
+
# set to None if t_room_min (nullable) is None
|
|
466
|
+
# and model_fields_set contains the field
|
|
467
|
+
if self.t_room_min is None and "t_room_min" in self.model_fields_set:
|
|
468
|
+
_dict['tRoomMin'] = None
|
|
469
|
+
|
|
470
|
+
# set to None if t_room_max (nullable) is None
|
|
471
|
+
# and model_fields_set contains the field
|
|
472
|
+
if self.t_room_max is None and "t_room_max" in self.model_fields_set:
|
|
473
|
+
_dict['tRoomMax'] = None
|
|
474
|
+
|
|
475
|
+
# set to None if t_room_target_average (nullable) is None
|
|
476
|
+
# and model_fields_set contains the field
|
|
477
|
+
if self.t_room_target_average is None and "t_room_target_average" in self.model_fields_set:
|
|
478
|
+
_dict['tRoomTargetAverage'] = None
|
|
479
|
+
|
|
480
|
+
# set to None if t_room_target_min (nullable) is None
|
|
481
|
+
# and model_fields_set contains the field
|
|
482
|
+
if self.t_room_target_min is None and "t_room_target_min" in self.model_fields_set:
|
|
483
|
+
_dict['tRoomTargetMin'] = None
|
|
484
|
+
|
|
485
|
+
# set to None if t_room_target_max (nullable) is None
|
|
486
|
+
# and model_fields_set contains the field
|
|
487
|
+
if self.t_room_target_max is None and "t_room_target_max" in self.model_fields_set:
|
|
488
|
+
_dict['tRoomTargetMax'] = None
|
|
489
|
+
|
|
490
|
+
# set to None if t_thermostat_setpoint_average (nullable) is None
|
|
491
|
+
# and model_fields_set contains the field
|
|
492
|
+
if self.t_thermostat_setpoint_average is None and "t_thermostat_setpoint_average" in self.model_fields_set:
|
|
493
|
+
_dict['tThermostatSetpointAverage'] = None
|
|
494
|
+
|
|
495
|
+
# set to None if t_thermostat_setpoint_min (nullable) is None
|
|
496
|
+
# and model_fields_set contains the field
|
|
497
|
+
if self.t_thermostat_setpoint_min is None and "t_thermostat_setpoint_min" in self.model_fields_set:
|
|
498
|
+
_dict['tThermostatSetpointMin'] = None
|
|
499
|
+
|
|
500
|
+
# set to None if t_thermostat_setpoint_max (nullable) is None
|
|
501
|
+
# and model_fields_set contains the field
|
|
502
|
+
if self.t_thermostat_setpoint_max is None and "t_thermostat_setpoint_max" in self.model_fields_set:
|
|
503
|
+
_dict['tThermostatSetpointMax'] = None
|
|
504
|
+
|
|
505
|
+
# set to None if ot_boiler_feed_temperature_average (nullable) is None
|
|
506
|
+
# and model_fields_set contains the field
|
|
507
|
+
if self.ot_boiler_feed_temperature_average is None and "ot_boiler_feed_temperature_average" in self.model_fields_set:
|
|
508
|
+
_dict['otBoilerFeedTemperatureAverage'] = None
|
|
509
|
+
|
|
510
|
+
# set to None if ot_boiler_feed_temperature_min (nullable) is None
|
|
511
|
+
# and model_fields_set contains the field
|
|
512
|
+
if self.ot_boiler_feed_temperature_min is None and "ot_boiler_feed_temperature_min" in self.model_fields_set:
|
|
513
|
+
_dict['otBoilerFeedTemperatureMin'] = None
|
|
514
|
+
|
|
515
|
+
# set to None if ot_boiler_feed_temperature_max (nullable) is None
|
|
516
|
+
# and model_fields_set contains the field
|
|
517
|
+
if self.ot_boiler_feed_temperature_max is None and "ot_boiler_feed_temperature_max" in self.model_fields_set:
|
|
518
|
+
_dict['otBoilerFeedTemperatureMax'] = None
|
|
519
|
+
|
|
520
|
+
# set to None if ot_boiler_return_temperature_average (nullable) is None
|
|
521
|
+
# and model_fields_set contains the field
|
|
522
|
+
if self.ot_boiler_return_temperature_average is None and "ot_boiler_return_temperature_average" in self.model_fields_set:
|
|
523
|
+
_dict['otBoilerReturnTemperatureAverage'] = None
|
|
524
|
+
|
|
525
|
+
# set to None if ot_boiler_return_temperature_min (nullable) is None
|
|
526
|
+
# and model_fields_set contains the field
|
|
527
|
+
if self.ot_boiler_return_temperature_min is None and "ot_boiler_return_temperature_min" in self.model_fields_set:
|
|
528
|
+
_dict['otBoilerReturnTemperatureMin'] = None
|
|
529
|
+
|
|
530
|
+
# set to None if ot_boiler_return_temperature_max (nullable) is None
|
|
531
|
+
# and model_fields_set contains the field
|
|
532
|
+
if self.ot_boiler_return_temperature_max is None and "ot_boiler_return_temperature_max" in self.model_fields_set:
|
|
533
|
+
_dict['otBoilerReturnTemperatureMax'] = None
|
|
534
|
+
|
|
535
|
+
# set to None if thermostat_state_off (nullable) is None
|
|
536
|
+
# and model_fields_set contains the field
|
|
537
|
+
if self.thermostat_state_off is None and "thermostat_state_off" in self.model_fields_set:
|
|
538
|
+
_dict['thermostatStateOff'] = None
|
|
539
|
+
|
|
540
|
+
# set to None if thermostat_state_on (nullable) is None
|
|
541
|
+
# and model_fields_set contains the field
|
|
542
|
+
if self.thermostat_state_on is None and "thermostat_state_on" in self.model_fields_set:
|
|
543
|
+
_dict['thermostatStateOn'] = None
|
|
320
544
|
|
|
321
545
|
# set to None if rpm_average (nullable) is None
|
|
322
|
-
# and
|
|
323
|
-
if self.rpm_average is None and "rpm_average" in self.
|
|
546
|
+
# and model_fields_set contains the field
|
|
547
|
+
if self.rpm_average is None and "rpm_average" in self.model_fields_set:
|
|
324
548
|
_dict['rpmAverage'] = None
|
|
325
549
|
|
|
326
550
|
# set to None if rpm_min (nullable) is None
|
|
327
|
-
# and
|
|
328
|
-
if self.rpm_min is None and "rpm_min" in self.
|
|
551
|
+
# and model_fields_set contains the field
|
|
552
|
+
if self.rpm_min is None and "rpm_min" in self.model_fields_set:
|
|
329
553
|
_dict['rpmMin'] = None
|
|
330
554
|
|
|
331
555
|
# set to None if rpm_max (nullable) is None
|
|
332
|
-
# and
|
|
333
|
-
if self.rpm_max is None and "rpm_max" in self.
|
|
556
|
+
# and model_fields_set contains the field
|
|
557
|
+
if self.rpm_max is None and "rpm_max" in self.model_fields_set:
|
|
334
558
|
_dict['rpmMax'] = None
|
|
335
559
|
|
|
560
|
+
# set to None if central_heating_flow_average (nullable) is None
|
|
561
|
+
# and model_fields_set contains the field
|
|
562
|
+
if self.central_heating_flow_average is None and "central_heating_flow_average" in self.model_fields_set:
|
|
563
|
+
_dict['centralHeatingFlowAverage'] = None
|
|
564
|
+
|
|
565
|
+
# set to None if central_heating_flow_min (nullable) is None
|
|
566
|
+
# and model_fields_set contains the field
|
|
567
|
+
if self.central_heating_flow_min is None and "central_heating_flow_min" in self.model_fields_set:
|
|
568
|
+
_dict['centralHeatingFlowMin'] = None
|
|
569
|
+
|
|
570
|
+
# set to None if central_heating_flow_max (nullable) is None
|
|
571
|
+
# and model_fields_set contains the field
|
|
572
|
+
if self.central_heating_flow_max is None and "central_heating_flow_max" in self.model_fields_set:
|
|
573
|
+
_dict['centralHeatingFlowMax'] = None
|
|
574
|
+
|
|
575
|
+
# set to None if central_heating_flow_state_standby (nullable) is None
|
|
576
|
+
# and model_fields_set contains the field
|
|
577
|
+
if self.central_heating_flow_state_standby is None and "central_heating_flow_state_standby" in self.model_fields_set:
|
|
578
|
+
_dict['centralHeatingFlowStateStandby'] = None
|
|
579
|
+
|
|
580
|
+
# set to None if central_heating_flow_state_standby_no_pwm (nullable) is None
|
|
581
|
+
# and model_fields_set contains the field
|
|
582
|
+
if self.central_heating_flow_state_standby_no_pwm is None and "central_heating_flow_state_standby_no_pwm" in self.model_fields_set:
|
|
583
|
+
_dict['centralHeatingFlowStateStandbyNoPwm'] = None
|
|
584
|
+
|
|
585
|
+
# set to None if central_heating_flow_state_motor_blocked (nullable) is None
|
|
586
|
+
# and model_fields_set contains the field
|
|
587
|
+
if self.central_heating_flow_state_motor_blocked is None and "central_heating_flow_state_motor_blocked" in self.model_fields_set:
|
|
588
|
+
_dict['centralHeatingFlowStateMotorBlocked'] = None
|
|
589
|
+
|
|
590
|
+
# set to None if central_heating_flow_state_pumping (nullable) is None
|
|
591
|
+
# and model_fields_set contains the field
|
|
592
|
+
if self.central_heating_flow_state_pumping is None and "central_heating_flow_state_pumping" in self.model_fields_set:
|
|
593
|
+
_dict['centralHeatingFlowStatePumping'] = None
|
|
594
|
+
|
|
595
|
+
# set to None if central_heating_flow_state_pumping_no_pwm (nullable) is None
|
|
596
|
+
# and model_fields_set contains the field
|
|
597
|
+
if self.central_heating_flow_state_pumping_no_pwm is None and "central_heating_flow_state_pumping_no_pwm" in self.model_fields_set:
|
|
598
|
+
_dict['centralHeatingFlowStatePumpingNoPwm'] = None
|
|
599
|
+
|
|
600
|
+
# set to None if central_heating_flow_state_suboptimal_running (nullable) is None
|
|
601
|
+
# and model_fields_set contains the field
|
|
602
|
+
if self.central_heating_flow_state_suboptimal_running is None and "central_heating_flow_state_suboptimal_running" in self.model_fields_set:
|
|
603
|
+
_dict['centralHeatingFlowStateSuboptimalRunning'] = None
|
|
604
|
+
|
|
605
|
+
# set to None if central_heating_flow_state_stopped_momentarily (nullable) is None
|
|
606
|
+
# and model_fields_set contains the field
|
|
607
|
+
if self.central_heating_flow_state_stopped_momentarily is None and "central_heating_flow_state_stopped_momentarily" in self.model_fields_set:
|
|
608
|
+
_dict['centralHeatingFlowStateStoppedMomentarily'] = None
|
|
609
|
+
|
|
610
|
+
# set to None if central_heating_flow_state_stopped_permanent_damage (nullable) is None
|
|
611
|
+
# and model_fields_set contains the field
|
|
612
|
+
if self.central_heating_flow_state_stopped_permanent_damage is None and "central_heating_flow_state_stopped_permanent_damage" in self.model_fields_set:
|
|
613
|
+
_dict['centralHeatingFlowStateStoppedPermanentDamage'] = None
|
|
614
|
+
|
|
615
|
+
# set to None if dhw_flow_average (nullable) is None
|
|
616
|
+
# and model_fields_set contains the field
|
|
617
|
+
if self.dhw_flow_average is None and "dhw_flow_average" in self.model_fields_set:
|
|
618
|
+
_dict['dhwFlowAverage'] = None
|
|
619
|
+
|
|
620
|
+
# set to None if dhw_flow_min (nullable) is None
|
|
621
|
+
# and model_fields_set contains the field
|
|
622
|
+
if self.dhw_flow_min is None and "dhw_flow_min" in self.model_fields_set:
|
|
623
|
+
_dict['dhwFlowMin'] = None
|
|
624
|
+
|
|
625
|
+
# set to None if dhw_flow_max (nullable) is None
|
|
626
|
+
# and model_fields_set contains the field
|
|
627
|
+
if self.dhw_flow_max is None and "dhw_flow_max" in self.model_fields_set:
|
|
628
|
+
_dict['dhwFlowMax'] = None
|
|
629
|
+
|
|
630
|
+
# set to None if dhw_flow_state_standby (nullable) is None
|
|
631
|
+
# and model_fields_set contains the field
|
|
632
|
+
if self.dhw_flow_state_standby is None and "dhw_flow_state_standby" in self.model_fields_set:
|
|
633
|
+
_dict['dhwFlowStateStandby'] = None
|
|
634
|
+
|
|
635
|
+
# set to None if dhw_flow_state_standby_no_pwm (nullable) is None
|
|
636
|
+
# and model_fields_set contains the field
|
|
637
|
+
if self.dhw_flow_state_standby_no_pwm is None and "dhw_flow_state_standby_no_pwm" in self.model_fields_set:
|
|
638
|
+
_dict['dhwFlowStateStandbyNoPwm'] = None
|
|
639
|
+
|
|
640
|
+
# set to None if dhw_flow_state_motor_blocked (nullable) is None
|
|
641
|
+
# and model_fields_set contains the field
|
|
642
|
+
if self.dhw_flow_state_motor_blocked is None and "dhw_flow_state_motor_blocked" in self.model_fields_set:
|
|
643
|
+
_dict['dhwFlowStateMotorBlocked'] = None
|
|
644
|
+
|
|
645
|
+
# set to None if dhw_flow_state_pumping (nullable) is None
|
|
646
|
+
# and model_fields_set contains the field
|
|
647
|
+
if self.dhw_flow_state_pumping is None and "dhw_flow_state_pumping" in self.model_fields_set:
|
|
648
|
+
_dict['dhwFlowStatePumping'] = None
|
|
649
|
+
|
|
650
|
+
# set to None if dhw_flow_state_pumping_no_pwm (nullable) is None
|
|
651
|
+
# and model_fields_set contains the field
|
|
652
|
+
if self.dhw_flow_state_pumping_no_pwm is None and "dhw_flow_state_pumping_no_pwm" in self.model_fields_set:
|
|
653
|
+
_dict['dhwFlowStatePumpingNoPwm'] = None
|
|
654
|
+
|
|
655
|
+
# set to None if dhw_flow_state_suboptimal_running (nullable) is None
|
|
656
|
+
# and model_fields_set contains the field
|
|
657
|
+
if self.dhw_flow_state_suboptimal_running is None and "dhw_flow_state_suboptimal_running" in self.model_fields_set:
|
|
658
|
+
_dict['dhwFlowStateSuboptimalRunning'] = None
|
|
659
|
+
|
|
660
|
+
# set to None if dhw_flow_state_stopped_momentarily (nullable) is None
|
|
661
|
+
# and model_fields_set contains the field
|
|
662
|
+
if self.dhw_flow_state_stopped_momentarily is None and "dhw_flow_state_stopped_momentarily" in self.model_fields_set:
|
|
663
|
+
_dict['dhwFlowStateStoppedMomentarily'] = None
|
|
664
|
+
|
|
665
|
+
# set to None if dhw_flow_state_stopped_permanent_damage (nullable) is None
|
|
666
|
+
# and model_fields_set contains the field
|
|
667
|
+
if self.dhw_flow_state_stopped_permanent_damage is None and "dhw_flow_state_stopped_permanent_damage" in self.model_fields_set:
|
|
668
|
+
_dict['dhwFlowStateStoppedPermanentDamage'] = None
|
|
669
|
+
|
|
670
|
+
# set to None if signal_strength_average (nullable) is None
|
|
671
|
+
# and model_fields_set contains the field
|
|
672
|
+
if self.signal_strength_average is None and "signal_strength_average" in self.model_fields_set:
|
|
673
|
+
_dict['signalStrengthAverage'] = None
|
|
674
|
+
|
|
675
|
+
# set to None if signal_strength_min (nullable) is None
|
|
676
|
+
# and model_fields_set contains the field
|
|
677
|
+
if self.signal_strength_min is None and "signal_strength_min" in self.model_fields_set:
|
|
678
|
+
_dict['signalStrengthMin'] = None
|
|
679
|
+
|
|
680
|
+
# set to None if signal_strength_max (nullable) is None
|
|
681
|
+
# and model_fields_set contains the field
|
|
682
|
+
if self.signal_strength_max is None and "signal_strength_max" in self.model_fields_set:
|
|
683
|
+
_dict['signalStrengthMax'] = None
|
|
684
|
+
|
|
336
685
|
# set to None if rpm_limiter_average (nullable) is None
|
|
337
|
-
# and
|
|
338
|
-
if self.rpm_limiter_average is None and "rpm_limiter_average" in self.
|
|
686
|
+
# and model_fields_set contains the field
|
|
687
|
+
if self.rpm_limiter_average is None and "rpm_limiter_average" in self.model_fields_set:
|
|
339
688
|
_dict['rpmLimiterAverage'] = None
|
|
340
689
|
|
|
341
690
|
# set to None if rpm_limiter_min (nullable) is None
|
|
342
|
-
# and
|
|
343
|
-
if self.rpm_limiter_min is None and "rpm_limiter_min" in self.
|
|
691
|
+
# and model_fields_set contains the field
|
|
692
|
+
if self.rpm_limiter_min is None and "rpm_limiter_min" in self.model_fields_set:
|
|
344
693
|
_dict['rpmLimiterMin'] = None
|
|
345
694
|
|
|
346
695
|
# set to None if rpm_limiter_max (nullable) is None
|
|
347
|
-
# and
|
|
348
|
-
if self.rpm_limiter_max is None and "rpm_limiter_max" in self.
|
|
696
|
+
# and model_fields_set contains the field
|
|
697
|
+
if self.rpm_limiter_max is None and "rpm_limiter_max" in self.model_fields_set:
|
|
349
698
|
_dict['rpmLimiterMax'] = None
|
|
350
699
|
|
|
351
700
|
# set to None if rpm_limiter_no_limit (nullable) is None
|
|
352
|
-
# and
|
|
353
|
-
if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.
|
|
701
|
+
# and model_fields_set contains the field
|
|
702
|
+
if self.rpm_limiter_no_limit is None and "rpm_limiter_no_limit" in self.model_fields_set:
|
|
354
703
|
_dict['rpmLimiterNoLimit'] = None
|
|
355
704
|
|
|
356
705
|
# set to None if rpm_limiter_power_limit (nullable) is None
|
|
357
|
-
# and
|
|
358
|
-
if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.
|
|
706
|
+
# and model_fields_set contains the field
|
|
707
|
+
if self.rpm_limiter_power_limit is None and "rpm_limiter_power_limit" in self.model_fields_set:
|
|
359
708
|
_dict['rpmLimiterPowerLimit'] = None
|
|
360
709
|
|
|
361
710
|
# set to None if rpm_limiter_defrost (nullable) is None
|
|
362
|
-
# and
|
|
363
|
-
if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.
|
|
711
|
+
# and model_fields_set contains the field
|
|
712
|
+
if self.rpm_limiter_defrost is None and "rpm_limiter_defrost" in self.model_fields_set:
|
|
364
713
|
_dict['rpmLimiterDefrost'] = None
|
|
365
714
|
|
|
366
715
|
# set to None if rpm_limiter_silent_hours (nullable) is None
|
|
367
|
-
# and
|
|
368
|
-
if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.
|
|
716
|
+
# and model_fields_set contains the field
|
|
717
|
+
if self.rpm_limiter_silent_hours is None and "rpm_limiter_silent_hours" in self.model_fields_set:
|
|
369
718
|
_dict['rpmLimiterSilentHours'] = None
|
|
370
719
|
|
|
371
720
|
# set to None if rpm_limiter_hp_control (nullable) is None
|
|
372
|
-
# and
|
|
373
|
-
if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.
|
|
721
|
+
# and model_fields_set contains the field
|
|
722
|
+
if self.rpm_limiter_hp_control is None and "rpm_limiter_hp_control" in self.model_fields_set:
|
|
374
723
|
_dict['rpmLimiterHPControl'] = None
|
|
375
724
|
|
|
376
725
|
# set to None if rpm_limiter_pressure (nullable) is None
|
|
377
|
-
# and
|
|
378
|
-
if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.
|
|
726
|
+
# and model_fields_set contains the field
|
|
727
|
+
if self.rpm_limiter_pressure is None and "rpm_limiter_pressure" in self.model_fields_set:
|
|
379
728
|
_dict['rpmLimiterPressure'] = None
|
|
380
729
|
|
|
381
730
|
# set to None if rpm_limiter_water_out (nullable) is None
|
|
382
|
-
# and
|
|
383
|
-
if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.
|
|
731
|
+
# and model_fields_set contains the field
|
|
732
|
+
if self.rpm_limiter_water_out is None and "rpm_limiter_water_out" in self.model_fields_set:
|
|
384
733
|
_dict['rpmLimiterWaterOut'] = None
|
|
385
734
|
|
|
386
735
|
# set to None if rpm_limiter_envelope (nullable) is None
|
|
387
|
-
# and
|
|
388
|
-
if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.
|
|
736
|
+
# and model_fields_set contains the field
|
|
737
|
+
if self.rpm_limiter_envelope is None and "rpm_limiter_envelope" in self.model_fields_set:
|
|
389
738
|
_dict['rpmLimiterEnvelope'] = None
|
|
390
739
|
|
|
391
740
|
# set to None if rpm_limiter_house_in (nullable) is None
|
|
392
|
-
# and
|
|
393
|
-
if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.
|
|
741
|
+
# and model_fields_set contains the field
|
|
742
|
+
if self.rpm_limiter_house_in is None and "rpm_limiter_house_in" in self.model_fields_set:
|
|
394
743
|
_dict['rpmLimiterHouseIn'] = None
|
|
395
744
|
|
|
396
745
|
# set to None if p_compressor_in_average (nullable) is None
|
|
397
|
-
# and
|
|
398
|
-
if self.p_compressor_in_average is None and "p_compressor_in_average" in self.
|
|
746
|
+
# and model_fields_set contains the field
|
|
747
|
+
if self.p_compressor_in_average is None and "p_compressor_in_average" in self.model_fields_set:
|
|
399
748
|
_dict['pCompressorInAverage'] = None
|
|
400
749
|
|
|
401
750
|
# set to None if p_compressor_in_min (nullable) is None
|
|
402
|
-
# and
|
|
403
|
-
if self.p_compressor_in_min is None and "p_compressor_in_min" in self.
|
|
751
|
+
# and model_fields_set contains the field
|
|
752
|
+
if self.p_compressor_in_min is None and "p_compressor_in_min" in self.model_fields_set:
|
|
404
753
|
_dict['pCompressorInMin'] = None
|
|
405
754
|
|
|
406
755
|
# set to None if p_compressor_in_max (nullable) is None
|
|
407
|
-
# and
|
|
408
|
-
if self.p_compressor_in_max is None and "p_compressor_in_max" in self.
|
|
756
|
+
# and model_fields_set contains the field
|
|
757
|
+
if self.p_compressor_in_max is None and "p_compressor_in_max" in self.model_fields_set:
|
|
409
758
|
_dict['pCompressorInMax'] = None
|
|
410
759
|
|
|
411
760
|
# set to None if p_compressor_out_average (nullable) is None
|
|
412
|
-
# and
|
|
413
|
-
if self.p_compressor_out_average is None and "p_compressor_out_average" in self.
|
|
761
|
+
# and model_fields_set contains the field
|
|
762
|
+
if self.p_compressor_out_average is None and "p_compressor_out_average" in self.model_fields_set:
|
|
414
763
|
_dict['pCompressorOutAverage'] = None
|
|
415
764
|
|
|
416
765
|
# set to None if p_compressor_out_min (nullable) is None
|
|
417
|
-
# and
|
|
418
|
-
if self.p_compressor_out_min is None and "p_compressor_out_min" in self.
|
|
766
|
+
# and model_fields_set contains the field
|
|
767
|
+
if self.p_compressor_out_min is None and "p_compressor_out_min" in self.model_fields_set:
|
|
419
768
|
_dict['pCompressorOutMin'] = None
|
|
420
769
|
|
|
421
770
|
# set to None if p_compressor_out_max (nullable) is None
|
|
422
|
-
# and
|
|
423
|
-
if self.p_compressor_out_max is None and "p_compressor_out_max" in self.
|
|
771
|
+
# and model_fields_set contains the field
|
|
772
|
+
if self.p_compressor_out_max is None and "p_compressor_out_max" in self.model_fields_set:
|
|
424
773
|
_dict['pCompressorOutMax'] = None
|
|
425
774
|
|
|
426
775
|
# set to None if p_compressor_in_target_average (nullable) is None
|
|
427
|
-
# and
|
|
428
|
-
if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.
|
|
776
|
+
# and model_fields_set contains the field
|
|
777
|
+
if self.p_compressor_in_target_average is None and "p_compressor_in_target_average" in self.model_fields_set:
|
|
429
778
|
_dict['pCompressorInTargetAverage'] = None
|
|
430
779
|
|
|
431
780
|
# set to None if p_compressor_in_target_min (nullable) is None
|
|
432
|
-
# and
|
|
433
|
-
if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.
|
|
781
|
+
# and model_fields_set contains the field
|
|
782
|
+
if self.p_compressor_in_target_min is None and "p_compressor_in_target_min" in self.model_fields_set:
|
|
434
783
|
_dict['pCompressorInTargetMin'] = None
|
|
435
784
|
|
|
436
785
|
# set to None if p_compressor_in_target_max (nullable) is None
|
|
437
|
-
# and
|
|
438
|
-
if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.
|
|
786
|
+
# and model_fields_set contains the field
|
|
787
|
+
if self.p_compressor_in_target_max is None and "p_compressor_in_target_max" in self.model_fields_set:
|
|
439
788
|
_dict['pCompressorInTargetMax'] = None
|
|
440
789
|
|
|
441
|
-
# set to None if t_inverter_average (nullable) is None
|
|
442
|
-
# and __fields_set__ contains the field
|
|
443
|
-
if self.t_inverter_average is None and "t_inverter_average" in self.__fields_set__:
|
|
444
|
-
_dict['tInverterAverage'] = None
|
|
445
|
-
|
|
446
|
-
# set to None if t_inverter_min (nullable) is None
|
|
447
|
-
# and __fields_set__ contains the field
|
|
448
|
-
if self.t_inverter_min is None and "t_inverter_min" in self.__fields_set__:
|
|
449
|
-
_dict['tInverterMin'] = None
|
|
450
|
-
|
|
451
|
-
# set to None if t_inverter_max (nullable) is None
|
|
452
|
-
# and __fields_set__ contains the field
|
|
453
|
-
if self.t_inverter_max is None and "t_inverter_max" in self.__fields_set__:
|
|
454
|
-
_dict['tInverterMax'] = None
|
|
455
|
-
|
|
456
790
|
# set to None if t_compressor_in_average (nullable) is None
|
|
457
|
-
# and
|
|
458
|
-
if self.t_compressor_in_average is None and "t_compressor_in_average" in self.
|
|
791
|
+
# and model_fields_set contains the field
|
|
792
|
+
if self.t_compressor_in_average is None and "t_compressor_in_average" in self.model_fields_set:
|
|
459
793
|
_dict['tCompressorInAverage'] = None
|
|
460
794
|
|
|
461
795
|
# set to None if t_compressor_in_min (nullable) is None
|
|
462
|
-
# and
|
|
463
|
-
if self.t_compressor_in_min is None and "t_compressor_in_min" in self.
|
|
796
|
+
# and model_fields_set contains the field
|
|
797
|
+
if self.t_compressor_in_min is None and "t_compressor_in_min" in self.model_fields_set:
|
|
464
798
|
_dict['tCompressorInMin'] = None
|
|
465
799
|
|
|
466
800
|
# set to None if t_compressor_in_max (nullable) is None
|
|
467
|
-
# and
|
|
468
|
-
if self.t_compressor_in_max is None and "t_compressor_in_max" in self.
|
|
801
|
+
# and model_fields_set contains the field
|
|
802
|
+
if self.t_compressor_in_max is None and "t_compressor_in_max" in self.model_fields_set:
|
|
469
803
|
_dict['tCompressorInMax'] = None
|
|
470
804
|
|
|
471
805
|
# set to None if t_compressor_out_average (nullable) is None
|
|
472
|
-
# and
|
|
473
|
-
if self.t_compressor_out_average is None and "t_compressor_out_average" in self.
|
|
806
|
+
# and model_fields_set contains the field
|
|
807
|
+
if self.t_compressor_out_average is None and "t_compressor_out_average" in self.model_fields_set:
|
|
474
808
|
_dict['tCompressorOutAverage'] = None
|
|
475
809
|
|
|
476
810
|
# set to None if t_compressor_out_min (nullable) is None
|
|
477
|
-
# and
|
|
478
|
-
if self.t_compressor_out_min is None and "t_compressor_out_min" in self.
|
|
811
|
+
# and model_fields_set contains the field
|
|
812
|
+
if self.t_compressor_out_min is None and "t_compressor_out_min" in self.model_fields_set:
|
|
479
813
|
_dict['tCompressorOutMin'] = None
|
|
480
814
|
|
|
481
815
|
# set to None if t_compressor_out_max (nullable) is None
|
|
482
|
-
# and
|
|
483
|
-
if self.t_compressor_out_max is None and "t_compressor_out_max" in self.
|
|
816
|
+
# and model_fields_set contains the field
|
|
817
|
+
if self.t_compressor_out_max is None and "t_compressor_out_max" in self.model_fields_set:
|
|
484
818
|
_dict['tCompressorOutMax'] = None
|
|
485
819
|
|
|
486
820
|
# set to None if t_compressor_in_transient_average (nullable) is None
|
|
487
|
-
# and
|
|
488
|
-
if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.
|
|
821
|
+
# and model_fields_set contains the field
|
|
822
|
+
if self.t_compressor_in_transient_average is None and "t_compressor_in_transient_average" in self.model_fields_set:
|
|
489
823
|
_dict['tCompressorInTransientAverage'] = None
|
|
490
824
|
|
|
491
825
|
# set to None if t_compressor_in_transient_min (nullable) is None
|
|
492
|
-
# and
|
|
493
|
-
if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.
|
|
826
|
+
# and model_fields_set contains the field
|
|
827
|
+
if self.t_compressor_in_transient_min is None and "t_compressor_in_transient_min" in self.model_fields_set:
|
|
494
828
|
_dict['tCompressorInTransientMin'] = None
|
|
495
829
|
|
|
496
830
|
# set to None if t_compressor_in_transient_max (nullable) is None
|
|
497
|
-
# and
|
|
498
|
-
if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.
|
|
831
|
+
# and model_fields_set contains the field
|
|
832
|
+
if self.t_compressor_in_transient_max is None and "t_compressor_in_transient_max" in self.model_fields_set:
|
|
499
833
|
_dict['tCompressorInTransientMax'] = None
|
|
500
834
|
|
|
501
835
|
# set to None if t_compressor_out_transient_average (nullable) is None
|
|
502
|
-
# and
|
|
503
|
-
if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.
|
|
836
|
+
# and model_fields_set contains the field
|
|
837
|
+
if self.t_compressor_out_transient_average is None and "t_compressor_out_transient_average" in self.model_fields_set:
|
|
504
838
|
_dict['tCompressorOutTransientAverage'] = None
|
|
505
839
|
|
|
506
840
|
# set to None if t_compressor_out_transient_min (nullable) is None
|
|
507
|
-
# and
|
|
508
|
-
if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.
|
|
841
|
+
# and model_fields_set contains the field
|
|
842
|
+
if self.t_compressor_out_transient_min is None and "t_compressor_out_transient_min" in self.model_fields_set:
|
|
509
843
|
_dict['tCompressorOutTransientMin'] = None
|
|
510
844
|
|
|
511
845
|
# set to None if t_compressor_out_transient_max (nullable) is None
|
|
512
|
-
# and
|
|
513
|
-
if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.
|
|
846
|
+
# and model_fields_set contains the field
|
|
847
|
+
if self.t_compressor_out_transient_max is None and "t_compressor_out_transient_max" in self.model_fields_set:
|
|
514
848
|
_dict['tCompressorOutTransientMax'] = None
|
|
515
849
|
|
|
516
850
|
# set to None if delta_t_compressor_in_superheat_average (nullable) is None
|
|
517
|
-
# and
|
|
518
|
-
if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.
|
|
851
|
+
# and model_fields_set contains the field
|
|
852
|
+
if self.delta_t_compressor_in_superheat_average is None and "delta_t_compressor_in_superheat_average" in self.model_fields_set:
|
|
519
853
|
_dict['deltaTCompressorInSuperheatAverage'] = None
|
|
520
854
|
|
|
521
855
|
# set to None if delta_t_compressor_in_superheat_min (nullable) is None
|
|
522
|
-
# and
|
|
523
|
-
if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.
|
|
856
|
+
# and model_fields_set contains the field
|
|
857
|
+
if self.delta_t_compressor_in_superheat_min is None and "delta_t_compressor_in_superheat_min" in self.model_fields_set:
|
|
524
858
|
_dict['deltaTCompressorInSuperheatMin'] = None
|
|
525
859
|
|
|
526
860
|
# set to None if delta_t_compressor_in_superheat_max (nullable) is None
|
|
527
|
-
# and
|
|
528
|
-
if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.
|
|
861
|
+
# and model_fields_set contains the field
|
|
862
|
+
if self.delta_t_compressor_in_superheat_max is None and "delta_t_compressor_in_superheat_max" in self.model_fields_set:
|
|
529
863
|
_dict['deltaTCompressorInSuperheatMax'] = None
|
|
530
864
|
|
|
531
|
-
# set to None if compressor_power_low_accuracy_average (nullable) is None
|
|
532
|
-
# and __fields_set__ contains the field
|
|
533
|
-
if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.__fields_set__:
|
|
534
|
-
_dict['compressorPowerLowAccuracyAverage'] = None
|
|
535
|
-
|
|
536
|
-
# set to None if compressor_power_low_accuracy_min (nullable) is None
|
|
537
|
-
# and __fields_set__ contains the field
|
|
538
|
-
if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.__fields_set__:
|
|
539
|
-
_dict['compressorPowerLowAccuracyMin'] = None
|
|
540
|
-
|
|
541
|
-
# set to None if compressor_power_low_accuracy_max (nullable) is None
|
|
542
|
-
# and __fields_set__ contains the field
|
|
543
|
-
if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.__fields_set__:
|
|
544
|
-
_dict['compressorPowerLowAccuracyMax'] = None
|
|
545
|
-
|
|
546
865
|
# set to None if fan_average (nullable) is None
|
|
547
|
-
# and
|
|
548
|
-
if self.fan_average is None and "fan_average" in self.
|
|
866
|
+
# and model_fields_set contains the field
|
|
867
|
+
if self.fan_average is None and "fan_average" in self.model_fields_set:
|
|
549
868
|
_dict['fanAverage'] = None
|
|
550
869
|
|
|
551
870
|
# set to None if fan_min (nullable) is None
|
|
552
|
-
# and
|
|
553
|
-
if self.fan_min is None and "fan_min" in self.
|
|
871
|
+
# and model_fields_set contains the field
|
|
872
|
+
if self.fan_min is None and "fan_min" in self.model_fields_set:
|
|
554
873
|
_dict['fanMin'] = None
|
|
555
874
|
|
|
556
875
|
# set to None if fan_max (nullable) is None
|
|
557
|
-
# and
|
|
558
|
-
if self.fan_max is None and "fan_max" in self.
|
|
876
|
+
# and model_fields_set contains the field
|
|
877
|
+
if self.fan_max is None and "fan_max" in self.model_fields_set:
|
|
559
878
|
_dict['fanMax'] = None
|
|
560
879
|
|
|
561
880
|
# set to None if fan_power_average (nullable) is None
|
|
562
|
-
# and
|
|
563
|
-
if self.fan_power_average is None and "fan_power_average" in self.
|
|
881
|
+
# and model_fields_set contains the field
|
|
882
|
+
if self.fan_power_average is None and "fan_power_average" in self.model_fields_set:
|
|
564
883
|
_dict['fanPowerAverage'] = None
|
|
565
884
|
|
|
566
885
|
# set to None if fan_power_min (nullable) is None
|
|
567
|
-
# and
|
|
568
|
-
if self.fan_power_min is None and "fan_power_min" in self.
|
|
886
|
+
# and model_fields_set contains the field
|
|
887
|
+
if self.fan_power_min is None and "fan_power_min" in self.model_fields_set:
|
|
569
888
|
_dict['fanPowerMin'] = None
|
|
570
889
|
|
|
571
890
|
# set to None if fan_power_max (nullable) is None
|
|
572
|
-
# and
|
|
573
|
-
if self.fan_power_max is None and "fan_power_max" in self.
|
|
891
|
+
# and model_fields_set contains the field
|
|
892
|
+
if self.fan_power_max is None and "fan_power_max" in self.model_fields_set:
|
|
574
893
|
_dict['fanPowerMax'] = None
|
|
575
894
|
|
|
576
|
-
# set to None if
|
|
577
|
-
# and
|
|
578
|
-
if self.
|
|
579
|
-
_dict['
|
|
580
|
-
|
|
581
|
-
# set to None if
|
|
582
|
-
# and
|
|
583
|
-
if self.
|
|
584
|
-
_dict['
|
|
585
|
-
|
|
586
|
-
# set to None if
|
|
587
|
-
# and
|
|
588
|
-
if self.
|
|
589
|
-
_dict['
|
|
590
|
-
|
|
591
|
-
# set to None if
|
|
592
|
-
# and
|
|
593
|
-
if self.
|
|
594
|
-
_dict['
|
|
595
|
-
|
|
596
|
-
# set to None if
|
|
597
|
-
# and
|
|
598
|
-
if self.
|
|
599
|
-
_dict['
|
|
600
|
-
|
|
601
|
-
# set to None if
|
|
602
|
-
# and
|
|
603
|
-
if self.
|
|
604
|
-
_dict['
|
|
605
|
-
|
|
606
|
-
# set to None if
|
|
607
|
-
# and
|
|
608
|
-
if self.
|
|
609
|
-
_dict['
|
|
610
|
-
|
|
611
|
-
# set to None if
|
|
612
|
-
# and
|
|
613
|
-
if self.
|
|
614
|
-
_dict['
|
|
895
|
+
# set to None if temperature_error_integral_average (nullable) is None
|
|
896
|
+
# and model_fields_set contains the field
|
|
897
|
+
if self.temperature_error_integral_average is None and "temperature_error_integral_average" in self.model_fields_set:
|
|
898
|
+
_dict['temperatureErrorIntegralAverage'] = None
|
|
899
|
+
|
|
900
|
+
# set to None if temperature_error_integral_min (nullable) is None
|
|
901
|
+
# and model_fields_set contains the field
|
|
902
|
+
if self.temperature_error_integral_min is None and "temperature_error_integral_min" in self.model_fields_set:
|
|
903
|
+
_dict['temperatureErrorIntegralMin'] = None
|
|
904
|
+
|
|
905
|
+
# set to None if temperature_error_integral_max (nullable) is None
|
|
906
|
+
# and model_fields_set contains the field
|
|
907
|
+
if self.temperature_error_integral_max is None and "temperature_error_integral_max" in self.model_fields_set:
|
|
908
|
+
_dict['temperatureErrorIntegralMax'] = None
|
|
909
|
+
|
|
910
|
+
# set to None if dtc_none (nullable) is None
|
|
911
|
+
# and model_fields_set contains the field
|
|
912
|
+
if self.dtc_none is None and "dtc_none" in self.model_fields_set:
|
|
913
|
+
_dict['dtcNone'] = None
|
|
914
|
+
|
|
915
|
+
# set to None if dtc_continue (nullable) is None
|
|
916
|
+
# and model_fields_set contains the field
|
|
917
|
+
if self.dtc_continue is None and "dtc_continue" in self.model_fields_set:
|
|
918
|
+
_dict['dtcContinue'] = None
|
|
919
|
+
|
|
920
|
+
# set to None if dtc_compressor_off (nullable) is None
|
|
921
|
+
# and model_fields_set contains the field
|
|
922
|
+
if self.dtc_compressor_off is None and "dtc_compressor_off" in self.model_fields_set:
|
|
923
|
+
_dict['dtcCompressorOff'] = None
|
|
924
|
+
|
|
925
|
+
# set to None if dtc_defrost_forbidden (nullable) is None
|
|
926
|
+
# and model_fields_set contains the field
|
|
927
|
+
if self.dtc_defrost_forbidden is None and "dtc_defrost_forbidden" in self.model_fields_set:
|
|
928
|
+
_dict['dtcDefrostForbidden'] = None
|
|
929
|
+
|
|
930
|
+
# set to None if dtc_request_service (nullable) is None
|
|
931
|
+
# and model_fields_set contains the field
|
|
932
|
+
if self.dtc_request_service is None and "dtc_request_service" in self.model_fields_set:
|
|
933
|
+
_dict['dtcRequestService'] = None
|
|
934
|
+
|
|
935
|
+
# set to None if dtc_use_heating_curve (nullable) is None
|
|
936
|
+
# and model_fields_set contains the field
|
|
937
|
+
if self.dtc_use_heating_curve is None and "dtc_use_heating_curve" in self.model_fields_set:
|
|
938
|
+
_dict['dtcUseHeatingCurve'] = None
|
|
939
|
+
|
|
940
|
+
# set to None if dtc_dhw_forbidden (nullable) is None
|
|
941
|
+
# and model_fields_set contains the field
|
|
942
|
+
if self.dtc_dhw_forbidden is None and "dtc_dhw_forbidden" in self.model_fields_set:
|
|
943
|
+
_dict['dtcDhwForbidden'] = None
|
|
944
|
+
|
|
945
|
+
# set to None if dtc_error (nullable) is None
|
|
946
|
+
# and model_fields_set contains the field
|
|
947
|
+
if self.dtc_error is None and "dtc_error" in self.model_fields_set:
|
|
948
|
+
_dict['dtcError'] = None
|
|
949
|
+
|
|
950
|
+
# set to None if dtc_inactive (nullable) is None
|
|
951
|
+
# and model_fields_set contains the field
|
|
952
|
+
if self.dtc_inactive is None and "dtc_inactive" in self.model_fields_set:
|
|
953
|
+
_dict['dtcInactive'] = None
|
|
954
|
+
|
|
955
|
+
# set to None if control_bridge_status_dhw_valve (nullable) is None
|
|
956
|
+
# and model_fields_set contains the field
|
|
957
|
+
if self.control_bridge_status_dhw_valve is None and "control_bridge_status_dhw_valve" in self.model_fields_set:
|
|
958
|
+
_dict['controlBridgeStatusDhwValve'] = None
|
|
959
|
+
|
|
960
|
+
# set to None if valve_average (nullable) is None
|
|
961
|
+
# and model_fields_set contains the field
|
|
962
|
+
if self.valve_average is None and "valve_average" in self.model_fields_set:
|
|
963
|
+
_dict['valveAverage'] = None
|
|
964
|
+
|
|
965
|
+
# set to None if valve_min (nullable) is None
|
|
966
|
+
# and model_fields_set contains the field
|
|
967
|
+
if self.valve_min is None and "valve_min" in self.model_fields_set:
|
|
968
|
+
_dict['valveMin'] = None
|
|
969
|
+
|
|
970
|
+
# set to None if valve_max (nullable) is None
|
|
971
|
+
# and model_fields_set contains the field
|
|
972
|
+
if self.valve_max is None and "valve_max" in self.model_fields_set:
|
|
973
|
+
_dict['valveMax'] = None
|
|
974
|
+
|
|
975
|
+
# set to None if t_board_average (nullable) is None
|
|
976
|
+
# and model_fields_set contains the field
|
|
977
|
+
if self.t_board_average is None and "t_board_average" in self.model_fields_set:
|
|
978
|
+
_dict['tBoardAverage'] = None
|
|
979
|
+
|
|
980
|
+
# set to None if t_board_min (nullable) is None
|
|
981
|
+
# and model_fields_set contains the field
|
|
982
|
+
if self.t_board_min is None and "t_board_min" in self.model_fields_set:
|
|
983
|
+
_dict['tBoardMin'] = None
|
|
984
|
+
|
|
985
|
+
# set to None if t_board_max (nullable) is None
|
|
986
|
+
# and model_fields_set contains the field
|
|
987
|
+
if self.t_board_max is None and "t_board_max" in self.model_fields_set:
|
|
988
|
+
_dict['tBoardMax'] = None
|
|
989
|
+
|
|
990
|
+
# set to None if t_inverter_average (nullable) is None
|
|
991
|
+
# and model_fields_set contains the field
|
|
992
|
+
if self.t_inverter_average is None and "t_inverter_average" in self.model_fields_set:
|
|
993
|
+
_dict['tInverterAverage'] = None
|
|
994
|
+
|
|
995
|
+
# set to None if t_inverter_min (nullable) is None
|
|
996
|
+
# and model_fields_set contains the field
|
|
997
|
+
if self.t_inverter_min is None and "t_inverter_min" in self.model_fields_set:
|
|
998
|
+
_dict['tInverterMin'] = None
|
|
999
|
+
|
|
1000
|
+
# set to None if t_inverter_max (nullable) is None
|
|
1001
|
+
# and model_fields_set contains the field
|
|
1002
|
+
if self.t_inverter_max is None and "t_inverter_max" in self.model_fields_set:
|
|
1003
|
+
_dict['tInverterMax'] = None
|
|
1004
|
+
|
|
1005
|
+
# set to None if compressor_power_low_accuracy_average (nullable) is None
|
|
1006
|
+
# and model_fields_set contains the field
|
|
1007
|
+
if self.compressor_power_low_accuracy_average is None and "compressor_power_low_accuracy_average" in self.model_fields_set:
|
|
1008
|
+
_dict['compressorPowerLowAccuracyAverage'] = None
|
|
1009
|
+
|
|
1010
|
+
# set to None if compressor_power_low_accuracy_min (nullable) is None
|
|
1011
|
+
# and model_fields_set contains the field
|
|
1012
|
+
if self.compressor_power_low_accuracy_min is None and "compressor_power_low_accuracy_min" in self.model_fields_set:
|
|
1013
|
+
_dict['compressorPowerLowAccuracyMin'] = None
|
|
1014
|
+
|
|
1015
|
+
# set to None if compressor_power_low_accuracy_max (nullable) is None
|
|
1016
|
+
# and model_fields_set contains the field
|
|
1017
|
+
if self.compressor_power_low_accuracy_max is None and "compressor_power_low_accuracy_max" in self.model_fields_set:
|
|
1018
|
+
_dict['compressorPowerLowAccuracyMax'] = None
|
|
1019
|
+
|
|
1020
|
+
# set to None if cm_mass_power_in_standby_average (nullable) is None
|
|
1021
|
+
# and model_fields_set contains the field
|
|
1022
|
+
if self.cm_mass_power_in_standby_average is None and "cm_mass_power_in_standby_average" in self.model_fields_set:
|
|
1023
|
+
_dict['cmMassPowerInStandbyAverage'] = None
|
|
1024
|
+
|
|
1025
|
+
# set to None if cm_mass_power_in_standby_min (nullable) is None
|
|
1026
|
+
# and model_fields_set contains the field
|
|
1027
|
+
if self.cm_mass_power_in_standby_min is None and "cm_mass_power_in_standby_min" in self.model_fields_set:
|
|
1028
|
+
_dict['cmMassPowerInStandbyMin'] = None
|
|
1029
|
+
|
|
1030
|
+
# set to None if cm_mass_power_in_standby_max (nullable) is None
|
|
1031
|
+
# and model_fields_set contains the field
|
|
1032
|
+
if self.cm_mass_power_in_standby_max is None and "cm_mass_power_in_standby_max" in self.model_fields_set:
|
|
1033
|
+
_dict['cmMassPowerInStandbyMax'] = None
|
|
1034
|
+
|
|
1035
|
+
# set to None if cm_mass_power_in_heating_average (nullable) is None
|
|
1036
|
+
# and model_fields_set contains the field
|
|
1037
|
+
if self.cm_mass_power_in_heating_average is None and "cm_mass_power_in_heating_average" in self.model_fields_set:
|
|
1038
|
+
_dict['cmMassPowerInHeatingAverage'] = None
|
|
1039
|
+
|
|
1040
|
+
# set to None if cm_mass_power_in_heating_min (nullable) is None
|
|
1041
|
+
# and model_fields_set contains the field
|
|
1042
|
+
if self.cm_mass_power_in_heating_min is None and "cm_mass_power_in_heating_min" in self.model_fields_set:
|
|
1043
|
+
_dict['cmMassPowerInHeatingMin'] = None
|
|
1044
|
+
|
|
1045
|
+
# set to None if cm_mass_power_in_heating_max (nullable) is None
|
|
1046
|
+
# and model_fields_set contains the field
|
|
1047
|
+
if self.cm_mass_power_in_heating_max is None and "cm_mass_power_in_heating_max" in self.model_fields_set:
|
|
1048
|
+
_dict['cmMassPowerInHeatingMax'] = None
|
|
1049
|
+
|
|
1050
|
+
# set to None if cm_mass_power_in_cooling_average (nullable) is None
|
|
1051
|
+
# and model_fields_set contains the field
|
|
1052
|
+
if self.cm_mass_power_in_cooling_average is None and "cm_mass_power_in_cooling_average" in self.model_fields_set:
|
|
1053
|
+
_dict['cmMassPowerInCoolingAverage'] = None
|
|
1054
|
+
|
|
1055
|
+
# set to None if cm_mass_power_in_cooling_min (nullable) is None
|
|
1056
|
+
# and model_fields_set contains the field
|
|
1057
|
+
if self.cm_mass_power_in_cooling_min is None and "cm_mass_power_in_cooling_min" in self.model_fields_set:
|
|
1058
|
+
_dict['cmMassPowerInCoolingMin'] = None
|
|
1059
|
+
|
|
1060
|
+
# set to None if cm_mass_power_in_cooling_max (nullable) is None
|
|
1061
|
+
# and model_fields_set contains the field
|
|
1062
|
+
if self.cm_mass_power_in_cooling_max is None and "cm_mass_power_in_cooling_max" in self.model_fields_set:
|
|
1063
|
+
_dict['cmMassPowerInCoolingMax'] = None
|
|
1064
|
+
|
|
1065
|
+
# set to None if cm_mass_power_in_heating_defrost_average (nullable) is None
|
|
1066
|
+
# and model_fields_set contains the field
|
|
1067
|
+
if self.cm_mass_power_in_heating_defrost_average is None and "cm_mass_power_in_heating_defrost_average" in self.model_fields_set:
|
|
1068
|
+
_dict['cmMassPowerInHeatingDefrostAverage'] = None
|
|
1069
|
+
|
|
1070
|
+
# set to None if cm_mass_power_in_heating_defrost_min (nullable) is None
|
|
1071
|
+
# and model_fields_set contains the field
|
|
1072
|
+
if self.cm_mass_power_in_heating_defrost_min is None and "cm_mass_power_in_heating_defrost_min" in self.model_fields_set:
|
|
1073
|
+
_dict['cmMassPowerInHeatingDefrostMin'] = None
|
|
1074
|
+
|
|
1075
|
+
# set to None if cm_mass_power_in_heating_defrost_max (nullable) is None
|
|
1076
|
+
# and model_fields_set contains the field
|
|
1077
|
+
if self.cm_mass_power_in_heating_defrost_max is None and "cm_mass_power_in_heating_defrost_max" in self.model_fields_set:
|
|
1078
|
+
_dict['cmMassPowerInHeatingDefrostMax'] = None
|
|
1079
|
+
|
|
1080
|
+
# set to None if cm_mass_power_in_dhw_defrost_average (nullable) is None
|
|
1081
|
+
# and model_fields_set contains the field
|
|
1082
|
+
if self.cm_mass_power_in_dhw_defrost_average is None and "cm_mass_power_in_dhw_defrost_average" in self.model_fields_set:
|
|
1083
|
+
_dict['cmMassPowerInDhwDefrostAverage'] = None
|
|
1084
|
+
|
|
1085
|
+
# set to None if cm_mass_power_in_dhw_defrost_min (nullable) is None
|
|
1086
|
+
# and model_fields_set contains the field
|
|
1087
|
+
if self.cm_mass_power_in_dhw_defrost_min is None and "cm_mass_power_in_dhw_defrost_min" in self.model_fields_set:
|
|
1088
|
+
_dict['cmMassPowerInDhwDefrostMin'] = None
|
|
1089
|
+
|
|
1090
|
+
# set to None if cm_mass_power_in_dhw_defrost_max (nullable) is None
|
|
1091
|
+
# and model_fields_set contains the field
|
|
1092
|
+
if self.cm_mass_power_in_dhw_defrost_max is None and "cm_mass_power_in_dhw_defrost_max" in self.model_fields_set:
|
|
1093
|
+
_dict['cmMassPowerInDhwDefrostMax'] = None
|
|
1094
|
+
|
|
1095
|
+
# set to None if cm_mass_power_in_defrost_average (nullable) is None
|
|
1096
|
+
# and model_fields_set contains the field
|
|
1097
|
+
if self.cm_mass_power_in_defrost_average is None and "cm_mass_power_in_defrost_average" in self.model_fields_set:
|
|
1098
|
+
_dict['cmMassPowerInDefrostAverage'] = None
|
|
1099
|
+
|
|
1100
|
+
# set to None if cm_mass_power_in_defrost_min (nullable) is None
|
|
1101
|
+
# and model_fields_set contains the field
|
|
1102
|
+
if self.cm_mass_power_in_defrost_min is None and "cm_mass_power_in_defrost_min" in self.model_fields_set:
|
|
1103
|
+
_dict['cmMassPowerInDefrostMin'] = None
|
|
1104
|
+
|
|
1105
|
+
# set to None if cm_mass_power_in_defrost_max (nullable) is None
|
|
1106
|
+
# and model_fields_set contains the field
|
|
1107
|
+
if self.cm_mass_power_in_defrost_max is None and "cm_mass_power_in_defrost_max" in self.model_fields_set:
|
|
1108
|
+
_dict['cmMassPowerInDefrostMax'] = None
|
|
1109
|
+
|
|
1110
|
+
# set to None if cm_mass_power_in_dhw_average (nullable) is None
|
|
1111
|
+
# and model_fields_set contains the field
|
|
1112
|
+
if self.cm_mass_power_in_dhw_average is None and "cm_mass_power_in_dhw_average" in self.model_fields_set:
|
|
1113
|
+
_dict['cmMassPowerInDhwAverage'] = None
|
|
1114
|
+
|
|
1115
|
+
# set to None if cm_mass_power_in_dhw_min (nullable) is None
|
|
1116
|
+
# and model_fields_set contains the field
|
|
1117
|
+
if self.cm_mass_power_in_dhw_min is None and "cm_mass_power_in_dhw_min" in self.model_fields_set:
|
|
1118
|
+
_dict['cmMassPowerInDhwMin'] = None
|
|
1119
|
+
|
|
1120
|
+
# set to None if cm_mass_power_in_dhw_max (nullable) is None
|
|
1121
|
+
# and model_fields_set contains the field
|
|
1122
|
+
if self.cm_mass_power_in_dhw_max is None and "cm_mass_power_in_dhw_max" in self.model_fields_set:
|
|
1123
|
+
_dict['cmMassPowerInDhwMax'] = None
|
|
1124
|
+
|
|
1125
|
+
# set to None if cm_mass_power_in_manual_control_average (nullable) is None
|
|
1126
|
+
# and model_fields_set contains the field
|
|
1127
|
+
if self.cm_mass_power_in_manual_control_average is None and "cm_mass_power_in_manual_control_average" in self.model_fields_set:
|
|
1128
|
+
_dict['cmMassPowerInManualControlAverage'] = None
|
|
1129
|
+
|
|
1130
|
+
# set to None if cm_mass_power_in_manual_control_min (nullable) is None
|
|
1131
|
+
# and model_fields_set contains the field
|
|
1132
|
+
if self.cm_mass_power_in_manual_control_min is None and "cm_mass_power_in_manual_control_min" in self.model_fields_set:
|
|
1133
|
+
_dict['cmMassPowerInManualControlMin'] = None
|
|
1134
|
+
|
|
1135
|
+
# set to None if cm_mass_power_out_heating_defrost_average (nullable) is None
|
|
1136
|
+
# and model_fields_set contains the field
|
|
1137
|
+
if self.cm_mass_power_out_heating_defrost_average is None and "cm_mass_power_out_heating_defrost_average" in self.model_fields_set:
|
|
1138
|
+
_dict['cmMassPowerOutHeatingDefrostAverage'] = None
|
|
1139
|
+
|
|
1140
|
+
# set to None if cm_mass_power_out_heating_defrost_min (nullable) is None
|
|
1141
|
+
# and model_fields_set contains the field
|
|
1142
|
+
if self.cm_mass_power_out_heating_defrost_min is None and "cm_mass_power_out_heating_defrost_min" in self.model_fields_set:
|
|
1143
|
+
_dict['cmMassPowerOutHeatingDefrostMin'] = None
|
|
1144
|
+
|
|
1145
|
+
# set to None if cm_mass_power_out_heating_defrost_max (nullable) is None
|
|
1146
|
+
# and model_fields_set contains the field
|
|
1147
|
+
if self.cm_mass_power_out_heating_defrost_max is None and "cm_mass_power_out_heating_defrost_max" in self.model_fields_set:
|
|
1148
|
+
_dict['cmMassPowerOutHeatingDefrostMax'] = None
|
|
1149
|
+
|
|
1150
|
+
# set to None if cm_mass_power_out_dhw_defrost_average (nullable) is None
|
|
1151
|
+
# and model_fields_set contains the field
|
|
1152
|
+
if self.cm_mass_power_out_dhw_defrost_average is None and "cm_mass_power_out_dhw_defrost_average" in self.model_fields_set:
|
|
1153
|
+
_dict['cmMassPowerOutDhwDefrostAverage'] = None
|
|
1154
|
+
|
|
1155
|
+
# set to None if cm_mass_power_out_dhw_defrost_min (nullable) is None
|
|
1156
|
+
# and model_fields_set contains the field
|
|
1157
|
+
if self.cm_mass_power_out_dhw_defrost_min is None and "cm_mass_power_out_dhw_defrost_min" in self.model_fields_set:
|
|
1158
|
+
_dict['cmMassPowerOutDhwDefrostMin'] = None
|
|
1159
|
+
|
|
1160
|
+
# set to None if cm_mass_power_out_dhw_defrost_max (nullable) is None
|
|
1161
|
+
# and model_fields_set contains the field
|
|
1162
|
+
if self.cm_mass_power_out_dhw_defrost_max is None and "cm_mass_power_out_dhw_defrost_max" in self.model_fields_set:
|
|
1163
|
+
_dict['cmMassPowerOutDhwDefrostMax'] = None
|
|
1164
|
+
|
|
1165
|
+
# set to None if cm_mass_power_in_manual_control_max (nullable) is None
|
|
1166
|
+
# and model_fields_set contains the field
|
|
1167
|
+
if self.cm_mass_power_in_manual_control_max is None and "cm_mass_power_in_manual_control_max" in self.model_fields_set:
|
|
1168
|
+
_dict['cmMassPowerInManualControlMax'] = None
|
|
1169
|
+
|
|
1170
|
+
# set to None if cm_mass_power_out_standby_average (nullable) is None
|
|
1171
|
+
# and model_fields_set contains the field
|
|
1172
|
+
if self.cm_mass_power_out_standby_average is None and "cm_mass_power_out_standby_average" in self.model_fields_set:
|
|
1173
|
+
_dict['cmMassPowerOutStandbyAverage'] = None
|
|
1174
|
+
|
|
1175
|
+
# set to None if cm_mass_power_out_standby_min (nullable) is None
|
|
1176
|
+
# and model_fields_set contains the field
|
|
1177
|
+
if self.cm_mass_power_out_standby_min is None and "cm_mass_power_out_standby_min" in self.model_fields_set:
|
|
1178
|
+
_dict['cmMassPowerOutStandbyMin'] = None
|
|
1179
|
+
|
|
1180
|
+
# set to None if cm_mass_power_out_standby_max (nullable) is None
|
|
1181
|
+
# and model_fields_set contains the field
|
|
1182
|
+
if self.cm_mass_power_out_standby_max is None and "cm_mass_power_out_standby_max" in self.model_fields_set:
|
|
1183
|
+
_dict['cmMassPowerOutStandbyMax'] = None
|
|
1184
|
+
|
|
1185
|
+
# set to None if cm_mass_power_out_heating_average (nullable) is None
|
|
1186
|
+
# and model_fields_set contains the field
|
|
1187
|
+
if self.cm_mass_power_out_heating_average is None and "cm_mass_power_out_heating_average" in self.model_fields_set:
|
|
1188
|
+
_dict['cmMassPowerOutHeatingAverage'] = None
|
|
1189
|
+
|
|
1190
|
+
# set to None if cm_mass_power_out_heating_min (nullable) is None
|
|
1191
|
+
# and model_fields_set contains the field
|
|
1192
|
+
if self.cm_mass_power_out_heating_min is None and "cm_mass_power_out_heating_min" in self.model_fields_set:
|
|
1193
|
+
_dict['cmMassPowerOutHeatingMin'] = None
|
|
1194
|
+
|
|
1195
|
+
# set to None if cm_mass_power_out_heating_max (nullable) is None
|
|
1196
|
+
# and model_fields_set contains the field
|
|
1197
|
+
if self.cm_mass_power_out_heating_max is None and "cm_mass_power_out_heating_max" in self.model_fields_set:
|
|
1198
|
+
_dict['cmMassPowerOutHeatingMax'] = None
|
|
1199
|
+
|
|
1200
|
+
# set to None if cm_mass_power_out_cooling_average (nullable) is None
|
|
1201
|
+
# and model_fields_set contains the field
|
|
1202
|
+
if self.cm_mass_power_out_cooling_average is None and "cm_mass_power_out_cooling_average" in self.model_fields_set:
|
|
1203
|
+
_dict['cmMassPowerOutCoolingAverage'] = None
|
|
1204
|
+
|
|
1205
|
+
# set to None if cm_mass_power_out_cooling_min (nullable) is None
|
|
1206
|
+
# and model_fields_set contains the field
|
|
1207
|
+
if self.cm_mass_power_out_cooling_min is None and "cm_mass_power_out_cooling_min" in self.model_fields_set:
|
|
1208
|
+
_dict['cmMassPowerOutCoolingMin'] = None
|
|
1209
|
+
|
|
1210
|
+
# set to None if cm_mass_power_out_cooling_max (nullable) is None
|
|
1211
|
+
# and model_fields_set contains the field
|
|
1212
|
+
if self.cm_mass_power_out_cooling_max is None and "cm_mass_power_out_cooling_max" in self.model_fields_set:
|
|
1213
|
+
_dict['cmMassPowerOutCoolingMax'] = None
|
|
1214
|
+
|
|
1215
|
+
# set to None if cm_mass_power_out_defrost_average (nullable) is None
|
|
1216
|
+
# and model_fields_set contains the field
|
|
1217
|
+
if self.cm_mass_power_out_defrost_average is None and "cm_mass_power_out_defrost_average" in self.model_fields_set:
|
|
1218
|
+
_dict['cmMassPowerOutDefrostAverage'] = None
|
|
1219
|
+
|
|
1220
|
+
# set to None if cm_mass_power_out_defrost_min (nullable) is None
|
|
1221
|
+
# and model_fields_set contains the field
|
|
1222
|
+
if self.cm_mass_power_out_defrost_min is None and "cm_mass_power_out_defrost_min" in self.model_fields_set:
|
|
1223
|
+
_dict['cmMassPowerOutDefrostMin'] = None
|
|
1224
|
+
|
|
1225
|
+
# set to None if cm_mass_power_out_defrost_max (nullable) is None
|
|
1226
|
+
# and model_fields_set contains the field
|
|
1227
|
+
if self.cm_mass_power_out_defrost_max is None and "cm_mass_power_out_defrost_max" in self.model_fields_set:
|
|
1228
|
+
_dict['cmMassPowerOutDefrostMax'] = None
|
|
1229
|
+
|
|
1230
|
+
# set to None if cm_mass_power_out_dhw_average (nullable) is None
|
|
1231
|
+
# and model_fields_set contains the field
|
|
1232
|
+
if self.cm_mass_power_out_dhw_average is None and "cm_mass_power_out_dhw_average" in self.model_fields_set:
|
|
1233
|
+
_dict['cmMassPowerOutDhwAverage'] = None
|
|
1234
|
+
|
|
1235
|
+
# set to None if cm_mass_power_out_dhw_min (nullable) is None
|
|
1236
|
+
# and model_fields_set contains the field
|
|
1237
|
+
if self.cm_mass_power_out_dhw_min is None and "cm_mass_power_out_dhw_min" in self.model_fields_set:
|
|
1238
|
+
_dict['cmMassPowerOutDhwMin'] = None
|
|
1239
|
+
|
|
1240
|
+
# set to None if cm_mass_power_out_dhw_max (nullable) is None
|
|
1241
|
+
# and model_fields_set contains the field
|
|
1242
|
+
if self.cm_mass_power_out_dhw_max is None and "cm_mass_power_out_dhw_max" in self.model_fields_set:
|
|
1243
|
+
_dict['cmMassPowerOutDhwMax'] = None
|
|
1244
|
+
|
|
1245
|
+
# set to None if cm_mass_power_out_manual_control_average (nullable) is None
|
|
1246
|
+
# and model_fields_set contains the field
|
|
1247
|
+
if self.cm_mass_power_out_manual_control_average is None and "cm_mass_power_out_manual_control_average" in self.model_fields_set:
|
|
1248
|
+
_dict['cmMassPowerOutManualControlAverage'] = None
|
|
1249
|
+
|
|
1250
|
+
# set to None if cm_mass_power_out_manual_control_min (nullable) is None
|
|
1251
|
+
# and model_fields_set contains the field
|
|
1252
|
+
if self.cm_mass_power_out_manual_control_min is None and "cm_mass_power_out_manual_control_min" in self.model_fields_set:
|
|
1253
|
+
_dict['cmMassPowerOutManualControlMin'] = None
|
|
1254
|
+
|
|
1255
|
+
# set to None if cm_mass_power_out_manual_control_max (nullable) is None
|
|
1256
|
+
# and model_fields_set contains the field
|
|
1257
|
+
if self.cm_mass_power_out_manual_control_max is None and "cm_mass_power_out_manual_control_max" in self.model_fields_set:
|
|
1258
|
+
_dict['cmMassPowerOutManualControlMax'] = None
|
|
1259
|
+
|
|
1260
|
+
# set to None if inverter_input_voltage_average (nullable) is None
|
|
1261
|
+
# and model_fields_set contains the field
|
|
1262
|
+
if self.inverter_input_voltage_average is None and "inverter_input_voltage_average" in self.model_fields_set:
|
|
1263
|
+
_dict['inverterInputVoltageAverage'] = None
|
|
1264
|
+
|
|
1265
|
+
# set to None if inverter_input_voltage_min (nullable) is None
|
|
1266
|
+
# and model_fields_set contains the field
|
|
1267
|
+
if self.inverter_input_voltage_min is None and "inverter_input_voltage_min" in self.model_fields_set:
|
|
1268
|
+
_dict['inverterInputVoltageMin'] = None
|
|
1269
|
+
|
|
1270
|
+
# set to None if inverter_input_voltage_max (nullable) is None
|
|
1271
|
+
# and model_fields_set contains the field
|
|
1272
|
+
if self.inverter_input_voltage_max is None and "inverter_input_voltage_max" in self.model_fields_set:
|
|
1273
|
+
_dict['inverterInputVoltageMax'] = None
|
|
1274
|
+
|
|
1275
|
+
# set to None if central_heating_pwm_requested_duty_cycle_average (nullable) is None
|
|
1276
|
+
# and model_fields_set contains the field
|
|
1277
|
+
if self.central_heating_pwm_requested_duty_cycle_average is None and "central_heating_pwm_requested_duty_cycle_average" in self.model_fields_set:
|
|
1278
|
+
_dict['centralHeatingPwmRequestedDutyCycleAverage'] = None
|
|
1279
|
+
|
|
1280
|
+
# set to None if central_heating_pwm_requested_duty_cycle_min (nullable) is None
|
|
1281
|
+
# and model_fields_set contains the field
|
|
1282
|
+
if self.central_heating_pwm_requested_duty_cycle_min is None and "central_heating_pwm_requested_duty_cycle_min" in self.model_fields_set:
|
|
1283
|
+
_dict['centralHeatingPwmRequestedDutyCycleMin'] = None
|
|
1284
|
+
|
|
1285
|
+
# set to None if central_heating_pwm_requested_duty_cycle_max (nullable) is None
|
|
1286
|
+
# and model_fields_set contains the field
|
|
1287
|
+
if self.central_heating_pwm_requested_duty_cycle_max is None and "central_heating_pwm_requested_duty_cycle_max" in self.model_fields_set:
|
|
1288
|
+
_dict['centralHeatingPwmRequestedDutyCycleMax'] = None
|
|
1289
|
+
|
|
1290
|
+
# set to None if central_heating_pwm_requested_duty_cycle_state_standby (nullable) is None
|
|
1291
|
+
# and model_fields_set contains the field
|
|
1292
|
+
if self.central_heating_pwm_requested_duty_cycle_state_standby is None and "central_heating_pwm_requested_duty_cycle_state_standby" in self.model_fields_set:
|
|
1293
|
+
_dict['centralHeatingPwmRequestedDutyCycleStateStandby'] = None
|
|
1294
|
+
|
|
1295
|
+
# set to None if central_heating_pwm_requested_duty_cycle_state_pumping (nullable) is None
|
|
1296
|
+
# and model_fields_set contains the field
|
|
1297
|
+
if self.central_heating_pwm_requested_duty_cycle_state_pumping is None and "central_heating_pwm_requested_duty_cycle_state_pumping" in self.model_fields_set:
|
|
1298
|
+
_dict['centralHeatingPwmRequestedDutyCycleStatePumping'] = None
|
|
1299
|
+
|
|
1300
|
+
# set to None if dhw_pwm_requested_duty_cycle_average (nullable) is None
|
|
1301
|
+
# and model_fields_set contains the field
|
|
1302
|
+
if self.dhw_pwm_requested_duty_cycle_average is None and "dhw_pwm_requested_duty_cycle_average" in self.model_fields_set:
|
|
1303
|
+
_dict['dhwPwmRequestedDutyCycleAverage'] = None
|
|
1304
|
+
|
|
1305
|
+
# set to None if dhw_pwm_requested_duty_cycle_min (nullable) is None
|
|
1306
|
+
# and model_fields_set contains the field
|
|
1307
|
+
if self.dhw_pwm_requested_duty_cycle_min is None and "dhw_pwm_requested_duty_cycle_min" in self.model_fields_set:
|
|
1308
|
+
_dict['dhwPwmRequestedDutyCycleMin'] = None
|
|
1309
|
+
|
|
1310
|
+
# set to None if dhw_pwm_requested_duty_cycle_max (nullable) is None
|
|
1311
|
+
# and model_fields_set contains the field
|
|
1312
|
+
if self.dhw_pwm_requested_duty_cycle_max is None and "dhw_pwm_requested_duty_cycle_max" in self.model_fields_set:
|
|
1313
|
+
_dict['dhwPwmRequestedDutyCycleMax'] = None
|
|
1314
|
+
|
|
1315
|
+
# set to None if dhw_pwm_requested_duty_cycle_state_standby (nullable) is None
|
|
1316
|
+
# and model_fields_set contains the field
|
|
1317
|
+
if self.dhw_pwm_requested_duty_cycle_state_standby is None and "dhw_pwm_requested_duty_cycle_state_standby" in self.model_fields_set:
|
|
1318
|
+
_dict['dhwPwmRequestedDutyCycleStateStandby'] = None
|
|
1319
|
+
|
|
1320
|
+
# set to None if dhw_pwm_requested_duty_cycle_state_pumping (nullable) is None
|
|
1321
|
+
# and model_fields_set contains the field
|
|
1322
|
+
if self.dhw_pwm_requested_duty_cycle_state_pumping is None and "dhw_pwm_requested_duty_cycle_state_pumping" in self.model_fields_set:
|
|
1323
|
+
_dict['dhwPwmRequestedDutyCycleStatePumping'] = None
|
|
1324
|
+
|
|
1325
|
+
# set to None if indoor_unit_heater_temperature_average (nullable) is None
|
|
1326
|
+
# and model_fields_set contains the field
|
|
1327
|
+
if self.indoor_unit_heater_temperature_average is None and "indoor_unit_heater_temperature_average" in self.model_fields_set:
|
|
1328
|
+
_dict['indoorUnitHeaterTemperatureAverage'] = None
|
|
1329
|
+
|
|
1330
|
+
# set to None if indoor_unit_heater_temperature_min (nullable) is None
|
|
1331
|
+
# and model_fields_set contains the field
|
|
1332
|
+
if self.indoor_unit_heater_temperature_min is None and "indoor_unit_heater_temperature_min" in self.model_fields_set:
|
|
1333
|
+
_dict['indoorUnitHeaterTemperatureMin'] = None
|
|
1334
|
+
|
|
1335
|
+
# set to None if indoor_unit_heater_temperature_max (nullable) is None
|
|
1336
|
+
# and model_fields_set contains the field
|
|
1337
|
+
if self.indoor_unit_heater_temperature_max is None and "indoor_unit_heater_temperature_max" in self.model_fields_set:
|
|
1338
|
+
_dict['indoorUnitHeaterTemperatureMax'] = None
|
|
1339
|
+
|
|
1340
|
+
# set to None if indoor_unit_input_current_average (nullable) is None
|
|
1341
|
+
# and model_fields_set contains the field
|
|
1342
|
+
if self.indoor_unit_input_current_average is None and "indoor_unit_input_current_average" in self.model_fields_set:
|
|
1343
|
+
_dict['indoorUnitInputCurrentAverage'] = None
|
|
1344
|
+
|
|
1345
|
+
# set to None if indoor_unit_input_current_min (nullable) is None
|
|
1346
|
+
# and model_fields_set contains the field
|
|
1347
|
+
if self.indoor_unit_input_current_min is None and "indoor_unit_input_current_min" in self.model_fields_set:
|
|
1348
|
+
_dict['indoorUnitInputCurrentMin'] = None
|
|
1349
|
+
|
|
1350
|
+
# set to None if indoor_unit_input_current_max (nullable) is None
|
|
1351
|
+
# and model_fields_set contains the field
|
|
1352
|
+
if self.indoor_unit_input_current_max is None and "indoor_unit_input_current_max" in self.model_fields_set:
|
|
1353
|
+
_dict['indoorUnitInputCurrentMax'] = None
|
|
1354
|
+
|
|
1355
|
+
# set to None if signal_sinr_average (nullable) is None
|
|
1356
|
+
# and model_fields_set contains the field
|
|
1357
|
+
if self.signal_sinr_average is None and "signal_sinr_average" in self.model_fields_set:
|
|
1358
|
+
_dict['signalSinrAverage'] = None
|
|
1359
|
+
|
|
1360
|
+
# set to None if signal_sinr_min (nullable) is None
|
|
1361
|
+
# and model_fields_set contains the field
|
|
1362
|
+
if self.signal_sinr_min is None and "signal_sinr_min" in self.model_fields_set:
|
|
1363
|
+
_dict['signalSinrMin'] = None
|
|
1364
|
+
|
|
1365
|
+
# set to None if signal_sinr_max (nullable) is None
|
|
1366
|
+
# and model_fields_set contains the field
|
|
1367
|
+
if self.signal_sinr_max is None and "signal_sinr_max" in self.model_fields_set:
|
|
1368
|
+
_dict['signalSinrMax'] = None
|
|
615
1369
|
|
|
616
1370
|
return _dict
|
|
617
1371
|
|
|
618
1372
|
@classmethod
|
|
619
|
-
def from_dict(cls, obj:
|
|
1373
|
+
def from_dict(cls, obj: Dict) -> Self:
|
|
620
1374
|
"""Create an instance of HeatPumpLogViewDto from a dict"""
|
|
621
1375
|
if obj is None:
|
|
622
1376
|
return None
|
|
623
1377
|
|
|
624
1378
|
if not isinstance(obj, dict):
|
|
625
|
-
return
|
|
1379
|
+
return cls.model_validate(obj)
|
|
626
1380
|
|
|
627
|
-
_obj =
|
|
628
|
-
"
|
|
1381
|
+
_obj = cls.model_validate({
|
|
1382
|
+
"timeBucket": obj.get("timeBucket"),
|
|
629
1383
|
"interval": obj.get("interval"),
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
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
|
-
"
|
|
762
|
-
"
|
|
763
|
-
"
|
|
764
|
-
"
|
|
1384
|
+
"timeCoveredInInterval": obj.get("timeCoveredInInterval"),
|
|
1385
|
+
"heatPumpStateStandby": obj.get("heatPumpStateStandby"),
|
|
1386
|
+
"heatPumpStateHeating": obj.get("heatPumpStateHeating"),
|
|
1387
|
+
"heatPumpStateCooling": obj.get("heatPumpStateCooling"),
|
|
1388
|
+
"heatPumpStateDhw": obj.get("heatPumpStateDhw"),
|
|
1389
|
+
"heatPumpStateLegionella": obj.get("heatPumpStateLegionella"),
|
|
1390
|
+
"heatPumpStateManualControl": obj.get("heatPumpStateManualControl"),
|
|
1391
|
+
"heatPumpStateDhwDefrost": obj.get("heatPumpStateDhwDefrost"),
|
|
1392
|
+
"heatPumpStateHeatingDefrost": obj.get("heatPumpStateHeatingDefrost"),
|
|
1393
|
+
"controlBridgeStatusWaterPump": obj.get("controlBridgeStatusWaterPump"),
|
|
1394
|
+
"controlBridgeStatusGasBoiler": obj.get("controlBridgeStatusGasBoiler"),
|
|
1395
|
+
"controlBridgeStatusElectricHeater": obj.get("controlBridgeStatusElectricHeater"),
|
|
1396
|
+
"controlBridgeStatusWaterPump2": obj.get("controlBridgeStatusWaterPump2"),
|
|
1397
|
+
"t1Average": obj.get("t1Average"),
|
|
1398
|
+
"t1Min": obj.get("t1Min"),
|
|
1399
|
+
"t1Max": obj.get("t1Max"),
|
|
1400
|
+
"t2Average": obj.get("t2Average"),
|
|
1401
|
+
"t2Min": obj.get("t2Min"),
|
|
1402
|
+
"t2Max": obj.get("t2Max"),
|
|
1403
|
+
"tAirInAverage": obj.get("tAirInAverage"),
|
|
1404
|
+
"tAirInMin": obj.get("tAirInMin"),
|
|
1405
|
+
"tAirInMax": obj.get("tAirInMax"),
|
|
1406
|
+
"tAirOutAverage": obj.get("tAirOutAverage"),
|
|
1407
|
+
"tAirOutMin": obj.get("tAirOutMin"),
|
|
1408
|
+
"tAirOutMax": obj.get("tAirOutMax"),
|
|
1409
|
+
"tWaterInAverage": obj.get("tWaterInAverage"),
|
|
1410
|
+
"tWaterInMin": obj.get("tWaterInMin"),
|
|
1411
|
+
"tWaterInMax": obj.get("tWaterInMax"),
|
|
1412
|
+
"tWaterOutAverage": obj.get("tWaterOutAverage"),
|
|
1413
|
+
"tWaterOutMin": obj.get("tWaterOutMin"),
|
|
1414
|
+
"tWaterOutMax": obj.get("tWaterOutMax"),
|
|
1415
|
+
"tWaterHouseInAverage": obj.get("tWaterHouseInAverage"),
|
|
1416
|
+
"tWaterHouseInMin": obj.get("tWaterHouseInMin"),
|
|
1417
|
+
"tWaterHouseInMax": obj.get("tWaterHouseInMax"),
|
|
1418
|
+
"tRoomAverage": obj.get("tRoomAverage"),
|
|
1419
|
+
"tRoomMin": obj.get("tRoomMin"),
|
|
1420
|
+
"tRoomMax": obj.get("tRoomMax"),
|
|
1421
|
+
"tRoomTargetAverage": obj.get("tRoomTargetAverage"),
|
|
1422
|
+
"tRoomTargetMin": obj.get("tRoomTargetMin"),
|
|
1423
|
+
"tRoomTargetMax": obj.get("tRoomTargetMax"),
|
|
1424
|
+
"tThermostatSetpointAverage": obj.get("tThermostatSetpointAverage"),
|
|
1425
|
+
"tThermostatSetpointMin": obj.get("tThermostatSetpointMin"),
|
|
1426
|
+
"tThermostatSetpointMax": obj.get("tThermostatSetpointMax"),
|
|
1427
|
+
"otBoilerFeedTemperatureAverage": obj.get("otBoilerFeedTemperatureAverage"),
|
|
1428
|
+
"otBoilerFeedTemperatureMin": obj.get("otBoilerFeedTemperatureMin"),
|
|
1429
|
+
"otBoilerFeedTemperatureMax": obj.get("otBoilerFeedTemperatureMax"),
|
|
1430
|
+
"otBoilerReturnTemperatureAverage": obj.get("otBoilerReturnTemperatureAverage"),
|
|
1431
|
+
"otBoilerReturnTemperatureMin": obj.get("otBoilerReturnTemperatureMin"),
|
|
1432
|
+
"otBoilerReturnTemperatureMax": obj.get("otBoilerReturnTemperatureMax"),
|
|
1433
|
+
"thermostatStateOff": obj.get("thermostatStateOff"),
|
|
1434
|
+
"thermostatStateOn": obj.get("thermostatStateOn"),
|
|
1435
|
+
"rpmAverage": obj.get("rpmAverage"),
|
|
1436
|
+
"rpmMin": obj.get("rpmMin"),
|
|
1437
|
+
"rpmMax": obj.get("rpmMax"),
|
|
1438
|
+
"centralHeatingFlowAverage": obj.get("centralHeatingFlowAverage"),
|
|
1439
|
+
"centralHeatingFlowMin": obj.get("centralHeatingFlowMin"),
|
|
1440
|
+
"centralHeatingFlowMax": obj.get("centralHeatingFlowMax"),
|
|
1441
|
+
"centralHeatingFlowStateStandby": obj.get("centralHeatingFlowStateStandby"),
|
|
1442
|
+
"centralHeatingFlowStateStandbyNoPwm": obj.get("centralHeatingFlowStateStandbyNoPwm"),
|
|
1443
|
+
"centralHeatingFlowStateMotorBlocked": obj.get("centralHeatingFlowStateMotorBlocked"),
|
|
1444
|
+
"centralHeatingFlowStatePumping": obj.get("centralHeatingFlowStatePumping"),
|
|
1445
|
+
"centralHeatingFlowStatePumpingNoPwm": obj.get("centralHeatingFlowStatePumpingNoPwm"),
|
|
1446
|
+
"centralHeatingFlowStateSuboptimalRunning": obj.get("centralHeatingFlowStateSuboptimalRunning"),
|
|
1447
|
+
"centralHeatingFlowStateStoppedMomentarily": obj.get("centralHeatingFlowStateStoppedMomentarily"),
|
|
1448
|
+
"centralHeatingFlowStateStoppedPermanentDamage": obj.get("centralHeatingFlowStateStoppedPermanentDamage"),
|
|
1449
|
+
"dhwFlowAverage": obj.get("dhwFlowAverage"),
|
|
1450
|
+
"dhwFlowMin": obj.get("dhwFlowMin"),
|
|
1451
|
+
"dhwFlowMax": obj.get("dhwFlowMax"),
|
|
1452
|
+
"dhwFlowStateStandby": obj.get("dhwFlowStateStandby"),
|
|
1453
|
+
"dhwFlowStateStandbyNoPwm": obj.get("dhwFlowStateStandbyNoPwm"),
|
|
1454
|
+
"dhwFlowStateMotorBlocked": obj.get("dhwFlowStateMotorBlocked"),
|
|
1455
|
+
"dhwFlowStatePumping": obj.get("dhwFlowStatePumping"),
|
|
1456
|
+
"dhwFlowStatePumpingNoPwm": obj.get("dhwFlowStatePumpingNoPwm"),
|
|
1457
|
+
"dhwFlowStateSuboptimalRunning": obj.get("dhwFlowStateSuboptimalRunning"),
|
|
1458
|
+
"dhwFlowStateStoppedMomentarily": obj.get("dhwFlowStateStoppedMomentarily"),
|
|
1459
|
+
"dhwFlowStateStoppedPermanentDamage": obj.get("dhwFlowStateStoppedPermanentDamage"),
|
|
1460
|
+
"signalStrengthAverage": obj.get("signalStrengthAverage"),
|
|
1461
|
+
"signalStrengthMin": obj.get("signalStrengthMin"),
|
|
1462
|
+
"signalStrengthMax": obj.get("signalStrengthMax"),
|
|
1463
|
+
"rpmLimiterAverage": obj.get("rpmLimiterAverage"),
|
|
1464
|
+
"rpmLimiterMin": obj.get("rpmLimiterMin"),
|
|
1465
|
+
"rpmLimiterMax": obj.get("rpmLimiterMax"),
|
|
1466
|
+
"rpmLimiterNoLimit": obj.get("rpmLimiterNoLimit"),
|
|
1467
|
+
"rpmLimiterPowerLimit": obj.get("rpmLimiterPowerLimit"),
|
|
1468
|
+
"rpmLimiterDefrost": obj.get("rpmLimiterDefrost"),
|
|
1469
|
+
"rpmLimiterSilentHours": obj.get("rpmLimiterSilentHours"),
|
|
1470
|
+
"rpmLimiterHPControl": obj.get("rpmLimiterHPControl"),
|
|
1471
|
+
"rpmLimiterPressure": obj.get("rpmLimiterPressure"),
|
|
1472
|
+
"rpmLimiterWaterOut": obj.get("rpmLimiterWaterOut"),
|
|
1473
|
+
"rpmLimiterEnvelope": obj.get("rpmLimiterEnvelope"),
|
|
1474
|
+
"rpmLimiterHouseIn": obj.get("rpmLimiterHouseIn"),
|
|
1475
|
+
"pCompressorInAverage": obj.get("pCompressorInAverage"),
|
|
1476
|
+
"pCompressorInMin": obj.get("pCompressorInMin"),
|
|
1477
|
+
"pCompressorInMax": obj.get("pCompressorInMax"),
|
|
1478
|
+
"pCompressorOutAverage": obj.get("pCompressorOutAverage"),
|
|
1479
|
+
"pCompressorOutMin": obj.get("pCompressorOutMin"),
|
|
1480
|
+
"pCompressorOutMax": obj.get("pCompressorOutMax"),
|
|
1481
|
+
"pCompressorInTargetAverage": obj.get("pCompressorInTargetAverage"),
|
|
1482
|
+
"pCompressorInTargetMin": obj.get("pCompressorInTargetMin"),
|
|
1483
|
+
"pCompressorInTargetMax": obj.get("pCompressorInTargetMax"),
|
|
1484
|
+
"tCompressorInAverage": obj.get("tCompressorInAverage"),
|
|
1485
|
+
"tCompressorInMin": obj.get("tCompressorInMin"),
|
|
1486
|
+
"tCompressorInMax": obj.get("tCompressorInMax"),
|
|
1487
|
+
"tCompressorOutAverage": obj.get("tCompressorOutAverage"),
|
|
1488
|
+
"tCompressorOutMin": obj.get("tCompressorOutMin"),
|
|
1489
|
+
"tCompressorOutMax": obj.get("tCompressorOutMax"),
|
|
1490
|
+
"tCompressorInTransientAverage": obj.get("tCompressorInTransientAverage"),
|
|
1491
|
+
"tCompressorInTransientMin": obj.get("tCompressorInTransientMin"),
|
|
1492
|
+
"tCompressorInTransientMax": obj.get("tCompressorInTransientMax"),
|
|
1493
|
+
"tCompressorOutTransientAverage": obj.get("tCompressorOutTransientAverage"),
|
|
1494
|
+
"tCompressorOutTransientMin": obj.get("tCompressorOutTransientMin"),
|
|
1495
|
+
"tCompressorOutTransientMax": obj.get("tCompressorOutTransientMax"),
|
|
1496
|
+
"deltaTCompressorInSuperheatAverage": obj.get("deltaTCompressorInSuperheatAverage"),
|
|
1497
|
+
"deltaTCompressorInSuperheatMin": obj.get("deltaTCompressorInSuperheatMin"),
|
|
1498
|
+
"deltaTCompressorInSuperheatMax": obj.get("deltaTCompressorInSuperheatMax"),
|
|
1499
|
+
"fanAverage": obj.get("fanAverage"),
|
|
1500
|
+
"fanMin": obj.get("fanMin"),
|
|
1501
|
+
"fanMax": obj.get("fanMax"),
|
|
1502
|
+
"fanPowerAverage": obj.get("fanPowerAverage"),
|
|
1503
|
+
"fanPowerMin": obj.get("fanPowerMin"),
|
|
1504
|
+
"fanPowerMax": obj.get("fanPowerMax"),
|
|
1505
|
+
"temperatureErrorIntegralAverage": obj.get("temperatureErrorIntegralAverage"),
|
|
1506
|
+
"temperatureErrorIntegralMin": obj.get("temperatureErrorIntegralMin"),
|
|
1507
|
+
"temperatureErrorIntegralMax": obj.get("temperatureErrorIntegralMax"),
|
|
1508
|
+
"dtcNone": obj.get("dtcNone"),
|
|
1509
|
+
"dtcContinue": obj.get("dtcContinue"),
|
|
1510
|
+
"dtcCompressorOff": obj.get("dtcCompressorOff"),
|
|
1511
|
+
"dtcDefrostForbidden": obj.get("dtcDefrostForbidden"),
|
|
1512
|
+
"dtcRequestService": obj.get("dtcRequestService"),
|
|
1513
|
+
"dtcUseHeatingCurve": obj.get("dtcUseHeatingCurve"),
|
|
1514
|
+
"dtcDhwForbidden": obj.get("dtcDhwForbidden"),
|
|
1515
|
+
"dtcError": obj.get("dtcError"),
|
|
1516
|
+
"dtcInactive": obj.get("dtcInactive"),
|
|
1517
|
+
"controlBridgeStatusDhwValve": obj.get("controlBridgeStatusDhwValve"),
|
|
1518
|
+
"valveAverage": obj.get("valveAverage"),
|
|
1519
|
+
"valveMin": obj.get("valveMin"),
|
|
1520
|
+
"valveMax": obj.get("valveMax"),
|
|
1521
|
+
"tBoardAverage": obj.get("tBoardAverage"),
|
|
1522
|
+
"tBoardMin": obj.get("tBoardMin"),
|
|
1523
|
+
"tBoardMax": obj.get("tBoardMax"),
|
|
1524
|
+
"tInverterAverage": obj.get("tInverterAverage"),
|
|
1525
|
+
"tInverterMin": obj.get("tInverterMin"),
|
|
1526
|
+
"tInverterMax": obj.get("tInverterMax"),
|
|
1527
|
+
"compressorPowerLowAccuracyAverage": obj.get("compressorPowerLowAccuracyAverage"),
|
|
1528
|
+
"compressorPowerLowAccuracyMin": obj.get("compressorPowerLowAccuracyMin"),
|
|
1529
|
+
"compressorPowerLowAccuracyMax": obj.get("compressorPowerLowAccuracyMax"),
|
|
1530
|
+
"cmMassPowerInStandbyAverage": obj.get("cmMassPowerInStandbyAverage"),
|
|
1531
|
+
"cmMassPowerInStandbyMin": obj.get("cmMassPowerInStandbyMin"),
|
|
1532
|
+
"cmMassPowerInStandbyMax": obj.get("cmMassPowerInStandbyMax"),
|
|
1533
|
+
"cmMassPowerInHeatingAverage": obj.get("cmMassPowerInHeatingAverage"),
|
|
1534
|
+
"cmMassPowerInHeatingMin": obj.get("cmMassPowerInHeatingMin"),
|
|
1535
|
+
"cmMassPowerInHeatingMax": obj.get("cmMassPowerInHeatingMax"),
|
|
1536
|
+
"cmMassPowerInCoolingAverage": obj.get("cmMassPowerInCoolingAverage"),
|
|
1537
|
+
"cmMassPowerInCoolingMin": obj.get("cmMassPowerInCoolingMin"),
|
|
1538
|
+
"cmMassPowerInCoolingMax": obj.get("cmMassPowerInCoolingMax"),
|
|
1539
|
+
"cmMassPowerInHeatingDefrostAverage": obj.get("cmMassPowerInHeatingDefrostAverage"),
|
|
1540
|
+
"cmMassPowerInHeatingDefrostMin": obj.get("cmMassPowerInHeatingDefrostMin"),
|
|
1541
|
+
"cmMassPowerInHeatingDefrostMax": obj.get("cmMassPowerInHeatingDefrostMax"),
|
|
1542
|
+
"cmMassPowerInDhwDefrostAverage": obj.get("cmMassPowerInDhwDefrostAverage"),
|
|
1543
|
+
"cmMassPowerInDhwDefrostMin": obj.get("cmMassPowerInDhwDefrostMin"),
|
|
1544
|
+
"cmMassPowerInDhwDefrostMax": obj.get("cmMassPowerInDhwDefrostMax"),
|
|
1545
|
+
"cmMassPowerInDefrostAverage": obj.get("cmMassPowerInDefrostAverage"),
|
|
1546
|
+
"cmMassPowerInDefrostMin": obj.get("cmMassPowerInDefrostMin"),
|
|
1547
|
+
"cmMassPowerInDefrostMax": obj.get("cmMassPowerInDefrostMax"),
|
|
1548
|
+
"cmMassPowerInDhwAverage": obj.get("cmMassPowerInDhwAverage"),
|
|
1549
|
+
"cmMassPowerInDhwMin": obj.get("cmMassPowerInDhwMin"),
|
|
1550
|
+
"cmMassPowerInDhwMax": obj.get("cmMassPowerInDhwMax"),
|
|
1551
|
+
"cmMassPowerInManualControlAverage": obj.get("cmMassPowerInManualControlAverage"),
|
|
1552
|
+
"cmMassPowerInManualControlMin": obj.get("cmMassPowerInManualControlMin"),
|
|
1553
|
+
"cmMassPowerOutHeatingDefrostAverage": obj.get("cmMassPowerOutHeatingDefrostAverage"),
|
|
1554
|
+
"cmMassPowerOutHeatingDefrostMin": obj.get("cmMassPowerOutHeatingDefrostMin"),
|
|
1555
|
+
"cmMassPowerOutHeatingDefrostMax": obj.get("cmMassPowerOutHeatingDefrostMax"),
|
|
1556
|
+
"cmMassPowerOutDhwDefrostAverage": obj.get("cmMassPowerOutDhwDefrostAverage"),
|
|
1557
|
+
"cmMassPowerOutDhwDefrostMin": obj.get("cmMassPowerOutDhwDefrostMin"),
|
|
1558
|
+
"cmMassPowerOutDhwDefrostMax": obj.get("cmMassPowerOutDhwDefrostMax"),
|
|
1559
|
+
"cmMassPowerInManualControlMax": obj.get("cmMassPowerInManualControlMax"),
|
|
1560
|
+
"cmMassPowerOutStandbyAverage": obj.get("cmMassPowerOutStandbyAverage"),
|
|
1561
|
+
"cmMassPowerOutStandbyMin": obj.get("cmMassPowerOutStandbyMin"),
|
|
1562
|
+
"cmMassPowerOutStandbyMax": obj.get("cmMassPowerOutStandbyMax"),
|
|
1563
|
+
"cmMassPowerOutHeatingAverage": obj.get("cmMassPowerOutHeatingAverage"),
|
|
1564
|
+
"cmMassPowerOutHeatingMin": obj.get("cmMassPowerOutHeatingMin"),
|
|
1565
|
+
"cmMassPowerOutHeatingMax": obj.get("cmMassPowerOutHeatingMax"),
|
|
1566
|
+
"cmMassPowerOutCoolingAverage": obj.get("cmMassPowerOutCoolingAverage"),
|
|
1567
|
+
"cmMassPowerOutCoolingMin": obj.get("cmMassPowerOutCoolingMin"),
|
|
1568
|
+
"cmMassPowerOutCoolingMax": obj.get("cmMassPowerOutCoolingMax"),
|
|
1569
|
+
"cmMassPowerOutDefrostAverage": obj.get("cmMassPowerOutDefrostAverage"),
|
|
1570
|
+
"cmMassPowerOutDefrostMin": obj.get("cmMassPowerOutDefrostMin"),
|
|
1571
|
+
"cmMassPowerOutDefrostMax": obj.get("cmMassPowerOutDefrostMax"),
|
|
1572
|
+
"cmMassPowerOutDhwAverage": obj.get("cmMassPowerOutDhwAverage"),
|
|
1573
|
+
"cmMassPowerOutDhwMin": obj.get("cmMassPowerOutDhwMin"),
|
|
1574
|
+
"cmMassPowerOutDhwMax": obj.get("cmMassPowerOutDhwMax"),
|
|
1575
|
+
"cmMassPowerOutManualControlAverage": obj.get("cmMassPowerOutManualControlAverage"),
|
|
1576
|
+
"cmMassPowerOutManualControlMin": obj.get("cmMassPowerOutManualControlMin"),
|
|
1577
|
+
"cmMassPowerOutManualControlMax": obj.get("cmMassPowerOutManualControlMax"),
|
|
1578
|
+
"inverterInputVoltageAverage": obj.get("inverterInputVoltageAverage"),
|
|
1579
|
+
"inverterInputVoltageMin": obj.get("inverterInputVoltageMin"),
|
|
1580
|
+
"inverterInputVoltageMax": obj.get("inverterInputVoltageMax"),
|
|
1581
|
+
"centralHeatingPwmRequestedDutyCycleAverage": obj.get("centralHeatingPwmRequestedDutyCycleAverage"),
|
|
1582
|
+
"centralHeatingPwmRequestedDutyCycleMin": obj.get("centralHeatingPwmRequestedDutyCycleMin"),
|
|
1583
|
+
"centralHeatingPwmRequestedDutyCycleMax": obj.get("centralHeatingPwmRequestedDutyCycleMax"),
|
|
1584
|
+
"centralHeatingPwmRequestedDutyCycleStateStandby": obj.get("centralHeatingPwmRequestedDutyCycleStateStandby"),
|
|
1585
|
+
"centralHeatingPwmRequestedDutyCycleStatePumping": obj.get("centralHeatingPwmRequestedDutyCycleStatePumping"),
|
|
1586
|
+
"dhwPwmRequestedDutyCycleAverage": obj.get("dhwPwmRequestedDutyCycleAverage"),
|
|
1587
|
+
"dhwPwmRequestedDutyCycleMin": obj.get("dhwPwmRequestedDutyCycleMin"),
|
|
1588
|
+
"dhwPwmRequestedDutyCycleMax": obj.get("dhwPwmRequestedDutyCycleMax"),
|
|
1589
|
+
"dhwPwmRequestedDutyCycleStateStandby": obj.get("dhwPwmRequestedDutyCycleStateStandby"),
|
|
1590
|
+
"dhwPwmRequestedDutyCycleStatePumping": obj.get("dhwPwmRequestedDutyCycleStatePumping"),
|
|
1591
|
+
"indoorUnitHeaterTemperatureAverage": obj.get("indoorUnitHeaterTemperatureAverage"),
|
|
1592
|
+
"indoorUnitHeaterTemperatureMin": obj.get("indoorUnitHeaterTemperatureMin"),
|
|
1593
|
+
"indoorUnitHeaterTemperatureMax": obj.get("indoorUnitHeaterTemperatureMax"),
|
|
1594
|
+
"indoorUnitInputCurrentAverage": obj.get("indoorUnitInputCurrentAverage"),
|
|
1595
|
+
"indoorUnitInputCurrentMin": obj.get("indoorUnitInputCurrentMin"),
|
|
1596
|
+
"indoorUnitInputCurrentMax": obj.get("indoorUnitInputCurrentMax"),
|
|
1597
|
+
"signalSinrAverage": obj.get("signalSinrAverage"),
|
|
1598
|
+
"signalSinrMin": obj.get("signalSinrMin"),
|
|
1599
|
+
"signalSinrMax": obj.get("signalSinrMax")
|
|
765
1600
|
})
|
|
766
1601
|
return _obj
|
|
767
1602
|
|