8000 Standalone `Inverter` by shorowit · Pull Request #352 · hpxmlwg/hpxml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Standalone Inverter #352

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
Dec 6, 2022
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
15 changes: 13 additions & 2 deletions schemas/HPXMLBaseElements.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2021,14 +2021,12 @@
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="NumberOfPanels" type="IntegerGreaterThanZero"/>
<xs:element minOccurs="0" name="InverterEfficiency" type="Fraction"/>
<xs:element minOccurs="0" name="SystemLossesFraction" type="Fraction">
<xs:annotation>
<xs:documentation>System losses can be due to soiling, shading, snow, mismatch, wiring, electrical connections, light-induced degradation, nameplate rating
inaccuracies, age, and availability.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="YearInverterManufactured" type="Year"/>
<xs:element minOccurs="0" name="YearModulesManufactured" type="Year"/>
<xs:element minOccurs="0" name="YearInstalled" type="Year"/>
<xs:element minOccurs="0" name="AnnualOutput" type="RatedAnnualkWh">
Expand All @@ -2043,11 +2041,24 @@
http://www.nrel.gov/analysis/tech_lcoe.html.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="AttachedToInverter" type="LocalReference"/>
<xs:element ref="extension" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
</xs:complexType>
</xs:element>
<xs:element maxOccurs="unbounded" minOccurs="0" name="Inverter">
<xs:complexType>
<xs:sequence>
<xs:group ref="SystemInfo"/>
<xs:element minOccurs="0" name="InverterType" type="InverterType"/>
<xs:element minOccurs="0" name="InverterEfficiency" type="Fraction"/>
<xs:element minOccurs="0" name="YearInverterManufactured" type="Year"/>
<xs:element minOccurs="0" name="YearInstalled" type="Year"/>
<xs:element ref="extension" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="dataSource" type="DataSource"/>
</xs:complexType>
Expand Down
16 changes: 16 additions & 0 deletions schemas/HPXMLDataTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4753,6 +4753,22 @@
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="InverterType_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="central inverter"/>
<xs:enumeration value="string inverter"/>
<xs:enumeration value="multi-string inverter"/>
<xs:enumeration value="micro inverter"/>
<xs:enumeration value="other"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="InverterType">
<xs:simpleContent>
<xs:extension base="InverterType_simple">
<xs:attribute name="dataSource" type="DataSource"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="FloorOrCeiling_simple">
<xs:restriction base="xs:string">
<xs:enumeration value="floor"/>
Expand Down
0