I have tried to make an outside compensation curve for a heating system in the FB editor, but do not find out completely of unwanted blocks that are most powerful to use.
I need to write from four groups
-10 ° C = 45 ° C
-5 ° C = 40 ° C
0 ° C = 35 ° C
5 ° C = 30 ° C
In order to get a set point out of what outdoor temperature it is, is this possible?
Do you really need a curve here? From your data it looks like simple linear compensation, for each 5 degrees of temperature the setpoint is lowered by 5 degrees:
For the outdoor temp combined with a curve i usually use a 3 days average, this can simply be done by attaching a trend to your measurement object and use this small script.
16.01.2025, 21:56 (This post was last modified: 16.01.2025, 22:04 by jerryhenke.)
(16.01.2025, 17:08)Erwin van der Zwart Wrote: For the outdoor temp combined with a curve i usually use a 3 days average, this can simply be done by attaching a trend to your measurement object and use this small script.
The only trend I have right now is outdoor temperature with a 5-min resolution.
I tried your script and can't really make it work.
I get incorrect values. I would rather like to use a span of the last 9 hours average temperature or so, not from four days agou until yesterday which i read your script.
I tried change 86400 * 4 to 86400 * 1 and the "end" to 86400 * 0, but that gives 0 as temperature.
Any good suggestions?
Quote:require('trends')
-- Define time range for the timespan
local lastninehours = {}
lastninehours['start'] = os.date('*t', os.time() - (3600 * 9)) -- 9 hours back
lastninehours['end'] = os.date('*t', os.time()) -- Current time
-- Fetch the average temperature for the timespan
local ninehoursaverage = trends.fetchone('Utetemp', lastninehours)
-- Fetch the current temperature from KNX address 0/3/0
local currenttemperature = grp.getvalue('0/3/0') -- Assumes grp.getvalue function is used
if ninehoursaverage and currenttemperature then
-- Calculate the highest value between the average temperature and the current temperature
local highesttemperature = math.max(ninehoursaverage, currenttemperature)
-- Send the highest value to KNX address 5/5/20
grp.write('5/5/20', highesttemperature)
-- Log both the average temperature and the temperature sent
log("Average temperature for the last 9 hours: " .. tostring(ninehoursaverage))
log("Temperature sent to 5/5/20: " .. tostring(highesttemperature))
else
log("Could not fetch the average temperature or the current temperature.")
end
KB doc needs updating. It's possible to fetch data for the given period if start/end is a not a table but a timestamp number.
Fetch data for the last hour:
Code:
1234567891011
date = os.date('*t') -- current date as a tabletime = os.time(date, true) -- convert UTC timestamp-- fetch data for the last hour (3600 seconds)datarange = {
['start'] = time - 3600,
['end'] = time,
}
data = trends.fetch('trend name', datarange)
log(data)
17.01.2025, 10:24 (This post was last modified: 17.01.2025, 10:26 by jerryhenke.)
(17.01.2025, 08:18)admin Wrote: KB doc needs updating. It's possible to fetch data for the given period if start/end is a not a table but a timestamp number.
Fetch data for the last hour:
Code:
1234567891011
date = os.date('*t') -- current date as a tabletime = os.time(date, true) -- convert UTC timestamp-- fetch data for the last hour (3600 seconds)datarange = {
['start'] = time - 3600,
['end'] = time,
}
data = trends.fetch('trend name', datarange)
log(data)
Amazing. Now it seems to work.
I ended up with this script for a damped outdoor temperatur that i later use for my control of floor heating.
Thougts?
Also - do I have to define the resolution of the trend log that I use? Now mine is 5 minutes, but I am also starting a 1 hour-resolution trend log of outside temperature. I imagine less work for LM to calculate the average if I have a table with less values?
Quote:require('trends')
-- Function to calculate time range based on hours and days
local function get_time_range(start_hours, start_days, end_hours, end_days)
local date = os.date('*t') -- current date and time as a table
local current_time = os.time(date, true) -- convert to UTC timestamp
local start_time = current_time - (3600 * start_hours + 86400 * start_days) -- calculate start time
local end_time = current_time - (3600 * end_hours + 86400 * end_days) -- calculate end time
return {
['start'] = start_time,
['end'] = end_time
}
end
-- Define time range (replace the number of hours and days with your values)
local start_hours_back = 0 -- hours back from current time for start time
local start_days_back = 1 -- days back from current time for start time
local end_hours_back = 0 -- hours back from current time for end time
local end_days_back = 0 -- days back from current time for end time
local time_range = get_time_range(start_hours_back, start_days_back, end_hours_back, end_days_back)
-- Specify resolution for 5-minute data (360 seconds)
local resolution = 360
-- Fetch average temperature for the time period with specified resolution
local periodaverage = trends.fetchone('Utetemp', time_range, resolution)
-- Fetch the current temperature from KNX address 0/3/0
local currenttemperature = grp.getvalue('0/3/0') -- Assuming grp.getvalue function is used
if periodaverage and currenttemperature then
-- Calculate the highest value between the average temperature and the current temperature
local highesttemperature = math.max(periodaverage, currenttemperature)
-- Send the highest value to KNX address 5/5/20
grp.write('5/5/20', highesttemperature)
-- Log both the average temperature and the temperature sent
log("Average temperature for selected period: " .. tostring(periodaverage))
log("Temperature sent to 5/5/20: " .. tostring(highesttemperature))
log("Current temperature at 0/3/0: " .. tostring(currenttemperature))
else
log("Could not fetch the average temperature or the current temperature.")
end