forked from ES-DOC/esdoc-cim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity.xsd
More file actions
2588 lines (2575 loc) · 158 KB
/
Copy pathactivity.xsd
File metadata and controls
2588 lines (2575 loc) · 158 KB
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"?>
<!-- activity.xsd -->
<!-- generated: 20 March 2014, 8:43 -->
<xs:schema
elementFormDefault="qualified" attributeFormDefault="unqualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns="http://www.purl.org/org/esmetadata/cim/1.8.2/schemas"
targetNamespace="http://www.purl.org/org/esmetadata/cim/1.8.2/schemas">
<!-- previously, these were relative pathnames; as of v1.5.1 they are external URLs -->
<xs:import xmlns:xs="http://www.w3.org/2001/XMLSchema"
namespace="http://www.w3.org/1999/xlink"
schemaLocation="http://www.w3.org/1999/xlink.xsd"/>
<xs:import xmlns:xs="http://www.w3.org/2001/XMLSchema"
namespace="http://www.opengis.net/gml/3.2"
schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>
<xs:import xmlns:xs="http://www.w3.org/2001/XMLSchema"
namespace="http://www.isotc211.org/2005/gmd"
schemaLocation="http://www.isotc211.org/2005/gmd/gmd.xsd"/>
<xs:include xmlns:xs="http://www.w3.org/2001/XMLSchema" schemaLocation="data.xsd"/>
<xs:include xmlns:xs="http://www.w3.org/2001/XMLSchema" schemaLocation="grids.xsd"/>
<xs:include xmlns:xs="http://www.w3.org/2001/XMLSchema" schemaLocation="quality.xsd"/>
<xs:include xmlns:xs="http://www.w3.org/2001/XMLSchema" schemaLocation="shared.xsd"/>
<xs:include xmlns:xs="http://www.w3.org/2001/XMLSchema" schemaLocation="software.xsd"/>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ExperimentRelationship">
<xs:annotation>
<xs:documentation><ul style="margin-top: 0mm; margin-bottom: 0mm; list-style-type: disk; "><ul style="margin-top: 0mm; margin-bottom: 0mm; list-style-type: circle; ">Contains a set of relationship types specific to a simulation document that can be used to describe its genealogy.</ul>
</ul></xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Relationship">
<xs:sequence>
<xs:element name="target" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element ref="numericalExperiment"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="type" use="required" type="ExperimentRelationshipType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ProjectType" mixed="true">
<xs:sequence>
<xs:element name="controlledVocabulary" minOccurs="0" maxOccurs="unbounded"
type="ControlledVocabulary"/>
</xs:sequence>
<xs:attribute name="value" use="required" type="NonEmptyString">
<xs:annotation>
<xs:documentation>The term being used for this CV (or standard)
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="open" use="required" type="xs:boolean" fixed="true"/>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="RequirementOption">
<xs:annotation>
<xs:documentation>A NumericalRequirement that is being used as a set of related requirements; For example if a requirement is to use 1 of 3 boundary conditions, then that "parent" requirement would have three "child" RequirmentOptions (each of one with the XOR optionRelationship).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="requirement" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>The requirement being specified by this option</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<!-- this is an abstract class --><xs:element name="requirement" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="outputRequirement" type="OutputRequirement"/>
<xs:element name="lateralBoundaryCondition" type="LateralBoundaryCondition"/>
<xs:element name="initialCondition" type="InitialCondition"/>
<xs:element name="spatioTemporalConstraint" type="SpatioTemporalConstraint"/>
<xs:element name="boundaryCondition" type="BoundaryCondition"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="optionRelationship" use="required" type="LogicalRelationshipType">
<xs:annotation>
<xs:documentation>Describes how this optional (child) requirement is related to its sibling requirements. For example, a NumericalRequirement could consist of a set of optional requirements each with an "OR" relationship meaning use this boundary condition _or_ that one.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Activity" abstract="true">
<xs:annotation>
<xs:documentation>An abstract class used as the parent of MeasurementCampaigns, Projects, Experiments, and NumericalActivities.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="fundingSource" minOccurs="0" maxOccurs="unbounded" type="xs:string">
<xs:annotation>
<xs:documentation>The entities that funded this activity.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="project" minOccurs="0" maxOccurs="unbounded" type="ProjectType">
<xs:annotation>
<xs:documentation>The project(s) that this activity is associated with (ie: CMIP5, AMIP, etc.)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="rationale" minOccurs="0" maxOccurs="unbounded" type="xs:string">
<xs:annotation>
<xs:documentation>For what purpose is this activity being performed?</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="responsibleParty" minOccurs="0" maxOccurs="unbounded"
type="ResponsibleParty">
<xs:annotation>
<xs:documentation>The point of contact(s) for this activity.This includes, among others, the principle investigator.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ConformanceType">
<xs:restriction base="xs:string">
<xs:enumeration value="not conformant">
<xs:annotation>
<xs:documentation>Describes a simulation that is purpefully non-conformant to an experimental requirement.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="standard config">
<xs:annotation>
<xs:documentation>Describes a simulation that is "naturally" conformant to an experimental requirement.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="via inputs">
<xs:annotation>
<xs:documentation>Describes a simulation that conforms to an experimental requirement by using particular inputs.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="via model mods">
<xs:annotation>
<xs:documentation>Describes a simulation that conforms to an experimental requirement by changing the configuration of the software model implementing that simulation.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="combination">
<xs:annotation>
<xs:documentation>Describes a simulation that conforms to an experimental requirement by using more than one method.
</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="OutputRequirement">
<xs:complexContent>
<xs:extension base="NumericalRequirement">
<xs:sequence>
<xs:element name="outputFrequency" minOccurs="0" maxOccurs="1" type="FrequencyType"/>
<!-- this is an abstract class --><xs:element name="outputPeriod" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="closedDateRange" type="ClosedDateRange"/>
<xs:element name="openDateRange" type="OpenDateRange"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="temporalAveraging" minOccurs="0" maxOccurs="1" type="TemporalAveType"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SimulationRun">
<xs:annotation>
<xs:documentation>A SimulationRun is, as the name implies, one single model run.
A SimulationRun is a Simulation.
There is a one to one association between SimulationRun and (a top-level) SoftwarePackage::ModelComponent. </xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Simulation">
<xs:sequence><!-- this is an abstract class --><xs:element name="dateRange" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="closedDateRange" type="ClosedDateRange"/>
<xs:element name="openDateRange" type="OpenDateRange"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="model" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element ref="modelComponent"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="simulationRun">
<xs:annotation>
<xs:documentation>A SimulationRun is, as the name implies, one single model run.
A SimulationRun is a Simulation.
There is a one to one association between SimulationRun and (a top-level) SoftwarePackage::ModelComponent. </xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="SimulationRun">
<xs:sequence>
<xs:element name="documentAuthor" minOccurs="0" maxOccurs="1" type="ResponsibleParty">
<xs:annotation>
<xs:documentation>A contact for the author of this <i>document </i>(as opposed to the author of the artifact being described by this document; ie: the simulation or component or whatever).
This includes information about the authoring institution.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentCreationDate" minOccurs="1" maxOccurs="1" type="dateTime">
<xs:annotation>
<xs:documentation>The date the <i>document </i>was created.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentGenealogy" minOccurs="0" maxOccurs="1" type="Genealogy">
<xs:annotation>
<xs:documentation>Specifies the relationship of this document with another document. Various relationship types (depending on the type of document; ie: simulation, component, etc.) are supported.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentID" minOccurs="1" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>a unique indentifier for this document</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentVersion" minOccurs="1" maxOccurs="1" type="version"/>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>The id of this document as referenced by an external body (ie: DOI, or even IPSL)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="metadataID" minOccurs="0" maxOccurs="1" type="xs:anyURI"/>
<xs:element name="metadataVersion" minOccurs="0" maxOccurs="1" type="version"/>
<xs:element name="quality" minOccurs="0" maxOccurs="unbounded" type="CIM_Quality">
<xs:annotation>
<xs:documentation>a (set of) quality record(s) for this document.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="documentStatus" use="optional" type="DocumentStatusType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Project">
<xs:annotation>
<xs:documentation>A climate project.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Activity">
<xs:sequence>
<xs:element name="experiment" minOccurs="0" maxOccurs="unbounded" type="Experiment"/>
<xs:element name="parent" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="project" type="Project"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="child" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:choice><!-- these elements include all specialisations of child--><xs:element name="project" type="Project"/>
<xs:element name="dataCollection" type="DataCollection"/>
<xs:element name="mIP" type="MIP"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="MeasurementCampaign">
<xs:complexContent>
<xs:extension base="Activity">
<xs:sequence>
<xs:element name="Duration" minOccurs="1" maxOccurs="1" type="ClosedDateRange"/>
<xs:element name="experiment" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:choice><!-- these elements include all specialisations of experiment--><xs:element name="experiment" type="Experiment"/>
<xs:element name="numericalExperiment" type="NumericalExperiment"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="LateralBoundaryCondition">
<xs:annotation>
<xs:documentation>A boundary condition is a numerical requirement which looks like a variable imposed on the model evolution (i.e. it might - or might not - evolve with time, but is seen by the model at various times during its evolution) as opposed to an initial condition (at model time zero).</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="NumericalRequirement">
<xs:sequence>
<xs:element name="source" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<!-- this is an abstract class --><xs:element name="source" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="dataObject"/>
<xs:element name="dataContent" type="DataContent"/>
<xs:element name="componentProperty" type="ComponentProperty"/>
<!-- this is an abstract class --><xs:element name="softwareComponent" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="modelComponent"/>
<xs:element ref="processorComponent"/>
<xs:element ref="statisticalModelComponent"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="NumericalRequirement"
abstract="true">
<xs:annotation>
<xs:documentation>A description of the requirements of particular experiments. Numerical Requirements can be initial conditions, boundary conditions, or physical modificiations.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string"/>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="Identifier"/>
<xs:element name="name" minOccurs="1" maxOccurs="1" type="xs:string"/>
<xs:element name="requirementOption" minOccurs="0" maxOccurs="unbounded"
type="RequirementOption"><!--I am looking at: UML:AssociationEnd--><!--And the class is: RequirementOption--><!--Whose id is: EAID_19189628_F3DC_40af_A550_F6AE1A73084F--><!--And there were this many specialisations: 0--></xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ExperimentRelationshipType">
<xs:restriction base="xs:string">
<xs:enumeration value="previousRealisation"/>
<xs:enumeration value="continuationOf"/>
<xs:enumeration value="controlExperiment"/>
<xs:enumeration value="higherResolutionVersionOf"/>
<xs:enumeration value="lowerResolutionVersionOf"/>
<xs:enumeration value="increaseEnsembleOf"/>
<xs:enumeration value="modifiedInputMethodOf"/>
<xs:enumeration value="shorterVersionOf"/>
<xs:enumeration value="extensionOf"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SimulationRelationship">
<xs:annotation>
<xs:documentation>Contains a set of relationship types specific to a simulation document that can be used to describe its genealogy.
<ul style="margin-top: 0mm; margin-bottom: 0mm; list-style-type: disk; "><ul style="margin-top: 0mm; margin-bottom: 0mm; list-style-type: circle; "></ul>
</ul></xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Relationship">
<xs:sequence>
<xs:element name="target" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<!-- this is an abstract class --><xs:element name="target" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="simulationRun"/>
<xs:element ref="assimilation"/>
<xs:element ref="simulationComposite"/>
<xs:element ref="downscalingSimulation"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="type" use="required" type="SimulationRelationshipType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="TemporalAveType" mixed="true">
<xs:sequence>
<xs:element name="controlledVocabulary" minOccurs="0" maxOccurs="unbounded"
type="ControlledVocabulary"/>
</xs:sequence>
<xs:attribute name="value" use="required" type="NonEmptyString">
<xs:annotation>
<xs:documentation>The term being used for this CV (or standard)
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="open" use="required" type="xs:boolean" fixed="true"/>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Conformance">
<xs:annotation>
<xs:documentation>A conformance class maps how a configured model component met a specific numerical requirement.
For example, for a double CO2 boundary condition, a model component might read a CO2 dataset in which CO2 has been doubled, or it might modify a parameterisation (presumably with a factor of two somewhere).
So, the conformance links a requirement to a DataSource (which can be either an actual DataObject or a property of a model component).
In some cases a model/simulation may _naturally_ conform to a requirement. In this case there would be no reference to a DataSource but the conformant attribute would be true.
If something is purpopsefully non-conformant then the conformant attribute would be false.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string"/>
<xs:element name="frequency" minOccurs="0" maxOccurs="1" type="FrequencyType"/>
<xs:element name="requirement" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Points to the NumericalRequirement that the simulation in question is conforming to.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<!-- this is an abstract class --><xs:element name="requirement" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="outputRequirement" type="OutputRequirement"/>
<xs:element name="lateralBoundaryCondition" type="LateralBoundaryCondition"/>
<xs:element name="initialCondition" type="InitialCondition"/>
<xs:element name="spatioTemporalConstraint" type="SpatioTemporalConstraint"/>
<xs:element name="boundaryCondition" type="BoundaryCondition"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="source" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Points to the DataSource used to conform to a particular Requirement. This may be part of an activity::simulation or a software::component. It can be either a DataObject or a SoftwareComponent or a ComponentProperty. It could also be by using particular attributes of, say, a SoftwareComponent, but in that case the recommended practise is to reference the component and add appropriate text in the conformance description attribute.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<!-- this is an abstract class --><xs:element name="source" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="dataObject"/>
<xs:element name="dataContent" type="DataContent"/>
<xs:element name="componentProperty" type="ComponentProperty"/>
<!-- this is an abstract class --><xs:element name="softwareComponent" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element ref="modelComponent"/>
<xs:element ref="processorComponent"/>
<xs:element ref="statisticalModelComponent"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="conformant" use="required" type="xs:boolean">
<xs:annotation>
<xs:documentation>Records whether or not this conformance satisfies the requirement. A simulation should have at least one conformance mapping to every experimental requirement. If a simulation satisfies the requirement - the usual case - then conformant should have a value of "true." If conformant is true but there is no reference to a source for the conformance, then we can assume that the simulation conforms to the requirement _naturally_, that is without having to modify code or inputs. If a simulation does not conform to a requirement then conformant should be set to "false."</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type" use="optional" type="ConformanceType">
<xs:annotation>
<xs:documentation>Describes the method that this simulation conforms to an experimental requirement (in case it is not specified by the change property of the reference to the source of this conformance)
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="NumericalActivity"
abstract="true">
<xs:annotation>
<xs:documentation>Numerical Activity is an abstract concept which in this world view is either an ensemble, a simulaiton or a DataProcessing activity.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Activity">
<xs:sequence>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string"/>
<xs:element name="longName" minOccurs="1" maxOccurs="1" type="xs:string"/>
<xs:element name="shortName" minOccurs="1" maxOccurs="1" type="xs:string"/>
<xs:element name="supports" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="version" minOccurs="0" maxOccurs="1" type="version">
<xs:annotation>
<xs:documentation>The version of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute ref="xlink:href" use="optional"/>
</xs:complexType>
</xs:element>
<xs:element name="experiment" type="Experiment"/>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="Assimilation">
<xs:annotation>
<xs:documentation>An assimilation is a simulation that is constrained by observations. It is representative of an actual period in the past eg ERA-40.
</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Simulation">
<xs:sequence>
<xs:element name="exploits" minOccurs="1" maxOccurs="unbounded" type="DataCollection"><!--I am looking at: UML:AssociationEnd--><!--And the class is: DataCollection--><!--Whose id is: EAID_AC712658_636F_4422_8656_AAB91C48F5EE--><!--And there were this many specialisations: 0--></xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="assimilation">
<xs:annotation>
<xs:documentation>An assimilation is a simulation that is constrained by observations. It is representative of an actual period in the past eg ERA-40.
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:complexContent>
<xs:extension base="Assimilation">
<xs:sequence>
<xs:element name="documentAuthor" minOccurs="0" maxOccurs="1" type="ResponsibleParty">
<xs:annotation>
<xs:documentation>A contact for the author of this <i>document </i>(as opposed to the author of the artifact being described by this document; ie: the simulation or component or whatever).
This includes information about the authoring institution.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentCreationDate" minOccurs="1" maxOccurs="1" type="dateTime">
<xs:annotation>
<xs:documentation>The date the <i>document </i>was created.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentGenealogy" minOccurs="0" maxOccurs="1" type="Genealogy">
<xs:annotation>
<xs:documentation>Specifies the relationship of this document with another document. Various relationship types (depending on the type of document; ie: simulation, component, etc.) are supported.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentID" minOccurs="1" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>a unique indentifier for this document</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="documentVersion" minOccurs="1" maxOccurs="1" type="version"/>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>The id of this document as referenced by an external body (ie: DOI, or even IPSL)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="metadataID" minOccurs="0" maxOccurs="1" type="xs:anyURI"/>
<xs:element name="metadataVersion" minOccurs="0" maxOccurs="1" type="version"/>
<xs:element name="quality" minOccurs="0" maxOccurs="unbounded" type="CIM_Quality">
<xs:annotation>
<xs:documentation>a (set of) quality record(s) for this document.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="documentStatus" use="optional" type="DocumentStatusType"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="PhysicalModification">
<xs:annotation>
<xs:documentation>Physical modification is the implementation of a boundary condition numerical requirement that is achieved within the model code rather than from some external source file. It might include, for example, a specific rate constant within a chemical reaction, or coefficient value(s) in a parameterisation.
For example, one might require a numerical experiment where specific chemical reactions were turned off - e.g. no heterogeneous chemistry.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Conformance">
<xs:sequence/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SimulationComposite">
<xs:annotation>
<xs:documentation>A SimulationComposite is an aggregation of Simulaitons.
With the aggreation connector between Simulation and SimulationComposite(SC) the SC can be made up of both SimulationRuns and SCs.
The SimulationComposite is the new name for the concept of SimulationCollection: A simulation can be made up of "child" simulations aggregated together to form a "simulation composite". The "parent" simulation can be made up of whole or partial child simulations and the SimulationComposite attributes need to be able to capture this.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="Simulation">
<xs:sequence><!-- this is an abstract class --><xs:element name="dateRange" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="closedDateRange" type="ClosedDateRange"/>
<xs:element name="openDateRange" type="OpenDateRange"/>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element name="rank" minOccurs="1" maxOccurs="1" type="xs:integer">
<xs:annotation>
<xs:documentation>Position of a simulation in the SimulationComposite timeline. eg: Is this the first (rank = 1) or second (rank = 2) simulation</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="child" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:choice>
<xs:element name="reference">
<xs:complexType>
<xs:sequence>
<xs:element name="change" minOccurs="0" maxOccurs="unbounded" type="Change">
<xs:annotation>
<xs:documentation>An optional description of how the item being referenced has been modified. This is particularly useful for dealing with Ensembles (a set of simulations where something about each simulation has changed) or Conformances.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>A description of the element being referenced, in the context of the current class.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="externalID" minOccurs="0" maxOccurs="unbounded" type="StandardName">
<xs:annotation>
<xs:documentation>A non-CIM (non-GUID) id used to reference the element in question.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="id" minOccurs="0" maxOccurs="1" type="guid">
<xs:annotation>
<xs:documentation>the ID of the element being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="name" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The name of the instance being referenced.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="type" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>The type of item being referenced (should correspond to the name of the referenced XML element).</xs:documentation>
</xs:annotation>