-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
42 additions
and
41 deletions.
There are no files selected for viewing
16 changes: 0 additions & 16 deletions
16
docs/_data/components/schemas/actual-power-and-factor-value.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,44 @@ | ||
type: object | ||
title: Limit | ||
oneOf: | ||
- $ref: ./apparent-power-value.yaml | ||
- $ref: ./current-value.yaml | ||
- $ref: ./actual-power-and-factor-value.yaml | ||
- type: object | ||
title: Actual Power and Power Factor | ||
description: >- | ||
Representation of a limit using a combination of actual power in MW and an | ||
assumed power factor in MVA/MW | ||
additionalProperties: false | ||
properties: | ||
mw: | ||
type: number | ||
format: float | ||
minimum: 1 | ||
maximum: 10000 | ||
pf: | ||
type: number | ||
format: float | ||
minimum: 0 | ||
maximum: 1 | ||
- type: object | ||
title: Apparent Power Value | ||
description: >- | ||
Representation of a limit in megavolt-amperes. This is the recommended | ||
default for limits in TROLIE | ||
additionalProperties: false | ||
properties: | ||
mva: | ||
type: number | ||
format: float | ||
minimum: 1 | ||
maximum: 10000 | ||
- type: object | ||
title: Current | ||
description: >- | ||
Representation of a limit in amps. Assumes that TROLIE has a nominal voltage | ||
in its model. | ||
additionalProperties: false | ||
properties: | ||
amps: | ||
type: number | ||
format: float | ||
minimum: 1 | ||
maximum: 100000 |