API Methods

Get terminal info

GET http://localhost:5000/api/load-flow/0/terminals/all

This endpoint allows you to voltages from all nodes.

Path Parameters

Name
Type
Description

project

integer

This is project you wish to activate in order shown in DigSilent

{
    "terminals": {
        "Bus_0012": {
            "reactive_gen": {
                "value": 0.0,
                "unit": "Mvar"
            },
            "active_flow": {
                "value": 7.7102326679141315,
                "unit": "MW"
            },
            "magnitude": {
                "value": 1.05522051228861,
                "unit": "p.u."
            },
            "angle": {
                "value": -15.077414289317803,
                "unit": "deg"
            },
            "active_gen": {
                "value": 0.0,
                "unit": "MW"
            },
            "reactive_out": {
                "value": 2.343011708584044,
                "unit": "Mvar"
            },
            "active_out": {
                "value": 7.7102326679141315,
                "unit": "MW"
            },
            "line": {
                "value": 34.822276905524134,
                "unit": "kV"
            },
            "reactive_flow": {
                "value": 2.343011708584044,
                "unit": "Mvar"
            }
        },
        "Bus_0014": {
        ...
        },
        ...
    }
}

Last updated