building_sync_rails 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/lib/BuildingSync.rb +689 -164
- data/lib/BuildingSync_mapping_registry.rb +312 -79
- data/lib/building_sync_rails/version.rb +1 -1
- data/public/BuildingSync.xsd +641 -113
- metadata +2 -2
data/public/BuildingSync.xsd
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:auc="http://buildingsync.net/schemas/bedes-auc/2019" xmlns:gbxml="http://www.gbxml.org/schema" targetNamespace="http://buildingsync.net/schemas/bedes-auc/2019" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:auc="http://buildingsync.net/schemas/bedes-auc/2019" xmlns:gbxml="http://www.gbxml.org/schema" targetNamespace="http://buildingsync.net/schemas/bedes-auc/2019" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.6.0">
|
3
3
|
<xs:import namespace="http://www.gbxml.org/schema" schemaLocation="GreenBuildingXML_Ver6.01.xsd"/>
|
4
4
|
<xs:annotation>
|
5
|
-
<xs:documentation>BuildingSync Schema - Version 2.
|
5
|
+
<xs:documentation>BuildingSync Schema - Version 2.6.0</xs:documentation>
|
6
6
|
<xs:documentation xmlns="http://www.w3.org/1999/xhtml">
|
7
7
|
<h1>BuildingSync Schema Deprecation Policy</h1>
|
8
8
|
<p>This document details the deprecation policy for the BuildingSync Schema.</p>
|
@@ -417,6 +417,13 @@
|
|
417
417
|
</xs:sequence>
|
418
418
|
</xs:complexType>
|
419
419
|
</xs:element>
|
420
|
+
<xs:element name="AuditCycles" minOccurs="0">
|
421
|
+
<xs:complexType>
|
422
|
+
<xs:sequence>
|
423
|
+
<xs:element name="AuditCycle" type="auc:AuditCycleType" maxOccurs="unbounded"/>
|
424
|
+
</xs:sequence>
|
425
|
+
</xs:complexType>
|
426
|
+
</xs:element>
|
420
427
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
421
428
|
</xs:sequence>
|
422
429
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
@@ -442,6 +449,10 @@
|
|
442
449
|
<xs:enumeration value="2.3"/>
|
443
450
|
<xs:enumeration value="2.4.0"/>
|
444
451
|
<xs:enumeration value="2.4"/>
|
452
|
+
<xs:enumeration value="2.5.0"/>
|
453
|
+
<xs:enumeration value="2.5"/>
|
454
|
+
<xs:enumeration value="2.6.0"/>
|
455
|
+
<xs:enumeration value="2.6"/>
|
445
456
|
</xs:restriction>
|
446
457
|
</xs:simpleType>
|
447
458
|
</xs:attribute>
|
@@ -848,7 +859,9 @@
|
|
848
859
|
</xs:sequence>
|
849
860
|
</xs:complexType>
|
850
861
|
</xs:element>
|
862
|
+
<xs:element ref="auc:PrincipalHVACSystemType" minOccurs="0"/>
|
851
863
|
<xs:element ref="auc:YearOfConstruction" minOccurs="0"/>
|
864
|
+
<xs:element ref="auc:PrincipalLightingSystemType" minOccurs="0"/>
|
852
865
|
<xs:element name="YearOccupied" type="xs:gYear" minOccurs="0">
|
853
866
|
<xs:annotation>
|
854
867
|
<xs:documentation>Year in which the premises was first occupied. (CCYY)</xs:documentation>
|
@@ -959,6 +972,8 @@
|
|
959
972
|
<xs:element ref="auc:SpatialUnits" minOccurs="0"/>
|
960
973
|
<xs:element ref="auc:PrimaryContactID" minOccurs="0"/>
|
961
974
|
<xs:element ref="auc:TenantIDs" minOccurs="0" maxOccurs="unbounded"/>
|
975
|
+
<xs:element ref="auc:PrincipalHVACSystemType" minOccurs="0"/>
|
976
|
+
<xs:element ref="auc:PrincipalLightingSystemType" minOccurs="0"/>
|
962
977
|
<xs:element ref="auc:YearOfConstruction" minOccurs="0"/>
|
963
978
|
<xs:element name="FootprintShape" minOccurs="0">
|
964
979
|
<xs:annotation>
|
@@ -1962,6 +1977,45 @@
|
|
1962
1977
|
</xs:sequence>
|
1963
1978
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
1964
1979
|
</xs:complexType>
|
1980
|
+
<xs:complexType name="AuditCycleType">
|
1981
|
+
<xs:annotation>
|
1982
|
+
<xs:documentation>A period of time in which multiple audits may be conducted</xs:documentation>
|
1983
|
+
</xs:annotation>
|
1984
|
+
<xs:sequence>
|
1985
|
+
<xs:element name="AuditCycleName" type="xs:string" minOccurs="0">
|
1986
|
+
<xs:annotation>
|
1987
|
+
<xs:documentation>Name identifying the audit cycle other than the ID</xs:documentation>
|
1988
|
+
</xs:annotation>
|
1989
|
+
</xs:element>
|
1990
|
+
<xs:element name="AuditCycleNotes" type="xs:string" minOccurs="0">
|
1991
|
+
<xs:annotation>
|
1992
|
+
<xs:documentation>Details about the Audit Cycle</xs:documentation>
|
1993
|
+
</xs:annotation>
|
1994
|
+
</xs:element>
|
1995
|
+
<xs:element name="AuditCycleStartYear" type="xs:gYear">
|
1996
|
+
<xs:annotation>
|
1997
|
+
<xs:documentation>Year the Audit Cycle starts (inclusive, CCYY)</xs:documentation>
|
1998
|
+
</xs:annotation>
|
1999
|
+
</xs:element>
|
2000
|
+
<xs:element name="AuditCycleEndYear" type="xs:gYear">
|
2001
|
+
<xs:annotation>
|
2002
|
+
<xs:documentation>Year the Audit Cycle ends (inclusive, CCYY)</xs:documentation>
|
2003
|
+
</xs:annotation>
|
2004
|
+
</xs:element>
|
2005
|
+
<xs:element name="AuditCycleStartDate" type="xs:date">
|
2006
|
+
<xs:annotation>
|
2007
|
+
<xs:documentation>Date the Audit Cycle starts (CCYY-MM-DD)</xs:documentation>
|
2008
|
+
</xs:annotation>
|
2009
|
+
</xs:element>
|
2010
|
+
<xs:element name="AuditCycleEndDate" type="xs:date">
|
2011
|
+
<xs:annotation>
|
2012
|
+
<xs:documentation>Date the Audit Cycle ends (CCYY-MM-DD)</xs:documentation>
|
2013
|
+
</xs:annotation>
|
2014
|
+
</xs:element>
|
2015
|
+
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
2016
|
+
</xs:sequence>
|
2017
|
+
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
2018
|
+
</xs:complexType>
|
1965
2019
|
<xs:complexType name="ScenarioType">
|
1966
2020
|
<xs:sequence>
|
1967
2021
|
<xs:element name="ScenarioName" type="xs:string" minOccurs="0">
|
@@ -2120,6 +2174,11 @@
|
|
2120
2174
|
<xs:element ref="auc:AnnualSavingsAverageGHGEmissions" minOccurs="0"/>
|
2121
2175
|
<xs:element ref="auc:AnnualSavingsMarginalGHGEmissions" minOccurs="0"/>
|
2122
2176
|
<xs:element ref="auc:AnnualSavingsGHGEmissionIntensity" minOccurs="0"/>
|
2177
|
+
<xs:element ref="auc:LifeCycleSavingsEnergy" minOccurs="0"/>
|
2178
|
+
<xs:element ref="auc:LifeCycleSavingsEnergyCost" minOccurs="0"/>
|
2179
|
+
<xs:element ref="auc:LifeCycleSavingsWater" minOccurs="0"/>
|
2180
|
+
<xs:element ref="auc:LifeCycleSavingsWaterCost" minOccurs="0"/>
|
2181
|
+
<xs:element ref="auc:LifeCycleSavingsAncillaryCost" minOccurs="0"/>
|
2123
2182
|
<xs:element ref="auc:SimplePayback" minOccurs="0"/>
|
2124
2183
|
<xs:element ref="auc:NetPresentValue" minOccurs="0"/>
|
2125
2184
|
<xs:element ref="auc:InternalRateOfReturn" minOccurs="0"/>
|
@@ -2143,6 +2202,9 @@
|
|
2143
2202
|
<xs:documentation>ID number of measure.</xs:documentation>
|
2144
2203
|
</xs:annotation>
|
2145
2204
|
<xs:complexType>
|
2205
|
+
<xs:sequence>
|
2206
|
+
<xs:element ref="auc:MeasureSavingsAnalysis" minOccurs="0"/>
|
2207
|
+
</xs:sequence>
|
2146
2208
|
<xs:attribute name="IDref" type="xs:IDREF" use="required"/>
|
2147
2209
|
</xs:complexType>
|
2148
2210
|
</xs:element>
|
@@ -2205,6 +2267,11 @@
|
|
2205
2267
|
<xs:element ref="auc:AnnualSavingsAverageGHGEmissions" minOccurs="0"/>
|
2206
2268
|
<xs:element ref="auc:AnnualSavingsMarginalGHGEmissions" minOccurs="0"/>
|
2207
2269
|
<xs:element ref="auc:AnnualSavingsGHGEmissionIntensity" minOccurs="0"/>
|
2270
|
+
<xs:element ref="auc:LifeCycleSavingsEnergy" minOccurs="0"/>
|
2271
|
+
<xs:element ref="auc:LifeCycleSavingsEnergyCost" minOccurs="0"/>
|
2272
|
+
<xs:element ref="auc:LifeCycleSavingsWater" minOccurs="0"/>
|
2273
|
+
<xs:element ref="auc:LifeCycleSavingsWaterCost" minOccurs="0"/>
|
2274
|
+
<xs:element ref="auc:LifeCycleSavingsAncillaryCost" minOccurs="0"/>
|
2208
2275
|
<xs:element name="ImplementationPeriod" type="xs:integer" minOccurs="0">
|
2209
2276
|
<xs:annotation>
|
2210
2277
|
<xs:documentation>Total period of time necessary to implement all measures in the package. (months)</xs:documentation>
|
@@ -2320,6 +2387,11 @@
|
|
2320
2387
|
<xs:element ref="auc:AnnualSavingsAverageGHGEmissions" minOccurs="0"/>
|
2321
2388
|
<xs:element ref="auc:AnnualSavingsMarginalGHGEmissions" minOccurs="0"/>
|
2322
2389
|
<xs:element ref="auc:AnnualSavingsGHGEmissionIntensity" minOccurs="0"/>
|
2390
|
+
<xs:element ref="auc:LifeCycleSavingsEnergy" minOccurs="0"/>
|
2391
|
+
<xs:element ref="auc:LifeCycleSavingsEnergyCost" minOccurs="0"/>
|
2392
|
+
<xs:element ref="auc:LifeCycleSavingsWater" minOccurs="0"/>
|
2393
|
+
<xs:element ref="auc:LifeCycleSavingsWaterCost" minOccurs="0"/>
|
2394
|
+
<xs:element ref="auc:LifeCycleSavingsAncillaryCost" minOccurs="0"/>
|
2323
2395
|
<xs:element ref="auc:SimplePayback" minOccurs="0"/>
|
2324
2396
|
<xs:element ref="auc:NetPresentValue" minOccurs="0"/>
|
2325
2397
|
<xs:element ref="auc:InternalRateOfReturn" minOccurs="0"/>
|
@@ -3820,6 +3892,13 @@
|
|
3820
3892
|
<xs:enumeration value="Add energy recovery"/>
|
3821
3893
|
<xs:enumeration value="Convert gas-fired unit to boiler loop"/>
|
3822
3894
|
<xs:enumeration value="Convert system from steam to hot water"/>
|
3895
|
+
<xs:enumeration value="Add boiler automatic chemical feed system"/>
|
3896
|
+
<xs:enumeration value="Install boiler condensate return system"/>
|
3897
|
+
<xs:enumeration value="Install boiler automatic blowdown system"/>
|
3898
|
+
<xs:enumeration value="Install boiler blowdown heat exchanger"/>
|
3899
|
+
<xs:enumeration value="Install boiler expansion flash tank"/>
|
3900
|
+
<xs:enumeration value="Install meters on boiler make-up lines"/>
|
3901
|
+
<xs:enumeration value="Install dehumidification system"/>
|
3823
3902
|
<xs:enumeration value="Clean and/or repair"/>
|
3824
3903
|
<xs:enumeration value="Implement training and/or documentation"/>
|
3825
3904
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -3849,6 +3928,13 @@
|
|
3849
3928
|
<xs:enumeration value="Install gas cooling"/>
|
3850
3929
|
<xs:enumeration value="Add or repair economizer cycle"/>
|
3851
3930
|
<xs:enumeration value="Add or replace cooling tower"/>
|
3931
|
+
<xs:enumeration value="Implement advanced cooling tower controls to manage cycles of concentration"/>
|
3932
|
+
<xs:enumeration value="Install cooling tower water treatment system"/>
|
3933
|
+
<xs:enumeration value="Install automated chemical feed systems for cooling tower management"/>
|
3934
|
+
<xs:enumeration value="Install conductivity controller for cooling tower management"/>
|
3935
|
+
<xs:enumeration value="Install covers on open distribution decks on top of cooling tower"/>
|
3936
|
+
<xs:enumeration value="Install flow meters on make-up and blowdown lines for cooling tower management"/>
|
3937
|
+
<xs:enumeration value="Install side-stream filtration system for cooling tower management"/>
|
3852
3938
|
<xs:enumeration value="Clean and/or repair"/>
|
3853
3939
|
<xs:enumeration value="Implement training and/or documentation"/>
|
3854
3940
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -3920,6 +4006,10 @@
|
|
3920
4006
|
<xs:enumeration value="Install variable refrigerant flow system"/>
|
3921
4007
|
<xs:enumeration value="Capture and return condensate"/>
|
3922
4008
|
<xs:enumeration value="Install or Upgrade Master Venting"/>
|
4009
|
+
<xs:enumeration value="Retrofit single-pass cooling with an automatic shut-off device"/>
|
4010
|
+
<xs:enumeration value="Retrofit single-pass cooling with closed loop/recirculation system"/>
|
4011
|
+
<xs:enumeration value="Install water-efficient evaporative cooler"/>
|
4012
|
+
<xs:enumeration value="Replace water-cooled equipment with air-cooled equipment"/>
|
3923
4013
|
<xs:enumeration value="Clean and/or repair"/>
|
3924
4014
|
<xs:enumeration value="Implement training and/or documentation"/>
|
3925
4015
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -3996,6 +4086,8 @@
|
|
3996
4086
|
<xs:enumeration value="Replace windows"/>
|
3997
4087
|
<xs:enumeration value="Increase floor insulation"/>
|
3998
4088
|
<xs:enumeration value="Insulate foundation"/>
|
4089
|
+
<xs:enumeration value="Add secondary window systems/attachments"/>
|
4090
|
+
<xs:enumeration value="Install shading automation system"/>
|
3999
4091
|
<xs:enumeration value="Clean and/or repair"/>
|
4000
4092
|
<xs:enumeration value="Close elevator and/or stairwell shaft vents"/>
|
4001
4093
|
<xs:enumeration value="Other"/>
|
@@ -4031,6 +4123,7 @@
|
|
4031
4123
|
<xs:enumeration value="Install or upgrade master venting"/>
|
4032
4124
|
<xs:enumeration value="Replace steam traps with orifice plates"/>
|
4033
4125
|
<xs:enumeration value="Install steam condensate heat recovery"/>
|
4126
|
+
<xs:enumeration value="Install leak detection system"/>
|
4034
4127
|
<xs:enumeration value="Clean and/or repair"/>
|
4035
4128
|
<xs:enumeration value="Implement training and/or documentation"/>
|
4036
4129
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -4245,6 +4338,15 @@
|
|
4245
4338
|
<xs:enumeration value="Install low-flow plumbing equipment"/>
|
4246
4339
|
<xs:enumeration value="Install onsite sewer treatment systems"/>
|
4247
4340
|
<xs:enumeration value="Implement water efficient irrigation"/>
|
4341
|
+
<xs:enumeration value="Remove water softeners with timers"/>
|
4342
|
+
<xs:enumeration value="Install high-efficiency faucet aerator in lavatory public restrooms"/>
|
4343
|
+
<xs:enumeration value="Install WaterSense-qualified faucet aerator in lavatory private restrooms"/>
|
4344
|
+
<xs:enumeration value="Install WaterSense-qualified showerhead"/>
|
4345
|
+
<xs:enumeration value="Install WaterSense-qualified flushometer toilets"/>
|
4346
|
+
<xs:enumeration value="Install WaterSense-qualified tank toilets"/>
|
4347
|
+
<xs:enumeration value="Install WaterSense-qualified flushing urinal"/>
|
4348
|
+
<xs:enumeration value="Install leak detection system"/>
|
4349
|
+
<xs:enumeration value="Install temporary shut-off or foot-operated valves with kitchen faucets"/>
|
4248
4350
|
<xs:enumeration value="Clean and/or repair"/>
|
4249
4351
|
<xs:enumeration value="Implement training and/or documentation"/>
|
4250
4352
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -4392,6 +4494,170 @@
|
|
4392
4494
|
<xs:enumeration value="Implement hot aisle cold aisle design"/>
|
4393
4495
|
<xs:enumeration value="Implement server virtualization"/>
|
4394
4496
|
<xs:enumeration value="Upgrade servers"/>
|
4497
|
+
<xs:enumeration value="Eliminate redundant power supplies"/>
|
4498
|
+
<xs:enumeration value="Install battery storage"/>
|
4499
|
+
<xs:enumeration value="Replace inefficient hardware"/>
|
4500
|
+
<xs:enumeration value="Clean and/or repair"/>
|
4501
|
+
<xs:enumeration value="Implement training and/or documentation"/>
|
4502
|
+
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
4503
|
+
<xs:enumeration value="Other"/>
|
4504
|
+
</xs:restriction>
|
4505
|
+
</xs:simpleType>
|
4506
|
+
</xs:element>
|
4507
|
+
</xs:sequence>
|
4508
|
+
</xs:complexType>
|
4509
|
+
</xs:element>
|
4510
|
+
<xs:element name="AlternativeWaterSources" minOccurs="0">
|
4511
|
+
<xs:annotation>
|
4512
|
+
<xs:documentation>Alternative water sources options for water saving.</xs:documentation>
|
4513
|
+
</xs:annotation>
|
4514
|
+
<xs:complexType>
|
4515
|
+
<xs:sequence>
|
4516
|
+
<xs:element name="MeasureName" maxOccurs="unbounded">
|
4517
|
+
<xs:annotation>
|
4518
|
+
<xs:documentation>Short description of measure.</xs:documentation>
|
4519
|
+
</xs:annotation>
|
4520
|
+
<xs:simpleType>
|
4521
|
+
<xs:restriction base="xs:string">
|
4522
|
+
<xs:enumeration value="Install condensate capture equipment"/>
|
4523
|
+
<xs:enumeration value="Install atmospheric water generator"/>
|
4524
|
+
<xs:enumeration value="Install wastewater treatment plant"/>
|
4525
|
+
<xs:enumeration value="Install rainwater harvesting system"/>
|
4526
|
+
<xs:enumeration value="Install cooling tower blowdown for appropriate applications"/>
|
4527
|
+
<xs:enumeration value="Install desalinated water treatment for reuse"/>
|
4528
|
+
<xs:enumeration value="Use discharged water from water purification processes"/>
|
4529
|
+
<xs:enumeration value="Install foundation water treatment for reuse"/>
|
4530
|
+
<xs:enumeration value="Install greywater reuse system"/>
|
4531
|
+
<xs:enumeration value="Clean and/or repair"/>
|
4532
|
+
<xs:enumeration value="Implement training and/or documentation"/>
|
4533
|
+
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
4534
|
+
<xs:enumeration value="Other"/>
|
4535
|
+
</xs:restriction>
|
4536
|
+
</xs:simpleType>
|
4537
|
+
</xs:element>
|
4538
|
+
</xs:sequence>
|
4539
|
+
</xs:complexType>
|
4540
|
+
</xs:element>
|
4541
|
+
<xs:element name="KitchenImprovements" minOccurs="0">
|
4542
|
+
<xs:annotation>
|
4543
|
+
<xs:documentation>Kitchen improvements.</xs:documentation>
|
4544
|
+
</xs:annotation>
|
4545
|
+
<xs:complexType>
|
4546
|
+
<xs:sequence>
|
4547
|
+
<xs:element name="MeasureName" maxOccurs="unbounded">
|
4548
|
+
<xs:annotation>
|
4549
|
+
<xs:documentation>Short description of measure.</xs:documentation>
|
4550
|
+
</xs:annotation>
|
4551
|
+
<xs:simpleType>
|
4552
|
+
<xs:restriction base="xs:string">
|
4553
|
+
<xs:enumeration value="Retrofit single-pass cooling ice machine to closed loop"/>
|
4554
|
+
<xs:enumeration value="Install food disposal load sensing device"/>
|
4555
|
+
<xs:enumeration value="Replace with ENERGY STAR-qualified commercial dishwashers"/>
|
4556
|
+
<xs:enumeration value="Replace with ENERGY STAR-qualified steam cookers or boilerless commercial steam cookers"/>
|
4557
|
+
<xs:enumeration value="Replace with ENERGY STAR-qualified ice machine"/>
|
4558
|
+
<xs:enumeration value="Replace food disposal with food pulper system"/>
|
4559
|
+
<xs:enumeration value="Install WaterSense-qualified pre-rinse spray valves"/>
|
4560
|
+
<xs:enumeration value="Install in-line flow restrictor on dipper wells"/>
|
4561
|
+
<xs:enumeration value="Install steam kettle with condensate return"/>
|
4562
|
+
<xs:enumeration value="Clean and/or repair"/>
|
4563
|
+
<xs:enumeration value="Implement training and/or documentation"/>
|
4564
|
+
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
4565
|
+
<xs:enumeration value="Other"/>
|
4566
|
+
</xs:restriction>
|
4567
|
+
</xs:simpleType>
|
4568
|
+
</xs:element>
|
4569
|
+
</xs:sequence>
|
4570
|
+
</xs:complexType>
|
4571
|
+
</xs:element>
|
4572
|
+
<xs:element name="LaboratoryAndMedicalEquipments" minOccurs="0">
|
4573
|
+
<xs:annotation>
|
4574
|
+
<xs:documentation>Improvements for laboratory and medical equipments.</xs:documentation>
|
4575
|
+
</xs:annotation>
|
4576
|
+
<xs:complexType>
|
4577
|
+
<xs:sequence>
|
4578
|
+
<xs:element name="MeasureName" maxOccurs="unbounded">
|
4579
|
+
<xs:annotation>
|
4580
|
+
<xs:documentation>Short description of measure.</xs:documentation>
|
4581
|
+
</xs:annotation>
|
4582
|
+
<xs:simpleType>
|
4583
|
+
<xs:restriction base="xs:string">
|
4584
|
+
<xs:enumeration value="Install dry vacuum or air-cooled vacuum pump"/>
|
4585
|
+
<xs:enumeration value="Retrofit liquid-ring vacuum pump with a water recovery system"/>
|
4586
|
+
<xs:enumeration value="Install digital photographic or X-ray equipment"/>
|
4587
|
+
<xs:enumeration value="Retrofit traditional photographic or X-ray equipment with a water recycling system"/>
|
4588
|
+
<xs:enumeration value="Install water-efficient glassware washer with water recycling system"/>
|
4589
|
+
<xs:enumeration value="Retrofit glassware washer with water recycling system"/>
|
4590
|
+
<xs:enumeration value="Install pretreatment of water purification equipment to increase system recovery"/>
|
4591
|
+
<xs:enumeration value="Install high efficiency water purification system with high recovery rate"/>
|
4592
|
+
<xs:enumeration value="Install steam sterilizer system with automated tempering system and automatic shut off"/>
|
4593
|
+
<xs:enumeration value="Retrofit vivarium washing equipment with water recycling system"/>
|
4594
|
+
<xs:enumeration value="Install water-efficient vivarium washing equipment with advanced controls and water recycling"/>
|
4595
|
+
<xs:enumeration value="Install water-efficient vivarium watering equipment with recirculation system"/>
|
4596
|
+
<xs:enumeration value="Install steam sterilizer condensate retrofit kit"/>
|
4597
|
+
<xs:enumeration value="Clean and/or repair"/>
|
4598
|
+
<xs:enumeration value="Implement training and/or documentation"/>
|
4599
|
+
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
4600
|
+
<xs:enumeration value="Other"/>
|
4601
|
+
</xs:restriction>
|
4602
|
+
</xs:simpleType>
|
4603
|
+
</xs:element>
|
4604
|
+
</xs:sequence>
|
4605
|
+
</xs:complexType>
|
4606
|
+
</xs:element>
|
4607
|
+
<xs:element name="IrrigationSystemsAndLandscapingImprovements" minOccurs="0">
|
4608
|
+
<xs:annotation>
|
4609
|
+
<xs:documentation>Improvements for irrigation systems and landscaping.</xs:documentation>
|
4610
|
+
</xs:annotation>
|
4611
|
+
<xs:complexType>
|
4612
|
+
<xs:sequence>
|
4613
|
+
<xs:element name="MeasureName" maxOccurs="unbounded">
|
4614
|
+
<xs:annotation>
|
4615
|
+
<xs:documentation>Short description of measure.</xs:documentation>
|
4616
|
+
</xs:annotation>
|
4617
|
+
<xs:simpleType>
|
4618
|
+
<xs:restriction base="xs:string">
|
4619
|
+
<xs:enumeration value="Install advanced weather-based irrigation controller"/>
|
4620
|
+
<xs:enumeration value="Install advanced soil-moisture based irrigation controller"/>
|
4621
|
+
<xs:enumeration value="Install water-efficient irrigation sprinkler heads"/>
|
4622
|
+
<xs:enumeration value="Reprogram irrigation controller to water-efficient settings"/>
|
4623
|
+
<xs:enumeration value="Install irrigation meter"/>
|
4624
|
+
<xs:enumeration value="Install micro-irrigation or drip irrigation"/>
|
4625
|
+
<xs:enumeration value="Install irrigation sprinkler shut-off device"/>
|
4626
|
+
<xs:enumeration value="Remove or Recirculate ornamental water feature"/>
|
4627
|
+
<xs:enumeration value="Install native/adaptive plants"/>
|
4628
|
+
<xs:enumeration value="Remove high water consuming plants or replace with native/adaptive plants"/>
|
4629
|
+
<xs:enumeration value="Clean and/or repair"/>
|
4630
|
+
<xs:enumeration value="Implement training and/or documentation"/>
|
4631
|
+
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
4632
|
+
<xs:enumeration value="Other"/>
|
4633
|
+
</xs:restriction>
|
4634
|
+
</xs:simpleType>
|
4635
|
+
</xs:element>
|
4636
|
+
</xs:sequence>
|
4637
|
+
</xs:complexType>
|
4638
|
+
</xs:element>
|
4639
|
+
<xs:element name="WashingEquipmentsAndTechiques" minOccurs="0">
|
4640
|
+
<xs:annotation>
|
4641
|
+
<xs:documentation>Improvements for washing equipments and techiques.</xs:documentation>
|
4642
|
+
</xs:annotation>
|
4643
|
+
<xs:complexType>
|
4644
|
+
<xs:sequence>
|
4645
|
+
<xs:element name="MeasureName" maxOccurs="unbounded">
|
4646
|
+
<xs:annotation>
|
4647
|
+
<xs:documentation>Short description of measure.</xs:documentation>
|
4648
|
+
</xs:annotation>
|
4649
|
+
<xs:simpleType>
|
4650
|
+
<xs:restriction base="xs:string">
|
4651
|
+
<xs:enumeration value="Install automatic shutoff nozzle for self-service vehicle wash"/>
|
4652
|
+
<xs:enumeration value="Implement water-efficient optimization for vehicle washing equipment"/>
|
4653
|
+
<xs:enumeration value="Retrofit vehicle washing equipment with water recycling system"/>
|
4654
|
+
<xs:enumeration value="Install high-pressure self-service vehicle washer"/>
|
4655
|
+
<xs:enumeration value="Install ozone system for laundry equipment"/>
|
4656
|
+
<xs:enumeration value="Install water-efficient conveyor/in-bay vehicle washing equipment"/>
|
4657
|
+
<xs:enumeration value="Install ENERGY STAR-qualified laundry washing machines"/>
|
4658
|
+
<xs:enumeration value="Install water-efficient industrial/commercial laundry equipment"/>
|
4659
|
+
<xs:enumeration value="Retrofit laundry washing equipment with water recycling system"/>
|
4660
|
+
<xs:enumeration value="Install meter on vehicle wash system"/>
|
4395
4661
|
<xs:enumeration value="Clean and/or repair"/>
|
4396
4662
|
<xs:enumeration value="Implement training and/or documentation"/>
|
4397
4663
|
<xs:enumeration value="Upgrade operating protocols, calibration, and/or sequencing"/>
|
@@ -4488,60 +4754,7 @@
|
|
4488
4754
|
<xs:documentation>Long description of measure.</xs:documentation>
|
4489
4755
|
</xs:annotation>
|
4490
4756
|
</xs:element>
|
4491
|
-
<xs:element
|
4492
|
-
<xs:annotation>
|
4493
|
-
<xs:documentation>Energy and cost effectiveness data for an individual measure. In most cases, this data depends on the other measures included in the package, and should be entered at the package level under Scenarios.</xs:documentation>
|
4494
|
-
</xs:annotation>
|
4495
|
-
<xs:complexType>
|
4496
|
-
<xs:sequence>
|
4497
|
-
<xs:element name="MeasureRank" minOccurs="0">
|
4498
|
-
<xs:annotation>
|
4499
|
-
<xs:documentation>Sequence in which the measure was analyzed relative to other measures. Ranking should be 1 if it is analyzed first, 2 if analyzed after Measure 1 is applied, etc. This accounts for interactive effects between measures. Ranking may be 1 for all measures if they are not analyzed as a package.</xs:documentation>
|
4500
|
-
</xs:annotation>
|
4501
|
-
<xs:complexType>
|
4502
|
-
<xs:simpleContent>
|
4503
|
-
<xs:extension base="xs:integer">
|
4504
|
-
<xs:attribute ref="auc:Source"/>
|
4505
|
-
</xs:extension>
|
4506
|
-
</xs:simpleContent>
|
4507
|
-
</xs:complexType>
|
4508
|
-
</xs:element>
|
4509
|
-
<xs:element ref="auc:ReferenceCase" minOccurs="0"/>
|
4510
|
-
<xs:element ref="auc:CalculationMethod" minOccurs="0"/>
|
4511
|
-
<xs:element ref="auc:AnnualSavingsSiteEnergy" minOccurs="0"/>
|
4512
|
-
<xs:element ref="auc:AnnualSavingsSourceEnergy" minOccurs="0"/>
|
4513
|
-
<xs:element ref="auc:AnnualSavingsCost" minOccurs="0"/>
|
4514
|
-
<xs:element ref="auc:AnnualSavingsByFuels" minOccurs="0"/>
|
4515
|
-
<xs:element ref="auc:SummerPeakElectricityReduction" minOccurs="0"/>
|
4516
|
-
<xs:element ref="auc:WinterPeakElectricityReduction" minOccurs="0"/>
|
4517
|
-
<xs:element ref="auc:AnnualPeakElectricityReduction" minOccurs="0"/>
|
4518
|
-
<xs:element ref="auc:AnnualDemandSavingsCost" minOccurs="0"/>
|
4519
|
-
<xs:element ref="auc:AnnualWaterSavings" minOccurs="0"/>
|
4520
|
-
<xs:element ref="auc:AnnualWaterCostSavings" minOccurs="0"/>
|
4521
|
-
<xs:element ref="auc:OMCostAnnualSavings" minOccurs="0"/>
|
4522
|
-
<xs:element name="OtherCostAnnualSavings" minOccurs="0">
|
4523
|
-
<xs:annotation>
|
4524
|
-
<xs:documentation>Annual savings for other non-energy costs, or increased revenue caused by measure implementation. ($)</xs:documentation>
|
4525
|
-
</xs:annotation>
|
4526
|
-
<xs:complexType>
|
4527
|
-
<xs:simpleContent>
|
4528
|
-
<xs:extension base="xs:decimal">
|
4529
|
-
<xs:attribute ref="auc:Source"/>
|
4530
|
-
</xs:extension>
|
4531
|
-
</xs:simpleContent>
|
4532
|
-
</xs:complexType>
|
4533
|
-
</xs:element>
|
4534
|
-
<xs:element ref="auc:EquipmentDisposalAndSalvageCosts" minOccurs="0"/>
|
4535
|
-
<xs:element ref="auc:FundingFromIncentives" minOccurs="0"/>
|
4536
|
-
<xs:element ref="auc:FundingFromTaxCredits" minOccurs="0"/>
|
4537
|
-
<xs:element ref="auc:NPVofTaxImplications" minOccurs="0"/>
|
4538
|
-
<xs:element ref="auc:CostEffectivenessScreeningMethod" minOccurs="0"/>
|
4539
|
-
<xs:element ref="auc:SimplePayback" minOccurs="0"/>
|
4540
|
-
<xs:element ref="auc:NetPresentValue" minOccurs="0"/>
|
4541
|
-
<xs:element ref="auc:InternalRateOfReturn" minOccurs="0"/>
|
4542
|
-
</xs:sequence>
|
4543
|
-
</xs:complexType>
|
4544
|
-
</xs:element>
|
4757
|
+
<xs:element ref="auc:MeasureSavingsAnalysis" minOccurs="0"/>
|
4545
4758
|
<xs:element ref="auc:MVCost" minOccurs="0"/>
|
4546
4759
|
<xs:element name="MVOption" minOccurs="0">
|
4547
4760
|
<xs:annotation>
|
@@ -4564,7 +4777,7 @@
|
|
4564
4777
|
</xs:annotation>
|
4565
4778
|
<xs:complexType>
|
4566
4779
|
<xs:simpleContent>
|
4567
|
-
<xs:extension base="xs:
|
4780
|
+
<xs:extension base="xs:nonNegativeInteger">
|
4568
4781
|
<xs:attribute ref="auc:Source"/>
|
4569
4782
|
</xs:extension>
|
4570
4783
|
</xs:simpleContent>
|
@@ -4757,6 +4970,65 @@
|
|
4757
4970
|
</xs:restriction>
|
4758
4971
|
</xs:simpleType>
|
4759
4972
|
</xs:element>
|
4973
|
+
<xs:element name="FacilityEvaluationAuditDefinition" minOccurs="0">
|
4974
|
+
<xs:annotation>
|
4975
|
+
<xs:documentation>The facility audit terms used in the FEMP Facility Evaluation (Audit) resources that satisfy EISA 432 requirements</xs:documentation>
|
4976
|
+
</xs:annotation>
|
4977
|
+
<xs:complexType>
|
4978
|
+
<xs:choice>
|
4979
|
+
<xs:element name="BasicOnsiteAudit">
|
4980
|
+
<xs:annotation>
|
4981
|
+
<xs:documentation>A basic onsite audit meets the minimum requirements for onsite facility evaluations</xs:documentation>
|
4982
|
+
</xs:annotation>
|
4983
|
+
<xs:simpleType>
|
4984
|
+
<xs:restriction base="xs:string">
|
4985
|
+
<xs:enumeration value="ASHRAE Level 1 Audit"/>
|
4986
|
+
<xs:enumeration value="Industrial Assessment Center (IAC) Audit"/>
|
4987
|
+
<xs:enumeration value="Utility Incentive Program Audit"/>
|
4988
|
+
</xs:restriction>
|
4989
|
+
</xs:simpleType>
|
4990
|
+
</xs:element>
|
4991
|
+
<xs:element name="DetailedOnsiteAudit">
|
4992
|
+
<xs:annotation>
|
4993
|
+
<xs:documentation>A more in-depth facility evaluation that is performed when project development is the focus and a more precise LCCA is required</xs:documentation>
|
4994
|
+
</xs:annotation>
|
4995
|
+
<xs:simpleType>
|
4996
|
+
<xs:restriction base="xs:string">
|
4997
|
+
<xs:enumeration value="ASHRAE Level 2 Audit"/>
|
4998
|
+
<xs:enumeration value="ASHRAE Level 3 Audit"/>
|
4999
|
+
<xs:enumeration value="Deep Energy Retrofit Audit"/>
|
5000
|
+
<xs:enumeration value="Preliminary Assessment (PA)"/>
|
5001
|
+
<xs:enumeration value="Investment Grade Audit (IGA)"/>
|
5002
|
+
<xs:enumeration value="Retrocommissioning Audit"/>
|
5003
|
+
</xs:restriction>
|
5004
|
+
</xs:simpleType>
|
5005
|
+
</xs:element>
|
5006
|
+
<xs:element name="BasicRemoteAudit">
|
5007
|
+
<xs:annotation>
|
5008
|
+
<xs:documentation>A facility evaluation performed without a site visit and analysis of datasets from specific building systems or operations to derive opportunities for energy efficiency, water efficiency, and renewable energy generation</xs:documentation>
|
5009
|
+
</xs:annotation>
|
5010
|
+
<xs:simpleType>
|
5011
|
+
<xs:restriction base="xs:string">
|
5012
|
+
<xs:enumeration value="Rapid/Automated Audit"/>
|
5013
|
+
<xs:enumeration value="Continuous Monitoring of Building Systems"/>
|
5014
|
+
<xs:enumeration value="Portfolio Screening Analysis"/>
|
5015
|
+
</xs:restriction>
|
5016
|
+
</xs:simpleType>
|
5017
|
+
</xs:element>
|
5018
|
+
<xs:element name="DetailedRemoteAudit">
|
5019
|
+
<xs:annotation>
|
5020
|
+
<xs:documentation>A facility evaluation performed without a site visit and rigorous analysis of building systems and operations to identify opportunities for energy efficiency, water efficiency, and renewable energy generation</xs:documentation>
|
5021
|
+
</xs:annotation>
|
5022
|
+
<xs:simpleType>
|
5023
|
+
<xs:restriction base="xs:string">
|
5024
|
+
<xs:enumeration value="Desk Audit"/>
|
5025
|
+
<xs:enumeration value="Remote Controls Audit"/>
|
5026
|
+
</xs:restriction>
|
5027
|
+
</xs:simpleType>
|
5028
|
+
</xs:element>
|
5029
|
+
</xs:choice>
|
5030
|
+
</xs:complexType>
|
5031
|
+
</xs:element>
|
4760
5032
|
<xs:element name="RetrocommissioningAudit" type="xs:boolean" minOccurs="0">
|
4761
5033
|
<xs:annotation>
|
4762
5034
|
<xs:documentation>True if an assessment of retro- or re-commissioning measures was completed as part of the audit.</xs:documentation>
|
@@ -4777,6 +5049,20 @@
|
|
4777
5049
|
<xs:element name="DiscountFactor" minOccurs="0">
|
4778
5050
|
<xs:annotation>
|
4779
5051
|
<xs:documentation>Discount factor applied to calculate present values of future cash flows. (0-100) (%)</xs:documentation>
|
5052
|
+
<xs:documentation>Discount factors $v$ are related to discount rates $i$ by the following equation: $v=\frac{1}{1+i}$.</xs:documentation>
|
5053
|
+
</xs:annotation>
|
5054
|
+
<xs:complexType>
|
5055
|
+
<xs:simpleContent>
|
5056
|
+
<xs:extension base="xs:decimal">
|
5057
|
+
<xs:attribute ref="auc:Source"/>
|
5058
|
+
</xs:extension>
|
5059
|
+
</xs:simpleContent>
|
5060
|
+
</xs:complexType>
|
5061
|
+
</xs:element>
|
5062
|
+
<xs:element name="DiscountRate" minOccurs="0">
|
5063
|
+
<xs:annotation>
|
5064
|
+
<xs:documentation>Discount rate applied to calculate present values of future cash flows. (0-100) (%)</xs:documentation>
|
5065
|
+
<xs:documentation>Discount rates $i$ are related to discount factors $v$ by the following equation: $i=\frac{1-v}{v}$ where $v \neq 0$.</xs:documentation>
|
4780
5066
|
</xs:annotation>
|
4781
5067
|
<xs:complexType>
|
4782
5068
|
<xs:simpleContent>
|
@@ -4961,6 +5247,7 @@
|
|
4961
5247
|
</xs:complexType>
|
4962
5248
|
</xs:element>
|
4963
5249
|
<xs:element ref="auc:LinkedPremisesOrSystem" minOccurs="0"/>
|
5250
|
+
<xs:element ref="auc:LinkedAuditCycles" minOccurs="0"/>
|
4964
5251
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
4965
5252
|
</xs:sequence>
|
4966
5253
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
@@ -5206,6 +5493,7 @@
|
|
5206
5493
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
5207
5494
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
5208
5495
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
5496
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
5209
5497
|
</xs:sequence>
|
5210
5498
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
5211
5499
|
<xs:attribute ref="auc:Status"/>
|
@@ -5356,6 +5644,7 @@
|
|
5356
5644
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
5357
5645
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
5358
5646
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
5647
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
5359
5648
|
</xs:sequence>
|
5360
5649
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
5361
5650
|
<xs:attribute ref="auc:Status"/>
|
@@ -5548,6 +5837,7 @@
|
|
5548
5837
|
<xs:element ref="auc:ThirdPartyCertification" minOccurs="0"/>
|
5549
5838
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
5550
5839
|
<xs:element name="DeliveryCondition" type="auc:EquipmentCondition" minOccurs="0"/>
|
5840
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
5551
5841
|
</xs:sequence>
|
5552
5842
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
5553
5843
|
<xs:attribute ref="auc:Status">
|
@@ -5625,32 +5915,7 @@
|
|
5625
5915
|
</xs:restriction>
|
5626
5916
|
</xs:simpleType>
|
5627
5917
|
</xs:element>
|
5628
|
-
<xs:element
|
5629
|
-
<xs:annotation>
|
5630
|
-
<xs:documentation>Principal HVAC type.</xs:documentation>
|
5631
|
-
</xs:annotation>
|
5632
|
-
<xs:simpleType>
|
5633
|
-
<xs:restriction base="xs:string">
|
5634
|
-
<xs:enumeration value="Packaged Terminal Air Conditioner"/>
|
5635
|
-
<xs:enumeration value="Four Pipe Fan Coil Unit"/>
|
5636
|
-
<xs:enumeration value="Packaged Terminal Heat Pump"/>
|
5637
|
-
<xs:enumeration value="Packaged Rooftop Air Conditioner"/>
|
5638
|
-
<xs:enumeration value="Packaged Rooftop Heat Pump"/>
|
5639
|
-
<xs:enumeration value="Packaged Rooftop VAV with Hot Water Reheat"/>
|
5640
|
-
<xs:enumeration value="Packaged Rooftop VAV with Electric Reheat"/>
|
5641
|
-
<xs:enumeration value="VAV with Hot Water Reheat"/>
|
5642
|
-
<xs:enumeration value="VAV with Electric Reheat"/>
|
5643
|
-
<xs:enumeration value="Warm Air Furnace"/>
|
5644
|
-
<xs:enumeration value="Ventilation Only"/>
|
5645
|
-
<xs:enumeration value="Dedicated Outdoor Air System"/>
|
5646
|
-
<xs:enumeration value="Water Loop Heat Pump"/>
|
5647
|
-
<xs:enumeration value="Ground Source Heat Pump"/>
|
5648
|
-
<xs:enumeration value="VRF Terminal Unit"/>
|
5649
|
-
<xs:enumeration value="Chilled Beam"/>
|
5650
|
-
<xs:enumeration value="Other"/>
|
5651
|
-
</xs:restriction>
|
5652
|
-
</xs:simpleType>
|
5653
|
-
</xs:element>
|
5918
|
+
<xs:element ref="auc:PrincipalHVACSystemType" minOccurs="0"/>
|
5654
5919
|
</xs:choice>
|
5655
5920
|
<xs:element name="HVACControlSystemTypes" minOccurs="0">
|
5656
5921
|
<xs:annotation>
|
@@ -6310,6 +6575,19 @@
|
|
6310
6575
|
<xs:element ref="auc:NoCooling" minOccurs="0"/>
|
6311
6576
|
<xs:element ref="auc:Unknown" minOccurs="0"/>
|
6312
6577
|
</xs:choice>
|
6578
|
+
<xs:element name="CondenserType" minOccurs="0">
|
6579
|
+
<xs:annotation>
|
6580
|
+
<xs:documentation>Type of condenser associated with the cooling plant. The usage of this element is not recommended except for Audit Template use cases. User is recommended to use CondenserPlant instead.</xs:documentation>
|
6581
|
+
</xs:annotation>
|
6582
|
+
<xs:simpleType>
|
6583
|
+
<xs:restriction base="xs:string">
|
6584
|
+
<xs:enumeration value="Air Cooled"/>
|
6585
|
+
<xs:enumeration value="Water Cooled"/>
|
6586
|
+
<xs:enumeration value="Other"/>
|
6587
|
+
<xs:enumeration value="Unknown"/>
|
6588
|
+
</xs:restriction>
|
6589
|
+
</xs:simpleType>
|
6590
|
+
</xs:element>
|
6313
6591
|
<xs:element name="CoolingPlantCondition" type="auc:EquipmentCondition" minOccurs="0"/>
|
6314
6592
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
6315
6593
|
<xs:element ref="auc:YearInstalled" minOccurs="0"/>
|
@@ -6886,10 +7164,38 @@
|
|
6886
7164
|
</xs:element>
|
6887
7165
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
6888
7166
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
7167
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
6889
7168
|
</xs:sequence>
|
6890
7169
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
6891
7170
|
<xs:attribute ref="auc:Status"/>
|
6892
7171
|
</xs:complexType>
|
7172
|
+
<xs:element name="PrincipalHVACSystemType">
|
7173
|
+
<xs:annotation>
|
7174
|
+
<xs:documentation>Principal HVAC type.</xs:documentation>
|
7175
|
+
</xs:annotation>
|
7176
|
+
<xs:simpleType>
|
7177
|
+
<xs:restriction base="xs:string">
|
7178
|
+
<xs:enumeration value="Packaged Terminal Air Conditioner"/>
|
7179
|
+
<xs:enumeration value="Four Pipe Fan Coil Unit"/>
|
7180
|
+
<xs:enumeration value="Packaged Terminal Heat Pump"/>
|
7181
|
+
<xs:enumeration value="Packaged Rooftop Air Conditioner"/>
|
7182
|
+
<xs:enumeration value="Packaged Rooftop Heat Pump"/>
|
7183
|
+
<xs:enumeration value="Packaged Rooftop VAV with Hot Water Reheat"/>
|
7184
|
+
<xs:enumeration value="Packaged Rooftop VAV with Electric Reheat"/>
|
7185
|
+
<xs:enumeration value="VAV with Hot Water Reheat"/>
|
7186
|
+
<xs:enumeration value="VAV with Electric Reheat"/>
|
7187
|
+
<xs:enumeration value="Warm Air Furnace"/>
|
7188
|
+
<xs:enumeration value="Ventilation Only"/>
|
7189
|
+
<xs:enumeration value="Dedicated Outdoor Air System"/>
|
7190
|
+
<xs:enumeration value="Water Loop Heat Pump"/>
|
7191
|
+
<xs:enumeration value="Ground Source Heat Pump"/>
|
7192
|
+
<xs:enumeration value="VRF Terminal Unit"/>
|
7193
|
+
<xs:enumeration value="Chilled Beam"/>
|
7194
|
+
<xs:enumeration value="Other"/>
|
7195
|
+
<xs:enumeration value="Unknown"/>
|
7196
|
+
</xs:restriction>
|
7197
|
+
</xs:simpleType>
|
7198
|
+
</xs:element>
|
6893
7199
|
<xs:complexType name="LightingSystemType">
|
6894
7200
|
<xs:sequence>
|
6895
7201
|
<xs:element name="LampType" minOccurs="0">
|
@@ -7361,10 +7667,43 @@
|
|
7361
7667
|
</xs:element>
|
7362
7668
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
7363
7669
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
7670
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
7364
7671
|
</xs:sequence>
|
7365
7672
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
7366
7673
|
<xs:attribute ref="auc:Status"/>
|
7367
7674
|
</xs:complexType>
|
7675
|
+
<xs:element name="PrincipalLightingSystemType">
|
7676
|
+
<xs:annotation>
|
7677
|
+
<xs:documentation>Principal Lighting type for a building or a section. The usage of this element is not recommended except for Audit Template use cases.</xs:documentation>
|
7678
|
+
</xs:annotation>
|
7679
|
+
<xs:simpleType>
|
7680
|
+
<xs:restriction base="xs:string">
|
7681
|
+
<xs:enumeration value="Incandescent"/>
|
7682
|
+
<xs:enumeration value="Linear Fluorescent"/>
|
7683
|
+
<xs:enumeration value="Compact Fluorescent"/>
|
7684
|
+
<xs:enumeration value="Halogen"/>
|
7685
|
+
<xs:enumeration value="High Intensity Discharge"/>
|
7686
|
+
<xs:enumeration value="Solid State Lighting"/>
|
7687
|
+
<xs:enumeration value="LED"/>
|
7688
|
+
<xs:enumeration value="Mercury Vapor"/>
|
7689
|
+
<xs:enumeration value="Metal Halide"/>
|
7690
|
+
<xs:enumeration value="Sodium Vapor High Pressure"/>
|
7691
|
+
<xs:enumeration value="T5"/>
|
7692
|
+
<xs:enumeration value="T5HO"/>
|
7693
|
+
<xs:enumeration value="T8"/>
|
7694
|
+
<xs:enumeration value="Super T8"/>
|
7695
|
+
<xs:enumeration value="T12"/>
|
7696
|
+
<xs:enumeration value="T12HO"/>
|
7697
|
+
<xs:enumeration value="Induction"/>
|
7698
|
+
<xs:enumeration value="Neon"/>
|
7699
|
+
<xs:enumeration value="Plasma"/>
|
7700
|
+
<xs:enumeration value="Photoluminescent"/>
|
7701
|
+
<xs:enumeration value="Self Luminous"/>
|
7702
|
+
<xs:enumeration value="Other"/>
|
7703
|
+
<xs:enumeration value="Unknown"/>
|
7704
|
+
</xs:restriction>
|
7705
|
+
</xs:simpleType>
|
7706
|
+
</xs:element>
|
7368
7707
|
<xs:complexType name="DomesticHotWaterSystemType">
|
7369
7708
|
<xs:sequence>
|
7370
7709
|
<xs:element name="DomesticHotWaterType" minOccurs="0">
|
@@ -7553,6 +7892,7 @@
|
|
7553
7892
|
<xs:element ref="auc:Manufacturer" minOccurs="0"/>
|
7554
7893
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
7555
7894
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
7895
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
7556
7896
|
</xs:sequence>
|
7557
7897
|
</xs:complexType>
|
7558
7898
|
</xs:element>
|
@@ -7867,6 +8207,7 @@
|
|
7867
8207
|
</xs:element>
|
7868
8208
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
7869
8209
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
8210
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
7870
8211
|
</xs:sequence>
|
7871
8212
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
7872
8213
|
<xs:attribute ref="auc:Status"/>
|
@@ -7976,6 +8317,7 @@
|
|
7976
8317
|
</xs:element>
|
7977
8318
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
7978
8319
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
8320
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
7979
8321
|
</xs:sequence>
|
7980
8322
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
7981
8323
|
<xs:attribute ref="auc:Status"/>
|
@@ -8228,6 +8570,7 @@
|
|
8228
8570
|
</xs:element>
|
8229
8571
|
<xs:element ref="auc:Manufacturer" minOccurs="0"/>
|
8230
8572
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
8573
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8231
8574
|
</xs:sequence>
|
8232
8575
|
</xs:complexType>
|
8233
8576
|
</xs:element>
|
@@ -8259,6 +8602,7 @@
|
|
8259
8602
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
8260
8603
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
8261
8604
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
8605
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8262
8606
|
</xs:sequence>
|
8263
8607
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
8264
8608
|
<xs:attribute ref="auc:Status"/>
|
@@ -8372,6 +8716,7 @@
|
|
8372
8716
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
8373
8717
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
8374
8718
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
8719
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8375
8720
|
</xs:sequence>
|
8376
8721
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
8377
8722
|
<xs:attribute ref="auc:Status"/>
|
@@ -8484,6 +8829,7 @@
|
|
8484
8829
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
8485
8830
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
8486
8831
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
8832
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8487
8833
|
</xs:sequence>
|
8488
8834
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
8489
8835
|
<xs:attribute ref="auc:Status"/>
|
@@ -8643,6 +8989,7 @@
|
|
8643
8989
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
8644
8990
|
<xs:element ref="auc:LinkedSystemIDs" minOccurs="0"/>
|
8645
8991
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
8992
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8646
8993
|
</xs:sequence>
|
8647
8994
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
8648
8995
|
<xs:attribute ref="auc:Status"/>
|
@@ -8865,6 +9212,7 @@
|
|
8865
9212
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
8866
9213
|
<xs:element ref="auc:LinkedSystemIDs" minOccurs="0"/>
|
8867
9214
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
9215
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
8868
9216
|
</xs:sequence>
|
8869
9217
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
8870
9218
|
<xs:attribute ref="auc:Status"/>
|
@@ -9010,6 +9358,7 @@
|
|
9010
9358
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
9011
9359
|
<xs:element ref="auc:LinkedSystemIDs" minOccurs="0"/>
|
9012
9360
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
9361
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
9013
9362
|
</xs:sequence>
|
9014
9363
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
9015
9364
|
<xs:attribute ref="auc:Status"/>
|
@@ -9097,6 +9446,7 @@
|
|
9097
9446
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
9098
9447
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
9099
9448
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
9449
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
9100
9450
|
</xs:sequence>
|
9101
9451
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
9102
9452
|
<xs:attribute ref="auc:Status"/>
|
@@ -10216,6 +10566,7 @@
|
|
10216
10566
|
<xs:element ref="auc:Manufacturer" minOccurs="0"/>
|
10217
10567
|
<xs:element ref="auc:ModelNumber" minOccurs="0"/>
|
10218
10568
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
10569
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
10219
10570
|
</xs:sequence>
|
10220
10571
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
10221
10572
|
<xs:attribute ref="auc:Status"/>
|
@@ -10651,6 +11002,7 @@
|
|
10651
11002
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
10652
11003
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
10653
11004
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
11005
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
10654
11006
|
</xs:sequence>
|
10655
11007
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
10656
11008
|
<xs:attribute ref="auc:Status"/>
|
@@ -10741,6 +11093,7 @@
|
|
10741
11093
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
10742
11094
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
10743
11095
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
11096
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
10744
11097
|
</xs:sequence>
|
10745
11098
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
10746
11099
|
<xs:attribute ref="auc:Source"/>
|
@@ -10824,6 +11177,7 @@
|
|
10824
11177
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
10825
11178
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
10826
11179
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
11180
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
10827
11181
|
</xs:sequence>
|
10828
11182
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
10829
11183
|
<xs:attribute ref="auc:Source"/>
|
@@ -10913,6 +11267,7 @@
|
|
10913
11267
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
10914
11268
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
10915
11269
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
11270
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
10916
11271
|
</xs:sequence>
|
10917
11272
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
10918
11273
|
<xs:attribute ref="auc:Status"/>
|
@@ -11218,6 +11573,7 @@
|
|
11218
11573
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
11219
11574
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
11220
11575
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
11576
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
11221
11577
|
</xs:sequence>
|
11222
11578
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
11223
11579
|
<xs:attribute ref="auc:Status"/>
|
@@ -11343,6 +11699,7 @@
|
|
11343
11699
|
<xs:element ref="auc:Location" minOccurs="0"/>
|
11344
11700
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
11345
11701
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
11702
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
11346
11703
|
</xs:sequence>
|
11347
11704
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
11348
11705
|
<xs:attribute ref="auc:Status"/>
|
@@ -11450,6 +11807,7 @@
|
|
11450
11807
|
<xs:element ref="auc:LinkedPremises" minOccurs="0"/>
|
11451
11808
|
<xs:element ref="auc:UserDefinedFields" minOccurs="0"/>
|
11452
11809
|
<xs:element ref="auc:Quantity" minOccurs="0"/>
|
11810
|
+
<xs:element ref="auc:EquipmentID" minOccurs="0"/>
|
11453
11811
|
</xs:sequence>
|
11454
11812
|
<xs:attribute name="ID" type="xs:ID" use="required"/>
|
11455
11813
|
<xs:attribute ref="auc:Status"/>
|
@@ -13693,62 +14051,80 @@
|
|
13693
14051
|
</xs:element>
|
13694
14052
|
<xs:simpleType name="AuditorQualificationType">
|
13695
14053
|
<xs:restriction base="xs:string">
|
13696
|
-
<xs:enumeration value="
|
14054
|
+
<xs:enumeration value="AABC Commissioning Group (ACG) Commissioning Authority (CxA)"/>
|
14055
|
+
<xs:enumeration value="ASHRAE Building Commissioning Professional (BCxP)"/>
|
14056
|
+
<xs:enumeration value="ASHRAE Building Energy Assessment Professional (BEAP)"/>
|
14057
|
+
<xs:enumeration value="ASHRAE Building Energy Modeling Professional (BEMP)"/>
|
14058
|
+
<xs:enumeration value="Accredited Commissioning Process Authority Professional (CxAP)"/>
|
14059
|
+
<xs:enumeration value="Associate Commissioning Professional (ACP)"/>
|
13697
14060
|
<xs:enumeration value="Associated Air Balance Council (AABC) Certified Member Agency"/>
|
13698
14061
|
<xs:enumeration value="Associated Air Balance Council (AABC) Test and Balance Technician"/>
|
14062
|
+
<xs:enumeration value="Association of Energy Engineers Certified Building Commissioning Firm (CBCF)"/>
|
14063
|
+
<xs:enumeration value="Association of Energy Engineers Certified Building Commissioning Professional (CBCP)"/>
|
14064
|
+
<xs:enumeration value="Association of Energy Engineers Certified Building Energy Simulation Analyst (BESA)"/>
|
14065
|
+
<xs:enumeration value="Association of Energy Engineers Certified Business Energy Professional (BEP)"/>
|
13699
14066
|
<xs:enumeration value="Association of Energy Engineers Certified Carbon Reduction Manager (CRM)"/>
|
13700
|
-
<xs:enumeration value="Association of Energy Engineers Certified Sustainable Development Professional (CSDP)"/>
|
13701
|
-
<xs:enumeration value="Association of Energy Engineers Certified Power Quality Professional (CPQ)"/>
|
13702
14067
|
<xs:enumeration value="Association of Energy Engineers Certified Demand Side Manager (CDSM)"/>
|
14068
|
+
<xs:enumeration value="Association of Energy Engineers Certified Energy Auditor (CEA)"/>
|
14069
|
+
<xs:enumeration value="Association of Energy Engineers Certified Energy Manager (CEM)"/>
|
13703
14070
|
<xs:enumeration value="Association of Energy Engineers Certified Energy Procurement Professional (CEP)"/>
|
13704
|
-
<xs:enumeration value="Association of Energy Engineers Certified Lighting Efficiency Professional (CLEP)"/>
|
13705
|
-
<xs:enumeration value="Association of Energy Engineers Certified Measurement & Verification Professional (CMVP)"/>
|
13706
14071
|
<xs:enumeration value="Association of Energy Engineers Certified GeoExchange Designer Program (CGD)"/>
|
13707
|
-
<xs:enumeration value="Association of Energy Engineers Certified
|
14072
|
+
<xs:enumeration value="Association of Energy Engineers Certified Green Building Engineer (GBE)"/>
|
13708
14073
|
<xs:enumeration value="Association of Energy Engineers Certified Industrial Energy Professional (CIEP)"/>
|
14074
|
+
<xs:enumeration value="Association of Energy Engineers Certified Lighting Efficiency Professional (CLEP)"/>
|
14075
|
+
<xs:enumeration value="Association of Energy Engineers Certified Measurement & Verification Professional (CMVP)"/>
|
14076
|
+
<xs:enumeration value="Association of Energy Engineers Certified Power Quality Professional (CPQ)"/>
|
14077
|
+
<xs:enumeration value="Association of Energy Engineers Certified Residential Energy Auditor (REA)"/>
|
14078
|
+
<xs:enumeration value="Association of Energy Engineers Certified Sustainable Development Professional (CSDP)"/>
|
13709
14079
|
<xs:enumeration value="Association of Energy Engineers Certified Water Efficiency Professional (CWEP)"/>
|
13710
|
-
<xs:enumeration value="Association of Energy Engineers Energy Efficiency Practitioner (EEP)"/>
|
13711
|
-
<xs:enumeration value="Association of Energy Engineers Renewable Energy Professional (REP)"/>
|
13712
14080
|
<xs:enumeration value="Association of Energy Engineers Distributed Generation Certified Professional (DGCP)"/>
|
13713
|
-
<xs:enumeration value="Association of Energy Engineers
|
14081
|
+
<xs:enumeration value="Association of Energy Engineers Energy Efficiency Practitioner (EEP)"/>
|
13714
14082
|
<xs:enumeration value="Association of Energy Engineers Performance Contracting and Funding Professional (PCF)"/>
|
13715
|
-
<xs:enumeration value="Association of Energy Engineers
|
13716
|
-
<xs:enumeration value="
|
13717
|
-
<xs:enumeration value="
|
13718
|
-
<xs:enumeration value="Association of Energy Engineers Certified Energy Manager (CEM)"/>
|
13719
|
-
<xs:enumeration value="Association of Energy Engineers Certified Energy Auditor (CEA)"/>
|
13720
|
-
<xs:enumeration value="Association of Energy Engineers Certified Building Commissioning Professional (CBCP)"/>
|
14083
|
+
<xs:enumeration value="Association of Energy Engineers Renewable Energy Professional (REP)"/>
|
14084
|
+
<xs:enumeration value="Building Commissioning Association (BCA) Certified Commissioning Professional (CCP)"/>
|
14085
|
+
<xs:enumeration value="Building Commissioning Certification Board (BCCB) Certified Commissioning Professional (CCP)"/>
|
13721
14086
|
<xs:enumeration value="Building Operator Certification (BOC): Level 1"/>
|
13722
14087
|
<xs:enumeration value="Building Operator Certification (BOC): Level 2"/>
|
14088
|
+
<xs:enumeration value="Building Owners and Managers Institute (BOMI) International - Facilities Management Administrator (FMA)"/>
|
14089
|
+
<xs:enumeration value="Building Owners and Managers Institute (BOMI) International - High-Performance Sustainable Building Management (BOMI-HP)"/>
|
14090
|
+
<xs:enumeration value="Building Owners and Managers Institute (BOMI) International - Real Property Administrator (RPA)"/>
|
14091
|
+
<xs:enumeration value="Building Owners and Managers Institute (BOMI) International - System Maintenance Administrator (SMA)"/>
|
14092
|
+
<xs:enumeration value="Building Owners and Managers Institute (BOMI) International - System Maintenance Technician (SMT)"/>
|
13723
14093
|
<xs:enumeration value="Building Performance Institute (BPI) Certification"/>
|
13724
|
-
<xs:enumeration value="Building Performance Institute (BPI): Building Analyst (BA)"/>
|
13725
14094
|
<xs:enumeration value="Building Performance Institute (BPI): Advanced Home Energy Professional (HEP)"/>
|
14095
|
+
<xs:enumeration value="Building Performance Institute (BPI): Advanced Home Energy Professional - Crew Leader (HEP-CL)"/>
|
13726
14096
|
<xs:enumeration value="Building Performance Institute (BPI): Advanced Home Energy Professional - Energy Auditor (HEP-EA)"/>
|
13727
14097
|
<xs:enumeration value="Building Performance Institute (BPI): Advanced Home Energy Professional - Quality Control Inspector (HEP-QCI)"/>
|
13728
14098
|
<xs:enumeration value="Building Performance Institute (BPI): Advanced Home Energy Professional - Retrofit Installer (HEP-RI)"/>
|
13729
|
-
<xs:enumeration value="Building Performance Institute (BPI):
|
14099
|
+
<xs:enumeration value="Building Performance Institute (BPI): Building Analyst (BA)"/>
|
13730
14100
|
<xs:enumeration value="Building Performance Institute (BPI): Multifamily Building Analyst"/>
|
13731
|
-
<xs:enumeration value="Residential Energy Services Network (RESNET) Certification"/>
|
13732
|
-
<xs:enumeration value="Residential Energy Services Network (RESNET) - Home Partner"/>
|
13733
|
-
<xs:enumeration value="Registered Architect (RA)"/>
|
13734
|
-
<xs:enumeration value="Refrigerating System Operating Engineer"/>
|
13735
|
-
<xs:enumeration value="High Pressure Boiler Operating Engineer"/>
|
13736
14101
|
<xs:enumeration value="Certified Commissioning Professional (CCP)"/>
|
13737
|
-
<xs:enumeration value="Associate Commissioning Professional (ACP)"/>
|
13738
|
-
<xs:enumeration value="Existing Building Commissioning Professional (EBCP)"/>
|
13739
14102
|
<xs:enumeration value="Commissioning Process Management Professional (CPMP)"/>
|
13740
|
-
<xs:enumeration value="Accredited Commissioning Process Authority Professional (CxAP)"/>
|
13741
|
-
<xs:enumeration value="NYSERDA FlexTech Consultant"/>
|
13742
|
-
<xs:enumeration value="ASHRAE Building Commissioning Professional (BCxP)"/>
|
13743
|
-
<xs:enumeration value="ASHRAE Building Energy Assessment Professional (BEAP)"/>
|
13744
|
-
<xs:enumeration value="ASHRAE Building Energy Modeling Professional (BEMP)"/>
|
13745
14103
|
<xs:enumeration value="Department of Buildings (DOB) Approved Agent"/>
|
13746
|
-
<xs:enumeration value="
|
14104
|
+
<xs:enumeration value="Energy Management Association (EMA): Energy Management Professional (EMP)"/>
|
14105
|
+
<xs:enumeration value="Existing Building Commissioning Professional (EBCP)"/>
|
13747
14106
|
<xs:enumeration value="GreenPoint Rater Existing Home Multifamily Rater"/>
|
13748
14107
|
<xs:enumeration value="HERS Whole House (HERS II) Rater"/>
|
14108
|
+
<xs:enumeration value="High Pressure Boiler Operating Engineer"/>
|
14109
|
+
<xs:enumeration value="High-Performance Building Design Professional (HBDP)"/>
|
14110
|
+
<xs:enumeration value="International Facility Management Association (IFMA) Certified Facilities Manager (CFM)"/>
|
14111
|
+
<xs:enumeration value="International Facility Management Association (IFMA) Facility Management Professional (FMP)"/>
|
14112
|
+
<xs:enumeration value="International Facility Management Association (IFMA) Sustainability Facility Professional (SFP)"/>
|
13749
14113
|
<xs:enumeration value="International Union of Operating Engineers Certified Energy Specialist"/>
|
14114
|
+
<xs:enumeration value="Mechanical, Electrical and Plumbing (MEP) Professional Engineer (PE)"/>
|
14115
|
+
<xs:enumeration value="New York State Energy Research and Development Authority (NYSERDA) FlexTech Consultant"/>
|
14116
|
+
<xs:enumeration value="National Environmental Balancing Bureau (NEBB) Building Systems Commissioning (BSC)"/>
|
14117
|
+
<xs:enumeration value="National Environmental Balancing Bureau (NEBB) Commissioning Process Professional (CxPP)"/>
|
13750
14118
|
<xs:enumeration value="Northwest Energy Education Institute Energy Management Certification"/>
|
13751
14119
|
<xs:enumeration value="PhD in Mechanical Engineering"/>
|
14120
|
+
<xs:enumeration value="Professional Engineer (PE)"/>
|
14121
|
+
<xs:enumeration value="Refrigerating System Operating Engineer"/>
|
14122
|
+
<xs:enumeration value="Registered Architect (RA)"/>
|
14123
|
+
<xs:enumeration value="Residential Energy Services Network (RESNET) - Home Partner"/>
|
14124
|
+
<xs:enumeration value="Residential Energy Services Network (RESNET) Certification"/>
|
14125
|
+
<xs:enumeration value="University of Wisconsin Accredited Commissioning Process Authority Professional (CxAP or CAP)"/>
|
14126
|
+
<xs:enumeration value="University of Wisconsin Accredited Commissioning Process Manager (CxM)"/>
|
14127
|
+
<xs:enumeration value="University of Wisconsin Accredited Green Commissioning Process Provider (GCxP or GCP)"/>
|
13752
14128
|
<xs:enumeration value="Other"/>
|
13753
14129
|
<xs:enumeration value="None"/>
|
13754
14130
|
</xs:restriction>
|
@@ -15658,6 +16034,9 @@
|
|
15658
16034
|
</xs:simpleContent>
|
15659
16035
|
</xs:complexType>
|
15660
16036
|
</xs:element>
|
16037
|
+
<xs:element ref="auc:AnnualSavingsAverageGHGEmissions" minOccurs="0"/>
|
16038
|
+
<xs:element ref="auc:AnnualSavingsMarginalGHGEmissions" minOccurs="0"/>
|
16039
|
+
<xs:element ref="auc:AnnualSavingsGHGEmissionIntensity" minOccurs="0"/>
|
15661
16040
|
</xs:sequence>
|
15662
16041
|
</xs:complexType>
|
15663
16042
|
</xs:element>
|
@@ -15760,6 +16139,66 @@
|
|
15760
16139
|
</xs:simpleContent>
|
15761
16140
|
</xs:complexType>
|
15762
16141
|
</xs:element>
|
16142
|
+
<xs:element name="LifeCycleSavingsEnergy">
|
16143
|
+
<xs:annotation>
|
16144
|
+
<xs:documentation>Estimated total energy savings in the whole life cycle (MMBtu)</xs:documentation>
|
16145
|
+
</xs:annotation>
|
16146
|
+
<xs:complexType>
|
16147
|
+
<xs:simpleContent>
|
16148
|
+
<xs:extension base="xs:decimal">
|
16149
|
+
<xs:attribute ref="auc:Source"/>
|
16150
|
+
</xs:extension>
|
16151
|
+
</xs:simpleContent>
|
16152
|
+
</xs:complexType>
|
16153
|
+
</xs:element>
|
16154
|
+
<xs:element name="LifeCycleSavingsEnergyCost">
|
16155
|
+
<xs:annotation>
|
16156
|
+
<xs:documentation>Estimated present value of total savings in energy costs in the whole life cycle ($)</xs:documentation>
|
16157
|
+
</xs:annotation>
|
16158
|
+
<xs:complexType>
|
16159
|
+
<xs:simpleContent>
|
16160
|
+
<xs:extension base="xs:decimal">
|
16161
|
+
<xs:attribute ref="auc:Source"/>
|
16162
|
+
</xs:extension>
|
16163
|
+
</xs:simpleContent>
|
16164
|
+
</xs:complexType>
|
16165
|
+
</xs:element>
|
16166
|
+
<xs:element name="LifeCycleSavingsWater">
|
16167
|
+
<xs:annotation>
|
16168
|
+
<xs:documentation>Estimated total water savings in the whole life cycle (gal)</xs:documentation>
|
16169
|
+
</xs:annotation>
|
16170
|
+
<xs:complexType>
|
16171
|
+
<xs:simpleContent>
|
16172
|
+
<xs:extension base="xs:decimal">
|
16173
|
+
<xs:attribute ref="auc:Source"/>
|
16174
|
+
</xs:extension>
|
16175
|
+
</xs:simpleContent>
|
16176
|
+
</xs:complexType>
|
16177
|
+
</xs:element>
|
16178
|
+
<xs:element name="LifeCycleSavingsWaterCost">
|
16179
|
+
<xs:annotation>
|
16180
|
+
<xs:documentation>Estimated present value of total savings in water costs in the whole life cycle ($)</xs:documentation>
|
16181
|
+
</xs:annotation>
|
16182
|
+
<xs:complexType>
|
16183
|
+
<xs:simpleContent>
|
16184
|
+
<xs:extension base="xs:decimal">
|
16185
|
+
<xs:attribute ref="auc:Source"/>
|
16186
|
+
</xs:extension>
|
16187
|
+
</xs:simpleContent>
|
16188
|
+
</xs:complexType>
|
16189
|
+
</xs:element>
|
16190
|
+
<xs:element name="LifeCycleSavingsAncillaryCost">
|
16191
|
+
<xs:annotation>
|
16192
|
+
<xs:documentation>Estimated present value of total savings in ancillary/other costs in the whole life cycle ($)</xs:documentation>
|
16193
|
+
</xs:annotation>
|
16194
|
+
<xs:complexType>
|
16195
|
+
<xs:simpleContent>
|
16196
|
+
<xs:extension base="xs:decimal">
|
16197
|
+
<xs:attribute ref="auc:Source"/>
|
16198
|
+
</xs:extension>
|
16199
|
+
</xs:simpleContent>
|
16200
|
+
</xs:complexType>
|
16201
|
+
</xs:element>
|
15763
16202
|
<xs:element name="BoilerLWT">
|
15764
16203
|
<xs:annotation>
|
15765
16204
|
<xs:documentation>The water temperature that the equipment supplies, such as the chilled water temperature setpoint for a chiller, or hot water temperature setpoint for water leaving a boiler. (°F)</xs:documentation>
|
@@ -16382,6 +16821,28 @@
|
|
16382
16821
|
<xs:attribute name="IDref" type="xs:IDREF" use="required"/>
|
16383
16822
|
</xs:complexType>
|
16384
16823
|
</xs:element>
|
16824
|
+
<xs:element name="LinkedAuditCycle">
|
16825
|
+
<xs:annotation>
|
16826
|
+
<xs:documentation>ID number of the associated Audit Cycle for the report</xs:documentation>
|
16827
|
+
</xs:annotation>
|
16828
|
+
<xs:complexType>
|
16829
|
+
<xs:sequence>
|
16830
|
+
<xs:element name="IndexYearOfAuditCycle" type="xs:positiveInteger" minOccurs="0" maxOccurs="1">
|
16831
|
+
<xs:annotation>
|
16832
|
+
<xs:documentation>Index number of the year when the audit is conducted from the start of the audit cycle. 1 corresponds to auc:AuditCycleStartYear.</xs:documentation>
|
16833
|
+
</xs:annotation>
|
16834
|
+
</xs:element>
|
16835
|
+
</xs:sequence>
|
16836
|
+
<xs:attribute name="IDref" type="xs:IDREF" use="required"/>
|
16837
|
+
</xs:complexType>
|
16838
|
+
</xs:element>
|
16839
|
+
<xs:element name="LinkedAuditCycles">
|
16840
|
+
<xs:complexType>
|
16841
|
+
<xs:sequence>
|
16842
|
+
<xs:element ref="auc:LinkedAuditCycle" minOccurs="0" maxOccurs="unbounded"/>
|
16843
|
+
</xs:sequence>
|
16844
|
+
</xs:complexType>
|
16845
|
+
</xs:element>
|
16385
16846
|
<xs:element name="MVCost">
|
16386
16847
|
<xs:annotation>
|
16387
16848
|
<xs:documentation>Annual cost to verify energy savings. ($/year)</xs:documentation>
|
@@ -16856,4 +17317,71 @@
|
|
16856
17317
|
</xs:sequence>
|
16857
17318
|
</xs:complexType>
|
16858
17319
|
</xs:element>
|
17320
|
+
<xs:element name="EquipmentID" type="xs:string">
|
17321
|
+
<xs:annotation>
|
17322
|
+
<xs:documentation>Identifier for the equipment.</xs:documentation>
|
17323
|
+
</xs:annotation>
|
17324
|
+
</xs:element>
|
17325
|
+
<xs:element name="MeasureSavingsAnalysis">
|
17326
|
+
<xs:annotation>
|
17327
|
+
<xs:documentation>Energy and cost effectiveness data for an individual measure. In most cases, this data depends on the other measures included in the package, and should be entered at the package level under Scenarios.</xs:documentation>
|
17328
|
+
</xs:annotation>
|
17329
|
+
<xs:complexType>
|
17330
|
+
<xs:sequence>
|
17331
|
+
<xs:element name="MeasureRank" minOccurs="0">
|
17332
|
+
<xs:annotation>
|
17333
|
+
<xs:documentation>Sequence in which the measure was analyzed relative to other measures. Ranking should be 1 if it is analyzed first, 2 if analyzed after Measure 1 is applied, etc. This accounts for interactive effects between measures. Ranking may be 1 for all measures if they are not analyzed as a package.</xs:documentation>
|
17334
|
+
</xs:annotation>
|
17335
|
+
<xs:complexType>
|
17336
|
+
<xs:simpleContent>
|
17337
|
+
<xs:extension base="xs:integer">
|
17338
|
+
<xs:attribute ref="auc:Source"/>
|
17339
|
+
</xs:extension>
|
17340
|
+
</xs:simpleContent>
|
17341
|
+
</xs:complexType>
|
17342
|
+
</xs:element>
|
17343
|
+
<xs:element ref="auc:ReferenceCase" minOccurs="0"/>
|
17344
|
+
<xs:element ref="auc:CalculationMethod" minOccurs="0"/>
|
17345
|
+
<xs:element ref="auc:AnnualSavingsSiteEnergy" minOccurs="0"/>
|
17346
|
+
<xs:element ref="auc:AnnualSavingsSourceEnergy" minOccurs="0"/>
|
17347
|
+
<xs:element ref="auc:AnnualSavingsCost" minOccurs="0"/>
|
17348
|
+
<xs:element ref="auc:AnnualSavingsByFuels" minOccurs="0"/>
|
17349
|
+
<xs:element ref="auc:SummerPeakElectricityReduction" minOccurs="0"/>
|
17350
|
+
<xs:element ref="auc:WinterPeakElectricityReduction" minOccurs="0"/>
|
17351
|
+
<xs:element ref="auc:AnnualPeakElectricityReduction" minOccurs="0"/>
|
17352
|
+
<xs:element ref="auc:AnnualDemandSavingsCost" minOccurs="0"/>
|
17353
|
+
<xs:element ref="auc:AnnualWaterSavings" minOccurs="0"/>
|
17354
|
+
<xs:element ref="auc:AnnualWaterCostSavings" minOccurs="0"/>
|
17355
|
+
<xs:element ref="auc:AnnualSavingsAverageGHGEmissions" minOccurs="0"/>
|
17356
|
+
<xs:element ref="auc:AnnualSavingsMarginalGHGEmissions" minOccurs="0"/>
|
17357
|
+
<xs:element ref="auc:AnnualSavingsGHGEmissionIntensity" minOccurs="0"/>
|
17358
|
+
<xs:element ref="auc:LifeCycleSavingsEnergy" minOccurs="0"/>
|
17359
|
+
<xs:element ref="auc:LifeCycleSavingsEnergyCost" minOccurs="0"/>
|
17360
|
+
<xs:element ref="auc:LifeCycleSavingsWater" minOccurs="0"/>
|
17361
|
+
<xs:element ref="auc:LifeCycleSavingsWaterCost" minOccurs="0"/>
|
17362
|
+
<xs:element ref="auc:LifeCycleSavingsAncillaryCost" minOccurs="0"/>
|
17363
|
+
<xs:element ref="auc:OMCostAnnualSavings" minOccurs="0"/>
|
17364
|
+
<xs:element name="OtherCostAnnualSavings" minOccurs="0">
|
17365
|
+
<xs:annotation>
|
17366
|
+
<xs:documentation>Annual savings for other non-energy costs, or increased revenue caused by measure implementation. ($)</xs:documentation>
|
17367
|
+
</xs:annotation>
|
17368
|
+
<xs:complexType>
|
17369
|
+
<xs:simpleContent>
|
17370
|
+
<xs:extension base="xs:decimal">
|
17371
|
+
<xs:attribute ref="auc:Source"/>
|
17372
|
+
</xs:extension>
|
17373
|
+
</xs:simpleContent>
|
17374
|
+
</xs:complexType>
|
17375
|
+
</xs:element>
|
17376
|
+
<xs:element ref="auc:EquipmentDisposalAndSalvageCosts" minOccurs="0"/>
|
17377
|
+
<xs:element ref="auc:FundingFromIncentives" minOccurs="0"/>
|
17378
|
+
<xs:element ref="auc:FundingFromTaxCredits" minOccurs="0"/>
|
17379
|
+
<xs:element ref="auc:NPVofTaxImplications" minOccurs="0"/>
|
17380
|
+
<xs:element ref="auc:CostEffectivenessScreeningMethod" minOccurs="0"/>
|
17381
|
+
<xs:element ref="auc:SimplePayback" minOccurs="0"/>
|
17382
|
+
<xs:element ref="auc:NetPresentValue" minOccurs="0"/>
|
17383
|
+
<xs:element ref="auc:InternalRateOfReturn" minOccurs="0"/>
|
17384
|
+
</xs:sequence>
|
17385
|
+
</xs:complexType>
|
17386
|
+
</xs:element>
|
16859
17387
|
</xs:schema>
|