Painéis solares edp

Outra opção é um solid state relay, mas também é caro.

O importante é lidar com o “zero crossing voltage”.

Sem isso cria-se imenso ruído na rede eléctrica.

Com watts é ao milisegundo. Outra solução é usar kWh via netmetering.

Isto é o que eu faço, via esta automação:

alias: "AQS: Gestão de Excedente Solar (Net Metering)"
description: "Gere o aquecimento de AQS (70ºC) com base no excedente de 15 min e repõe valores (65ºC)"
mode: single

triggers:
  # Gatilho para LIGAR: Injeção acima de 100W
  - trigger: numeric_state
    entity_id: sensor.template_energia_injectada_15m
    above: 100
    id: "ligar_excedente"

  # Gatilho para DESLIGAR: Injeção abaixo de 30W
  - trigger: numeric_state
    entity_id: sensor.template_energia_injectada_15m
    below: 30
    id: "desligar_excedente"

actions:
  - choose:
      # LÓGICA PARA LIGAR
      - conditions:
          - condition: trigger
            id: "ligar_excedente"
          - condition: numeric_state
            entity_id: sensor.envoy_current_power_consumption
            below: 400
          - condition: numeric_state
            entity_id: sensor.envoy_current_power_production
            above: 700
        sequence:
          - action: input_boolean.turn_on
            target:
              entity_id: input_boolean.net_mettering_status
          - action: climate.set_temperature
            target:
              entity_id: climate.aqs_resistencia
            data:
              temperature: 70
          - action: climate.turn_on
            target:
              entity_id: climate.aqs_resistencia
          - action: switch.turn_on
            target:
              entity_id: switch.aqs_resistencia

      # LÓGICA PARA DESLIGAR
      - conditions:
          - condition: trigger
            id: "desligar_excedente"
          - condition: state
            entity_id: input_boolean.net_mettering_status
            state: "on"
        sequence:
          - action: climate.set_temperature
            target:
              entity_id: climate.aqs_resistencia
            data:
              temperature: 65
          - action: input_boolean.turn_off
            target:
              entity_id: input_boolean.net_mettering_status
          - action: climate.turn_off
            target:
              entity_id: climate.aqs_resistencia
          - action: switch.turn_off
            target:
              entity_id: switch.aqs_resistencia

Dá para ver o resultado, no dia de hoje desde as 12 horas:


Copyright © 2017-. Todos os direitos reservados
CPHA.pt - info@cpha.pt


FAQ | Termos de Serviço/Regras | Política de Privacidade