Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modelling transfomers #1

Open
akshetty9 opened this issue Dec 18, 2024 · 0 comments
Open

Modelling transfomers #1

akshetty9 opened this issue Dec 18, 2024 · 0 comments

Comments

@akshetty9
Copy link

akshetty9 commented Dec 18, 2024

Modelling example for transformer connects the lines directly to transformer end. How should we model it if transformer connects to a line through a bus ?. Similarly how do we represent the connection between line and load through a bus?


{
  "name": "A provider, a transformer and a consumer",
  "nodes": [
    {
      "id": "Source",
      "type": "provider",
      "v_gen": 22,
      "p_gen_max": 1,
      "p_gen_min": 0,
      "q_gen_max": 1,
      "q_gen_min": 0
    },
    { "id": "Load", "type": "consumer", "v_min": 10, "v_max": 12 },
    {
      "id": "Transformer primary",
      "type": "transition",
      "v_min": 20,
      "v_max": 24
    },
    {
      "id": "Transformer secondary",
      "type": "transition",
      "v_min": 10,
      "v_max": 12
    }
  ],
  "lines": [
    {
      "id": "Source-Transformer line",
      "source": "Source",
      "target": "Transformer primary",
      "r": 0.1,
      "x": 0.1
    },
    {
      "id": "Transformer-Load line",
      "source": "Transformer secondary",
      "target": "Load",
      "r": 0.1,
      "x": 0.1
    }
  ],
  "transformers": [
    {
      "id": "Transformer",
      "connections": [
        { "node_id": "Transformer primary", "end_voltage": 22 },
        { "node_id": "Transformer secondary", "end_voltage": 11 }
      ],
      "modes": [
        {
          "source": "Transformer primary",
          "target": "Transformer secondary",
          "operation": "automatic"
        }
      ]
    }
  ],
  "@schema_version": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant