1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/doc/openapi/components/schemas/formats/igor.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
1.9 KiB
YAML
Raw Permalink Normal View History

2021-10-09 17:38:49 +02:00
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
2022-01-10 17:52:36 +01:00
---
2021-10-09 17:38:49 +02:00
title: PMU format used by Igor
2021-11-18 12:10:36 +01:00
example:
device: device1
2021-10-09 17:38:49 +02:00
timestamp: '2020-05-20T10:27:57.980802+00:00'
readings:
- channel: BUS1-VA
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-IA
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-VB
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-IB
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-VC
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-IC
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-VN
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
- channel: BUS1-IN
magnitude: 9.171
phase: 0.8305
frequency: 50.1
rocof: 0.11
type: object
required:
- device
- timestamp
- readings
properties:
2021-10-09 17:38:49 +02:00
device:
description: ID for measurement device
type: string
timestamp:
description: Timestamp of measurement in ISO 8601 format
type: string
pattern: '^\d{4}(-\d\d(-\d\d(T\d\d:\d\d(:\d\d)?(\.\d+)?(([+-]\d\d:\d\d)|Z)?)?)?)?$'
2021-10-09 17:38:49 +02:00
readings:
type: array
items:
2021-11-18 12:10:36 +01:00
type: object
properties:
2021-11-18 12:10:36 +01:00
channel:
type: string
description: Name of the monitored bus
magnitude:
type: number
description: Amplitude of the measured signal [V]
2021-11-18 12:10:36 +01:00
phase:
type: number
description: Phase of the measured signal [radian]
2021-11-18 12:10:36 +01:00
frequency:
type: number
description: Frequency of the line signal [Hz]
2021-10-09 17:38:49 +02:00
2021-11-18 12:10:36 +01:00
rocof:
type: number
description: Rate of change of frequency [Hz/s]