-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRefitXMLSchema.xsd
1867 lines (1768 loc) · 90.8 KB
/
RefitXMLSchema.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://www.refitsmarthomes.org"
elementFormDefault="qualified"
xmlns:refit="http://www.refitsmarthomes.org"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<xs:annotation>
<xs:documentation>
RefitXML schema, June 2017.
This XML schema describes the format and structure of the 'REFIT_BUILDING_SURVEY.xml' file.
This schema is maintained by Steven Firth ([email protected]), Building Energy Research Group (BERG), School of Civil and Building Engineering, Loughborough University.
The schema described in this file forms part of the REFIT Smart Home dataset, available here: https://doi.org/10.17028/rd.lboro.2070091
Further information on the REFIT project is available here: http://www.refitsmarthomes.org
A number of response options to questions are based on the English housing survey 2011 to 2012: physical survey form.
This is available here: https://www.gov.uk/government/publications/english-housing-survey-2011-to-2012-questionnaire-and-physical-survey-form
This used under the following license: https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
</xs:documentation>
</xs:annotation>
<xs:element name="RefitXML" type="refit:RefitXML"></xs:element>
<xs:complexType name="RefitXML">
<xs:annotation>
<xs:documentation>This is the root node of the refitXML schema</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Stock" type="refit:Stock"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
</xs:complexType>
<xs:complexType name="Stock">
<xs:annotation>
<xs:documentation>This is a Stock object. Stocks represent a stock or group of buildings. </xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Climate" type="refit:Climate"></xs:element>
<xs:element name ="Building" type="refit:Building"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
</xs:complexType>
<xs:complexType name="Climate">
<xs:annotation>
<xs:documentation>This is a Climate object. Climates represent the external climate for a particular location. </xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="longitude" type="xs:double">
<xs:annotation>
<xs:documentation>The 'longitude' attribute gives the longitude of the position of the object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="latitude" type="xs:double">
<xs:annotation>
<xs:documentation>The 'latitude' attribute gives the latitude of the position of the object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--BUILDINGS-->
<xs:complexType name="Building">
<xs:annotation>
<xs:documentation>This is a Building object. Buildings represent an instance of a building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Household" type="refit:Household"></xs:element>
<xs:element name ="Appliance" type="refit:Appliance"></xs:element>
<xs:element name ="Cooker" type="refit:Cooker"></xs:element>
<xs:element name ="WaterOutlet" type="refit:WaterOutlet"></xs:element>
<xs:element name ="HotWaterCylinder" type="refit:HotWaterCylinder"></xs:element>
<xs:element name ="FixedHeater" type="refit:FixedHeater"></xs:element>
<xs:element name ="Light" type="refit:Light"></xs:element>
<xs:element name ="Plug" type="refit:Plug"></xs:element>
<xs:element name ="Radiator" type="refit:Radiator"></xs:element>
<xs:element name ="RoomThermostat" type="refit:RoomThermostat"></xs:element>
<xs:element name ="ConstructionType" type="refit:ConstructionType"></xs:element>
<xs:element name ="DayScheduleType" type="refit:DayScheduleType"></xs:element>
<xs:element name ="MaterialType" type="refit:MaterialType"></xs:element>
<xs:element name ="ScheduleType" type="refit:ScheduleType"></xs:element>
<xs:element name ="WeekScheduleType" type="refit:WeekScheduleType"></xs:element>
<xs:element name ="WindowConstructionType" type="refit:WindowConstructionType"></xs:element>
<xs:element name ="Zone" type="refit:Zone"></xs:element>
<xs:element name ="Circuit" type="refit:Circuit"></xs:element>
<xs:element name ="Meter" type="refit:Meter"></xs:element>
<xs:element name ="Space" type="refit:Space"></xs:element>
<xs:element name ="Surface" type="refit:Surface"></xs:element>
<xs:element name ="Boiler" type="refit:Boiler"></xs:element>
<xs:element name ="PhotovoltaicArray" type="refit:PhotovoltaicArray"></xs:element>
<xs:element name ="SolarThermalArray" type="refit:SolarThermalArray"></xs:element>
<xs:element name ="HeatPump" type="refit:HeatPump"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="occupancyType" type="refit:occupancyType">
<xs:annotation>
<xs:documentation>The 'occupancyType' attribute is the type of occupancy (single family dwelling, shared house etc) of the building, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="builtFormType" type="refit:builtFormType">
<xs:annotation>
<xs:documentation>The 'dwellingType' attribute is the built form type of the building, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="longitude" type="xs:double">
<xs:annotation>
<xs:documentation>The 'longitude' attribute gives the longitude of the position of the object, and the origin of the local coordinate system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="latitude" type="xs:double">
<xs:annotation>
<xs:documentation>The 'latitude' attribute gives the latitude of the position of the object, and the origin of the local coordinate system.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="orientation" type="xs:double">
<xs:annotation>
<xs:documentation>The 'orientation' attribute gives the orientation of the y-axis of the local coordinate system (often this will be the orientation of the front or back wall).</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="wallTypeMainBuilding" type="refit:wallType">
<xs:annotation>
<xs:documentation>The 'wallTypeMainBuilding' attribute is the wall type of the main building, chosen from a list. 'Main building' refers to the origianl building construction, rather than any later extensions.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="wallAgeBandMainBuilding" type="refit:wallAgeBand">
<xs:annotation>
<xs:documentation>The 'wallAgeBandMainBuilding' attribute is the age band of the wall of the main building, chosen from a list. This is usually equivalent to when the building was first constructed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="wallTypeExtension" type="refit:wallType">
<xs:annotation>
<xs:documentation>The 'wallTypeExtension' attribute is the wall type of the extension (if any), chosen from a list. 'Extension' refers to any part of the building which was constructed at a later date after the building was first constructed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="wallAgeBandExtension" type="refit:wallAgeBand">
<xs:annotation>
<xs:documentation>The 'constructionAgeBandExtension' attribute is the age band of the extension (if any), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="wallNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'wallNote' attribute is any additional notes about the wall constructions.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cavityWallInsulationPresent" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'cavityWallInsulationPresent' attribute is 'Yes' if cavity wall insulation is present in the 'Main Building' wall type, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cavityWallInsulationNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'cavityWallInsulationNote' attribute is any additional notes about the cavity wall insulation.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="windowType" type="refit:windowType">
<xs:annotation>
<xs:documentation>The 'windowType' attribute is the window type (single glazed, double glazed etc.) for the windows in the building, chosen from a list. This represents the window type for all or the majority of windows present.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="windowNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'windowNote' attribute is any additional notes about the windows.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loftType" type="refit:loftType">
<xs:annotation>
<xs:documentation>The 'loftType' attribute is the loft type for the main loft space in the building, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loftInsulationType" type="refit:loftInsulationType">
<xs:annotation>
<xs:documentation>The 'loftInsulationType' attribute is the type of insulation used in the main loft space in the building, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loftInsulationThickness" type="refit:loftInsulationThickness">
<xs:annotation>
<xs:documentation>The 'loftInsulationType' attribute is the thickness of the insulation used in the main loft space in the building, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loftNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'loftNote' attribute is any additional notes about the main loft space in the building.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Zone">
<xs:annotation>
<xs:documentation>This is a Zone object. A 'zone' is a thermal zone, as used in thermal modelling and represents one or more Spaces.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Zone_space" type="refit:Sensor"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
</xs:complexType>
<xs:complexType name="Zone_space">
<xs:annotation>
<xs:documentation>This is a Zone_space object. Each Zone can list the spaces contained within the Zone using a list of Zone_space objects.</xs:documentation>
</xs:annotation>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--HOUSEHOLDS-->
<xs:complexType name="Household">
<xs:annotation>
<xs:documentation>This is a Household object. Households represent a group of people living together in a dwelling. </xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Person" type="refit:Person"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
</xs:complexType>
<xs:complexType name="Person">
<xs:annotation>
<xs:documentation>This is a Person. A person is a member of a household.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="sex" type="refit:sex">
<xs:annotation>
<xs:documentation>The 'sex' attribute gives the sex (male/female) of the person.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="age" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'age' attribute is the age of the person.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ageBand" type="refit:ageBand">
<xs:annotation>
<xs:documentation>The 'ageBand' attribute is the age band of the person, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="livesPermanemntlyAtHome" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'livesPermanemntlyAtHome' attribute is 'Yes' if the person lives permenantly at home, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="isHouseholdReferencePerson" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'isHouseholdReferencePerson' attribute is 'Yes' if the person is the Household Reference Person, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="employmentStatus" type="refit:employmentStatus">
<xs:annotation>
<xs:documentation>The 'employmentStatus' attribute gives the employmeny status of the person, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="profession" type="xs:string">
<xs:annotation>
<xs:documentation>The 'profession' attribute gives the profession of the person.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--ENERGY SYSTEMS-->
<xs:complexType name="Boiler">
<xs:annotation>
<xs:documentation>This is a Boiler object.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="BoilerControl" type="refit:BoilerControl"></xs:element>
<xs:element name ="Boiler_radiator" type="refit:Boiler_radiator"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="boilerType" type="refit:boilerType">
<xs:annotation>
<xs:documentation>The 'boilerType' attribute represents the type of boiler.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerAge" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'boilerAge' attribute gives the boiler age in years.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute is the manufacturer of the boiler.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute is the model of the boiler.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelType" type="refit:fuelType">
<xs:annotation>
<xs:documentation>The 'fuelType' attribute is the fuel (e.g gas or electricity) used by the boiler, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="capacity" type="xs:double">
<xs:annotation>
<xs:documentation>The 'capacity' attribute gives the rated power capacity of the heat pump, in W.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Boiler_radiator">
<xs:annotation>
<xs:documentation>This is a Boiler_radiator object. Each Boiler can list the radiator supplied by the Boiler using a list of Boiler_radiator objects. The list starts with the first radiator on the hot water supply loop, and lists the Radiators in order.</xs:documentation>
</xs:annotation>
<xs:attribute name="radiatorIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'radiatorIdRef' attribute is a reference a Radiator object, using the 'id' attribute of the Radiator object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="BoilerControl">
<xs:annotation>
<xs:documentation>This is a BoilerControl object. It represents the controls associated with a boiler, such as a programmable timer.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="onOffControl" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'onOffControl' attribute is 'Yes' if the Boiler controls has an On/Off function, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerThermostat" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'boilerThermostat' attribute is 'Yes' if the Boiler has a thermostat control regulating the hot water supply temperature, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerThermostatScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'boilerThermostatScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the boiler thermostat, in degrees C.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerTimer" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'boilerTimer' attribute is 'Yes' if the Boiler has a timer, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerTimerScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'boilerTimerScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the boiler timer, where '1' is on and '0' is off.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manualOverride" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'manualOverride' attribute is 'Yes' if the Boiler has a manual override function, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="zoneControl" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'zoneControl' attribute is 'Yes' if the Boiler has zonal controls associated with it, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="boilerControlNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'boilerControlNote' attribute is any additional notes about the boilr controls.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="PhotovoltaicArray">
<xs:annotation>
<xs:documentation>This is a PhotovoltaicArray object. It represents a PV array mounted on the building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="ratingWp" type="xs:double">
<xs:annotation>
<xs:documentation>The 'ratingWp' attribute is the rated power of the PV array in Wp.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="surfaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'surfaceIdRef' attribute is a reference a Surface object which the PV array is mounted on, using the 'id' attribute of the Surface object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfModules" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'numberOfModules' attribute gives the number of modules in the PV array.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="moduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'moduleTypeIdRef' attribute is is a reference to type of PV modules used in the PV array, using the 'id' attribute of a PhotovoltaicModuleType type.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="PhotovoltaicModuleType">
<xs:annotation>
<xs:documentation>This is a PhotovoltaicModuleType type.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="refit:genericTypeAttributes"></xs:attributeGroup>
<xs:attribute name="ratingWp" type="xs:double">
<xs:annotation>
<xs:documentation>The 'ratingWp' attribute is the rated power of the PV module in Wp.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ratedEfficiency" type="xs:double">
<xs:annotation>
<xs:documentation>The 'ratedEfficiency' attribute is the rated efficiency of the PV module, between 0 and 1.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temperatureCoefficientOfPower" type="xs:double">
<xs:annotation>
<xs:documentation>The 'temperatureCoefficientOfPower' attribute is the temperature coeffciient of power of the PV module, in %/K.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="NOCT" type="xs:double">
<xs:annotation>
<xs:documentation>The 'NOCT' attribute is the Nominal Operating Cell Temperature, in degrees C.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute gives the manufacturer of the PV module.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute gives the model of the PV module.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="SolarThermalArray">
<xs:annotation>
<xs:documentation>This is a SolarThermalArray object. It represents an array of soalr thermal collectors mounted on the building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="surfaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'surfaceIdRef' attribute is a reference a Surface object which the PV array is mounted on, using the 'id' attribute of the Surface object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="HeatPump">
<xs:annotation>
<xs:documentation>This is a HeatPump object. It represents a heat pump installed in the building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute gives the manufacturer of the heat pump.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute gives the model of the heat pump.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="catacity" type="xs:double">
<xs:annotation>
<xs:documentation>The 'capacity' attribute gives the rated power capacity of the heat pump, in W.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="COP" type="xs:double">
<xs:annotation>
<xs:documentation>The 'COP' attribute is the rated coefficient of performance of the heat pump.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--METERS AND CIRCUITS-->
<xs:complexType name="Meter">
<xs:annotation>
<xs:documentation>This is a Meter object. It represents a meter installed in the building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="meterType" type="refit:meterType">
<xs:annotation>
<xs:documentation>The 'meterType' attribute is the type of the meter (electricity, gas, water etc.), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Circuit">
<xs:annotation>
<xs:documentation>This is a Circuit object.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="circuitType" type="xs:string">
<xs:annotation>
<xs:documentation>The 'circuitType' attribute is the type of the circuit (plugs, lighting, cooker etc.).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--SPACES AND SPACE OBJECTS-->
<xs:complexType name="Space">
<xs:annotation>
<xs:documentation>This is a Space object. Spaces represent the rooms in a building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="conditionType" type="refit:conditionType">
<xs:annotation>
<xs:documentation>The 'conditionType' attribute states if and how the space is condition (i.e. heated, cooled), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="area" type="xs:double">
<xs:annotation>
<xs:documentation>The 'area' attribute gives the area of the Space, in m2.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="volume" type="xs:double">
<xs:annotation>
<xs:documentation>The 'volume' attribute gives the volume of the Space, in m3.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="storeyLevel" type="xs:double">
<xs:annotation>
<xs:documentation>The 'storeyLevel' attribute gives the storey that the Space is located on. '0' represents the ground floor and '-1' represents a basement.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="roomType" type="refit:roomType">
<xs:annotation>
<xs:documentation>The 'roomType' attribute gives the type of room (kitchen, bedroom etc.), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfOpenFireplaces" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'numberOfOpenFireplaces' attribute gives the number of open fireplaces in the Space.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfExtractorFans" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'numberOfExtractorFans' attribute gives the number of extractor fans in the Space.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="numberOfAirVents" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'numberOfAirVents' attribute gives the number of air vents in the Space.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ventilationScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'ventilationScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the ventilation rate in the Space, in air changes per hour.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="peopleHeatGainsScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'peopleHeatGainsScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the heat gains from people in the Space, in Watts.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="equipmentHeatGainsScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'equipmentHeatGainsScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the heat gains from equipment (including lights, appliances, cookers, hot water outlets etc.) in the Space, in Watts.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Appliance">
<xs:annotation>
<xs:documentation>This is an Appliance object. It represents a household appliance placed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="applianceType" type="refit:applianceType">
<xs:annotation>
<xs:documentation>The 'applianceType' attribute represents the type of appliance.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="plugIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'plugIdRef' attribute is a reference a Plug object which the Appliance is plugged into, using the 'id' attribute of the Plug object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute is the manufacturer of the appliance.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute is the model of the appliance.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Cooker">
<xs:annotation>
<xs:documentation>This is a Cooker object. It represents a cooker appliance placed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="hobFuelType" type="refit:fuelType">
<xs:annotation>
<xs:documentation>The 'hobFuelType' attribute is the fuel type of the hob (gas, electric), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ovenFuelType" type="refit:fuelType">
<xs:annotation>
<xs:documentation>The 'ovenFuelType' attribute is the fuel type of the oven (gas, electric), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="WaterOutlet">
<xs:annotation>
<xs:documentation>This is a WaterOutlet object. It represents a water outlet (e.g. shower, tap) in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="waterOutletType" type="refit:waterOutletType">
<xs:annotation>
<xs:documentation>The 'waterOutletType' attribute gives the type of water outlet (e.g. shower, tap), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="waterHeatingType" type="refit:waterHeatingType">
<xs:annotation>
<xs:documentation>The 'waterHeatingType' attribute gives the method of water heating (e.g. direct electric, boiler), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="HotWaterCylinder">
<xs:annotation>
<xs:documentation>This is a HotWaterCylinder object. It represents a hot water cylinder placed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="cylinderSize" type="refit:cylinderSize">
<xs:annotation>
<xs:documentation>The 'cylinderSize' attribute gives the size of the hot water cylinder, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cylinderInsulationType" type="refit:cylinderInsulationType">
<xs:annotation>
<xs:documentation>The 'cylinderInsulationType' attribute gives the type of insulation of the hot water cylinder, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cylinderInsulationThickness" type="refit:cylinderInsulationThickness">
<xs:annotation>
<xs:documentation>The 'cylinderInsulationThickness' attribute gives the thickness of the insulation of the hot water cylinder, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="hasSingleImmersionHeater" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'hasSingleImmersionHeater' attribute is 'Yes' if the hot water cylinder has a single immersion heater, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="hasDualImmersionHeater" type="refit:YesNoList">
<xs:annotation>
<xs:documentation>The 'hasDualImmersionHeater' attribute is 'Yes' if the hot water cylinder has a dual immersion heater, otherwise 'No'.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cylinderNote" type="xs:string">
<xs:annotation>
<xs:documentation>The 'cylinderNote' attribute is any additional notes about the hot water cylinder.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="FixedHeater">
<xs:annotation>
<xs:documentation>This is a FixedHeater object. It represents a fixed heater (e.g. gas fire, electric storage heater, wood stove) installed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="fixedHeaterType" type="refit:fixedHeaterType">
<xs:annotation>
<xs:documentation>The 'fixedHeaterType' attribute gives the type of fixed heater, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute is the manufacturer of the fixed heater.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute is the model of the fixed heater.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="fuelType" type="refit:fuelType">
<xs:annotation>
<xs:documentation>The 'fuelType' attribute is the fuel (e.g gas or electricity) used by the fixed heater, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ratedPower" type="xs:double">
<xs:annotation>
<xs:documentation>The 'ratedPower' attribute gives the rated power of the fixed heater, in W.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Light">
<xs:annotation>
<xs:documentation>This is a Light object. It represents a light fitting installed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="numberOfBulbs" type="xs:integer">
<xs:annotation>
<xs:documentation>The 'numberOfBulbs' attribute gives the number of light bulbs in the light fitting.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="lightBulbType" type="xs:string">
<xs:annotation>
<xs:documentation>The 'lightBulbType' attribute gives the type of light bulbs, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="lightSwitchType" type="xs:string">
<xs:annotation>
<xs:documentation>The 'lightSwitchType' attribute gives the type of light switch, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Plug">
<xs:annotation>
<xs:documentation>This is a Plug object. It represents a plug or wall socket in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Radiator">
<xs:annotation>
<xs:documentation>This is a Radiator object. It represents a hot water radiator installed in a Space.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="RadiatorValve" type="refit:RadiatorValve"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="radiatorType" type="refit:radiatorType">
<xs:annotation>
<xs:documentation>The 'radiatorType' attribute gives the type of radiator, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="length" type="xs:double">
<xs:annotation>
<xs:documentation>The 'length' attribute is the length (or width) of the radiator, in metres.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:double">
<xs:annotation>
<xs:documentation>The 'height' attribute is the height of the radiator, in metres.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ratedPower" type="xs:double">
<xs:annotation>
<xs:documentation>The 'ratedPower' attribute gives the rated power of the radiator, in W.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RadiatorValve">
<xs:annotation>
<xs:documentation>This is a RadiatorValve object. It represents a value installed on a Radiator.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="radiatorValveType" type="refit:radiatorValveType">
<xs:annotation>
<xs:documentation>The 'radiatorValveType' attribute is the type of radiator valve, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute is the manufacturer of the radiator valve.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute is the model of the radiator valve.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RoomThermostat">
<xs:annotation>
<xs:documentation>This is a RoomThermostat object.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="roomThermostatType" type="refit:roomThermostatType">
<xs:annotation>
<xs:documentation>The 'roomThermostatType' attribute is the type of room thermostat, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="roomThermostatScheduleTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'roomThermostatScheduleTypeIdRef' attribute is a reference a ScheduleType, using the 'id' attribute of the ScheduleType object. This gives the schedule of the room thermostat set point temperature, in degrees C.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="manufacturer" type="xs:string">
<xs:annotation>
<xs:documentation>The 'manufacturer' attribute is the manufacturer of the room thermostat.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="model" type="xs:string">
<xs:annotation>
<xs:documentation>The 'model' attribute is the model of the room thermostat.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="spaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'spaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!--SURFACES AND OPENING-->
<xs:complexType name="Surface">
<xs:annotation>
<xs:documentation>This is a Surface object. It represents a surface (e.g. wall, roof, floor) in a Building.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="CartesianPoint" type="refit:CartesianPoint"></xs:element>
<xs:element name ="Opening" type="refit:Opening"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="surfaceType" type="refit:surfaceType">
<xs:annotation>
<xs:documentation>The 'surfaceType' attribute is the type of surface, chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="constructionTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'constructionIdRef' attribute is a reference a ConstructionType type, using the 'id' attribute of the ConstructionType object. This gives the construction of the Surface.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="innerSpaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'innerSpaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object. This gives the Space adjacent to the inner side of the Surface.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="outerSpaceIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'outerSpaceIdRef' attribute is a reference a Space object, using the 'id' attribute of the Space object. This gives the Space adjacent to the outer side of the Surface. If the outer surface is external air or ground, then this attribute is not needed.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="azimuth" type="xs:double">
<xs:annotation>
<xs:documentation>The 'azimuth' attribute is the orientation angle of the Surface based on the y-axis of the local coordinate system, in degrees.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="tilt" type="xs:double">
<xs:annotation>
<xs:documentation>The 'tilt' attribute is the tilt angle of the Surface from the horizontal, in degrees.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="area" type="xs:double">
<xs:annotation>
<xs:documentation>The 'area' attribute is the area of the Surface, in m2. The area does not include the area of any openings in the Surface.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="Opening">
<xs:annotation>
<xs:documentation>This is an Opening object. It represents an opening (e.g. window, door) in a Surface.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name ="CartesianPoint" type="refit:CartesianPoint"></xs:element>
<xs:element name ="Sensor" type="refit:Sensor"></xs:element>
<xs:element name ="TimeSeriesVariable" type="refit:TimeSeriesVariable"></xs:element>
</xs:choice>
<xs:attributeGroup ref="refit:genericObjectAttributes"></xs:attributeGroup>
<xs:attribute name="openingType" type="xs:string">
<xs:annotation>
<xs:documentation>The 'openingType' attribute gives the type of opening (e.g. window, door), chosen from a list.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="constructionTypeIdRef" type="xs:string">
<xs:annotation>
<xs:documentation>The 'constructionIdRef' attribute is a reference a ConstructionType type, using the 'id' attribute of the ConstructionType type. This gives the construction of the Opening.</xs:documentation>
</xs:annotation>