Project

Algemeen

Profiel

Ess » Geschiedenis » Versie 10

Micha Kersloot, 12-07-2023 10:01

1 1 Micha Kersloot
h1. Ess
2
3 4 Micha Kersloot
{{>toc}}
4
5 9 Micha Kersloot
h1. EasySolar II
6 1 Micha Kersloot
7 10 Micha Kersloot
ESS #1 means low SOC
8
9 9 Micha Kersloot
h2. Multiplus II
10 1 Micha Kersloot
11 9 Micha Kersloot
{{collapse(Configuration)
12 1 Micha Kersloot
<pre>
13
TAB: GeneralSystem frequency	50Hz
14
15
Shore current	19.0	A
16
Overruled by remote	checked
17
Dynamic current limiter	unchecked
18
External current sensor connected (see manual)	unchecked
19
State of charge when Bulk finished	95.0	%
20
Battery capacity	200	Ah
21
Charge efficiency	0.95	TAB: Grid
22
Country / grid code standard	Germany:             VDE-AR-N 4105:2018-11, internal NS protection
23
24
AC input 1	Above selected gridcode plus LOM B (compliant)
25
rise-in-voltage protection U>	253.0	V
26
start network service HF treshold	50.20	Hz
27
P(f>) droop	5.00	%
28
Use Aux1 as disable FeedIn signal	checked
29
Maximum AC current for charge or feed in	100.0	%
30
Reactive power regulation	Use a fixed Cos Phi
31
Filter time for reactive power	3.3	s
32
Cos phi at point 1	1.00	TAB: Inverter
33
PowerAssist	unchecked
34
35
Inverter output voltage	230	V
36
Inverter DC shut-down voltage	44.00	V
37
Inverter DC restart voltage	48.00	V
38
Low DC alarm level	48.00	V
39
Do not restart after short-circuit (VDE 2510-2  safety)	unchecked
40
enable AES	uncheckedTAB: Charger
41
Enable charger	checked
42
43
Weak AC input	unchecked
44
Stop after excessive bulk	unchecked
45
Lithium batteries	checked
46
Disable VSense (for diagnostic purposes)	unchecked
47
Configured for VE.Bus BMS	unchecked
48
Charge curve	Fixed
49
Absorption voltage	52.00	V
50
Float voltage	51.00	V
51
Charge current	70	A
52
Repeated absorption time	1.00	Hr
53
Repeated absorption interval	7.00	Days
54
Absorption time	1	HrTAB: Virtual switch
55
TAB: Usage
56
Virtual switch usage	Do not use VS
57
TAB: Assistants
58
TAB: Assistant Configuration
59
ESS (Energy Storage System) (size:978)
60
61
*)	System uses LiFePo4 with other type BMS
62
	(This can be either a BMS connected via CAN bus or a BMS system in which the 
63
	batteries are protected from high/low cell voltages by external equipment.)
64
*)	The battery capacity of the system is 200 Ah.
65
*)	Sustain voltage 48.00 V.
66
*)	Cut off voltage for a discharge current of:
67
	0.005 C= 46.00 V
68
	0.25 C= 46.00 V
69
	0.7 C= 46.00 V
70
	2 C= 46.00 V
71
*)	Inverting is allowed again when voltage rises 1.20 V above cut-off(0).
72
*)	Relevant VEConfigure settings:
73
	  -  Battery capacity 200 Ah.
74
	  -  PowerAssist unchecked
75
	  -  Lithium batteries checked
76
	  -  Dynamic current limiter unchecked
77
	  -  Storage mode unchecked
78
79
80
Total size of all assistants including the required
81
(hidden) system assistants is: 1037
82
</pre>
83 9 Micha Kersloot
}}
84 2 Micha Kersloot
85 9 Micha Kersloot
h2. GX device
86 3 Micha Kersloot
87 1 Micha Kersloot
seems to be an : Allwinner sun8i Family
88
89 2 Micha Kersloot
https://www.victronenergy.com/live/ccgx:root_access
90
91 9 Micha Kersloot
h3. ESPhome grid meter
92
93 5 Micha Kersloot
Using the the following extra software on the GX device to enable mqtt devices to connect to the victron GX and be used as a grid meter:
94 1 Micha Kersloot
https://github.com/freakent/dbus-mqtt-devices
95 5 Micha Kersloot
96
Using the following ESPHome alternate P1 meter configuration to send P1 data to the GX device AND to home assistant:
97 1 Micha Kersloot
98 8 Micha Kersloot
after updating the firmware you seem to need to run the setup.sh script again.
99
100 1 Micha Kersloot
[[esphome p1meter victron version]]
101
102 9 Micha Kersloot
h3. GX to Home Assistant
103 1 Micha Kersloot
104 6 Micha Kersloot
To get information from the GX device into home assistant you can use the following HACS addon: https://github.com/sfstar/hass-victron
105
106
To get the battery input/output into the energy dashboard you need to split the sensor.victron_system_battery_power into two values with template sensors and add two cummulative entries with the integration platform.
107
108 9 Micha Kersloot
{{collapse(configuration.yml)
109 5 Micha Kersloot
<pre>
110
sensor:
111
    #total battery input energy (cummulate)
112
  - platform: integration
113
    source: sensor.battery_power_input
114
    name: battery_input_energy
115
    unit_prefix: k
116
    method: left
117
    round: 3
118
    #total battery output energy (cummulate)
119
  - platform: integration
120
    source: sensor.battery_power_output
121
    name: battery_output_energy
122
    unit_prefix: k
123
    method: left
124
    round: 3
125 1 Micha Kersloot
126 5 Micha Kersloot
----
127 6 Micha Kersloot
128 5 Micha Kersloot
template:
129
  -  sensor:
130
      - name: "Battery power input"
131
        unique_id: sensor.battery_power_input
132
        device_class: power
133
        unit_of_measurement: "W"
134
        state: >
135
          {% if states('sensor.victron_system_battery_power')|float >= 0 %}
136
            {{ states('sensor.victron_system_battery_power') }}
137
          {% else %}
138
            0
139
          {% endif %}
140
      - name: "Battery power output"
141
        unique_id: sensor.battery_power_output
142
        device_class: power
143
        unit_of_measurement: "W"
144
        state: >
145
          {% if states('sensor.victron_system_battery_power')|float < 0 %}
146 1 Micha Kersloot
            {{ -1 * states('sensor.victron_system_battery_power')|float }}
147
          {% else %}
148 5 Micha Kersloot
            0
149
          {% endif %}
150
</pre>
151 9 Micha Kersloot
}}
152 7 Micha Kersloot
153 9 Micha Kersloot
h3. GX Venus OS Large
154 7 Micha Kersloot
155 8 Micha Kersloot
You can update the firmware with a Venus OS Large version. This version includes Node-RED. In the Remote Console, this can be enabled and you can finde node-red on https://venus:1881/
156 1 Micha Kersloot
157 8 Micha Kersloot
when installing Venus OS Large, you better run 
158
159 7 Micha Kersloot
  /opt/victronenergy/swupdate-scripts/resize2fs.sh
160
161 9 Micha Kersloot
h1. Pylontech 5000US
162 4 Micha Kersloot
163
https://www.victronenergy.com/live/battery_compatibility:pylontech_phantom