Project

Algemeen

Profiel

Ess » Geschiedenis » Versie 5

Micha Kersloot, 28-06-2023 15:14

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