Skip to main content

Phoenix Contact CHARX SEC (charging controller)

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

A curated ModDef profile for the Phoenix Contact CHARX SEC (charging controller). Import it as phoenixcontact.charx-sec 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("phoenix-contact-charx-sec.moddef.yaml")
dev, _ := client.New(doc, "phoenixcontact-charx-sec", transport) // your modbus.Transport
v, _ := dev.ReadPoint(ctx, "total_active_power")
fmt.Println(v)

Measurands

The 10 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
active_powerActive PowerWInstantaneous real power
reactive_powerReactive PowervarInstantaneous reactive power
apparent_powerApparent PowerVAInstantaneous apparent power
currentCurrentARMS current; qualify with phase_ref / direction
voltageVoltageVRMS voltage; qualify with phase_ref (L1_N, L1_L2, ...)
energy_activeActive EnergyWhCumulative active energy register
energy_reactiveReactive EnergyvarhCumulative reactive energy register
energy_apparentApparent EnergyVAhCumulative apparent energy register
state_of_chargeState of Charge%Battery charge level
fault_codeFault CodeundefinedVendor fault code (enum or integer)

Source