Project

Algemeen

Profiel

Ess » Geschiedenis » Versie 9

Micha Kersloot, 12-07-2023 09:38

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