Skip to main content

GxF Platform Evaluation

Overview

GxF is an opensource platform (set of capabilities; metering, public lighting) for distribution of power on a grid. It is currently being used by and was donated to the open source community by a Dutch utility company called Alliander. 

Here's some useful links from my discovery work on GxF

Next Steps 

Continue deployment to digital ocean VM

  • Start by reviewing all these packages and understanding which ones you want to deploy or explore whether it makes more sense to rebuild the latest release and deploy packages from that. 
  • To run the GXF (Grid eXchange Fabric) platform, you generally need only a subset of the packages published in the OSGP GitHub organization—specifically, those that are direct dependencies for the platform's core services and adapters.
  • GXF is a modular system, and the required packages depend on your deployment goals. Commonly, the following package types are used:
  • Core Platform Packages – These include the main server components, messaging infrastructure, shared libraries, and authentication modules.
    • Protocol Adapters – Depending on your use case, you’ll need the adapters that communicate with your field devices (e.g., OSLP, DLMS, IEC61850).
    • Domain and WS Adapters – These provide domain-specific logic and web service endpoints (e.g., smart metering, microgrids, public lighting).
    • Shared Utilities – Supporting packages shared between multiple modules.

 Steps to Determine Required Packages

  • Review the GXF Deployment Documentation: The official [GXF deployment guide](https://github.com/OSGP/open-smart-grid-platformdocumentation) lists the core components and adapters you need to deploy for a standard platform.
  • Match Packages to Components: Identify which packages correspond to those components (e.g., "osgp-adapter-domain-smart-metering", "osgp-adapter-ws-publiclighting", etc.).

Focus on Smart metering Use Case: One of the maintainers tells the application’s current design allows you to deploy only the smart metering components, along with some core GxF components. You’ll need the following components for smart metering:

  • core GxF components:
    • osgp-adapter-domain-admin
    • osgp-adapter-domain-core
    • osgp-adapter-ws-admin
    • osgp-adapter-ws-core
    • osgp-core
    • osgp-logging
  • Smart metering specific components
    • osgp-adapter-domain-smartmetering
    • osgp-adapter-ws-smartmetering
    • osgp-protocol-adapter-dlms
    • osgp-throttling-service
    • osgp-secret-management
  • Smart metering simulator
    • osgp-simulator-dlms-triggered
    • dlms-device-simulator-starter

These components do not contain any user interface but provide a SOAP interface for communication with the GxF platform. The user interface is currently not part of the open-source implementation.

- We could set up RESTful APIs and build a GUI we can use and contribute back to the community or we can also try to build a UI from the SOAP API available. Open to either, I don't know how much we can do with API only if we don't have a GUI.