Skip to content

Add AverageAnnualOperatingHours #311

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

Merged
merged 3 commits into from
Mar 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions BuildingSync.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -13344,6 +13344,17 @@
</xs:complexType>
<xs:complexType name="OnsiteStorageTransmissionGenerationSystemType">
<xs:sequence>
<xs:element name="AverageAnnualOperatingHours" minOccurs="0">
<xs:annotation>
<xs:documentation>The average operating hours per year of the onsite generation system.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="8760"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="EnergyConversionType" minOccurs="0">
<xs:annotation>
<xs:documentation>Type of energy conversion provided by the system.</xs:documentation>
Expand Down
50 changes: 50 additions & 0 deletions proposals/2021/Add AverageAnnualOperatingHours.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Add AverageAnnualOperatingHours to System

## Overview
This proposal is to add the `AverageAnnualOperatingHours` element as a child element of `OnsiteStorageTransmissionGenerationSystem` under `System`.

## Justification
The average operating hours per year of the onsite generation system.

## UDFs
Currently this is conveyed in Audit Template via: `/auc:BuildingSync/auc:Facilities/auc:Facility/auc:Sites/auc:Site/auc:Buildings/auc:Building/auc:UserDefinedFields/auc:UserDefinedField[auc:FieldName/text() = Onsite Generation Operation Average Annual Hours]/auc:FieldValue`. Our proposal is to add it as a child element of `OnsiteStorageTransmissionGenerationSystem`.

## Example
```xml
...
<auc:Facilities>
<auc:Facility ID="F1">
<auc:Systems>
<auc:System ID="S1">
<auc:OnsiteStorageTransmissionGenerationSystems>
<auc:OnsiteStorageTransmissionGenerationSystem ID="O1">
<auc:AverageAnnualOperatingHours>4000</auc:AverageAnnualOperatingHours>
</auc:OnsiteStorageTransmissionGenerationSystem>
</auc:OnsiteStorageTransmissionGenerationSystems>
</auc:System>
</auc:Systems>
</auc:Facility>
</auc:Facilities>
...
```

## Implementation
```xml
...
<xs:complexType name="OnsiteStorageTransmissionGenerationSystemType">
<xs:sequence>
<xs:element name="AverageAnnualOperatingHours" minOccurs="0">
<xs:annotation>
<xs:documentation>The average operating hours per year of the onsite generation system.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="8760"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
...
```

## References