Skip to content
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 24 additions & 22 deletions src/views/LoadManagementConfiguration.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,27 +56,6 @@
</p>
</template>
</openwb-base-button-group-input>
<openwb-base-select-input
title="Hausverbrauch"
:options="getHcSourceIdOptions.options"
:groups="getHcSourceIdOptions.groups"
:model-value="$store.state.mqtt['openWB/counter/config/home_consumption_source_id']"
@update:model-value="updateState('openWB/counter/config/home_consumption_source_id', $event)"
>
<template #help>
Meist ist der Zähler am EVU-Punkt installiert, dann muss hier 'von openWB berechnen' ausgewählt werden.
Wenn der Zähler im Hausverbrauchszweig installiert ist, die Struktur wie im
<a
href="https://github.com/openWB/core/wiki/Hausverbrauchs-Zähler"
target="_blank"
rel="noopener noreferrer"
>
Wiki
</a>
beschrieben anordnen und hier den Hausverbrauchszähler auswählen. Dann wird dieser Wert abzüglich der
Ladeleistung als Hausverbrauch erfasst.
</template>
</openwb-base-select-input>
<openwb-base-heading> Vorhandene Zählermodule </openwb-base-heading>
<openwb-base-alert subtype="info">
Die maximale Leistung wird nur für den EVU-Zähler berücksichtigt. Bei Zwischenzählern begrenzt das
Expand Down Expand Up @@ -157,6 +136,29 @@
Angenommen Leistung für diesen (Zwischen-)Zähler, falls vom Zähler keine Werte abgefragt werden können.
</template>
</openwb-base-number-input>
<openwb-base-button-group-input
title="Miest Hausverbrauch?"
Comment thread
benderl marked this conversation as resolved.
Outdated
:buttons="[
{
buttonValue: true,
text: 'Ja',
class: 'btn-outline-success',
},
{
buttonValue: false,
text: 'Nein',
class: 'btn-outline-danger',
}
]"
:model-value="$store.state.mqtt['openWB/counter/' + counter.id + '/config/is_home_consumption_counter']"
@update:model-value="
updateState('openWB/counter/' + counter.id + '/config/is_home_consumption_counter', $event)
"
>
<template #help>
Todo
</template>
</openwb-base-button-group-input>
</openwb-base-card>
<openwb-base-heading> Vorhandene Wechselrichtermodule </openwb-base-heading>
<openwb-base-card
Expand Down Expand Up @@ -285,8 +287,8 @@ export default {
{ topic: "openWB/counter/+/config/max_currents", writeable: true },
{ topic: "openWB/counter/+/config/max_power_errorcase", writeable: true },
{ topic: "openWB/counter/+/config/max_total_power", writeable: true },
{ topic: "openWB/counter/+/config/is_home_consumption_counter", writeable: true },
{ topic: "openWB/counter/config/consider_less_charging", writeable: true },
{ topic: "openWB/counter/config/home_consumption_source_id", writeable: true },
{ topic: "openWB/counter/get/hierarchy", writeable: true },
{ topic: "openWB/general/extern", writeable: false },
{ topic: "openWB/pv/+/config/max_ac_out", writeable: true },
Expand Down
Loading