epb_view_models 1.0.29 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/Gemfile.lock +24 -24
- data/api/schemas/data/orchestrate.json +4 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xml +1735 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/ExternalDefinitions.xsd +313 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/AssessorManagement.xsd +275 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/EPC-Certificate.xsd +632 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ExceptionList.xsd +20 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/Property.xsd +85 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/ReportList.xsd +27 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-CollectedData.xsd +2500 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Compliance-Report.xsd +51 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/Templates/SAP-Report.xsd +277 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/EPC-Domains.xsd +646 -0
- data/api/schemas/xml/SAP-Schema-19.1.0/SAP/UDT/SAP-Domains.xsd +3421 -0
- data/epb_view_models.gemspec +2 -2
- data/lib/epb_view_models.rb +1 -1
- data/lib/helper/xml_enums_to_output.rb +2 -0
- data/lib/view_model/factory.rb +1 -0
- data/lib/view_model/sap_schema_1910/common_schema.rb +618 -0
- data/lib/view_model/sap_wrapper.rb +2 -0
- metadata +17 -4
@@ -0,0 +1,2500 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema
|
3
|
+
xmlns="https://epbr.digital.communities.gov.uk/xsd/sap"
|
4
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
5
|
+
targetNamespace="https://epbr.digital.communities.gov.uk/xsd/sap"
|
6
|
+
elementFormDefault="qualified"
|
7
|
+
attributeFormDefault="unqualified"
|
8
|
+
version="19.1.0"
|
9
|
+
>
|
10
|
+
<xs:include schemaLocation="../UDT/SAP-Domains.xsd"/>
|
11
|
+
<xs:include schemaLocation="../UDT/EPC-Domains.xsd"/>
|
12
|
+
<xs:element name="SAP-Deselected-Improvements"
|
13
|
+
type="SAP-Deselected-Improvements"/>
|
14
|
+
<xs:complexType name="SAP-Deselected-Improvements">
|
15
|
+
<xs:annotation>
|
16
|
+
<xs:documentation>There are 22 possible improvement measures, designated
|
17
|
+
from A to V. This must record measures deselected by DEA
|
18
|
+
(A to V is the full set, only E, N, U and V are considered at the moment
|
19
|
+
for new build).
|
20
|
+
</xs:documentation>
|
21
|
+
</xs:annotation>
|
22
|
+
<xs:sequence>
|
23
|
+
<xs:element name="Deselected-Improvement-Measure"
|
24
|
+
type="SAP-ImprovementMeasureCode" maxOccurs="unbounded"/>
|
25
|
+
</xs:sequence>
|
26
|
+
</xs:complexType>
|
27
|
+
<xs:element name="SAP-Wall" type="SAP-Wall"/>
|
28
|
+
<xs:complexType name="SAP-Wall">
|
29
|
+
<xs:annotation>
|
30
|
+
<xs:documentation>Various measurements for each wall of a particular
|
31
|
+
storey.
|
32
|
+
</xs:documentation>
|
33
|
+
</xs:annotation>
|
34
|
+
<xs:all>
|
35
|
+
<xs:element name="Name" type="xs:string">
|
36
|
+
<xs:annotation>
|
37
|
+
<xs:documentation>Unique name which identifies this wall within its
|
38
|
+
storey. Can be just a number, e.g. "1". However, a wall cannot have
|
39
|
+
the same name as an opening or a roof.
|
40
|
+
</xs:documentation>
|
41
|
+
</xs:annotation>
|
42
|
+
</xs:element>
|
43
|
+
<xs:element name="Description" type="Sentence" minOccurs="0">
|
44
|
+
<xs:annotation>
|
45
|
+
<xs:documentation>Descriptive notes about the wall.</xs:documentation>
|
46
|
+
</xs:annotation>
|
47
|
+
</xs:element>
|
48
|
+
<xs:element name="Wall-Type" type="SAP-WallTypeCode">
|
49
|
+
<xs:annotation>
|
50
|
+
<xs:documentation>Type of wall (exposure).</xs:documentation>
|
51
|
+
</xs:annotation>
|
52
|
+
</xs:element>
|
53
|
+
<xs:element name="Total-Wall-Area" type="Measurement">
|
54
|
+
<xs:annotation>
|
55
|
+
<xs:documentation>Total wall area in square metres, inclusive of any
|
56
|
+
openings.
|
57
|
+
</xs:documentation>
|
58
|
+
</xs:annotation>
|
59
|
+
</xs:element>
|
60
|
+
<xs:element name="U-Value" type="xs:decimal">
|
61
|
+
<xs:annotation>
|
62
|
+
<xs:documentation>Exposed wall U-value.</xs:documentation>
|
63
|
+
</xs:annotation>
|
64
|
+
</xs:element>
|
65
|
+
<xs:element name="Is-Curtain-Walling" type="xs:boolean" default="false"
|
66
|
+
minOccurs="0">
|
67
|
+
<xs:annotation>
|
68
|
+
<xs:documentation>Whether the wall is curtain walling, i.e. a facade
|
69
|
+
construction consisting of a frame of aluminium vertical and
|
70
|
+
horizontal members, infilled with glazing units and opaque panels.
|
71
|
+
</xs:documentation>
|
72
|
+
</xs:annotation>
|
73
|
+
</xs:element>
|
74
|
+
<xs:element name="Kappa-Value" type="xs:decimal" minOccurs="0">
|
75
|
+
<xs:annotation>
|
76
|
+
<xs:documentation>Heat capacity per unit area in kJ/m²K.
|
77
|
+
</xs:documentation>
|
78
|
+
</xs:annotation>
|
79
|
+
</xs:element>
|
80
|
+
</xs:all>
|
81
|
+
</xs:complexType>
|
82
|
+
<xs:element name="SAP-Roof" type="SAP-Roof"/>
|
83
|
+
<xs:complexType name="SAP-Roof">
|
84
|
+
<xs:annotation>
|
85
|
+
<xs:documentation>Various measurements for each exposed roof that makes up
|
86
|
+
a particular Building-Part.
|
87
|
+
</xs:documentation>
|
88
|
+
</xs:annotation>
|
89
|
+
<xs:all>
|
90
|
+
<xs:element name="Name" type="xs:string">
|
91
|
+
<xs:annotation>
|
92
|
+
<xs:documentation>Unique name which identifies this roof. Can be just
|
93
|
+
a number, e.g. "1". However, a roof cannot have the same name as a
|
94
|
+
wall.
|
95
|
+
</xs:documentation>
|
96
|
+
</xs:annotation>
|
97
|
+
</xs:element>
|
98
|
+
<xs:element name="Description" type="Sentence" minOccurs="0">
|
99
|
+
<xs:annotation>
|
100
|
+
<xs:documentation>Descriptive notes about the roof.</xs:documentation>
|
101
|
+
</xs:annotation>
|
102
|
+
</xs:element>
|
103
|
+
<xs:element name="Roof-Type" type="SAP-RoofTypeCode"/>
|
104
|
+
<xs:element name="Total-Roof-Area" type="Measurement">
|
105
|
+
<xs:annotation>
|
106
|
+
<xs:documentation>Total roof area in square metres, inclusive of any
|
107
|
+
openings.
|
108
|
+
</xs:documentation>
|
109
|
+
</xs:annotation>
|
110
|
+
</xs:element>
|
111
|
+
<xs:element name="U-Value" type="xs:decimal">
|
112
|
+
<xs:annotation>
|
113
|
+
<xs:documentation>Exposed roof U-value.</xs:documentation>
|
114
|
+
</xs:annotation>
|
115
|
+
</xs:element>
|
116
|
+
<xs:element name="Kappa-Value" type="xs:decimal" minOccurs="0">
|
117
|
+
<xs:annotation>
|
118
|
+
<xs:documentation>Heat capacity per unit area in kJ/m²K.
|
119
|
+
</xs:documentation>
|
120
|
+
</xs:annotation>
|
121
|
+
</xs:element>
|
122
|
+
</xs:all>
|
123
|
+
</xs:complexType>
|
124
|
+
<xs:element name="SAP-Community-Heating-Systems"
|
125
|
+
type="SAP-Community-Heating-Systems"/>
|
126
|
+
<xs:complexType name="SAP-Community-Heating-Systems">
|
127
|
+
<xs:annotation>
|
128
|
+
<xs:documentation>Community heating systems used by the property.
|
129
|
+
</xs:documentation>
|
130
|
+
</xs:annotation>
|
131
|
+
<xs:sequence>
|
132
|
+
<xs:element name="SAP-Community-Heating-System"
|
133
|
+
type="SAP-Community-Heating-System" maxOccurs="2"/>
|
134
|
+
</xs:sequence>
|
135
|
+
</xs:complexType>
|
136
|
+
<xs:element name="SAP-Thermal-Bridge" type="SAP-Thermal-Bridge"/>
|
137
|
+
<xs:complexType name="SAP-Thermal-Bridge">
|
138
|
+
<xs:annotation>
|
139
|
+
<xs:documentation>Various measurements for each thermal bridge that makes
|
140
|
+
up a particular Building-Part.
|
141
|
+
</xs:documentation>
|
142
|
+
</xs:annotation>
|
143
|
+
<xs:all>
|
144
|
+
<xs:element name="Thermal-Bridge-Type" type="SAP-ThermalBridgeTypeCode">
|
145
|
+
<xs:annotation>
|
146
|
+
<xs:documentation>Code to indicate a particular type of thermal
|
147
|
+
bridge; only if thermal bridge code is: user defined (individual
|
148
|
+
values).
|
149
|
+
</xs:documentation>
|
150
|
+
</xs:annotation>
|
151
|
+
</xs:element>
|
152
|
+
<xs:element name="Length" type="Measurement">
|
153
|
+
<xs:annotation>
|
154
|
+
<xs:documentation>Length of the thermal bridge in metres; only if
|
155
|
+
thermal bridge code is: user defined (individual values).
|
156
|
+
</xs:documentation>
|
157
|
+
</xs:annotation>
|
158
|
+
</xs:element>
|
159
|
+
<xs:element name="Psi-Value" type="Measurement">
|
160
|
+
<xs:annotation>
|
161
|
+
<xs:documentation>Linear thermal transmittance (psi-value); only if
|
162
|
+
thermal bridging is user defined individual values.
|
163
|
+
</xs:documentation>
|
164
|
+
</xs:annotation>
|
165
|
+
</xs:element>
|
166
|
+
<xs:element name="Psi-Value-Source" type="PsiValueSourceCode"/>
|
167
|
+
<xs:element name="Psi-Value-Calculation-Reference" type="xs:string"
|
168
|
+
minOccurs="0">
|
169
|
+
<xs:annotation>
|
170
|
+
<xs:documentation>Reference to the details of the calculation of the
|
171
|
+
psi-value.
|
172
|
+
</xs:documentation>
|
173
|
+
</xs:annotation>
|
174
|
+
</xs:element>
|
175
|
+
</xs:all>
|
176
|
+
</xs:complexType>
|
177
|
+
<xs:element name="SAP-Opening" type="SAP-Opening"/>
|
178
|
+
<xs:complexType name="SAP-Opening">
|
179
|
+
<xs:annotation>
|
180
|
+
<xs:documentation>Various measurements for each exposed opening that makes
|
181
|
+
up a particular Building-Part.
|
182
|
+
</xs:documentation>
|
183
|
+
</xs:annotation>
|
184
|
+
<xs:all>
|
185
|
+
<xs:element name="Name" type="xs:string">
|
186
|
+
<xs:annotation>
|
187
|
+
<xs:documentation>Unique name which identifies this opening. Can be
|
188
|
+
just a number, e.g. "1". However, an opening cannot have the same
|
189
|
+
name as a wall.
|
190
|
+
</xs:documentation>
|
191
|
+
</xs:annotation>
|
192
|
+
</xs:element>
|
193
|
+
<xs:element name="Type" type="xs:string">
|
194
|
+
<xs:annotation>
|
195
|
+
<xs:documentation>The name of the SAP-Opening-Type for this opening.
|
196
|
+
</xs:documentation>
|
197
|
+
</xs:annotation>
|
198
|
+
</xs:element>
|
199
|
+
<xs:element name="Location" type="xs:string">
|
200
|
+
<xs:annotation>
|
201
|
+
<xs:documentation>Name of the wall or roof which contains the
|
202
|
+
opening.
|
203
|
+
</xs:documentation>
|
204
|
+
</xs:annotation>
|
205
|
+
</xs:element>
|
206
|
+
<xs:element name="Orientation" type="SAP-OrientationCode">
|
207
|
+
<xs:annotation>
|
208
|
+
<xs:documentation>Compass direction in which the opening faces.
|
209
|
+
</xs:documentation>
|
210
|
+
</xs:annotation>
|
211
|
+
</xs:element>
|
212
|
+
<xs:element name="Width" type="Measurement">
|
213
|
+
<xs:annotation>
|
214
|
+
<xs:documentation>The width of the opening in metres. If the Width
|
215
|
+
field is used to record the opening area, set the Height to 1.
|
216
|
+
</xs:documentation>
|
217
|
+
</xs:annotation>
|
218
|
+
</xs:element>
|
219
|
+
<xs:element name="Height" type="Measurement">
|
220
|
+
<xs:annotation>
|
221
|
+
<xs:documentation>The height of the opening in metres. If the Height
|
222
|
+
field is used to record the opening area, set the Width to 1.
|
223
|
+
</xs:documentation>
|
224
|
+
</xs:annotation>
|
225
|
+
</xs:element>
|
226
|
+
<xs:element name="Pitch" type="SAP-VerticalPitch" minOccurs="0">
|
227
|
+
<xs:annotation>
|
228
|
+
<xs:documentation>Pitch of roof containing roof window.
|
229
|
+
</xs:documentation>
|
230
|
+
</xs:annotation>
|
231
|
+
</xs:element>
|
232
|
+
</xs:all>
|
233
|
+
</xs:complexType>
|
234
|
+
<xs:element name="SAP-Openings" type="SAP-Openings"/>
|
235
|
+
<xs:complexType name="SAP-Openings">
|
236
|
+
<xs:annotation>
|
237
|
+
<xs:documentation>Exposed openings that make up a particular
|
238
|
+
Building-Part.
|
239
|
+
</xs:documentation>
|
240
|
+
</xs:annotation>
|
241
|
+
<xs:sequence>
|
242
|
+
<xs:element name="SAP-Opening" type="SAP-Opening" maxOccurs="unbounded"/>
|
243
|
+
</xs:sequence>
|
244
|
+
</xs:complexType>
|
245
|
+
<xs:element name="SAP-Roofs" type="SAP-Roofs"/>
|
246
|
+
<xs:complexType name="SAP-Roofs">
|
247
|
+
<xs:annotation>
|
248
|
+
<xs:documentation>Exposed roofs that make up a particular Building-Part.
|
249
|
+
</xs:documentation>
|
250
|
+
</xs:annotation>
|
251
|
+
<xs:sequence>
|
252
|
+
<xs:element name="SAP-Roof" type="SAP-Roof" maxOccurs="unbounded"/>
|
253
|
+
</xs:sequence>
|
254
|
+
</xs:complexType>
|
255
|
+
<xs:element name="SAP-Community-Heating-System"
|
256
|
+
type="SAP-Community-Heating-System"/>
|
257
|
+
<xs:complexType name="SAP-Community-Heating-System">
|
258
|
+
<xs:annotation>
|
259
|
+
<xs:documentation>Details of a community system which heats the Main
|
260
|
+
Building.
|
261
|
+
</xs:documentation>
|
262
|
+
</xs:annotation>
|
263
|
+
<xs:all>
|
264
|
+
<xs:element name="Community-Heating-Name" type="xs:string" minOccurs="0">
|
265
|
+
<xs:annotation>
|
266
|
+
<xs:documentation>The name of the community heating system
|
267
|
+
</xs:documentation>
|
268
|
+
</xs:annotation>
|
269
|
+
</xs:element>
|
270
|
+
<xs:element name="Community-Heating-CO2-Emission-Factor" type="xs:decimal"
|
271
|
+
minOccurs="0">
|
272
|
+
<xs:annotation>
|
273
|
+
<xs:documentation>the community heating CO2 emission factor
|
274
|
+
</xs:documentation>
|
275
|
+
</xs:annotation>
|
276
|
+
</xs:element>
|
277
|
+
<xs:element name="Community-Heating-Primary-Energy-Factor"
|
278
|
+
type="xs:decimal" minOccurs="0">
|
279
|
+
<xs:annotation>
|
280
|
+
<xs:documentation>The community heating Primary Energy Factor
|
281
|
+
</xs:documentation>
|
282
|
+
</xs:annotation>
|
283
|
+
</xs:element>
|
284
|
+
<xs:element name="Community-Heating-Use"
|
285
|
+
type="SAP-CommunityHeatingUseCode">
|
286
|
+
<xs:annotation>
|
287
|
+
<xs:documentation>Specifies what kind of heating the community system
|
288
|
+
is used for.
|
289
|
+
</xs:documentation>
|
290
|
+
</xs:annotation>
|
291
|
+
</xs:element>
|
292
|
+
<xs:element name="Is-Community-Heating-Cylinder-In-Dwelling"
|
293
|
+
type="xs:boolean" default="false" minOccurs="0">
|
294
|
+
<xs:annotation>
|
295
|
+
<xs:documentation>Community heating, cylinder in dwelling?
|
296
|
+
</xs:documentation>
|
297
|
+
</xs:annotation>
|
298
|
+
</xs:element>
|
299
|
+
<xs:element name="Is-HIU-In-Dwelling" type="xs:boolean" default="false"
|
300
|
+
minOccurs="0">
|
301
|
+
<xs:annotation>
|
302
|
+
<xs:documentation>Community heating, HIU in dwelling?
|
303
|
+
</xs:documentation>
|
304
|
+
</xs:annotation>
|
305
|
+
</xs:element>
|
306
|
+
<xs:element name="HIU-Index-Number" type="xs:positiveInteger"
|
307
|
+
minOccurs="0">
|
308
|
+
<xs:annotation>
|
309
|
+
<xs:documentation>Heat Interface Unit index number, if present.
|
310
|
+
</xs:documentation>
|
311
|
+
</xs:annotation>
|
312
|
+
</xs:element>
|
313
|
+
<xs:element name="Community-Heating-Distribution-Type"
|
314
|
+
type="SAP-HeatingDistributionCode" minOccurs="0">
|
315
|
+
<xs:annotation>
|
316
|
+
<xs:documentation>Community heating distribution</xs:documentation>
|
317
|
+
</xs:annotation>
|
318
|
+
</xs:element>
|
319
|
+
<xs:element name="Community-Heat-Sources" type="Community-Heat-Sources"
|
320
|
+
minOccurs="0">
|
321
|
+
<xs:annotation>
|
322
|
+
<xs:documentation>To be provided when there is no
|
323
|
+
Heat-Network-Index-Number.
|
324
|
+
</xs:documentation>
|
325
|
+
</xs:annotation>
|
326
|
+
</xs:element>
|
327
|
+
<xs:element name="Community-Heating-Distribution-Loss-Factor"
|
328
|
+
type="xs:decimal" minOccurs="0">
|
329
|
+
<xs:annotation>
|
330
|
+
<xs:documentation>Used when Community-Heating-Distribution-Type is
|
331
|
+
calculated.
|
332
|
+
</xs:documentation>
|
333
|
+
</xs:annotation>
|
334
|
+
</xs:element>
|
335
|
+
<xs:element name="Charging-Linked-To-Heat-Use" type="xs:boolean"
|
336
|
+
minOccurs="0">
|
337
|
+
<xs:annotation>
|
338
|
+
<xs:documentation>Used for hot-water-only systems.</xs:documentation>
|
339
|
+
</xs:annotation>
|
340
|
+
</xs:element>
|
341
|
+
<xs:element name="Heat-Network-Index-Number" type="xs:positiveInteger"
|
342
|
+
minOccurs="0">
|
343
|
+
<xs:annotation>
|
344
|
+
<xs:documentation>Index number of heat network, if applicable.
|
345
|
+
</xs:documentation>
|
346
|
+
</xs:annotation>
|
347
|
+
</xs:element>
|
348
|
+
<xs:element name="Sub-Network-Name" type="xs:string" minOccurs="0">
|
349
|
+
<xs:annotation>
|
350
|
+
<xs:documentation>The name by which the sub community heat network is known.</xs:documentation>
|
351
|
+
</xs:annotation>
|
352
|
+
</xs:element>
|
353
|
+
<xs:element name="Heat-Network-Existing" type="xs:boolean" default="true" minOccurs="0">
|
354
|
+
<xs:annotation>
|
355
|
+
<xs:documentation>Whether the heat network is existing or new.</xs:documentation>
|
356
|
+
</xs:annotation>
|
357
|
+
</xs:element>
|
358
|
+
<xs:element name="Heat-Network-Assessed-As-New" type="xs:boolean" default="false" minOccurs="0">
|
359
|
+
<xs:annotation>
|
360
|
+
<xs:documentation>Whether the heat network is assessed as a new heat
|
361
|
+
network (post June 2022) for Eng with a standalone gas boiler
|
362
|
+
notional building.
|
363
|
+
</xs:documentation>
|
364
|
+
</xs:annotation>
|
365
|
+
</xs:element>
|
366
|
+
</xs:all>
|
367
|
+
</xs:complexType>
|
368
|
+
<xs:element name="SAP-Floor-Dimensions" type="SAP-Floor-Dimensions"/>
|
369
|
+
<xs:complexType name="SAP-Floor-Dimensions">
|
370
|
+
<xs:annotation>
|
371
|
+
<xs:documentation>Storeys that make up a particular Building-Part.
|
372
|
+
</xs:documentation>
|
373
|
+
</xs:annotation>
|
374
|
+
<xs:sequence>
|
375
|
+
<xs:element name="SAP-Floor-Dimension" type="SAP-Floor-Dimension"
|
376
|
+
maxOccurs="unbounded"/>
|
377
|
+
</xs:sequence>
|
378
|
+
</xs:complexType>
|
379
|
+
<xs:element name="SAP-Thermal-Bridges" type="SAP-Thermal-Bridges"/>
|
380
|
+
<xs:complexType name="SAP-Thermal-Bridges">
|
381
|
+
<xs:annotation>
|
382
|
+
<xs:documentation>Thermal bridges that make up a particular
|
383
|
+
Building-Part.
|
384
|
+
</xs:documentation>
|
385
|
+
</xs:annotation>
|
386
|
+
<xs:sequence>
|
387
|
+
<xs:element name="Thermal-Bridge-Code" type="SAP-ThermalBridgeCode">
|
388
|
+
<xs:annotation>
|
389
|
+
<xs:documentation>Code which indicates how the thermal bridge data has
|
390
|
+
been recorded.
|
391
|
+
</xs:documentation>
|
392
|
+
</xs:annotation>
|
393
|
+
</xs:element>
|
394
|
+
<xs:element name="User-Defined-Y-Value" type="Measurement" minOccurs="0">
|
395
|
+
<xs:annotation>
|
396
|
+
<xs:documentation>Global y-value for all thermal bridges in watts per
|
397
|
+
square metre per kelvin; only if thermal bridge code is: user
|
398
|
+
defined (global y-value)
|
399
|
+
</xs:documentation>
|
400
|
+
</xs:annotation>
|
401
|
+
</xs:element>
|
402
|
+
<xs:element name="Calculation-Reference" type="xs:string" minOccurs="0">
|
403
|
+
<xs:annotation>
|
404
|
+
<xs:documentation>Reference to the details of the calculation of the
|
405
|
+
global y-value; only if thermal bridging is user defined global
|
406
|
+
y-value.
|
407
|
+
</xs:documentation>
|
408
|
+
</xs:annotation>
|
409
|
+
</xs:element>
|
410
|
+
<xs:element name="SAP-Thermal-Bridge" type="SAP-Thermal-Bridge"
|
411
|
+
minOccurs="0" maxOccurs="unbounded"/>
|
412
|
+
</xs:sequence>
|
413
|
+
</xs:complexType>
|
414
|
+
<xs:element name="SAP-Walls" type="SAP-Walls"/>
|
415
|
+
<xs:complexType name="SAP-Walls">
|
416
|
+
<xs:annotation>
|
417
|
+
<xs:documentation>Exposed walls that make up a particular Storey.
|
418
|
+
</xs:documentation>
|
419
|
+
</xs:annotation>
|
420
|
+
<xs:sequence>
|
421
|
+
<xs:element name="SAP-Wall" type="SAP-Wall" maxOccurs="unbounded"/>
|
422
|
+
</xs:sequence>
|
423
|
+
</xs:complexType>
|
424
|
+
<xs:element name="SAP-Opening-Type" type="SAP-Opening-Type"/>
|
425
|
+
<xs:complexType name="SAP-Opening-Type">
|
426
|
+
<xs:annotation>
|
427
|
+
<xs:documentation>Various measurements for a particular type of exposed
|
428
|
+
opening that makes up a particular property. Opening types are used to
|
429
|
+
capture common features shared by multiple openings, to avoid having to
|
430
|
+
record the same data explicitly for each opening.
|
431
|
+
</xs:documentation>
|
432
|
+
</xs:annotation>
|
433
|
+
<xs:all>
|
434
|
+
<xs:element name="Name" type="xs:string">
|
435
|
+
<xs:annotation>
|
436
|
+
<xs:documentation>Unique name which identifies this opening type. Can
|
437
|
+
be just a number, e.g. "1".
|
438
|
+
</xs:documentation>
|
439
|
+
</xs:annotation>
|
440
|
+
</xs:element>
|
441
|
+
<xs:element name="Description" type="Sentence" minOccurs="0">
|
442
|
+
<xs:annotation>
|
443
|
+
<xs:documentation>Descriptive notes about the opening type.
|
444
|
+
</xs:documentation>
|
445
|
+
</xs:annotation>
|
446
|
+
</xs:element>
|
447
|
+
<xs:element name="Data-Source" type="SAP-OpeningDataSourceCode">
|
448
|
+
<xs:annotation>
|
449
|
+
<xs:documentation>The source of the data for this type of opening.
|
450
|
+
</xs:documentation>
|
451
|
+
</xs:annotation>
|
452
|
+
</xs:element>
|
453
|
+
<xs:element name="Type" type="SAP-OpeningTypeCode">
|
454
|
+
<xs:annotation>
|
455
|
+
<xs:documentation>The (physical) type of opening that this opening
|
456
|
+
type represents.
|
457
|
+
</xs:documentation>
|
458
|
+
</xs:annotation>
|
459
|
+
</xs:element>
|
460
|
+
<xs:element name="Glazing-Type" type="SAP-GlazingTypeCode" minOccurs="0">
|
461
|
+
<xs:annotation>
|
462
|
+
<xs:documentation>The type of glazing; if U-value is from BFRC or
|
463
|
+
manufacturer declaration, give as one of
|
464
|
+
- single
|
465
|
+
- double
|
466
|
+
- triple.
|
467
|
+
</xs:documentation>
|
468
|
+
</xs:annotation>
|
469
|
+
</xs:element>
|
470
|
+
<xs:element name="Glazing-Gap" type="SAP-GlazingGapTypeCode"
|
471
|
+
minOccurs="0">
|
472
|
+
<xs:annotation>
|
473
|
+
<xs:documentation>Gap between glass panes; only if SAP table and
|
474
|
+
double, triple glazed or secondary glazing.
|
475
|
+
</xs:documentation>
|
476
|
+
</xs:annotation>
|
477
|
+
</xs:element>
|
478
|
+
<xs:element name="IsArgonFilled" type="xs:boolean" default="false"
|
479
|
+
minOccurs="0">
|
480
|
+
<xs:annotation>
|
481
|
+
<xs:documentation>Is the opening argon-filled? Only if SAP table.
|
482
|
+
</xs:documentation>
|
483
|
+
</xs:annotation>
|
484
|
+
</xs:element>
|
485
|
+
<xs:element name="IsKryptonFilled" type="xs:boolean" default="false"
|
486
|
+
minOccurs="0">
|
487
|
+
<xs:annotation>
|
488
|
+
<xs:documentation>Is the opening krypton-filled? Only if SAP table.
|
489
|
+
</xs:documentation>
|
490
|
+
</xs:annotation>
|
491
|
+
</xs:element>
|
492
|
+
<xs:element name="Frame-Type" type="SAP-FrameTypeCode" minOccurs="0">
|
493
|
+
<xs:annotation>
|
494
|
+
<xs:documentation>The type of frame, only if data source is SAP table
|
495
|
+
and it is a window, roof window or half-glazed door.
|
496
|
+
</xs:documentation>
|
497
|
+
</xs:annotation>
|
498
|
+
</xs:element>
|
499
|
+
<xs:element name="Solar-Transmittance" type="xs:decimal" minOccurs="0">
|
500
|
+
<xs:annotation>
|
501
|
+
<xs:documentation>The solar transmittance; not if a door.
|
502
|
+
</xs:documentation>
|
503
|
+
</xs:annotation>
|
504
|
+
</xs:element>
|
505
|
+
<xs:element name="Frame-Factor" type="xs:decimal" minOccurs="0">
|
506
|
+
<xs:annotation>
|
507
|
+
<xs:documentation>The frame factor; not if a door.</xs:documentation>
|
508
|
+
</xs:annotation>
|
509
|
+
</xs:element>
|
510
|
+
<xs:element name="U-Value" type="xs:decimal">
|
511
|
+
<xs:annotation>
|
512
|
+
<xs:documentation>The U-value. For rooflights, the U-value should be
|
513
|
+
in the horizontal plane.
|
514
|
+
</xs:documentation>
|
515
|
+
</xs:annotation>
|
516
|
+
</xs:element>
|
517
|
+
</xs:all>
|
518
|
+
</xs:complexType>
|
519
|
+
<xs:element name="SAP-Opening-Types" type="SAP-Opening-Types"/>
|
520
|
+
<xs:complexType name="SAP-Opening-Types">
|
521
|
+
<xs:annotation>
|
522
|
+
<xs:documentation>Types of exposed openings that make up a particular
|
523
|
+
property. Opening types are used to capture common features shared by
|
524
|
+
multiple openings, to avoid having to record the same data explicitly
|
525
|
+
for each opening.
|
526
|
+
</xs:documentation>
|
527
|
+
</xs:annotation>
|
528
|
+
<xs:sequence>
|
529
|
+
<xs:element name="SAP-Opening-Type" type="SAP-Opening-Type"
|
530
|
+
maxOccurs="unbounded"/>
|
531
|
+
</xs:sequence>
|
532
|
+
</xs:complexType>
|
533
|
+
<xs:element name="SAP-Ventilation" type="SAP-Ventilation"/>
|
534
|
+
<xs:complexType name="SAP-Ventilation">
|
535
|
+
<xs:annotation>
|
536
|
+
<xs:documentation>Details of the means by which the building is
|
537
|
+
ventilated
|
538
|
+
</xs:documentation>
|
539
|
+
</xs:annotation>
|
540
|
+
<xs:all>
|
541
|
+
<xs:element name="Closed-Flues-Count" type="Count">
|
542
|
+
<xs:annotation>
|
543
|
+
<xs:documentation>The number of Closed Flues or chimneys in the
|
544
|
+
Property.
|
545
|
+
</xs:documentation>
|
546
|
+
</xs:annotation>
|
547
|
+
</xs:element>
|
548
|
+
<xs:element name="Open-Flues-Count" type="Count">
|
549
|
+
<xs:annotation>
|
550
|
+
<xs:documentation>The number of Open Flues in the Property.
|
551
|
+
</xs:documentation>
|
552
|
+
</xs:annotation>
|
553
|
+
</xs:element>
|
554
|
+
<xs:element name="Boilers-Flues-Count" type="Count">
|
555
|
+
<xs:annotation>
|
556
|
+
<xs:documentation>The number of Boiler Flues or chimneys in the
|
557
|
+
Property.
|
558
|
+
</xs:documentation>
|
559
|
+
</xs:annotation>
|
560
|
+
</xs:element>
|
561
|
+
<xs:element name="Other-Flues-Count" type="Count">
|
562
|
+
<xs:annotation>
|
563
|
+
<xs:documentation>The number of Other Flues or chimneys in the
|
564
|
+
Property.
|
565
|
+
</xs:documentation>
|
566
|
+
</xs:annotation>
|
567
|
+
</xs:element>
|
568
|
+
<xs:element name="Open-Chimneys-Count" type="Count">
|
569
|
+
<xs:annotation>
|
570
|
+
<xs:documentation>The number of Open Chimneys in the Property.
|
571
|
+
</xs:documentation>
|
572
|
+
</xs:annotation>
|
573
|
+
</xs:element>
|
574
|
+
<xs:element name="Blocked-Chimneys-Count" type="Count">
|
575
|
+
<xs:annotation>
|
576
|
+
<xs:documentation>The number of Blocked Chimneys in the Property.
|
577
|
+
</xs:documentation>
|
578
|
+
</xs:annotation>
|
579
|
+
</xs:element>
|
580
|
+
<xs:element name="Fans-Vents-Count" type="Count" minOccurs="0">
|
581
|
+
<xs:annotation>
|
582
|
+
<xs:documentation>For backward compatibility only, do not use.
|
583
|
+
</xs:documentation>
|
584
|
+
</xs:annotation>
|
585
|
+
</xs:element>
|
586
|
+
<xs:element name="Flueless-Gas-Fires-Count" type="Count">
|
587
|
+
<xs:annotation>
|
588
|
+
<xs:documentation>The number of flueless gas fires in the Property.
|
589
|
+
</xs:documentation>
|
590
|
+
</xs:annotation>
|
591
|
+
</xs:element>
|
592
|
+
<xs:element name="Pressure-Test" type="SAP-PressureTestCode">
|
593
|
+
<xs:annotation>
|
594
|
+
<xs:documentation>Whether there has been a pressure test, or whether
|
595
|
+
an assumed value is used for the air permeability.
|
596
|
+
</xs:documentation>
|
597
|
+
</xs:annotation>
|
598
|
+
</xs:element>
|
599
|
+
<xs:element name="Pressure-Test-Certificate-Number" type="xs:string"
|
600
|
+
minOccurs="0">
|
601
|
+
<xs:annotation>
|
602
|
+
<xs:documentation>The pressure test certificate number or test
|
603
|
+
engineer reference.
|
604
|
+
</xs:documentation>
|
605
|
+
</xs:annotation>
|
606
|
+
</xs:element>
|
607
|
+
<xs:element name="Air-Permeability" type="xs:decimal" minOccurs="0">
|
608
|
+
<xs:annotation>
|
609
|
+
<xs:documentation>Air permeability; only if pressure test (yes or
|
610
|
+
assumed).
|
611
|
+
</xs:documentation>
|
612
|
+
</xs:annotation>
|
613
|
+
</xs:element>
|
614
|
+
<xs:element name="Ground-Floor-Type" type="SAP-FloorConstructionCode"
|
615
|
+
minOccurs="0">
|
616
|
+
<xs:annotation>
|
617
|
+
<xs:documentation>The type of ground floor; nly if no pressure test.
|
618
|
+
</xs:documentation>
|
619
|
+
</xs:annotation>
|
620
|
+
</xs:element>
|
621
|
+
<xs:element name="Wall-Type" type="SAP-WallConstructionCode"
|
622
|
+
minOccurs="0">
|
623
|
+
<xs:annotation>
|
624
|
+
<xs:documentation>The construction of the walls; only if no pressure
|
625
|
+
test.
|
626
|
+
</xs:documentation>
|
627
|
+
</xs:annotation>
|
628
|
+
</xs:element>
|
629
|
+
<xs:element name="Has-Draught-Lobby" type="xs:boolean" default="false"
|
630
|
+
minOccurs="0">
|
631
|
+
<xs:annotation>
|
632
|
+
<xs:documentation>Is there a draft lobby? Only if no pressure test.
|
633
|
+
</xs:documentation>
|
634
|
+
</xs:annotation>
|
635
|
+
</xs:element>
|
636
|
+
<xs:element name="DraughtStripping" type="Percentage" minOccurs="0">
|
637
|
+
<xs:annotation>
|
638
|
+
<xs:documentation>Draughtstripping percentage; only if no pressure
|
639
|
+
test.
|
640
|
+
</xs:documentation>
|
641
|
+
</xs:annotation>
|
642
|
+
</xs:element>
|
643
|
+
<xs:element name="Sheltered-Sides-Count" type="Count">
|
644
|
+
<xs:annotation>
|
645
|
+
<xs:documentation>The number of sheltered sides in the Property.
|
646
|
+
</xs:documentation>
|
647
|
+
</xs:annotation>
|
648
|
+
</xs:element>
|
649
|
+
<xs:element name="Ventilation-Type" type="SAP-VentilationTypeCode">
|
650
|
+
<xs:annotation>
|
651
|
+
<xs:documentation>The type of ventilation.</xs:documentation>
|
652
|
+
</xs:annotation>
|
653
|
+
</xs:element>
|
654
|
+
<xs:element name="Mechanical-Ventilation-Data-Source"
|
655
|
+
type="SAP-DataSourceCode" minOccurs="0">
|
656
|
+
<xs:annotation>
|
657
|
+
<xs:documentation>Source of mechanical ventilation data; only if
|
658
|
+
mechanical ventilation.
|
659
|
+
</xs:documentation>
|
660
|
+
</xs:annotation>
|
661
|
+
</xs:element>
|
662
|
+
<xs:element name="Mechanical-Vent-System-Index-Number"
|
663
|
+
type="xs:nonNegativeInteger" minOccurs="0">
|
664
|
+
<xs:annotation>
|
665
|
+
<xs:documentation>Mechanical vent system index number; if mechanical
|
666
|
+
vent data from database (MEV c, MEV dc, MV, MVHR).
|
667
|
+
</xs:documentation>
|
668
|
+
</xs:annotation>
|
669
|
+
</xs:element>
|
670
|
+
<xs:element name="Mechanical-Vent-Commissioning-Certificate-Number"
|
671
|
+
type="xs:string" minOccurs="0">
|
672
|
+
<xs:annotation>
|
673
|
+
<xs:documentation>Mechanical ventilation Commissioning certificate
|
674
|
+
number .
|
675
|
+
</xs:documentation>
|
676
|
+
</xs:annotation>
|
677
|
+
</xs:element>
|
678
|
+
<xs:element name="Mechanical-Vent-Installation-Engineer" type="xs:string"
|
679
|
+
minOccurs="0">
|
680
|
+
<xs:annotation>
|
681
|
+
<xs:documentation>Mechanical ventilation installation engineer
|
682
|
+
registration reference.
|
683
|
+
</xs:documentation>
|
684
|
+
</xs:annotation>
|
685
|
+
</xs:element>
|
686
|
+
<xs:element name="Mechanical-Vent-System-Make-Model" type="xs:string"
|
687
|
+
minOccurs="0">
|
688
|
+
<xs:annotation>
|
689
|
+
<xs:documentation>Mechanical ventilation system make and model.
|
690
|
+
</xs:documentation>
|
691
|
+
</xs:annotation>
|
692
|
+
</xs:element>
|
693
|
+
<xs:element name="Wet-Rooms-Count" type="NonZeroCount" minOccurs="0">
|
694
|
+
<xs:annotation>
|
695
|
+
<xs:documentation>Number of wet rooms, including the kitchen; if mech
|
696
|
+
vent data from manufacturer declaration or database (MEV c, MV,
|
697
|
+
MVHR).
|
698
|
+
</xs:documentation>
|
699
|
+
</xs:annotation>
|
700
|
+
</xs:element>
|
701
|
+
<xs:element name="Mechanical-Vent-Specific-Fan-Power" type="Measurement"
|
702
|
+
minOccurs="0">
|
703
|
+
<xs:annotation>
|
704
|
+
<xs:documentation>Mechanical vent specific fan power in watts per
|
705
|
+
(litres per second); if mechanical vent data (PIV from outside, MEV
|
706
|
+
c or dc, MV, MVHR).
|
707
|
+
</xs:documentation>
|
708
|
+
</xs:annotation>
|
709
|
+
</xs:element>
|
710
|
+
<xs:element name="Mechanical-Vent-Heat-Recovery-Efficiency"
|
711
|
+
type="Percentage" minOccurs="0">
|
712
|
+
<xs:annotation>
|
713
|
+
<xs:documentation>Mechanical vent heat recovery efficiency percentage;
|
714
|
+
if mechanical vent (MVHR).
|
715
|
+
</xs:documentation>
|
716
|
+
</xs:annotation>
|
717
|
+
</xs:element>
|
718
|
+
<xs:element name="Mechanical-Vent-Duct-Type" type="SAP-DuctTypeCode"
|
719
|
+
minOccurs="0">
|
720
|
+
<xs:annotation>
|
721
|
+
<xs:documentation>Mechanical vent duct type; if MEV c, MV or MVHR.
|
722
|
+
</xs:documentation>
|
723
|
+
</xs:annotation>
|
724
|
+
</xs:element>
|
725
|
+
<xs:element name="Mechanical-Vent-Duct-Insulation"
|
726
|
+
type="SAP-DuctInsulationCode" minOccurs="0">
|
727
|
+
<xs:annotation>
|
728
|
+
<xs:documentation>Mechanical vent duct insulation; if MVHR.
|
729
|
+
</xs:documentation>
|
730
|
+
</xs:annotation>
|
731
|
+
</xs:element>
|
732
|
+
<xs:element name="Mechanical-Vent-Duct-Insulation-Level"
|
733
|
+
type="SAP-DuctInsulationLevel" minOccurs="0">
|
734
|
+
<xs:annotation>
|
735
|
+
<xs:documentation>Mechanical vent duct insulation; if MVHR.
|
736
|
+
</xs:documentation>
|
737
|
+
</xs:annotation>
|
738
|
+
</xs:element>
|
739
|
+
<xs:element name="Mechanical-Vent-Duct-Placement" type="SAP-DuctPlacement"
|
740
|
+
minOccurs="0">
|
741
|
+
<xs:annotation>
|
742
|
+
<xs:documentation>Mechanical ventilation duct insulation; if MVHR.
|
743
|
+
</xs:documentation>
|
744
|
+
</xs:annotation>
|
745
|
+
</xs:element>
|
746
|
+
<xs:element name="Mechanical-Vent-Measured-Installation" type="xs:boolean"
|
747
|
+
minOccurs="0">
|
748
|
+
<xs:annotation>
|
749
|
+
<xs:documentation>Mechanical ventilation SPF measured in situ; if MVHR
|
750
|
+
or balanced.
|
751
|
+
</xs:documentation>
|
752
|
+
</xs:annotation>
|
753
|
+
</xs:element>
|
754
|
+
<xs:element name="Kitchen-Room-Fans-Count" type="Count" minOccurs="0">
|
755
|
+
<xs:annotation>
|
756
|
+
<xs:documentation>MEV dc, number of fans in room, kitchen; if
|
757
|
+
mechanical vent data from database or manufacturer declaration (MEV
|
758
|
+
dc).
|
759
|
+
</xs:documentation>
|
760
|
+
</xs:annotation>
|
761
|
+
</xs:element>
|
762
|
+
<xs:element name="Kitchen-Room-Fans-Specific-Power" type="Measurement"
|
763
|
+
minOccurs="0">
|
764
|
+
<xs:annotation>
|
765
|
+
<xs:documentation>MEV dc, specific fan power of fans in room, kitchen,
|
766
|
+
in watts per (litres per second); if mechanical vent data from
|
767
|
+
manufacturer declaration (MEV dc).
|
768
|
+
</xs:documentation>
|
769
|
+
</xs:annotation>
|
770
|
+
</xs:element>
|
771
|
+
<xs:element name="Non-Kitchen-Room-Fans-Count" type="Count" minOccurs="0">
|
772
|
+
<xs:annotation>
|
773
|
+
<xs:documentation>MEV dc, number of fans in room, rooms other than
|
774
|
+
kitchen; if mechanical vent data from database or manufacturer
|
775
|
+
declaration (MEV dc).
|
776
|
+
</xs:documentation>
|
777
|
+
</xs:annotation>
|
778
|
+
</xs:element>
|
779
|
+
<xs:element name="Non-Kitchen-Room-Fans-Specific-Power" type="Measurement"
|
780
|
+
minOccurs="0">
|
781
|
+
<xs:annotation>
|
782
|
+
<xs:documentation>MEV dc, specific fan power of fans in room, rooms
|
783
|
+
other than kitchen, in watts per (litres per second); if mechanical
|
784
|
+
vent data from manufacturer declaration (MEV dc).
|
785
|
+
</xs:documentation>
|
786
|
+
</xs:annotation>
|
787
|
+
</xs:element>
|
788
|
+
<xs:element name="Kitchen-Duct-Fans-Count" type="Count" minOccurs="0">
|
789
|
+
<xs:annotation>
|
790
|
+
<xs:documentation>MEV dc, number of fans via duct, kitchen; if
|
791
|
+
mechanical vent data from database or manufacturer declaration (MEV
|
792
|
+
dc).
|
793
|
+
</xs:documentation>
|
794
|
+
</xs:annotation>
|
795
|
+
</xs:element>
|
796
|
+
<xs:element name="Kitchen-Duct-Fans-Specific-Power" type="Measurement"
|
797
|
+
minOccurs="0">
|
798
|
+
<xs:annotation>
|
799
|
+
<xs:documentation>MEV dc, specific fan power of fans via duct,
|
800
|
+
kitchen, in watts per (litres per second); if mechanical vent data
|
801
|
+
from manufacturer declaration (MEV dc).
|
802
|
+
</xs:documentation>
|
803
|
+
</xs:annotation>
|
804
|
+
</xs:element>
|
805
|
+
<xs:element name="Non-Kitchen-Duct-Fans-Count" type="Count" minOccurs="0">
|
806
|
+
<xs:annotation>
|
807
|
+
<xs:documentation>MEV dc, number of fans via duct, rooms other than
|
808
|
+
kitchen; if mechanical vent data from database or manufacturer
|
809
|
+
declaration (MEV dc).
|
810
|
+
</xs:documentation>
|
811
|
+
</xs:annotation>
|
812
|
+
</xs:element>
|
813
|
+
<xs:element name="Non-Kitchen-Duct-Fans-Specific-Power" type="Measurement"
|
814
|
+
minOccurs="0">
|
815
|
+
<xs:annotation>
|
816
|
+
<xs:documentation>MEV dc, specific fan power of fans via duct, rooms
|
817
|
+
other than kitchen, in watts per (litres per second); if mechanical
|
818
|
+
vent data from manufacturer declaration (MEV dc).
|
819
|
+
</xs:documentation>
|
820
|
+
</xs:annotation>
|
821
|
+
</xs:element>
|
822
|
+
<xs:element name="Kitchen-Wall-Fans-Count" type="Count" minOccurs="0">
|
823
|
+
<xs:annotation>
|
824
|
+
<xs:documentation>MEV dc, number of fans through wall, kitchen; if
|
825
|
+
mechanical vent data from database or manufacturer declaration (MEV
|
826
|
+
dc).
|
827
|
+
</xs:documentation>
|
828
|
+
</xs:annotation>
|
829
|
+
</xs:element>
|
830
|
+
<xs:element name="Kitchen-Wall-Fans-Specific-Power" type="Measurement"
|
831
|
+
minOccurs="0">
|
832
|
+
<xs:annotation>
|
833
|
+
<xs:documentation>MEV dc, specific fan power of fans through wall,
|
834
|
+
kitchen, in watts per (litres per second); if mechanical vent data
|
835
|
+
from manufacturer declaration (MEV dc).
|
836
|
+
</xs:documentation>
|
837
|
+
</xs:annotation>
|
838
|
+
</xs:element>
|
839
|
+
<xs:element name="Non-Kitchen-Wall-Fans-Count" type="Count" minOccurs="0">
|
840
|
+
<xs:annotation>
|
841
|
+
<xs:documentation>MEV dc, number of fans through wall, rooms other
|
842
|
+
than kitchen; if mechanical vent data from database or manufacturer
|
843
|
+
declaration (MEV dc).
|
844
|
+
</xs:documentation>
|
845
|
+
</xs:annotation>
|
846
|
+
</xs:element>
|
847
|
+
<xs:element name="Non-Kitchen-Wall-Fans-Specific-Power" type="Measurement"
|
848
|
+
minOccurs="0">
|
849
|
+
<xs:annotation>
|
850
|
+
<xs:documentation>MEV dc, specific fan power of fans through wall,
|
851
|
+
rooms other than kitchen, in watts per (litres per second); if
|
852
|
+
mechanical vent data from manufacturer declaration (MEV dc).
|
853
|
+
</xs:documentation>
|
854
|
+
</xs:annotation>
|
855
|
+
</xs:element>
|
856
|
+
<xs:element name="Extract-Fans-Count" type="Count" minOccurs="0"/>
|
857
|
+
<xs:element name="PSV-Count" type="Count" minOccurs="0"/>
|
858
|
+
<xs:element name="Is-Mechanical-Vent-Approved-Installer-Scheme"
|
859
|
+
type="xs:boolean" minOccurs="0"/>
|
860
|
+
<xs:element name="Mechanical-Vent-Ducts-Index-Number"
|
861
|
+
type="xs:positiveInteger" minOccurs="0">
|
862
|
+
<xs:annotation>
|
863
|
+
<xs:documentation>Mechanical vent ducts index number; if applicable.
|
864
|
+
</xs:documentation>
|
865
|
+
</xs:annotation>
|
866
|
+
</xs:element>
|
867
|
+
</xs:all>
|
868
|
+
</xs:complexType>
|
869
|
+
<xs:element name="SAP10-Data" type="SAP10-Data"/>
|
870
|
+
<xs:complexType name="SAP10-Data">
|
871
|
+
<xs:annotation>
|
872
|
+
<xs:documentation>These are the specific data-items collected by the HI /
|
873
|
+
EA needed to perform the SAP calculation.
|
874
|
+
</xs:documentation>
|
875
|
+
</xs:annotation>
|
876
|
+
<xs:all>
|
877
|
+
<xs:element name="Data-Type" type="SAP-DataTypeCode">
|
878
|
+
<xs:annotation>
|
879
|
+
<xs:documentation>Type of SAP data that has been collected.
|
880
|
+
</xs:documentation>
|
881
|
+
</xs:annotation>
|
882
|
+
</xs:element>
|
883
|
+
<xs:element name="SAP-Property-Details" type="SAP-Property-Details"/>
|
884
|
+
</xs:all>
|
885
|
+
</xs:complexType>
|
886
|
+
<xs:element name="SAP-Property-Details" type="SAP-Property-Details"/>
|
887
|
+
<xs:complexType name="SAP-Property-Details">
|
888
|
+
<xs:annotation>
|
889
|
+
<xs:documentation>Various measurements a particular Property.
|
890
|
+
</xs:documentation>
|
891
|
+
</xs:annotation>
|
892
|
+
<xs:all>
|
893
|
+
<xs:element name="Property-Type" type="PropertyTypeCode">
|
894
|
+
<xs:annotation>
|
895
|
+
<xs:documentation>The type of Property, such as House, Flat, Mansion,
|
896
|
+
Maisonette etc.
|
897
|
+
</xs:documentation>
|
898
|
+
</xs:annotation>
|
899
|
+
</xs:element>
|
900
|
+
<xs:element name="Built-Form" type="SAP-BuiltFormCode" minOccurs="0">
|
901
|
+
<xs:annotation>
|
902
|
+
<xs:documentation>The building type of the Property e.g. Detached,
|
903
|
+
Semi-Detached, Terrace etc.
|
904
|
+
|
905
|
+
Together with the Property Type, the Built Form provides a
|
906
|
+
structured description of the property.
|
907
|
+
</xs:documentation>
|
908
|
+
</xs:annotation>
|
909
|
+
</xs:element>
|
910
|
+
<xs:element name="Living-Area" type="Measurement">
|
911
|
+
<xs:annotation>
|
912
|
+
<xs:documentation>The size of the living area in square metres. The
|
913
|
+
living area is the room marked on a plan as the lounge or living
|
914
|
+
room, or the largest public room (irrespective of usage by
|
915
|
+
particular occupants), together with any rooms not separated from
|
916
|
+
the lounge or living room by doors, and including any cupboards
|
917
|
+
directly accessed from the lounge or living room. Living area does
|
918
|
+
not, however, extend over more than one storey, even when stairs
|
919
|
+
enter the living area directly.
|
920
|
+
</xs:documentation>
|
921
|
+
</xs:annotation>
|
922
|
+
</xs:element>
|
923
|
+
<xs:element name="Lowest-Storey-Area" type="xs:decimal">
|
924
|
+
<xs:annotation>
|
925
|
+
<xs:documentation>The Area of the lowest storey in square meters
|
926
|
+
including unheated or communal areas such as garages or corridors.
|
927
|
+
</xs:documentation>
|
928
|
+
</xs:annotation>
|
929
|
+
</xs:element>
|
930
|
+
<xs:element name="Orientation" type="SAP-OrientationCode">
|
931
|
+
<xs:annotation>
|
932
|
+
<xs:documentation>The orientation of the front of the property.
|
933
|
+
</xs:documentation>
|
934
|
+
</xs:annotation>
|
935
|
+
</xs:element>
|
936
|
+
<xs:element name="Conservatory-Type" type="SAP-ConservatoryTypeCode">
|
937
|
+
<xs:annotation>
|
938
|
+
<xs:documentation>Type of conservatory.</xs:documentation>
|
939
|
+
</xs:annotation>
|
940
|
+
</xs:element>
|
941
|
+
<xs:element name="Terrain-Type" type="SAP-TerrainTypeCode">
|
942
|
+
<xs:annotation>
|
943
|
+
<xs:documentation>Terrain type. Needed for wind-turbines and for
|
944
|
+
applying measures.
|
945
|
+
</xs:documentation>
|
946
|
+
</xs:annotation>
|
947
|
+
</xs:element>
|
948
|
+
<xs:element name="Has-Special-Feature" type="xs:boolean" default="false"
|
949
|
+
minOccurs="0">
|
950
|
+
<xs:annotation>
|
951
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
952
|
+
</xs:documentation>
|
953
|
+
</xs:annotation>
|
954
|
+
</xs:element>
|
955
|
+
<xs:element name="Special-Feature-Description" type="Sentence"
|
956
|
+
minOccurs="0">
|
957
|
+
<xs:annotation>
|
958
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
959
|
+
</xs:documentation>
|
960
|
+
</xs:annotation>
|
961
|
+
</xs:element>
|
962
|
+
<xs:element name="Energy-Saved-Or-Generated" type="Measurement"
|
963
|
+
minOccurs="0">
|
964
|
+
<xs:annotation>
|
965
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
966
|
+
</xs:documentation>
|
967
|
+
</xs:annotation>
|
968
|
+
</xs:element>
|
969
|
+
<xs:element name="Saved-Or-Generated-Fuel" type="HeatingFuelTypeCode"
|
970
|
+
minOccurs="0">
|
971
|
+
<xs:annotation>
|
972
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
973
|
+
</xs:documentation>
|
974
|
+
</xs:annotation>
|
975
|
+
</xs:element>
|
976
|
+
<xs:element name="Energy-Used" type="Measurement" minOccurs="0">
|
977
|
+
<xs:annotation>
|
978
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
979
|
+
</xs:documentation>
|
980
|
+
</xs:annotation>
|
981
|
+
</xs:element>
|
982
|
+
<xs:element name="Energy-Used-Fuel" type="HeatingFuelTypeCode"
|
983
|
+
minOccurs="0">
|
984
|
+
<xs:annotation>
|
985
|
+
<xs:documentation>For backwards compatibility only, do not use.
|
986
|
+
</xs:documentation>
|
987
|
+
</xs:annotation>
|
988
|
+
</xs:element>
|
989
|
+
<xs:element name="Is-In-Smoke-Control-Area" type="ExtendedBoolean">
|
990
|
+
<xs:annotation>
|
991
|
+
<xs:documentation>Is property in a smoke control area? Only if a solid
|
992
|
+
fuel appliance is used.
|
993
|
+
</xs:documentation>
|
994
|
+
</xs:annotation>
|
995
|
+
</xs:element>
|
996
|
+
<xs:element name="Cold-Water-Source" type="ColdWaterSourceCode">
|
997
|
+
<xs:annotation>
|
998
|
+
<xs:documentation>What is the cold water source? Either mains or
|
999
|
+
header tank.
|
1000
|
+
</xs:documentation>
|
1001
|
+
</xs:annotation>
|
1002
|
+
</xs:element>
|
1003
|
+
<xs:element name="Windows-Overshading" type="SAP-WindowOvershadingCode">
|
1004
|
+
<xs:annotation>
|
1005
|
+
<xs:documentation>Average amount of overshading of windows.
|
1006
|
+
</xs:documentation>
|
1007
|
+
</xs:annotation>
|
1008
|
+
</xs:element>
|
1009
|
+
<xs:element name="Thermal-Mass-Parameter" type="xs:decimal" minOccurs="0">
|
1010
|
+
<xs:annotation>
|
1011
|
+
<xs:documentation>Average thermal mass parameter for the dwelling in
|
1012
|
+
kJ/m²K. If omitted it is calculated using the kappa values of each
|
1013
|
+
element.
|
1014
|
+
</xs:documentation>
|
1015
|
+
</xs:annotation>
|
1016
|
+
</xs:element>
|
1017
|
+
<xs:element name="Additional-Allowable-Electricity-Generation"
|
1018
|
+
type="Measurement" minOccurs="0">
|
1019
|
+
<xs:annotation>
|
1020
|
+
<xs:documentation>Additional allowable electricity generation
|
1021
|
+
applicable to this dwelling in kWh per square metre; only if Zero
|
1022
|
+
Carbon Home assessment.
|
1023
|
+
</xs:documentation>
|
1024
|
+
</xs:annotation>
|
1025
|
+
</xs:element>
|
1026
|
+
<xs:element name="Gas-Smart-Meter-Present" type="xs:boolean"
|
1027
|
+
default="false"/>
|
1028
|
+
<xs:element name="Electricity-Smart-Meter-Present" type="xs:boolean"
|
1029
|
+
default="false"/>
|
1030
|
+
<xs:element name="Is-Dwelling-Export-Capable" type="xs:boolean"/>
|
1031
|
+
<xs:element name="PV-Connection" type="PVConnectionCode" minOccurs="0"/>
|
1032
|
+
<xs:element name="PV-Diverter" type="xs:boolean" default="false"
|
1033
|
+
minOccurs="0">
|
1034
|
+
<xs:annotation>
|
1035
|
+
<xs:documentation>Diverter present.</xs:documentation>
|
1036
|
+
</xs:annotation>
|
1037
|
+
</xs:element>
|
1038
|
+
<xs:element name="Battery-Capacity" type="xs:decimal" minOccurs="0">
|
1039
|
+
<xs:annotation>
|
1040
|
+
<xs:documentation>Battery capacity if diverter present.
|
1041
|
+
</xs:documentation>
|
1042
|
+
</xs:annotation>
|
1043
|
+
</xs:element>
|
1044
|
+
<xs:element name="Is-Wind-Turbine-Connected-To-Dwelling-Meter"
|
1045
|
+
type="xs:boolean" default="true" minOccurs="0">
|
1046
|
+
<xs:annotation>
|
1047
|
+
<xs:documentation>Whether the wind turbine is connected to the
|
1048
|
+
Dwelling's meter.
|
1049
|
+
</xs:documentation>
|
1050
|
+
</xs:annotation>
|
1051
|
+
</xs:element>
|
1052
|
+
<xs:element name="SAP-Heating" type="SAP-Heating"/>
|
1053
|
+
<xs:element name="SAP-Energy-Source" type="SAP-Energy-Source"
|
1054
|
+
minOccurs="0"/>
|
1055
|
+
<xs:element name="SAP-Building-Parts" type="SAP-Building-Parts"/>
|
1056
|
+
<xs:element name="SAP-Opening-Types" type="SAP-Opening-Types"
|
1057
|
+
minOccurs="0"/>
|
1058
|
+
<xs:element name="SAP-Ventilation" type="SAP-Ventilation" minOccurs="0"/>
|
1059
|
+
<xs:element name="SAP-Lighting" type="SAP-Lighting" minOccurs="0"/>
|
1060
|
+
<xs:element name="SAP-Deselected-Improvements"
|
1061
|
+
type="SAP-Deselected-Improvements" minOccurs="0"/>
|
1062
|
+
<xs:element name="SAP-Flat-Details" type="SAP-Flat-Details"
|
1063
|
+
minOccurs="0"/>
|
1064
|
+
<xs:element name="SAP-Special-Features" type="SAP-Special-Features"
|
1065
|
+
minOccurs="0"/>
|
1066
|
+
<xs:element name="Design-Water-Use" type="DesignWaterUseCode"
|
1067
|
+
minOccurs="0">
|
1068
|
+
<xs:annotation>
|
1069
|
+
<xs:documentation>Design limit for total water use.</xs:documentation>
|
1070
|
+
</xs:annotation>
|
1071
|
+
</xs:element>
|
1072
|
+
<xs:element name="SAP-Cooling" type="SAP-Cooling" minOccurs="0"/>
|
1073
|
+
</xs:all>
|
1074
|
+
</xs:complexType>
|
1075
|
+
<xs:element name="SAP-Flat-Details" type="SAP-Flat-Details"/>
|
1076
|
+
<xs:complexType name="SAP-Flat-Details">
|
1077
|
+
<xs:all>
|
1078
|
+
<xs:element name="Level" type="SAP-FlatLevelCode">
|
1079
|
+
<xs:annotation>
|
1080
|
+
<xs:documentation>Indication of where a flat is located in a
|
1081
|
+
building.
|
1082
|
+
</xs:documentation>
|
1083
|
+
</xs:annotation>
|
1084
|
+
</xs:element>
|
1085
|
+
<xs:element name="Storeys" type="NonZeroCount">
|
1086
|
+
<xs:annotation>
|
1087
|
+
<xs:documentation>Count of number of storeys present in the block of
|
1088
|
+
flats.
|
1089
|
+
</xs:documentation>
|
1090
|
+
</xs:annotation>
|
1091
|
+
</xs:element>
|
1092
|
+
</xs:all>
|
1093
|
+
</xs:complexType>
|
1094
|
+
<xs:element name="SAP-Lighting" type="SAP-Lighting"/>
|
1095
|
+
<xs:complexType name="SAP-Lighting">
|
1096
|
+
<xs:annotation>
|
1097
|
+
<xs:documentation>Details of the main lighting for the property
|
1098
|
+
</xs:documentation>
|
1099
|
+
</xs:annotation>
|
1100
|
+
<xs:sequence>
|
1101
|
+
<xs:element name="Fixed-Lights" type="Fixed-Lights" minOccurs="0">
|
1102
|
+
<xs:annotation>
|
1103
|
+
<xs:documentation>The record of a lighting type within the building.
|
1104
|
+
</xs:documentation>
|
1105
|
+
</xs:annotation>
|
1106
|
+
</xs:element>
|
1107
|
+
</xs:sequence>
|
1108
|
+
</xs:complexType>
|
1109
|
+
<xs:element name="Fixed-Lights" type="Fixed-Lights"/>
|
1110
|
+
<xs:complexType name="Fixed-Lights">
|
1111
|
+
<xs:annotation>
|
1112
|
+
<xs:documentation>Fixed lighting present in the property.
|
1113
|
+
</xs:documentation>
|
1114
|
+
</xs:annotation>
|
1115
|
+
<xs:sequence>
|
1116
|
+
<xs:element name="Fixed-Light" type="Fixed-Light" maxOccurs="unbounded"/>
|
1117
|
+
</xs:sequence>
|
1118
|
+
</xs:complexType>
|
1119
|
+
<xs:element name="Fixed-Light" type="Fixed-Light"/>
|
1120
|
+
<xs:complexType name="Fixed-Light">
|
1121
|
+
<xs:annotation>
|
1122
|
+
<xs:documentation>Various details for each fixed lighting type in the
|
1123
|
+
property.
|
1124
|
+
</xs:documentation>
|
1125
|
+
</xs:annotation>
|
1126
|
+
<xs:all>
|
1127
|
+
<xs:element name="Lighting-Efficacy" type="xs:decimal">
|
1128
|
+
<xs:annotation>
|
1129
|
+
<xs:documentation>The efficacy of the lighting type in lumens/Watt.
|
1130
|
+
</xs:documentation>
|
1131
|
+
</xs:annotation>
|
1132
|
+
</xs:element>
|
1133
|
+
<xs:element name="Lighting-Power" type="xs:decimal">
|
1134
|
+
<xs:annotation>
|
1135
|
+
<xs:documentation>The power of the selected lighting type in Watts.
|
1136
|
+
</xs:documentation>
|
1137
|
+
</xs:annotation>
|
1138
|
+
</xs:element>
|
1139
|
+
<xs:element name="Lighting-Outlets" type="Count">
|
1140
|
+
<xs:annotation>
|
1141
|
+
<xs:documentation>The number of light fitting outlets of that type.
|
1142
|
+
</xs:documentation>
|
1143
|
+
</xs:annotation>
|
1144
|
+
</xs:element>
|
1145
|
+
</xs:all>
|
1146
|
+
</xs:complexType>
|
1147
|
+
<xs:element name="SAP-Floor-Dimension" type="SAP-Floor-Dimension"/>
|
1148
|
+
<xs:complexType name="SAP-Floor-Dimension">
|
1149
|
+
<xs:annotation>
|
1150
|
+
<xs:documentation>Various measurements for the floor of a particular
|
1151
|
+
storey.
|
1152
|
+
</xs:documentation>
|
1153
|
+
</xs:annotation>
|
1154
|
+
<xs:all>
|
1155
|
+
<xs:element name="Name" type="xs:string" minOccurs="0">
|
1156
|
+
<xs:annotation>
|
1157
|
+
<xs:documentation>A name describing the floor dimensioned.
|
1158
|
+
</xs:documentation>
|
1159
|
+
</xs:annotation>
|
1160
|
+
</xs:element>
|
1161
|
+
<xs:element name="Storey" type="SAP-StoreyFloorCode">
|
1162
|
+
<xs:annotation>
|
1163
|
+
<xs:documentation>Building storey on which the floor is located.
|
1164
|
+
</xs:documentation>
|
1165
|
+
</xs:annotation>
|
1166
|
+
</xs:element>
|
1167
|
+
<xs:element name="Description" type="Sentence" minOccurs="0">
|
1168
|
+
<xs:annotation>
|
1169
|
+
<xs:documentation>Descriptive notes about the floor.
|
1170
|
+
</xs:documentation>
|
1171
|
+
</xs:annotation>
|
1172
|
+
</xs:element>
|
1173
|
+
<xs:element name="Floor-Type" type="SAP-FloorTypeCode">
|
1174
|
+
<xs:annotation>
|
1175
|
+
<xs:documentation>Type of floor (exposure).</xs:documentation>
|
1176
|
+
</xs:annotation>
|
1177
|
+
</xs:element>
|
1178
|
+
<xs:element name="Total-Floor-Area" type="Measurement">
|
1179
|
+
<xs:annotation>
|
1180
|
+
<xs:documentation>The total floor area of the storey in square
|
1181
|
+
metres.
|
1182
|
+
</xs:documentation>
|
1183
|
+
</xs:annotation>
|
1184
|
+
</xs:element>
|
1185
|
+
<xs:element name="Storey-Height" type="Measurement">
|
1186
|
+
<xs:annotation>
|
1187
|
+
<xs:documentation>Average height of the storey in metres.
|
1188
|
+
</xs:documentation>
|
1189
|
+
</xs:annotation>
|
1190
|
+
</xs:element>
|
1191
|
+
<xs:element name="Heat-Loss-Area" type="Measurement">
|
1192
|
+
<xs:annotation>
|
1193
|
+
<xs:documentation>The estimated total heat loss area for the floor in
|
1194
|
+
square metres.
|
1195
|
+
</xs:documentation>
|
1196
|
+
</xs:annotation>
|
1197
|
+
</xs:element>
|
1198
|
+
<xs:element name="U-Value" type="xs:decimal">
|
1199
|
+
<xs:annotation>
|
1200
|
+
<xs:documentation>Heat loss floor U-value.</xs:documentation>
|
1201
|
+
</xs:annotation>
|
1202
|
+
</xs:element>
|
1203
|
+
<xs:element name="Kappa-Value" type="xs:decimal" minOccurs="0">
|
1204
|
+
<xs:annotation>
|
1205
|
+
<xs:documentation>Heat capacity of floor per unit area in kJ/m²K.
|
1206
|
+
</xs:documentation>
|
1207
|
+
</xs:annotation>
|
1208
|
+
</xs:element>
|
1209
|
+
<xs:element name="Kappa-Value-From-Below" type="xs:decimal" minOccurs="0">
|
1210
|
+
<xs:annotation>
|
1211
|
+
<xs:documentation>Heat capacity of ceiling below. Applies to the
|
1212
|
+
non-heat-loss area of an upper floor.
|
1213
|
+
</xs:documentation>
|
1214
|
+
</xs:annotation>
|
1215
|
+
</xs:element>
|
1216
|
+
</xs:all>
|
1217
|
+
</xs:complexType>
|
1218
|
+
<xs:element name="SAP-Building-Parts" type="SAP-Building-Parts"/>
|
1219
|
+
<xs:complexType name="SAP-Building-Parts">
|
1220
|
+
<xs:annotation>
|
1221
|
+
<xs:documentation>Details of the significant building parts that comprise
|
1222
|
+
the main habitable building in the property. The main habitable area
|
1223
|
+
generally consists of a single main building but can over time be
|
1224
|
+
extended to include extensions such as new wings and additional storeys.
|
1225
|
+
|
1226
|
+
For the purpose of calculating the overall Energy Assessment for the
|
1227
|
+
property details of each distinct Building Part, such as its
|
1228
|
+
construction, have to be gathered because different materials have
|
1229
|
+
different insulation ratings (obviously) which affects the overall
|
1230
|
+
rating.
|
1231
|
+
</xs:documentation>
|
1232
|
+
</xs:annotation>
|
1233
|
+
<xs:sequence>
|
1234
|
+
<xs:element name="SAP-Building-Part" type="SAP-Building-Part"
|
1235
|
+
maxOccurs="unbounded"/>
|
1236
|
+
</xs:sequence>
|
1237
|
+
</xs:complexType>
|
1238
|
+
<xs:element name="SAP-Building-Part" type="SAP-Building-Part"/>
|
1239
|
+
<xs:complexType name="SAP-Building-Part">
|
1240
|
+
<xs:annotation>
|
1241
|
+
<xs:documentation>A permanent structure that forms part of the Property
|
1242
|
+
and is built primarily for human habitation. A Building Part is usually
|
1243
|
+
made up of one or more Storey's and may contain a number of Internal
|
1244
|
+
Structural Features. An extension is also a Building Part.
|
1245
|
+
</xs:documentation>
|
1246
|
+
</xs:annotation>
|
1247
|
+
<xs:all>
|
1248
|
+
<xs:element name="Building-Part-Number" type="xs:positiveInteger">
|
1249
|
+
<xs:annotation>
|
1250
|
+
<xs:documentation>An integer value which uniquely identifies the
|
1251
|
+
building part in the property. The value "1" must be assigned to the
|
1252
|
+
main dwelling.
|
1253
|
+
</xs:documentation>
|
1254
|
+
</xs:annotation>
|
1255
|
+
</xs:element>
|
1256
|
+
<xs:element name="Identifier" type="IDString" minOccurs="0">
|
1257
|
+
<xs:annotation>
|
1258
|
+
<xs:documentation>Identifier for the Building part - generally only
|
1259
|
+
required if there are more that one Building Parts of the same type
|
1260
|
+
e.g. "West Wing" and "East Wing" Extensions
|
1261
|
+
</xs:documentation>
|
1262
|
+
</xs:annotation>
|
1263
|
+
</xs:element>
|
1264
|
+
<xs:element name="Construction-Year" type="xs:nonNegativeInteger"
|
1265
|
+
minOccurs="0">
|
1266
|
+
<xs:annotation>
|
1267
|
+
<xs:documentation>The year when this building part was constructed.
|
1268
|
+
Not used if 'Construction-Age-Band' is used.
|
1269
|
+
</xs:documentation>
|
1270
|
+
</xs:annotation>
|
1271
|
+
</xs:element>
|
1272
|
+
<xs:element name="Construction-Age-Band" type="ConstructionDateCode"
|
1273
|
+
minOccurs="0">
|
1274
|
+
<xs:annotation>
|
1275
|
+
<xs:documentation>The age band when this building part was
|
1276
|
+
constructed. Not used if 'Construction-Year' is used.
|
1277
|
+
</xs:documentation>
|
1278
|
+
</xs:annotation>
|
1279
|
+
</xs:element>
|
1280
|
+
<xs:element name="SAP-Openings" type="SAP-Openings" minOccurs="0"/>
|
1281
|
+
<xs:element name="SAP-Roofs" type="SAP-Roofs" minOccurs="0"/>
|
1282
|
+
<xs:element name="SAP-Floor-Dimensions" type="SAP-Floor-Dimensions"
|
1283
|
+
minOccurs="0"/>
|
1284
|
+
<xs:element name="SAP-Thermal-Bridges" type="SAP-Thermal-Bridges"
|
1285
|
+
minOccurs="0"/>
|
1286
|
+
<xs:element name="SAP-Walls" type="SAP-Walls" minOccurs="0"/>
|
1287
|
+
</xs:all>
|
1288
|
+
</xs:complexType>
|
1289
|
+
<xs:element name="SAP-Energy-Source" type="SAP-Energy-Source"/>
|
1290
|
+
<xs:complexType name="SAP-Energy-Source">
|
1291
|
+
<xs:annotation>
|
1292
|
+
<xs:documentation>Details of the main Electricity supply to the
|
1293
|
+
Property.
|
1294
|
+
</xs:documentation>
|
1295
|
+
</xs:annotation>
|
1296
|
+
<xs:all>
|
1297
|
+
<xs:element name="PV-Arrays" type="PV-Arrays" minOccurs="0"/>
|
1298
|
+
<xs:element name="Wind-Turbines" type="Wind-Turbines" minOccurs="0"/>
|
1299
|
+
<xs:element name="Electricity-Tariff" type="SAP-ElectricityTariffCode">
|
1300
|
+
<xs:annotation>
|
1301
|
+
<xs:documentation>Type of electricity tariff.</xs:documentation>
|
1302
|
+
</xs:annotation>
|
1303
|
+
</xs:element>
|
1304
|
+
<xs:element name="Hydro-Electric-Generation" type="xs:decimal"
|
1305
|
+
minOccurs="0">
|
1306
|
+
<xs:annotation>
|
1307
|
+
<xs:documentation>Electricity generated by hydro-electric generator,
|
1308
|
+
in kWh/year. To be provided if Hydro-Electric-Generation-Month is
|
1309
|
+
not provided.
|
1310
|
+
</xs:documentation>
|
1311
|
+
</xs:annotation>
|
1312
|
+
</xs:element>
|
1313
|
+
<xs:element name="Hydro-Electric-Certificate" type="xs:string"
|
1314
|
+
minOccurs="0">
|
1315
|
+
<xs:annotation>
|
1316
|
+
<xs:documentation>Reference to certification of hydro electric
|
1317
|
+
output.
|
1318
|
+
</xs:documentation>
|
1319
|
+
</xs:annotation>
|
1320
|
+
</xs:element>
|
1321
|
+
<xs:element name="Hydro-Electric-Generation-Months"
|
1322
|
+
type="Hydro-Electric-Generation-Months" minOccurs="0">
|
1323
|
+
<xs:annotation>
|
1324
|
+
<xs:documentation>Electricity generated by hydro-electric generator,
|
1325
|
+
in kWh/month. To be provided if Hydro-Electric-Generation is not
|
1326
|
+
provided.
|
1327
|
+
</xs:documentation>
|
1328
|
+
</xs:annotation>
|
1329
|
+
</xs:element>
|
1330
|
+
<xs:element name="Is-Hydro-Output-Connected-To-Dwelling-Meter"
|
1331
|
+
type="xs:boolean" default="true" minOccurs="0">
|
1332
|
+
<xs:annotation>
|
1333
|
+
<xs:documentation>Whether the hydro-electric station is connected to
|
1334
|
+
dwelling's electricity meter
|
1335
|
+
</xs:documentation>
|
1336
|
+
</xs:annotation>
|
1337
|
+
</xs:element>
|
1338
|
+
</xs:all>
|
1339
|
+
</xs:complexType>
|
1340
|
+
<xs:element name="SAP-Heating" type="SAP-Heating"/>
|
1341
|
+
<xs:complexType name="SAP-Heating">
|
1342
|
+
<xs:annotation>
|
1343
|
+
<xs:documentation>Details of the means by which the Main Building is
|
1344
|
+
heated.
|
1345
|
+
</xs:documentation>
|
1346
|
+
</xs:annotation>
|
1347
|
+
<xs:all>
|
1348
|
+
<xs:element name="Water-Heating-Code" type="SAP-WaterHeatingCode">
|
1349
|
+
<xs:annotation>
|
1350
|
+
<xs:documentation>The type of Water Heating present in the Property.
|
1351
|
+
</xs:documentation>
|
1352
|
+
</xs:annotation>
|
1353
|
+
</xs:element>
|
1354
|
+
<xs:element name="Water-Fuel-Type" type="HeatingFuelTypeCode"
|
1355
|
+
minOccurs="0">
|
1356
|
+
<xs:annotation>
|
1357
|
+
<xs:documentation>The type of fuel used to power the central heating
|
1358
|
+
e.g. Gas, Electricity. Not used if water system is main or secondary
|
1359
|
+
system.
|
1360
|
+
</xs:documentation>
|
1361
|
+
</xs:annotation>
|
1362
|
+
</xs:element>
|
1363
|
+
<xs:element name="Has-Hot-Water-Cylinder" type="xs:boolean"
|
1364
|
+
default="false" minOccurs="0">
|
1365
|
+
<xs:annotation>
|
1366
|
+
<xs:documentation>Hot water cylinder?</xs:documentation>
|
1367
|
+
</xs:annotation>
|
1368
|
+
</xs:element>
|
1369
|
+
<xs:element name="Secondary-Heating-Category"
|
1370
|
+
type="SAP-SecondaryHeatingCategoryCode">
|
1371
|
+
<xs:annotation>
|
1372
|
+
<xs:documentation>Category of heating system for the secondary heating
|
1373
|
+
system.
|
1374
|
+
</xs:documentation>
|
1375
|
+
</xs:annotation>
|
1376
|
+
</xs:element>
|
1377
|
+
<xs:element name="Secondary-Heating-Data-Source"
|
1378
|
+
type="SAP-NonDatabaseSourceCode" minOccurs="0">
|
1379
|
+
<xs:annotation>
|
1380
|
+
<xs:documentation>Source of secondary heating system data; only if
|
1381
|
+
secondary heating system.
|
1382
|
+
</xs:documentation>
|
1383
|
+
</xs:annotation>
|
1384
|
+
</xs:element>
|
1385
|
+
<xs:element name="Secondary-Heating-Efficiency" type="xs:decimal"
|
1386
|
+
minOccurs="0"/>
|
1387
|
+
<xs:element name="Secondary-Heating-Commisioning-Certificate"
|
1388
|
+
type="xs:string" minOccurs="0">
|
1389
|
+
<xs:annotation>
|
1390
|
+
<xs:documentation>Secondary heating system commisioning certificate
|
1391
|
+
number.
|
1392
|
+
</xs:documentation>
|
1393
|
+
</xs:annotation>
|
1394
|
+
</xs:element>
|
1395
|
+
<xs:element name="Secondary-Heating-Installation-Engineer"
|
1396
|
+
type="xs:string" minOccurs="0">
|
1397
|
+
<xs:annotation>
|
1398
|
+
<xs:documentation>Secondary heating installation engineer registration
|
1399
|
+
reference.
|
1400
|
+
</xs:documentation>
|
1401
|
+
</xs:annotation>
|
1402
|
+
</xs:element>
|
1403
|
+
<xs:element name="Secondary-Heating-Code" type="SAP-SpaceHeatingCode"
|
1404
|
+
minOccurs="0">
|
1405
|
+
<xs:annotation>
|
1406
|
+
<xs:documentation>Type of secondary heating present in the property;
|
1407
|
+
only if required and if heating data source is SAP table.
|
1408
|
+
</xs:documentation>
|
1409
|
+
</xs:annotation>
|
1410
|
+
</xs:element>
|
1411
|
+
<xs:element name="Secondary-Fuel-Type" type="HeatingFuelTypeCode"
|
1412
|
+
minOccurs="0">
|
1413
|
+
<xs:annotation>
|
1414
|
+
<xs:documentation>The type of fuel used to power the secondary heating
|
1415
|
+
e.g. Gas, Electricity; only if required.
|
1416
|
+
</xs:documentation>
|
1417
|
+
</xs:annotation>
|
1418
|
+
</xs:element>
|
1419
|
+
<xs:element name="Secondary-Heating-PCDF-Fuel-Index"
|
1420
|
+
type="xs:positiveInteger" minOccurs="0">
|
1421
|
+
<xs:annotation>
|
1422
|
+
<xs:documentation>PCDF index number of the fuel type, only if
|
1423
|
+
Secondary-Fuel-Type is 99 (fuel from database).
|
1424
|
+
</xs:documentation>
|
1425
|
+
</xs:annotation>
|
1426
|
+
</xs:element>
|
1427
|
+
<xs:element name="Secondary-Heating-Flue-Type" type="FlueTypeCode"
|
1428
|
+
minOccurs="0">
|
1429
|
+
<xs:annotation>
|
1430
|
+
<xs:documentation>Secondary flue type; only if secondary efficiency is
|
1431
|
+
manufacturer declaration and if there is a flue.
|
1432
|
+
</xs:documentation>
|
1433
|
+
</xs:annotation>
|
1434
|
+
</xs:element>
|
1435
|
+
<xs:element name="Thermal-Store" type="SAP-ThermalStoreCode"
|
1436
|
+
minOccurs="0">
|
1437
|
+
<xs:annotation>
|
1438
|
+
<xs:documentation>The type of thermal store; not used if main heating
|
1439
|
+
system is community heating scheme.
|
1440
|
+
</xs:documentation>
|
1441
|
+
</xs:annotation>
|
1442
|
+
</xs:element>
|
1443
|
+
<xs:element name="Has-Fixed-Air-Conditioning" type="xs:boolean"
|
1444
|
+
default="false" minOccurs="0">
|
1445
|
+
<xs:annotation>
|
1446
|
+
<xs:documentation>Fixed air conditioning?</xs:documentation>
|
1447
|
+
</xs:annotation>
|
1448
|
+
</xs:element>
|
1449
|
+
<xs:element name="Immersion-Heating-Type" type="ImmersionHeatingTypeCode"
|
1450
|
+
minOccurs="0">
|
1451
|
+
<xs:annotation>
|
1452
|
+
<xs:documentation>The type of immersion heating; only if immersion.
|
1453
|
+
</xs:documentation>
|
1454
|
+
</xs:annotation>
|
1455
|
+
</xs:element>
|
1456
|
+
<xs:element name="Is-Heat-Pump-Assisted-By-Immersion" type="xs:boolean"
|
1457
|
+
default="false" minOccurs="0">
|
1458
|
+
<xs:annotation>
|
1459
|
+
<xs:documentation>Is heat pump assisted by immersion? Applicable only
|
1460
|
+
to hot water only heat pumps
|
1461
|
+
</xs:documentation>
|
1462
|
+
</xs:annotation>
|
1463
|
+
</xs:element>
|
1464
|
+
<xs:element name="Is-Heat-Pump-Installed-To-MIS" type="xs:boolean"
|
1465
|
+
default="false" minOccurs="0">
|
1466
|
+
<xs:annotation>
|
1467
|
+
<xs:documentation>Is heat pump installed to MIS standard? Only if
|
1468
|
+
water heating from hot water only heat pump.
|
1469
|
+
</xs:documentation>
|
1470
|
+
</xs:annotation>
|
1471
|
+
</xs:element>
|
1472
|
+
<xs:element name="Is-Immersion-For-Summer-Use" type="xs:boolean"
|
1473
|
+
default="false" minOccurs="0">
|
1474
|
+
<xs:annotation>
|
1475
|
+
<xs:documentation>Immersion for summer use? Only if main heating is
|
1476
|
+
solid fuel fire or room heater with boiler.
|
1477
|
+
</xs:documentation>
|
1478
|
+
</xs:annotation>
|
1479
|
+
</xs:element>
|
1480
|
+
<xs:element name="Is-Secondary-Heating-HETAS-Approved" type="xs:boolean"
|
1481
|
+
default="false" minOccurs="0">
|
1482
|
+
<xs:annotation>
|
1483
|
+
<xs:documentation>Secondary heating appliance is HETAS approved? Only
|
1484
|
+
if solid fuel.
|
1485
|
+
</xs:documentation>
|
1486
|
+
</xs:annotation>
|
1487
|
+
</xs:element>
|
1488
|
+
<xs:element name="Hot-Water-Store-Manufacturer" type="xs:string"
|
1489
|
+
default="false" minOccurs="0">
|
1490
|
+
<xs:annotation>
|
1491
|
+
<xs:documentation>Store Manufacturer name.</xs:documentation>
|
1492
|
+
</xs:annotation>
|
1493
|
+
</xs:element>
|
1494
|
+
<xs:element name="Hot-Water-Store-Model" type="xs:string" default="false"
|
1495
|
+
minOccurs="0">
|
1496
|
+
<xs:annotation>
|
1497
|
+
<xs:documentation>Store Model name.</xs:documentation>
|
1498
|
+
</xs:annotation>
|
1499
|
+
</xs:element>
|
1500
|
+
<xs:element name="Hot-Water-Store-Commissioning-Certificate"
|
1501
|
+
type="xs:string" default="false" minOccurs="0">
|
1502
|
+
<xs:annotation>
|
1503
|
+
<xs:documentation>Store comissioning certificate number.
|
1504
|
+
</xs:documentation>
|
1505
|
+
</xs:annotation>
|
1506
|
+
</xs:element>
|
1507
|
+
<xs:element name="Hot-Water-Store-Installer-Engineer-Registration"
|
1508
|
+
type="xs:string" default="false" minOccurs="0">
|
1509
|
+
<xs:annotation>
|
1510
|
+
<xs:documentation>Store installer engineer registration number.
|
1511
|
+
</xs:documentation>
|
1512
|
+
</xs:annotation>
|
1513
|
+
</xs:element>
|
1514
|
+
<xs:element name="Hot-Water-Store-Size" type="Measurement" minOccurs="0">
|
1515
|
+
<xs:annotation>
|
1516
|
+
<xs:documentation>Hot water store size in litres; if there is a hot
|
1517
|
+
water store. Store refers to hot water store type which can be
|
1518
|
+
cylinder (if thermal store is "none"), hot-water only thermal store
|
1519
|
+
or integrated thermal store. Not applicable if (a) combi boiler
|
1520
|
+
whose data source database or (b) instantaneous combi boiler or (c)
|
1521
|
+
combi boiler from SAP table or (d) instantaneous water heater.
|
1522
|
+
</xs:documentation>
|
1523
|
+
</xs:annotation>
|
1524
|
+
</xs:element>
|
1525
|
+
<xs:element name="Hot-Water-Store-Heat-Transfer-Area" type="xs:decimal"
|
1526
|
+
minOccurs="0">
|
1527
|
+
<xs:annotation>
|
1528
|
+
<xs:documentation>Used when a heat pump is associated with a separate
|
1529
|
+
and specified hot water vessel.
|
1530
|
+
</xs:documentation>
|
1531
|
+
</xs:annotation>
|
1532
|
+
</xs:element>
|
1533
|
+
<xs:element name="Hot-Water-Store-Heat-Loss-Source"
|
1534
|
+
type="SAP-NonDatabaseSourceCode" minOccurs="0">
|
1535
|
+
<xs:annotation>
|
1536
|
+
<xs:documentation>The source of the hot water store heat loss
|
1537
|
+
information; if there is a hot water store. Not applicable if (a)
|
1538
|
+
combi boiler whose data source database or (b) instantaneous combi
|
1539
|
+
boiler or (c) combi boiler from SAP table or (d) instantaneous water
|
1540
|
+
heater.
|
1541
|
+
</xs:documentation>
|
1542
|
+
</xs:annotation>
|
1543
|
+
</xs:element>
|
1544
|
+
<xs:element name="Hot-Water-Store-Heat-Loss" type="Measurement"
|
1545
|
+
minOccurs="0">
|
1546
|
+
<xs:annotation>
|
1547
|
+
<xs:documentation>Hot water store declared loss in kWh/day; only if
|
1548
|
+
there is a hot water store and if manufacturer declared loss. Not
|
1549
|
+
applicable if (a) combi boiler whose data source database or (b)
|
1550
|
+
instantaneous combi boiler or (c) combi boiler from SAP table or (d)
|
1551
|
+
instantaneous water heater.
|
1552
|
+
</xs:documentation>
|
1553
|
+
</xs:annotation>
|
1554
|
+
</xs:element>
|
1555
|
+
<xs:element name="Hot-Water-Store-Insulation-Type"
|
1556
|
+
type="HotWaterStoreInsulationTypeCode" minOccurs="0">
|
1557
|
+
<xs:annotation>
|
1558
|
+
<xs:documentation>Hot water store insulation; only if there is a hot
|
1559
|
+
water store and if loss from SAP table. Not applicable if (a) combi
|
1560
|
+
boiler whose data source database or (b) instantaneous combi boiler
|
1561
|
+
or (c) combi boiler from SAP table or (d) instantaneous water
|
1562
|
+
heater.
|
1563
|
+
</xs:documentation>
|
1564
|
+
</xs:annotation>
|
1565
|
+
</xs:element>
|
1566
|
+
<xs:element name="Hot-Water-Store-Insulation-Thickness" type="Measurement"
|
1567
|
+
minOccurs="0">
|
1568
|
+
<xs:annotation>
|
1569
|
+
<xs:documentation>Hot water store insulation thickness in mm; only if
|
1570
|
+
there is a hot water store and if loss from SAP table. Not
|
1571
|
+
applicable if (a) combi boiler whose data source database or (b)
|
1572
|
+
instantaneous combi boiler or (c) combi boiler from SAP table or (d)
|
1573
|
+
instantaneous water heater.
|
1574
|
+
</xs:documentation>
|
1575
|
+
</xs:annotation>
|
1576
|
+
</xs:element>
|
1577
|
+
<xs:element name="Is-Thermal-Store-Near-Boiler" type="xs:boolean"
|
1578
|
+
default="false" minOccurs="0">
|
1579
|
+
<xs:annotation>
|
1580
|
+
<xs:documentation>Thermal store connected to boiler by no more than
|
1581
|
+
1.5 m of insulated pipework? Only if thermal store. Not applicable
|
1582
|
+
if combi boiler or instantaneous water heater.
|
1583
|
+
</xs:documentation>
|
1584
|
+
</xs:annotation>
|
1585
|
+
</xs:element>
|
1586
|
+
<xs:element name="Is-Thermal-Store-Or-CPSU-In-Airing-Cupboard"
|
1587
|
+
type="xs:boolean" default="false" minOccurs="0">
|
1588
|
+
<xs:annotation>
|
1589
|
+
<xs:documentation>Thermal store or CPSU in airing cupboard? Only if
|
1590
|
+
(a) boiler with integrated or hot-water-only thermal store, or (b)
|
1591
|
+
main heating is CPSU.
|
1592
|
+
</xs:documentation>
|
1593
|
+
</xs:annotation>
|
1594
|
+
</xs:element>
|
1595
|
+
<xs:element name="Has-Cylinder-Thermostat" type="xs:boolean"
|
1596
|
+
default="false" minOccurs="0">
|
1597
|
+
<xs:annotation>
|
1598
|
+
<xs:documentation>Hot water cylinder thermostat? Not applicable if
|
1599
|
+
combi boiler or instantaneous water heater.
|
1600
|
+
</xs:documentation>
|
1601
|
+
</xs:annotation>
|
1602
|
+
</xs:element>
|
1603
|
+
<xs:element name="Is-Cylinder-In-Heated-Space" type="xs:boolean"
|
1604
|
+
default="false" minOccurs="0">
|
1605
|
+
<xs:annotation>
|
1606
|
+
<xs:documentation>Hot water cylinder in heated space? Not applicable
|
1607
|
+
if combi boiler or instantaneous water heater.
|
1608
|
+
</xs:documentation>
|
1609
|
+
</xs:annotation>
|
1610
|
+
</xs:element>
|
1611
|
+
<xs:element name="Is-Hot-Water-Separately-Timed" type="xs:boolean"
|
1612
|
+
default="false" minOccurs="0">
|
1613
|
+
<xs:annotation>
|
1614
|
+
<xs:documentation>Hot water separately timed? Not applicable if combi
|
1615
|
+
boiler or instantaneous water heater.
|
1616
|
+
</xs:documentation>
|
1617
|
+
</xs:annotation>
|
1618
|
+
</xs:element>
|
1619
|
+
<xs:element name="Hot-Water-Controls-Manufacturer" type="xs:string"
|
1620
|
+
minOccurs="0"/>
|
1621
|
+
<xs:element name="Hot-Water-Controls-Model" type="xs:string"
|
1622
|
+
minOccurs="0"/>
|
1623
|
+
<xs:element name="SAP-Community-Heating-Systems"
|
1624
|
+
type="SAP-Community-Heating-Systems" minOccurs="0"/>
|
1625
|
+
<xs:element name="Main-Heating-Details" type="Main-Heating-Details"/>
|
1626
|
+
<xs:element name="SAP-Heating-Design-Water-Use" type="DesignWaterUseCode"
|
1627
|
+
minOccurs="0"/>
|
1628
|
+
<xs:element name="Main-Heating-Systems-Interaction"
|
1629
|
+
type="MainHeatingSystemsInteraction" minOccurs="0"/>
|
1630
|
+
<xs:element name="Secondary-Heating-Declared-Values"
|
1631
|
+
type="Heating-Declared-Values" minOccurs="0">
|
1632
|
+
<xs:annotation>
|
1633
|
+
<xs:documentation>Use when manufacturer’s declared values.
|
1634
|
+
</xs:documentation>
|
1635
|
+
</xs:annotation>
|
1636
|
+
</xs:element>
|
1637
|
+
<xs:element name="Primary-Pipework-Insulation"
|
1638
|
+
type="PipeworkInsulationCode" minOccurs="0">
|
1639
|
+
<xs:annotation>
|
1640
|
+
<xs:documentation>Not applicable to combi boiler or instantaneous
|
1641
|
+
water heater.
|
1642
|
+
</xs:documentation>
|
1643
|
+
</xs:annotation>
|
1644
|
+
</xs:element>
|
1645
|
+
<xs:element name="Solar-Heating-Details" type="Solar-Heating-Details"
|
1646
|
+
minOccurs="0"/>
|
1647
|
+
<xs:element name="Instantaneous-WWHRS" type="Instantaneous-WWHRS"
|
1648
|
+
minOccurs="0">
|
1649
|
+
<xs:annotation>
|
1650
|
+
<xs:documentation>Waste Water Heat Recovery System.</xs:documentation>
|
1651
|
+
</xs:annotation>
|
1652
|
+
</xs:element>
|
1653
|
+
<xs:element name="Storage-WWHRS" type="Storage-WWHRS" minOccurs="0"/>
|
1654
|
+
<xs:element name="Shower-Outlets" type="Shower-Outlets" minOccurs="0"/>
|
1655
|
+
<xs:element name="Number-Baths" type="Count" minOccurs="0"/>
|
1656
|
+
<xs:element name="Number-Baths-WWHRS" type="Count" minOccurs="0"/>
|
1657
|
+
</xs:all>
|
1658
|
+
</xs:complexType>
|
1659
|
+
<xs:element name="SAP-Special-Feature" type="SAP-Special-Feature"/>
|
1660
|
+
<xs:complexType name="SAP-Special-Feature">
|
1661
|
+
<xs:sequence>
|
1662
|
+
<xs:element name="Description" type="xs:string"/>
|
1663
|
+
<xs:choice>
|
1664
|
+
<xs:element name="Energy-Feature" type="Energy-Feature"/>
|
1665
|
+
<xs:element name="Emissions-Feature" type="Emission-Feature"/>
|
1666
|
+
</xs:choice>
|
1667
|
+
</xs:sequence>
|
1668
|
+
</xs:complexType>
|
1669
|
+
<xs:element name="SAP-Special-Features" type="SAP-Special-Features"/>
|
1670
|
+
<xs:complexType name="SAP-Special-Features">
|
1671
|
+
<xs:sequence>
|
1672
|
+
<xs:element name="SAP-Special-Feature" type="SAP-Special-Feature"
|
1673
|
+
maxOccurs="unbounded"/>
|
1674
|
+
</xs:sequence>
|
1675
|
+
</xs:complexType>
|
1676
|
+
<xs:element name="SAP-Cooling" type="SAP-Cooling"/>
|
1677
|
+
<xs:complexType name="SAP-Cooling">
|
1678
|
+
<xs:all>
|
1679
|
+
<xs:element name="Cooled-Area" type="xs:decimal" minOccurs="0"/>
|
1680
|
+
<xs:element name="Cooling-System-Data-Source" type="SAP-DataSourceCode"
|
1681
|
+
minOccurs="0"/>
|
1682
|
+
<xs:element name="Cooling-System-Class" type="SAP-CoolingSystemClassCode"
|
1683
|
+
minOccurs="0">
|
1684
|
+
<xs:annotation>
|
1685
|
+
<xs:documentation>Data set includes either class or SEER, not both.
|
1686
|
+
</xs:documentation>
|
1687
|
+
</xs:annotation>
|
1688
|
+
</xs:element>
|
1689
|
+
<xs:element name="System-Energy-Efficiency-Ratio" type="xs:decimal"
|
1690
|
+
minOccurs="0">
|
1691
|
+
<xs:annotation>
|
1692
|
+
<xs:documentation>SEER.</xs:documentation>
|
1693
|
+
</xs:annotation>
|
1694
|
+
</xs:element>
|
1695
|
+
</xs:all>
|
1696
|
+
</xs:complexType>
|
1697
|
+
<xs:element name="Main-Heating" type="Main-Heating"/>
|
1698
|
+
<xs:complexType name="Main-Heating">
|
1699
|
+
<xs:all>
|
1700
|
+
<xs:element name="Main-Heating-Number">
|
1701
|
+
<xs:annotation>
|
1702
|
+
<xs:documentation>Identifies the main heating as system 1 or system 2.
|
1703
|
+
System 1 must always be present, system 2 is included only when
|
1704
|
+
there are two systems.
|
1705
|
+
</xs:documentation>
|
1706
|
+
</xs:annotation>
|
1707
|
+
<xs:simpleType>
|
1708
|
+
<xs:restriction base="xs:integer">
|
1709
|
+
<xs:minInclusive value="1"/>
|
1710
|
+
<xs:maxInclusive value="2"/>
|
1711
|
+
</xs:restriction>
|
1712
|
+
</xs:simpleType>
|
1713
|
+
</xs:element>
|
1714
|
+
<xs:element name="Main-Heating-Category"
|
1715
|
+
type="SAP-MainHeatingCategoryCode">
|
1716
|
+
<xs:annotation>
|
1717
|
+
<xs:documentation>Category of heating system for the main heating
|
1718
|
+
system.
|
1719
|
+
</xs:documentation>
|
1720
|
+
</xs:annotation>
|
1721
|
+
</xs:element>
|
1722
|
+
<xs:element name="Main-Heating-Data-Source" type="SAP-DataSourceCode">
|
1723
|
+
<xs:annotation>
|
1724
|
+
<xs:documentation>Source of main heating system data.
|
1725
|
+
</xs:documentation>
|
1726
|
+
</xs:annotation>
|
1727
|
+
</xs:element>
|
1728
|
+
<xs:element name="Main-Heating-Index-Number" type="xs:positiveInteger"
|
1729
|
+
minOccurs="0">
|
1730
|
+
<xs:annotation>
|
1731
|
+
<xs:documentation>The ID of the heating system from the product
|
1732
|
+
database, if system from database.
|
1733
|
+
</xs:documentation>
|
1734
|
+
</xs:annotation>
|
1735
|
+
</xs:element>
|
1736
|
+
<xs:element name="Main-Heating-Manufacturer" type="xs:string"
|
1737
|
+
minOccurs="0"/>
|
1738
|
+
<xs:element name="Main-Heating-Model" type="xs:string" minOccurs="0"/>
|
1739
|
+
<xs:element name="Main-Heating-Commissioning-Certificate" type="xs:string"
|
1740
|
+
minOccurs="0"/>
|
1741
|
+
<xs:element name="Main-Heating-Installation-Engineer" type="xs:string"
|
1742
|
+
minOccurs="0">
|
1743
|
+
<xs:annotation>
|
1744
|
+
<xs:documentation>Main heating installation engineer registration
|
1745
|
+
reference.
|
1746
|
+
</xs:documentation>
|
1747
|
+
</xs:annotation>
|
1748
|
+
</xs:element>
|
1749
|
+
<xs:element name="Is-Condensing-Boiler" type="xs:boolean" default="false"
|
1750
|
+
minOccurs="0">
|
1751
|
+
<xs:annotation>
|
1752
|
+
<xs:documentation>Is the boiler a condensing boiler? If boiler
|
1753
|
+
efficiency is manufacturer declaration.
|
1754
|
+
</xs:documentation>
|
1755
|
+
</xs:annotation>
|
1756
|
+
</xs:element>
|
1757
|
+
<xs:element name="Condensing-Boiler-Heat-Distribution"
|
1758
|
+
type="xs:positiveInteger" default="80" minOccurs="0">
|
1759
|
+
<xs:annotation>
|
1760
|
+
<xs:documentation>The temperature distribution of the condensing
|
1761
|
+
boiler.
|
1762
|
+
</xs:documentation>
|
1763
|
+
</xs:annotation>
|
1764
|
+
</xs:element>
|
1765
|
+
<xs:element name="Heat-Pump-Heat-Distribution" type="xs:positiveInteger"
|
1766
|
+
default="80" minOccurs="0">
|
1767
|
+
<xs:annotation>
|
1768
|
+
<xs:documentation>The temperature distribution of the heat pump, for
|
1769
|
+
wet systems only.
|
1770
|
+
</xs:documentation>
|
1771
|
+
</xs:annotation>
|
1772
|
+
</xs:element>
|
1773
|
+
<xs:element name="Gas-Or-Oil-Boiler-Type"
|
1774
|
+
type="SAP-GasOrOilBoilerTypeCode" minOccurs="0">
|
1775
|
+
<xs:annotation>
|
1776
|
+
<xs:documentation>Boiler type; if boiler efficiency is manufacturer
|
1777
|
+
declaration and fuel is gas or oil.
|
1778
|
+
</xs:documentation>
|
1779
|
+
</xs:annotation>
|
1780
|
+
</xs:element>
|
1781
|
+
<xs:element name="Combi-Boiler-Type" type="SAP-CombiBoilerTypeCode"
|
1782
|
+
minOccurs="0">
|
1783
|
+
<xs:annotation>
|
1784
|
+
<xs:documentation>Combi boiler type; if it is a combi boiler and
|
1785
|
+
boiler efficiency is manufacturer declaration.
|
1786
|
+
</xs:documentation>
|
1787
|
+
</xs:annotation>
|
1788
|
+
</xs:element>
|
1789
|
+
<xs:element name="Case-Heat-Emission" type="Measurement" minOccurs="0">
|
1790
|
+
<xs:annotation>
|
1791
|
+
<xs:documentation>Case heat emission at full load in kW; if it is a
|
1792
|
+
range cooker boiler and boiler efficiency is manufacturer
|
1793
|
+
declaration.
|
1794
|
+
</xs:documentation>
|
1795
|
+
</xs:annotation>
|
1796
|
+
</xs:element>
|
1797
|
+
<xs:element name="Heat-Transfer-To-Water" type="Measurement"
|
1798
|
+
minOccurs="0">
|
1799
|
+
<xs:annotation>
|
1800
|
+
<xs:documentation>Heat transfer to water at full load in kW; if it is
|
1801
|
+
a range cooker boiler and boiler efficiency is manufacturer
|
1802
|
+
declaration.
|
1803
|
+
</xs:documentation>
|
1804
|
+
</xs:annotation>
|
1805
|
+
</xs:element>
|
1806
|
+
<xs:element name="Solid-Fuel-Boiler-Type" type="SAP-SolidFuelBoilerType"
|
1807
|
+
minOccurs="0">
|
1808
|
+
<xs:annotation>
|
1809
|
+
<xs:documentation>Boiler type; if boiler efficiency is manufacturer
|
1810
|
+
declaration and fuel is solid.
|
1811
|
+
</xs:documentation>
|
1812
|
+
</xs:annotation>
|
1813
|
+
</xs:element>
|
1814
|
+
<xs:element name="Main-Heating-Code" type="SAP-SpaceHeatingCode"
|
1815
|
+
minOccurs="0">
|
1816
|
+
<xs:annotation>
|
1817
|
+
<xs:documentation>Main heating code; when heating data source is SAP
|
1818
|
+
table.
|
1819
|
+
</xs:documentation>
|
1820
|
+
</xs:annotation>
|
1821
|
+
</xs:element>
|
1822
|
+
<xs:element name="Main-Fuel-Type" type="HeatingFuelTypeCode"
|
1823
|
+
minOccurs="0">
|
1824
|
+
<xs:annotation>
|
1825
|
+
<xs:documentation>The type of fuel used to power the central heating
|
1826
|
+
e.g. Gas, Electricity; not used if main heating system is community
|
1827
|
+
heating scheme.
|
1828
|
+
</xs:documentation>
|
1829
|
+
</xs:annotation>
|
1830
|
+
</xs:element>
|
1831
|
+
<xs:element name="PCDF-Fuel-Index" type="xs:positiveInteger"
|
1832
|
+
minOccurs="0">
|
1833
|
+
<xs:annotation>
|
1834
|
+
<xs:documentation>PCDF index number of the fuel type, only if
|
1835
|
+
Main-Fuel-Type is 99 (fuel from database).
|
1836
|
+
</xs:documentation>
|
1837
|
+
</xs:annotation>
|
1838
|
+
</xs:element>
|
1839
|
+
<xs:element name="Main-Heating-Control" type="SAP-HeatingControlCode">
|
1840
|
+
<xs:annotation>
|
1841
|
+
<xs:documentation>Type of Main Control for the Heating System.
|
1842
|
+
</xs:documentation>
|
1843
|
+
</xs:annotation>
|
1844
|
+
</xs:element>
|
1845
|
+
<xs:element name="Heat-Emitter-Type" type="HeatEmitterCode" minOccurs="0">
|
1846
|
+
<xs:annotation>
|
1847
|
+
<xs:documentation>Identifies the means by which the central heating
|
1848
|
+
system (if present) emits heat; only when wet system (radiators or
|
1849
|
+
underfloor).
|
1850
|
+
</xs:documentation>
|
1851
|
+
</xs:annotation>
|
1852
|
+
</xs:element>
|
1853
|
+
<xs:element name="Underfloor-Heat-Emitter-Type"
|
1854
|
+
type="UnderfloorHeatEmitterCode" minOccurs="0">
|
1855
|
+
<xs:annotation>
|
1856
|
+
<xs:documentation>Means by which an underfloor heating system (if
|
1857
|
+
present) emits heat; only when wet system (underfloor).
|
1858
|
+
</xs:documentation>
|
1859
|
+
</xs:annotation>
|
1860
|
+
</xs:element>
|
1861
|
+
<xs:element name="Main-Heating-Flue-Type" type="FlueTypeCode"
|
1862
|
+
minOccurs="0">
|
1863
|
+
<xs:annotation>
|
1864
|
+
<xs:documentation>The type of main heating flue; only if flued
|
1865
|
+
appliance.
|
1866
|
+
</xs:documentation>
|
1867
|
+
</xs:annotation>
|
1868
|
+
</xs:element>
|
1869
|
+
<xs:element name="Is-Flue-Fan-Present" type="xs:boolean" default="false"
|
1870
|
+
minOccurs="0">
|
1871
|
+
<xs:annotation>
|
1872
|
+
<xs:documentation>Indicates whether the heating system contains a fan
|
1873
|
+
flue; only if boiler.
|
1874
|
+
</xs:documentation>
|
1875
|
+
</xs:annotation>
|
1876
|
+
</xs:element>
|
1877
|
+
<xs:element name="Is-Central-Heating-Pump-In-Heated-Space"
|
1878
|
+
type="xs:boolean" default="false" minOccurs="0">
|
1879
|
+
<xs:annotation>
|
1880
|
+
<xs:documentation>Central heating pump in heated space? Only when wet
|
1881
|
+
system (radiators or underfloor).
|
1882
|
+
</xs:documentation>
|
1883
|
+
</xs:annotation>
|
1884
|
+
</xs:element>
|
1885
|
+
<xs:element name="Is-Oil-Pump-In-Heated-Space" type="xs:boolean"
|
1886
|
+
default="false" minOccurs="0">
|
1887
|
+
<xs:annotation>
|
1888
|
+
<xs:documentation>Oil pump in heated space? Only if oil boiler.
|
1889
|
+
</xs:documentation>
|
1890
|
+
</xs:annotation>
|
1891
|
+
</xs:element>
|
1892
|
+
<xs:element name="Is-Interlocked-System" type="xs:boolean" default="false"
|
1893
|
+
minOccurs="0">
|
1894
|
+
<xs:annotation>
|
1895
|
+
<xs:documentation>Interlocked system? Only when wet system (radiators
|
1896
|
+
or underfloor).
|
1897
|
+
</xs:documentation>
|
1898
|
+
</xs:annotation>
|
1899
|
+
</xs:element>
|
1900
|
+
<xs:element name="Has-Separate-Delayed-Start" type="xs:boolean"
|
1901
|
+
default="false" minOccurs="0">
|
1902
|
+
<xs:annotation>
|
1903
|
+
<xs:documentation>True if there is a delayed start control separate
|
1904
|
+
from a controller in the database.
|
1905
|
+
</xs:documentation>
|
1906
|
+
</xs:annotation>
|
1907
|
+
</xs:element>
|
1908
|
+
<xs:element name="Boiler-Fuel-Feed" type="SAP-BoilerFuelFeedCode"
|
1909
|
+
minOccurs="0">
|
1910
|
+
<xs:annotation>
|
1911
|
+
<xs:documentation>The type of boiler fuel feed; only if solid fuel
|
1912
|
+
boiler with manufacturer declaration.
|
1913
|
+
</xs:documentation>
|
1914
|
+
</xs:annotation>
|
1915
|
+
</xs:element>
|
1916
|
+
<xs:element name="Is-Main-Heating-HETAS-Approved" type="xs:boolean"
|
1917
|
+
default="false" minOccurs="0">
|
1918
|
+
<xs:annotation>
|
1919
|
+
<xs:documentation>Main heating appliance is HETAS approved? Only if
|
1920
|
+
solid fuel.
|
1921
|
+
</xs:documentation>
|
1922
|
+
</xs:annotation>
|
1923
|
+
</xs:element>
|
1924
|
+
<xs:element name="Electric-CPSU-Operating-Temperature" type="Measurement"
|
1925
|
+
minOccurs="0">
|
1926
|
+
<xs:annotation>
|
1927
|
+
<xs:documentation>Electric CPSU operating temperature in Celcius; only
|
1928
|
+
if main heating is electric CPSU.
|
1929
|
+
</xs:documentation>
|
1930
|
+
</xs:annotation>
|
1931
|
+
</xs:element>
|
1932
|
+
<xs:element name="Main-Heating-Fraction" type="xs:decimal">
|
1933
|
+
<xs:annotation>
|
1934
|
+
<xs:documentation>Fraction of main heating provided by this system, is
|
1935
|
+
1 if only one main system.
|
1936
|
+
</xs:documentation>
|
1937
|
+
</xs:annotation>
|
1938
|
+
</xs:element>
|
1939
|
+
<xs:element name="Burner-Control" type="SAP-BurnerControlCode"
|
1940
|
+
minOccurs="0"/>
|
1941
|
+
<xs:element name="Efficiency-Type" type="SAP-EfficiencyTypeCode"
|
1942
|
+
minOccurs="0"/>
|
1943
|
+
<xs:element name="Main-Heating-Efficiency-Winter" type="xs:decimal"
|
1944
|
+
minOccurs="0">
|
1945
|
+
<xs:annotation>
|
1946
|
+
<xs:documentation>To be used if main heating data is manufacturer
|
1947
|
+
declaration and Efficiency-Type is winter and summer.
|
1948
|
+
</xs:documentation>
|
1949
|
+
</xs:annotation>
|
1950
|
+
</xs:element>
|
1951
|
+
<xs:element name="Main-Heating-Efficiency-Summer" type="xs:decimal"
|
1952
|
+
minOccurs="0">
|
1953
|
+
<xs:annotation>
|
1954
|
+
<xs:documentation>To be used if main heating data is manufacturer
|
1955
|
+
declaration and Efficiency-Type is winter and summer.
|
1956
|
+
</xs:documentation>
|
1957
|
+
</xs:annotation>
|
1958
|
+
</xs:element>
|
1959
|
+
<xs:element name="Main-Heating-Efficiency" type="xs:decimal"
|
1960
|
+
minOccurs="0">
|
1961
|
+
<xs:annotation>
|
1962
|
+
<xs:documentation>If main heating is any system other than heat
|
1963
|
+
network.
|
1964
|
+
</xs:documentation>
|
1965
|
+
</xs:annotation>
|
1966
|
+
</xs:element>
|
1967
|
+
<xs:element name="Main-Heating-System-Type" type="xs:string"
|
1968
|
+
minOccurs="0">
|
1969
|
+
<xs:annotation>
|
1970
|
+
<xs:documentation>Main heating system type or technology, for e.g.,
|
1971
|
+
combi boiler, air source heat pump, etc.
|
1972
|
+
</xs:documentation>
|
1973
|
+
</xs:annotation>
|
1974
|
+
</xs:element>
|
1975
|
+
<xs:element name="Has-FGHRS" type="xs:boolean" default="false"
|
1976
|
+
minOccurs="0">
|
1977
|
+
<xs:annotation>
|
1978
|
+
<xs:documentation>Flue Gas Heat Recovery System.</xs:documentation>
|
1979
|
+
</xs:annotation>
|
1980
|
+
</xs:element>
|
1981
|
+
<xs:element name="FGHRS-Index-Number" type="xs:nonNegativeInteger"
|
1982
|
+
minOccurs="0">
|
1983
|
+
<xs:annotation>
|
1984
|
+
<xs:documentation>FGHRS index number; only if FGHRS.
|
1985
|
+
</xs:documentation>
|
1986
|
+
</xs:annotation>
|
1987
|
+
</xs:element>
|
1988
|
+
<xs:element name="FGHRS-Energy-Source" type="SAP-Energy-Source"
|
1989
|
+
minOccurs="0"/>
|
1990
|
+
<xs:element name="Main-Heating-Declared-Values"
|
1991
|
+
type="Heating-Declared-Values" minOccurs="0"/>
|
1992
|
+
<xs:element name="Storage-Heaters" type="Storage-Heaters" minOccurs="0"/>
|
1993
|
+
<xs:element name="Emitter-Temperature" type="EmitterTemperatureCode"
|
1994
|
+
minOccurs="0">
|
1995
|
+
<xs:annotation>
|
1996
|
+
<xs:documentation>Gas and oil boilers and heat pump from database: 0,
|
1997
|
+
1, 3 or 4
|
1998
|
+
Other heat pump 0, 2 or 4.
|
1999
|
+
Other systems NA.
|
2000
|
+
</xs:documentation>
|
2001
|
+
</xs:annotation>
|
2002
|
+
</xs:element>
|
2003
|
+
<xs:element name="MCS-Installed-Heat-Pump" type="xs:boolean"
|
2004
|
+
minOccurs="0">
|
2005
|
+
<xs:annotation>
|
2006
|
+
<xs:documentation>Whether heat pump was installed under the
|
2007
|
+
Microgeneration Certification Scheme.
|
2008
|
+
</xs:documentation>
|
2009
|
+
</xs:annotation>
|
2010
|
+
</xs:element>
|
2011
|
+
<xs:element name="Central-Heating-Pump-Age" type="PumpAge" minOccurs="0">
|
2012
|
+
<xs:annotation>
|
2013
|
+
<xs:documentation>Included for systems with a central heating pump,
|
2014
|
+
i.e. wet system.
|
2015
|
+
</xs:documentation>
|
2016
|
+
</xs:annotation>
|
2017
|
+
</xs:element>
|
2018
|
+
<xs:element name="Control-Index-Number" type="xs:positiveInteger"
|
2019
|
+
minOccurs="0">
|
2020
|
+
<xs:annotation>
|
2021
|
+
<xs:documentation>The ID of the controller from the product
|
2022
|
+
database.
|
2023
|
+
</xs:documentation>
|
2024
|
+
</xs:annotation>
|
2025
|
+
</xs:element>
|
2026
|
+
<xs:element name="Heating-Controller-Function" type="xs:string"
|
2027
|
+
minOccurs="0"/>
|
2028
|
+
<xs:element name="Heating-Controller-Ecodesign-Class" type="xs:string"
|
2029
|
+
minOccurs="0"/>
|
2030
|
+
<xs:element name="Heating-Controller-Manufacturer" type="xs:string"
|
2031
|
+
minOccurs="0"/>
|
2032
|
+
<xs:element name="Heating-Controller-Model" type="xs:string"
|
2033
|
+
minOccurs="0"/>
|
2034
|
+
</xs:all>
|
2035
|
+
</xs:complexType>
|
2036
|
+
<xs:element name="Main-Heating-Details" type="Main-Heating-Details"/>
|
2037
|
+
<xs:complexType name="Main-Heating-Details">
|
2038
|
+
<xs:sequence>
|
2039
|
+
<xs:element name="Main-Heating" type="Main-Heating" maxOccurs="2"/>
|
2040
|
+
</xs:sequence>
|
2041
|
+
</xs:complexType>
|
2042
|
+
<xs:element name="Community-Heat-Source" type="Community-Heat-Source"/>
|
2043
|
+
<xs:complexType name="Community-Heat-Source">
|
2044
|
+
<xs:all>
|
2045
|
+
<xs:element name="Heat-Source-Type" type="SAP-HeatSourceTypeCode"/>
|
2046
|
+
<xs:element name="Heat-Fraction" type="xs:decimal">
|
2047
|
+
<xs:annotation>
|
2048
|
+
<xs:documentation>Fraction of heat for the system provided by this
|
2049
|
+
heat source.
|
2050
|
+
</xs:documentation>
|
2051
|
+
</xs:annotation>
|
2052
|
+
</xs:element>
|
2053
|
+
<xs:element name="Fuel-Type" type="HeatingFuelTypeCode"/>
|
2054
|
+
<xs:element name="PCDF-Fuel-Index" type="xs:positiveInteger"
|
2055
|
+
minOccurs="0"/>
|
2056
|
+
<xs:element name="Heat-Efficiency" type="xs:decimal">
|
2057
|
+
<xs:annotation>
|
2058
|
+
<xs:documentation>Heat efficiency in %.</xs:documentation>
|
2059
|
+
</xs:annotation>
|
2060
|
+
</xs:element>
|
2061
|
+
<xs:element name="Power-Efficiency" type="xs:decimal" minOccurs="0">
|
2062
|
+
<xs:annotation>
|
2063
|
+
<xs:documentation>Power efficiency in %. Include when heat source is
|
2064
|
+
CHP.
|
2065
|
+
</xs:documentation>
|
2066
|
+
</xs:annotation>
|
2067
|
+
</xs:element>
|
2068
|
+
<xs:element name="Description" type="xs:string" minOccurs="0"/>
|
2069
|
+
<xs:element name="CHP-Electricity-Generation"
|
2070
|
+
type="SAP-CHPElectricityGenerationCode" minOccurs="0">
|
2071
|
+
<xs:annotation>
|
2072
|
+
<xs:documentation>CHP Electricity generation options from table 12f.
|
2073
|
+
</xs:documentation>
|
2074
|
+
</xs:annotation>
|
2075
|
+
</xs:element>
|
2076
|
+
</xs:all>
|
2077
|
+
</xs:complexType>
|
2078
|
+
<xs:element name="Community-Heat-Sources" type="Community-Heat-Sources"/>
|
2079
|
+
<xs:complexType name="Community-Heat-Sources">
|
2080
|
+
<xs:sequence>
|
2081
|
+
<xs:element name="Community-Heat-Source" type="Community-Heat-Source"
|
2082
|
+
maxOccurs="5"/>
|
2083
|
+
</xs:sequence>
|
2084
|
+
</xs:complexType>
|
2085
|
+
<xs:element name="Air-Change-Rates" type="Air-Change-Rates"/>
|
2086
|
+
<xs:complexType name="Air-Change-Rates">
|
2087
|
+
<xs:sequence>
|
2088
|
+
<xs:element name="Air-Change-Rate" type="Air-Change-Rate" minOccurs="12"
|
2089
|
+
maxOccurs="12"/>
|
2090
|
+
</xs:sequence>
|
2091
|
+
</xs:complexType>
|
2092
|
+
<xs:element name="Air-Change-Rate" type="Air-Change-Rate"/>
|
2093
|
+
<xs:complexType name="Air-Change-Rate">
|
2094
|
+
<xs:all>
|
2095
|
+
<xs:element name="Air-Change-Rate-Month" type="AirChangeRateMonth"/>
|
2096
|
+
<xs:element name="Air-Change-Rate-Value" type="xs:decimal">
|
2097
|
+
<xs:annotation>
|
2098
|
+
<xs:documentation>Air change rate in month.</xs:documentation>
|
2099
|
+
</xs:annotation>
|
2100
|
+
</xs:element>
|
2101
|
+
</xs:all>
|
2102
|
+
</xs:complexType>
|
2103
|
+
<xs:element name="Hydro-Electric-Generation-Months"
|
2104
|
+
type="Hydro-Electric-Generation-Months"/>
|
2105
|
+
<xs:complexType name="Hydro-Electric-Generation-Months">
|
2106
|
+
<xs:sequence>
|
2107
|
+
<xs:element name="Hydro-Electric-Generation-Month"
|
2108
|
+
type="Hydro-Electric-Generation-Month" minOccurs="12"
|
2109
|
+
maxOccurs="12"/>
|
2110
|
+
</xs:sequence>
|
2111
|
+
</xs:complexType>
|
2112
|
+
<xs:element name="Hydro-Electric-Generation-Month"
|
2113
|
+
type="Hydro-Electric-Generation-Month"/>
|
2114
|
+
<xs:complexType name="Hydro-Electric-Generation-Month">
|
2115
|
+
<xs:all>
|
2116
|
+
<xs:element name="Hydro-Month" type="HydroElecMonth"/>
|
2117
|
+
<xs:element name="Hydro-Value" type="xs:decimal">
|
2118
|
+
<xs:annotation>
|
2119
|
+
<xs:documentation>Hydro electricity in kWh in month.
|
2120
|
+
</xs:documentation>
|
2121
|
+
</xs:annotation>
|
2122
|
+
</xs:element>
|
2123
|
+
</xs:all>
|
2124
|
+
</xs:complexType>
|
2125
|
+
<xs:element name="PV-Array" type="PV-Array"/>
|
2126
|
+
<xs:complexType name="PV-Array">
|
2127
|
+
<xs:all>
|
2128
|
+
<xs:element name="Peak-Power" type="Measurement">
|
2129
|
+
<xs:annotation>
|
2130
|
+
<xs:documentation>Peak kW of photovoltaics (PVs) (kWp); 0.0 if none.
|
2131
|
+
</xs:documentation>
|
2132
|
+
</xs:annotation>
|
2133
|
+
</xs:element>
|
2134
|
+
<xs:element name="Orientation" type="SAP-CompassDirectionCode"
|
2135
|
+
minOccurs="0">
|
2136
|
+
<xs:annotation>
|
2137
|
+
<xs:documentation>PV orientation; only if peak kWp > 0.
|
2138
|
+
</xs:documentation>
|
2139
|
+
</xs:annotation>
|
2140
|
+
</xs:element>
|
2141
|
+
<xs:element name="Pitch" type="SAP-VerticalPitchCode" minOccurs="0">
|
2142
|
+
<xs:annotation>
|
2143
|
+
<xs:documentation>PV pitch; only if peak kWp > 0.
|
2144
|
+
</xs:documentation>
|
2145
|
+
</xs:annotation>
|
2146
|
+
</xs:element>
|
2147
|
+
<xs:element name="Overshading" type="SAP-SolarCollectorOvershadingCode"
|
2148
|
+
minOccurs="0">
|
2149
|
+
<xs:annotation>
|
2150
|
+
<xs:documentation>PV overshading; only if peak kWp > 0 and no MCS
|
2151
|
+
certificate.
|
2152
|
+
</xs:documentation>
|
2153
|
+
</xs:annotation>
|
2154
|
+
</xs:element>
|
2155
|
+
<xs:element name="MCS-Certificate" type="xs:boolean" default="false"
|
2156
|
+
minOccurs="0">
|
2157
|
+
<xs:annotation>
|
2158
|
+
<xs:documentation>Does the installation have a MCS certificate.
|
2159
|
+
</xs:documentation>
|
2160
|
+
</xs:annotation>
|
2161
|
+
</xs:element>
|
2162
|
+
<xs:element name="MCS-Certificate-Reference" type="xs:string"
|
2163
|
+
minOccurs="0">
|
2164
|
+
<xs:annotation>
|
2165
|
+
<xs:documentation>MCS certificate reference number</xs:documentation>
|
2166
|
+
</xs:annotation>
|
2167
|
+
</xs:element>
|
2168
|
+
<xs:element name="PV-Panel-Manufacturer-Name" type="xs:string"
|
2169
|
+
minOccurs="0">
|
2170
|
+
<xs:annotation>
|
2171
|
+
<xs:documentation>Manufacturer of PV panels</xs:documentation>
|
2172
|
+
</xs:annotation>
|
2173
|
+
</xs:element>
|
2174
|
+
<xs:element name="Overshading-MCS" type="xs:decimal" minOccurs="0">
|
2175
|
+
<xs:annotation>
|
2176
|
+
<xs:documentation>Overshading factor calculated according to MCS.
|
2177
|
+
</xs:documentation>
|
2178
|
+
</xs:annotation>
|
2179
|
+
</xs:element>
|
2180
|
+
</xs:all>
|
2181
|
+
</xs:complexType>
|
2182
|
+
<xs:element name="PV-Arrays" type="PV-Arrays"/>
|
2183
|
+
<xs:complexType name="PV-Arrays">
|
2184
|
+
<xs:sequence>
|
2185
|
+
<xs:element name="PV-Array" type="PV-Array" maxOccurs="3"/>
|
2186
|
+
</xs:sequence>
|
2187
|
+
</xs:complexType>
|
2188
|
+
<xs:element name="Wind-Turbine" type="Wind-Turbine"/>
|
2189
|
+
<xs:complexType name="Wind-Turbine">
|
2190
|
+
<xs:all>
|
2191
|
+
<xs:element name="Wind-Turbine-Manufacturer-Name" type="xs:string"
|
2192
|
+
minOccurs="0">
|
2193
|
+
<xs:annotation>
|
2194
|
+
<xs:documentation>Wind turbine manufacturer name.</xs:documentation>
|
2195
|
+
</xs:annotation>
|
2196
|
+
</xs:element>
|
2197
|
+
<xs:element name="Wind-Turbine-Certificate" type="xs:string"
|
2198
|
+
minOccurs="0">
|
2199
|
+
<xs:annotation>
|
2200
|
+
<xs:documentation>Wind turbine certificate.</xs:documentation>
|
2201
|
+
</xs:annotation>
|
2202
|
+
</xs:element>
|
2203
|
+
<xs:element name="Wind-Turbine-Rotor-Diameter" type="Measurement">
|
2204
|
+
<xs:annotation>
|
2205
|
+
<xs:documentation>Wind turbine rotor diameter in metres; only if wind
|
2206
|
+
turbine.
|
2207
|
+
</xs:documentation>
|
2208
|
+
</xs:annotation>
|
2209
|
+
</xs:element>
|
2210
|
+
<xs:element name="Wind-Turbine-Hub-Height" type="Measurement">
|
2211
|
+
<xs:annotation>
|
2212
|
+
<xs:documentation>Wind turbine hub height above building in metres;
|
2213
|
+
only if wind turbine.
|
2214
|
+
</xs:documentation>
|
2215
|
+
</xs:annotation>
|
2216
|
+
</xs:element>
|
2217
|
+
</xs:all>
|
2218
|
+
</xs:complexType>
|
2219
|
+
<xs:element name="Wind-Turbines" type="Wind-Turbines"/>
|
2220
|
+
<xs:complexType name="Wind-Turbines">
|
2221
|
+
<xs:sequence>
|
2222
|
+
<xs:element name="Wind-Turbine" type="Wind-Turbine" maxOccurs="99"/>
|
2223
|
+
</xs:sequence>
|
2224
|
+
</xs:complexType>
|
2225
|
+
<xs:element name="Energy-Feature" type="Energy-Feature"/>
|
2226
|
+
<xs:complexType name="Energy-Feature">
|
2227
|
+
<xs:all>
|
2228
|
+
<xs:element name="Energy-Saved-Or-Generated" type="Measurement">
|
2229
|
+
<xs:annotation>
|
2230
|
+
<xs:documentation>Energy saved or generated in kWh/year.
|
2231
|
+
</xs:documentation>
|
2232
|
+
</xs:annotation>
|
2233
|
+
</xs:element>
|
2234
|
+
<xs:element name="Saved-Or-Generated-Fuel" type="HeatingFuelTypeCode"
|
2235
|
+
minOccurs="0"/>
|
2236
|
+
<xs:element name="Energy-Used" type="Measurement">
|
2237
|
+
<xs:annotation>
|
2238
|
+
<xs:documentation>Energy used in kWh/year.</xs:documentation>
|
2239
|
+
</xs:annotation>
|
2240
|
+
</xs:element>
|
2241
|
+
<xs:element name="Energy-Used-Fuel" type="HeatingFuelTypeCode"
|
2242
|
+
minOccurs="0"/>
|
2243
|
+
<xs:element name="Air-Change-Rates" type="Air-Change-Rates" minOccurs="0">
|
2244
|
+
<xs:annotation>
|
2245
|
+
<xs:documentation>For Appendix Q procedure that provides air change
|
2246
|
+
rates. Only one Special Feature can have data on air change rates.
|
2247
|
+
</xs:documentation>
|
2248
|
+
</xs:annotation>
|
2249
|
+
</xs:element>
|
2250
|
+
</xs:all>
|
2251
|
+
</xs:complexType>
|
2252
|
+
<xs:element name="Emission-Feature" type="Emission-Feature"/>
|
2253
|
+
<xs:complexType name="Emission-Feature">
|
2254
|
+
<xs:all>
|
2255
|
+
<xs:element name="Emissions-Saved" type="Measurement">
|
2256
|
+
<xs:annotation>
|
2257
|
+
<xs:documentation>Emissions saved in kg/year.</xs:documentation>
|
2258
|
+
</xs:annotation>
|
2259
|
+
</xs:element>
|
2260
|
+
<xs:element name="Emissions-Created" type="Measurement">
|
2261
|
+
<xs:annotation>
|
2262
|
+
<xs:documentation>Additional emissions in kg/year.</xs:documentation>
|
2263
|
+
</xs:annotation>
|
2264
|
+
</xs:element>
|
2265
|
+
</xs:all>
|
2266
|
+
</xs:complexType>
|
2267
|
+
<xs:element name="Solar-Heating-Details" type="Solar-Heating-Details"/>
|
2268
|
+
<xs:complexType name="Solar-Heating-Details">
|
2269
|
+
<xs:all>
|
2270
|
+
<xs:element name="Solar-Heating-Collector-Manufacturer" type="xs:string"
|
2271
|
+
minOccurs="0">
|
2272
|
+
<xs:annotation>
|
2273
|
+
<xs:documentation>Panel manufacturer</xs:documentation>
|
2274
|
+
</xs:annotation>
|
2275
|
+
</xs:element>
|
2276
|
+
<xs:element name="Solar-Heating-Certificate" type="xs:string"
|
2277
|
+
minOccurs="0">
|
2278
|
+
<xs:annotation>
|
2279
|
+
<xs:documentation>Solar heating certificate</xs:documentation>
|
2280
|
+
</xs:annotation>
|
2281
|
+
</xs:element>
|
2282
|
+
<xs:element name="Solar-Panel-Aperture-Area" type="Measurement">
|
2283
|
+
<xs:annotation>
|
2284
|
+
<xs:documentation>Panel aperture area in square metres.
|
2285
|
+
</xs:documentation>
|
2286
|
+
</xs:annotation>
|
2287
|
+
</xs:element>
|
2288
|
+
<xs:element name="Solar-Panel-Collector-Type"
|
2289
|
+
type="SAP-SolarCollectorTypeCode">
|
2290
|
+
<xs:annotation>
|
2291
|
+
<xs:documentation>Type of solar panel collector.</xs:documentation>
|
2292
|
+
</xs:annotation>
|
2293
|
+
</xs:element>
|
2294
|
+
<xs:element name="Solar-Panel-Collector-Data-Source"
|
2295
|
+
type="SAP-SolarCollectorDataSourceCode">
|
2296
|
+
<xs:annotation>
|
2297
|
+
<xs:documentation>Source of solar panel collector data.
|
2298
|
+
</xs:documentation>
|
2299
|
+
</xs:annotation>
|
2300
|
+
</xs:element>
|
2301
|
+
<xs:element name="Solar-Panel-Collector-Zero-Loss-Efficiency"
|
2302
|
+
type="Percentage" minOccurs="0">
|
2303
|
+
<xs:annotation>
|
2304
|
+
<xs:documentation>Collector zero-loss efficiency; only if declared
|
2305
|
+
values.
|
2306
|
+
</xs:documentation>
|
2307
|
+
</xs:annotation>
|
2308
|
+
</xs:element>
|
2309
|
+
<xs:element name="Solar-Panel-Collector-Heat-Loss-Rate" type="xs:decimal"
|
2310
|
+
minOccurs="0">
|
2311
|
+
<xs:annotation>
|
2312
|
+
<xs:documentation>Collector heat loss rate; for backward compatibility
|
2313
|
+
only, do not use.
|
2314
|
+
</xs:documentation>
|
2315
|
+
</xs:annotation>
|
2316
|
+
</xs:element>
|
2317
|
+
<xs:element name="Solar-Panel-Collector-Linear-Heat-Loss-Coefficient"
|
2318
|
+
type="xs:decimal" minOccurs="0">
|
2319
|
+
<xs:annotation>
|
2320
|
+
<xs:documentation>Collector linear heat loss coefficient; only if
|
2321
|
+
declared values.
|
2322
|
+
</xs:documentation>
|
2323
|
+
</xs:annotation>
|
2324
|
+
</xs:element>
|
2325
|
+
<xs:element
|
2326
|
+
name="Solar-Panel-Collector-Second-Order-Heat-Loss-Coefficient"
|
2327
|
+
type="xs:decimal" minOccurs="0">
|
2328
|
+
<xs:annotation>
|
2329
|
+
<xs:documentation>Collector 2nd order heat loss coefficient; only if
|
2330
|
+
declared values.
|
2331
|
+
</xs:documentation>
|
2332
|
+
</xs:annotation>
|
2333
|
+
</xs:element>
|
2334
|
+
<xs:element name="Solar-Panel-Collector-Orientation"
|
2335
|
+
type="SAP-CompassDirectionCode">
|
2336
|
+
<xs:annotation>
|
2337
|
+
<xs:documentation>Collector orientation.</xs:documentation>
|
2338
|
+
</xs:annotation>
|
2339
|
+
</xs:element>
|
2340
|
+
<xs:element name="Solar-Panel-Collector-Pitch" type="SAP-VerticalPitch"/>
|
2341
|
+
<xs:element name="Solar-Panel-Collector-Overshading"
|
2342
|
+
type="SAP-SolarCollectorOvershadingCode"/>
|
2343
|
+
<xs:element name="Has-Solar-Powered-Pump" type="xs:boolean"
|
2344
|
+
default="false"/>
|
2345
|
+
<xs:element name="Is-Solar-Store-Combined-Cylinder" type="xs:boolean"
|
2346
|
+
default="false"/>
|
2347
|
+
<xs:element name="Solar-Store-Volume" type="Measurement">
|
2348
|
+
<xs:annotation>
|
2349
|
+
<xs:documentation>Dedicated solar store volume in litres.
|
2350
|
+
</xs:documentation>
|
2351
|
+
</xs:annotation>
|
2352
|
+
</xs:element>
|
2353
|
+
<xs:element name="Collector-Loop-Efficiency" type="xs:decimal"
|
2354
|
+
minOccurs="0">
|
2355
|
+
<xs:annotation>
|
2356
|
+
<xs:documentation>Collector loop efficiency; only if declared
|
2357
|
+
values.
|
2358
|
+
</xs:documentation>
|
2359
|
+
</xs:annotation>
|
2360
|
+
</xs:element>
|
2361
|
+
<xs:element name="Incidence-Angle-Modifier" type="xs:decimal"
|
2362
|
+
minOccurs="0">
|
2363
|
+
<xs:annotation>
|
2364
|
+
<xs:documentation>Incidence angle modifier; only if declared values.
|
2365
|
+
</xs:documentation>
|
2366
|
+
</xs:annotation>
|
2367
|
+
</xs:element>
|
2368
|
+
<xs:element name="Is-Community-Solar" type="xs:boolean" default="false"/>
|
2369
|
+
<xs:element name="Service-Provision" type="ServiceProvisionCode"/>
|
2370
|
+
<xs:element name="Overall-Heat-Loss" type="xs:decimal" minOccurs="0">
|
2371
|
+
<xs:annotation>
|
2372
|
+
<xs:documentation>Overall heat loss coefficient of system; only if
|
2373
|
+
declared values.
|
2374
|
+
</xs:documentation>
|
2375
|
+
</xs:annotation>
|
2376
|
+
</xs:element>
|
2377
|
+
</xs:all>
|
2378
|
+
</xs:complexType>
|
2379
|
+
<xs:element name="Instantaneous-WWHRS" type="Instantaneous-WWHRS"/>
|
2380
|
+
<xs:complexType name="Instantaneous-WWHRS">
|
2381
|
+
<xs:sequence>
|
2382
|
+
<xs:element name="WWHRS-Index-Number1" type="xs:positiveInteger"/>
|
2383
|
+
<xs:element name="WWHRS-Index-Number2" type="xs:positiveInteger"
|
2384
|
+
minOccurs="0">
|
2385
|
+
<xs:annotation>
|
2386
|
+
<xs:documentation>Omit if no second system.</xs:documentation>
|
2387
|
+
</xs:annotation>
|
2388
|
+
</xs:element>
|
2389
|
+
<xs:element name="WWHRS-Efficiency1" type="xs:decimal" minOccurs="0"/>
|
2390
|
+
<xs:element name="WWHRS-Manufacturer1" type="xs:string" minOccurs="0"/>
|
2391
|
+
<xs:element name="WWHRS-Model1" type="xs:string" minOccurs="0"/>
|
2392
|
+
<xs:element name="WWHRS-Efficiency2" type="xs:decimal" minOccurs="0"/>
|
2393
|
+
<xs:element name="WWHRS-Manufacturer2" type="xs:string" minOccurs="0"/>
|
2394
|
+
<xs:element name="WWHRS-Model2" type="xs:string" minOccurs="0"/>
|
2395
|
+
</xs:sequence>
|
2396
|
+
</xs:complexType>
|
2397
|
+
<xs:element name="Storage-WWHRS" type="Storage-WWHRS"/>
|
2398
|
+
<xs:complexType name="Storage-WWHRS">
|
2399
|
+
<xs:all>
|
2400
|
+
<xs:element name="WWHRS-Index-Number" type="xs:positiveInteger"/>
|
2401
|
+
<xs:element name="WWHRS-Store-Volume" type="Measurement">
|
2402
|
+
<xs:annotation>
|
2403
|
+
<xs:documentation>Dedicated store volume in litres.</xs:documentation>
|
2404
|
+
</xs:annotation>
|
2405
|
+
</xs:element>
|
2406
|
+
<xs:element name="Storage-WWHRS-Efficiency" type="xs:decimal"
|
2407
|
+
minOccurs="0"/>
|
2408
|
+
<xs:element name="Storage-WWHRS-Manufacturer" type="xs:string"
|
2409
|
+
minOccurs="0"/>
|
2410
|
+
<xs:element name="Storage-WWHRS-Model" type="xs:string" minOccurs="0"/>
|
2411
|
+
</xs:all>
|
2412
|
+
</xs:complexType>
|
2413
|
+
<xs:element name="Shower-Outlets" type="Shower-Outlets"/>
|
2414
|
+
<xs:complexType name="Shower-Outlets">
|
2415
|
+
<xs:annotation>
|
2416
|
+
<xs:documentation>Shower outlets present in the dwelling. If there are
|
2417
|
+
more than 5 then only include the 5 with the highest flow rates used.
|
2418
|
+
</xs:documentation>
|
2419
|
+
</xs:annotation>
|
2420
|
+
<xs:sequence>
|
2421
|
+
<xs:element name="Shower-Outlet" type="Shower-Outlet" maxOccurs="5"/>
|
2422
|
+
</xs:sequence>
|
2423
|
+
</xs:complexType>
|
2424
|
+
<xs:element name="Shower-Outlet" type="Shower-Outlet"/>
|
2425
|
+
<xs:complexType name="Shower-Outlet">
|
2426
|
+
<xs:annotation>
|
2427
|
+
<xs:documentation>Various details for each shower outlet.
|
2428
|
+
</xs:documentation>
|
2429
|
+
</xs:annotation>
|
2430
|
+
<xs:all>
|
2431
|
+
<xs:element name="Shower-Outlet-Type" type="ShowerOutletTypeCode">
|
2432
|
+
<xs:annotation>
|
2433
|
+
<xs:documentation>Hot water type for this shower outlet.
|
2434
|
+
</xs:documentation>
|
2435
|
+
</xs:annotation>
|
2436
|
+
</xs:element>
|
2437
|
+
<xs:element name="Shower-Flow-Rate" type="Measurement" minOccurs="0">
|
2438
|
+
<xs:annotation>
|
2439
|
+
<xs:documentation>The flow rate. Only when a shower is not
|
2440
|
+
instantaneous electric. Leave blank if NO flow limiter fitted.
|
2441
|
+
</xs:documentation>
|
2442
|
+
</xs:annotation>
|
2443
|
+
</xs:element>
|
2444
|
+
<xs:element name="Shower-Power" type="Measurement" minOccurs="0">
|
2445
|
+
<xs:annotation>
|
2446
|
+
<xs:documentation>The shower power, only if shower outlet type is
|
2447
|
+
instantaneous electric.
|
2448
|
+
</xs:documentation>
|
2449
|
+
</xs:annotation>
|
2450
|
+
</xs:element>
|
2451
|
+
<xs:element name="Shower-WWHRS" type="ShowerWWHRSCode">
|
2452
|
+
<xs:annotation>
|
2453
|
+
<xs:documentation>The WWHRS with which the shower is connected. If
|
2454
|
+
shower outlet type is instantaneous electric shower then only a
|
2455
|
+
storage WWHRS can be selected or none.
|
2456
|
+
</xs:documentation>
|
2457
|
+
</xs:annotation>
|
2458
|
+
</xs:element>
|
2459
|
+
</xs:all>
|
2460
|
+
</xs:complexType>
|
2461
|
+
<xs:element name="Heating-Declared-Values" type="Heating-Declared-Values"/>
|
2462
|
+
<xs:complexType name="Heating-Declared-Values">
|
2463
|
+
<xs:all>
|
2464
|
+
<xs:element name="Efficiency" type="Percentage"/>
|
2465
|
+
<xs:element name="Make-Model" type="xs:string"/>
|
2466
|
+
<xs:element name="Test-Method" type="xs:string"/>
|
2467
|
+
</xs:all>
|
2468
|
+
</xs:complexType>
|
2469
|
+
<xs:element name="Storage-Heater"/>
|
2470
|
+
<xs:complexType name="Storage-Heater">
|
2471
|
+
<xs:all>
|
2472
|
+
<xs:element name="Number-Of-Heaters" type="xs:positiveInteger">
|
2473
|
+
<xs:annotation>
|
2474
|
+
<xs:documentation>The number of storage heaters with this index
|
2475
|
+
number.
|
2476
|
+
</xs:documentation>
|
2477
|
+
</xs:annotation>
|
2478
|
+
</xs:element>
|
2479
|
+
<xs:element name="Index-Number" type="xs:positiveInteger">
|
2480
|
+
<xs:annotation>
|
2481
|
+
<xs:documentation>The index number of the heater from the product
|
2482
|
+
database.
|
2483
|
+
</xs:documentation>
|
2484
|
+
</xs:annotation>
|
2485
|
+
</xs:element>
|
2486
|
+
<xs:element name="High-Heat-Retention" type="xs:boolean">
|
2487
|
+
<xs:annotation>
|
2488
|
+
<xs:documentation>Whether heater is high heat retention type.
|
2489
|
+
</xs:documentation>
|
2490
|
+
</xs:annotation>
|
2491
|
+
</xs:element>
|
2492
|
+
</xs:all>
|
2493
|
+
</xs:complexType>
|
2494
|
+
<xs:element name="Storage-Heaters"/>
|
2495
|
+
<xs:complexType name="Storage-Heaters">
|
2496
|
+
<xs:sequence>
|
2497
|
+
<xs:element name="Storage-Heater" type="Storage-Heater" maxOccurs="4"/>
|
2498
|
+
</xs:sequence>
|
2499
|
+
</xs:complexType>
|
2500
|
+
</xs:schema>
|