Skip to main content

Alfen NG9xx (Eve Single)

Status: Vendor Confirmed · Register points: 50 · Transports: Modbus TCP

A curated ModDef profile for the Alfen NG9xx (Eve Single). Import it as alfen.ng9xx or load the .moddef.yaml directly.

Usage

Load the profile, bind a transport, and read a point by name. The runtime applies the offset, scaling, byte order, and sentinels from the definition.

doc, _ := moddef.Load("alfen-ng9xx.moddef.yaml")
dev, _ := client.New(doc, "alfen-ng9xx", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "temperature")
fmt.Println(v)

Measurands

The 9 semantic quantities this device reports, each linked to the measurand catalog. Query a device by measurand instead of a raw point when you want portable code.

Base quantityNameUnitDescription
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
currentCurrentARMS current; qualify with phase_ref / direction
frequencyFrequencyHzGrid frequency
active_powerActive PowerWInstantaneous real power
reactive_powerReactive PowervarInstantaneous reactive power
apparent_powerApparent PowerVAInstantaneous apparent power
power_factorPower Factor1 (ratio)Ratio of real to apparent power (dimensionless)
energy_activeActive EnergyWhCumulative active energy register
temperatureTemperaturedegCTemperature; qualify with location (INTERNAL, EXTERNAL, ...)

Source