-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplant_energy_losses_lookup.yaml
45 lines (39 loc) · 1.16 KB
/
plant_energy_losses_lookup.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
$schema: "http://json-schema.org/draft-04/schema#"
title: IEA Wind Task 37 Wind Plant Ontology version 0.1
description: electrical and other losses not due to wakes in a wind plant
# Draft schema definitions for energy model
definitions:
# energy losses
energy_losses:
type: object
properties:
electrical_losses:
type: number
description: Losses in the electrical array and interconnection
units: percentage
minimum: 0.0
maximum: 1.0
availability:
type: number
description: average turbine availability (1 - average turbine downtime)
units: percentage
minimum: 0.0
maximum: 1.0
curtailment:
type: number
description: average turbine curtailment
units: percentage
minimum: 0.0
maximum: 1.0
other_losses:
type: number
description: other plant losses
units: percentage
minimum: 0.0
maximum: 1.0
total_losses:
type: number
description: total non-wake energy losses for the plant (aggregation of energy losses)
units: percentage
minimum: 0.0
maximum: 1.0