# Alfen / Socomec

De bronnamen geven de natuurlijke eenheid van de waarde aan. De `scale` bepaalt hoe deze waarde naar het register wordt omgerekend. Bijvoorbeeld:

* `current_l1_a` met `scale 1000` wordt als `A x 1000` weggeschreven
* `net_power_l1_kw` met `scale 100` wordt als `kW x 100` weggeschreven

Let op:

* de stroomregisters zijn `uint32`
* de vermogensregisters zijn `int32`, zodat teruglevering als negatieve waarde zichtbaar is
* `MBUS_VAL_UNAVAILABLE` is `0xFFFFFFFF`

<table><thead><tr><th width="104.05078125">Register</th><th width="160.515625">Bron</th><th width="122.58984375">Natuurlijke eenheid</th><th width="106.9140625" align="right">Scale</th><th>Type</th><th>Resultaat</th></tr></thead><tbody><tr><td>50528</td><td><code>current_l1_a</code></td><td>A</td><td align="right">1000</td><td><code>uint32</code></td><td><code>A x 1000</code></td></tr><tr><td>50530</td><td><code>current_l2_a</code></td><td>A</td><td align="right">1000</td><td><code>uint32</code></td><td><code>A x 1000</code></td></tr><tr><td>50532</td><td><code>current_l3_a</code></td><td>A</td><td align="right">1000</td><td><code>uint32</code></td><td><code>A x 1000</code></td></tr><tr><td>50534</td><td><code>current_total_a</code></td><td>A</td><td align="right">1000</td><td><code>uint32</code></td><td><code>A x 1000</code></td></tr><tr><td>50544</td><td><code>net_power_l1_kw</code></td><td>kW</td><td align="right">100</td><td><code>int32</code></td><td><code>kW x 100</code></td></tr><tr><td>50546</td><td><code>net_power_l2_kw</code></td><td>kW</td><td align="right">100</td><td><code>int32</code></td><td><code>kW x 100</code></td></tr><tr><td>50548</td><td><code>net_power_l3_kw</code></td><td>kW</td><td align="right">100</td><td><code>int32</code></td><td><code>kW x 100</code></td></tr></tbody></table>
