Proportional control power to boiler
Moderator: leecollings
-
- Posts: 1
- Joined: Saturday 10 February 2024 10:05
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Proportional control power to boiler
Is it possible to let Domoticz control the power with a device like a Sensata Crydom PMP Proportional Control SSR, so that you only send a surplus of power from solar panels to the boiler. I want to prevent feeding back into the grid. Does anyone have experience with this and are there alternatives?
- psubiaco
- Posts: 194
- Joined: Monday 20 August 2018 9:38
- Target OS: Raspberry Pi / ODroid
- Domoticz version: Beta
- Location: Italy
- Contact:
Re: Proportional control power to boiler
Solid state relay is not a solution: if you have a 1500W resistor and you want to sends only 400W or 600W or 800W (depending by your solar panel extra production), you need to lower the voltage at the resistor side, using an AC/AC converter: even triac dimmer-style regulator is not good, because you have in-rush currents and harmonic distortion.
If you have a boiler with 2 resistors, you can make a circuit with few relays to supply
* the two resistors in serie (0.5x resistor power)
* only one resistor (resistor power)
* both resistors (2x resistor power)
This is my opinion.
Paolo
If you have a boiler with 2 resistors, you can make a circuit with few relays to supply
* the two resistors in serie (0.5x resistor power)
* only one resistor (resistor power)
* both resistors (2x resistor power)
This is my opinion.
Paolo
Paolo
--
I use DomBus modules to charge EV car, get a full alarm system, control heat pump, fire alarm detection, lights and much more. Video
Facebook page - Youtube channel
--
I use DomBus modules to charge EV car, get a full alarm system, control heat pump, fire alarm detection, lights and much more. Video
Facebook page - Youtube channel
-
- Posts: 504
- Joined: Sunday 01 November 2015 22:45
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2023.2
- Location: Twente
- Contact:
Re: Proportional control power to boiler
I agree with @psubiaco
However in a basic script where you start gathering the solar output and the P1 power consumption data you could try:
Besides it sometimes is simple calculating.
In the Netherlands where we have 'salderen' one can leave it like it is and heat the boiler @night when electricity prices are low.
@daytime it is economically better to return the surplus to the net because every kWh delivered is a kWh less to be payed for buying expensive daytime electricity.
However in a basic script where you start gathering the solar output and the P1 power consumption data you could try:
Code: Select all
if (SunnyPower >= 2600 then -- or > 1000 or > 1500 or.....
domoticz.devices('Boiler').switchOn()
domoticz.notify('Boiler', "is heating from the sun",PRIORITY_NORMAL)
end
if (PowerConsumption >= 1000 then -- or > 500
domoticz.devices('Boiler').switchOff()
domoticz.notify('Boiler', "charging is idle",PRIORITY_NORMAL)
end
In the Netherlands where we have 'salderen' one can leave it like it is and heat the boiler @night when electricity prices are low.
@daytime it is economically better to return the surplus to the net because every kWh delivered is a kWh less to be payed for buying expensive daytime electricity.
Bugs bug me.
Who is online
Users browsing this forum: No registered users and 1 guest