spase-sim-1_0_0.xsd
73.7 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
<?xml version="1.0" encoding="UTF-8"?>
<!-- Automatically created based on the dictionary stored at http://www.spase-group.org -->
<!-- Version: 1.0.0 -->
<!-- Generated: 2019-10-31 13:33:05.622 -->
<xsd:schema targetNamespace="http://www.spase-group.org/data/schema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" xmlns:spase="http://www.spase-group.org/data/schema" elementFormDefault="qualified" attributeFormDefault="unqualified" vc:minVersion="1.1" version="1.0.0">
<xsd:element name="Spase" type="spase:Spase"/>
<xsd:complexType name="Spase">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Overrides Spase in the base schema. Space
Physics Archive Search and Extract (SPASE).
The outermost container or envelope for SPASE
metadata. This indicates the start of the
SPASE metadata.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Version" type="spase:Version" minOccurs="1" maxOccurs="1"/>
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="Catalog" type="spase:Catalog"/> <!-- defined in -->
<xsd:element name="DisplayData" type="spase:DisplayData"/> <!-- defined in -->
<xsd:element name="NumericalData" type="spase:NumericalData"/> <!-- defined in -->
<xsd:element name="Document" type="spase:Document"/> <!-- defined in -->
<xsd:element name="Granule" type="spase:Granule"/>
<xsd:element name="Instrument" type="spase:Instrument"/> <!-- defined in -->
<xsd:element name="Observatory" type="spase:Observatory"/> <!-- defined in -->
<xsd:element name="Person" type="spase:Person"/> <!-- defined in -->
<xsd:element name="Registry" type="spase:Registry"/> <!-- defined in -->
<xsd:element name="Repository" type="spase:Repository"/> <!-- defined in -->
<xsd:element name="Service" type="spase:Service"/> <!-- defined in -->
<xsd:element name="Annotation" type="spase:Annotation"/> <!-- defined in -->
<xsd:element name="SimulationModel" type="spase:SimulationModel"/>
<xsd:element name="SimulationRun" type="spase:SimulationRun"/>
<xsd:element name="NumericalOutput" type="spase:NumericalOutput"/>
<xsd:element name="DisplayOutput" type="spase:DisplayOutput"/>
</xsd:choice>
</xsd:sequence>
<xsd:attribute name="lang" type="xsd:string" default="en"/>
</xsd:complexType>
<xsd:complexType name="Granule">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Overrides Granule in base schema. An accessible
portion of another resource. A Granule may
be composed of one or more physical pieces
(files) which are considered inseparable.
For example, a data storage format that maintains
metadata and binary data in separate, but
tightly coupled files. Granules should not
be used to group files that have simple relationships
or which are associated through a parent resource.
For example, each file containing a time interval
data for a Numerical Data resource would each
be considered a Granule. The ParentID of a
Granule resource must be a NumericalData resource.
The attributes of a Granule supersede the
corresponding attributes in the NumericalData
resource.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ResourceID" type="spase:ResourceID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ReleaseDate" type="spase:ReleaseDate" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ExpirationDate" type="spase:ExpirationDate" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ParentID" type="spase:ParentID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="PriorID" type="spase:PriorID" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:choice minOccurs="1" maxOccurs="1">
<xsd:element name="StartDate" type="spase:StartDate"/> <!-- defined in -->
<xsd:element name="RegionBegin" type="spase:RegionBegin"/>
</xsd:choice>
<xsd:choice minOccurs="1" maxOccurs="1">
<xsd:element name="StopDate" type="spase:StopDate"/> <!-- defined in -->
<xsd:element name="RegionEnd" type="spase:RegionEnd"/>
</xsd:choice>
<xsd:element name="Source" type="spase:Source" minOccurs="1" maxOccurs="unbounded"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SimulationModel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Descriptor of a simulation model: type of
numerical scheme, versions,...
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ResourceID" type="spase:ResourceID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ResourceHeader" type="spase:ResourceHeader" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Versions" type="spase:Versions" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SimulationType" type="spase:SimulationType" minOccurs="1" maxOccurs="1"/>
<xsd:element name="CodeLanguage" type="spase:CodeLanguage" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TemporalDependence" type="spase:YN" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SpatialDescription" type="spase:SpatialDescription" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="InputProperties" type="spase:InputProperties" minOccurs="0" maxOccurs="1"/>
<xsd:element name="OutputParameters" type="spase:OutputParameters" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ModelURL" type="spase:ModelURL" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Versions">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A container of one or more sets of version
information.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ModelVersion" type="spase:ModelVersion" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ModelVersion">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The version number of the model.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="VersionTag" type="spase:VersionTag" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ReleaseDate" type="spase:ReleaseDate" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SpatialDescription">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A characterization of the spatial extent over
which the measurement was taken.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Dimension" type="spase:Dimension" minOccurs="1" maxOccurs="1"/>
<xsd:element name="CoordinateSystem" type="spase:CoordinateSystem" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Units" type="spase:Units" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="UnitsConversion" type="spase:UnitsConversion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="CoordinatesLabel" type="spase:CoordinatesLabel" minOccurs="0" maxOccurs="1"/>
<xsd:choice minOccurs="1" maxOccurs="1">
<xsd:group ref="spase:CutsDescription"/>
<xsd:group ref="spase:CubesDescription"/>
</xsd:choice>
<xsd:element name="Step" type="spase:Step" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InputProperties">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Properties
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Property" type="spase:Property" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Property">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A container of information regarding a property
of an input parameter.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Name" type="spase:Name" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="PropertyQuantity" type="spase:ParameterQuantity" minOccurs="1" maxOccurs="1"/>
<xsd:element name="Qualifier" type="spase:Qualifier" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="Units" type="spase:Units" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="UnitsConversion" type="spase:UnitsConversion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="PropertyLabel" type="spase:PropertyLabel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PropertyValue" type="spase:PropertyValue" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PropertyTableURL" type="spase:PropertyTableURL" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ValidMin" type="spase:ValidMin" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ValidMax" type="spase:ValidMax" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="PropertyModel" type="spase:PropertyModel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ModelURL" type="spase:ModelURL" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="OutputParameters">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A container of information regarding the output
parameters of the simulation run.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Parameter" type="spase:Parameter" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SimulationRun">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Description of a simulation run, including
the code ID, the run spatial and temporal
description, and all the relevant inputs.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ResourceID" type="spase:ResourceID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ResourceHeader" type="spase:ResourceHeader" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="AccessInformation" type="spase:AccessInformation" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ProviderResourceName" type="spase:ProviderResourceName" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderProcessingLevel" type="spase:ProviderProcessingLevel" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderVersion" type="spase:ProviderVersion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Model" type="spase:Model" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TemporalDependence" type="spase:YN" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="1" maxOccurs="unbounded"/>
<xsd:element name="LikelihoodRating" type="spase:ConfidenceRating" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Keyword" type="spase:Keyword" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="InputResourceID" type="spase:InputResourceID" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="SimulationTime" type="spase:SimulationTime" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SimulationDomain" type="spase:SimulationDomain" minOccurs="0" maxOccurs="1"/>
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="RegionParameter" type="spase:RegionParameter"/>
<xsd:element name="InputParameter" type="spase:InputParameter"/>
<xsd:element name="InputPopulation" type="spase:InputPopulation"/>
<xsd:element name="InputField" type="spase:InputField"/>
<xsd:element name="InputProcess" type="spase:InputProcess"/>
</xsd:choice>
<xsd:element name="Extension" type="spase:Extension" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Model">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Attributes of a model.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ModelID" type="spase:ModelID" minOccurs="0" maxOccurs="1"/>
<xsd:element name="VersionTag" type="spase:VersionTag" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SimulationTime">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to the simulation time.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Duration" type="spase:Duration" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TimeStart" type="spase:TimeStart" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TimeStop" type="spase:TimeStop" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TimeStep" type="spase:TimeStep" minOccurs="0" maxOccurs="1"/>
<xsd:element name="DiagnosisTimeStep" type="spase:DiagnosisTimeStep" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DiagnosisTimeStep">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Time at which a diagnosis is performed and
quantity saved.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="TimeStart" type="spase:TimeStart" minOccurs="1" maxOccurs="1"/>
<xsd:element name="Duration" type="spase:Duration" minOccurs="1" maxOccurs="1"/>
<xsd:element name="SavedQuantity" type="spase:SavedQuantity" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SimulationDomain">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to the simulation spatial
domain.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="CoordinateSystem" type="spase:CoordinateSystem" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SpatialDimension" type="spase:SpatialDimension" minOccurs="1" maxOccurs="1"/>
<xsd:element name="VelocityDimension" type="spase:VelocityDimension" minOccurs="0" maxOccurs="1"/>
<xsd:element name="FieldDimension" type="spase:FieldDimension" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Units" type="spase:Units" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="UnitsConversion" type="spase:UnitsConversion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="CoordinatesLabel" type="spase:CoordinatesLabel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ValidMin" type="spase:ValidMin" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ValidMax" type="spase:ValidMax" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="GridStructure" type="spase:GridStructure" minOccurs="0" maxOccurs="1"/>
<xsd:element name="GridCellSize" type="spase:GridCellSize" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Symmetry" type="spase:Symmetry" minOccurs="0" maxOccurs="1"/>
<xsd:element name="BoundaryConditions" type="spase:BoundaryConditions" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="BoundaryConditions">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to the simulation boundaries.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ParticleBoundary" type="spase:ElementBoundary" minOccurs="0" maxOccurs="1"/>
<xsd:element name="FieldBoundary" type="spase:ElementBoundary" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ElementBoundary">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to the simulation boundaries.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="FrontWall" type="spase:FrontWall" minOccurs="0" maxOccurs="1"/>
<xsd:element name="BackWall" type="spase:BackWall" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SideWall" type="spase:SideWall" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Obstacle" type="spase:Obstacle" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="RegionParameter">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Radius of the Region in the simulation.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Radius" type="spase:Radius" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SubLongitude" type="spase:SubLongitude" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Period" type="spase:Period" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ObjectMass" type="spase:ObjectMass" minOccurs="0" maxOccurs="1"/>
<xsd:element name="InputTableURL" type="spase:InputTableURL" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Property" type="spase:Property" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InputParameter">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A container of information regarding an input
parameter of the simulation run.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Name" type="spase:Name" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="InputTableURL" type="spase:InputTableURL" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Qualifier" type="spase:Qualifier" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ParameterQuantity" type="spase:ParameterQuantity" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Property" type="spase:Property" minOccurs="1" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InputPopulation">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Name" type="spase:Name" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Set" type="spase:Set" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ParameterKey" type="spase:ParameterKey" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Qualifier" type="spase:Qualifier" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ParticleType" type="spase:ParticleType" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ChemicalFormula" type="spase:ChemicalFormula" minOccurs="0" maxOccurs="1"/>
<xsd:element name="AtomicNumber" type="spase:AtomicNumber" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="PopulationMassNumber" type="spase:PopulationMassNumber" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PopulationChargeState" type="spase:PopulationChargeState" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PopulationDensity" type="spase:PopulationDensity" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PopulationTemperature" type="spase:PopulationTemperature" minOccurs="0" maxOccurs="1"/>
<xsd:element name="PopulationFlowSpeed" type="spase:PopulationFlowSpeed" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Distribution" type="spase:Distribution" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ProductionRate" type="spase:ProductionRate" minOccurs="0" maxOccurs="1"/>
<xsd:element name="TotalProductionRate" type="spase:TotalProductionRate" minOccurs="0" maxOccurs="1"/>
<xsd:element name="InputTableURL" type="spase:InputTableURL" minOccurs="0" maxOccurs="1"/>
<xsd:element name="DensityProfile" type="spase:DensityProfile" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ModelURL" type="spase:ModelURL" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InputField">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to a field imposed in
the simulation
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Name" type="spase:Name" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Set" type="spase:Set" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ParameterKey" type="spase:ParameterKey" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="CoordinateSystem" type="spase:CoordinateSystem" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Qualifier" type="spase:Qualifier" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="FieldQuantity" type="spase:FieldQuantity" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Units" type="spase:Units" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="UnitsConversion" type="spase:UnitsConversion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="InputLabel" type="spase:InputLabel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="FieldValue" type="spase:FieldValue" minOccurs="0" maxOccurs="1"/>
<xsd:element name="InputTableURL" type="spase:InputTableURL" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ValidMin" type="spase:ValidMin" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ValidMax" type="spase:ValidMax" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="FieldModel" type="spase:FieldModel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ModelURL" type="spase:ModelURL" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="InputProcess">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Parameters associated to a chemical process
happening in the simulation
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Name" type="spase:Name" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Set" type="spase:Set" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ParameterKey" type="spase:ParameterKey" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Description" type="spase:Description" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="ProcessType" type="spase:ProcessType" minOccurs="1" maxOccurs="1"/>
<xsd:element name="Units" type="spase:Units" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="UnitsConversion" type="spase:UnitsConversion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProcessCoefficient" type="spase:ProcessCoefficient" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ProcessCoeffType" type="spase:ProcCoefType" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ProcessModel" type="spase:ProcessModel" minOccurs="0" maxOccurs="1"/>
<xsd:element name="ModelURL" type="spase:ModelURL" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Extension">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax" namespace="##other"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="NumericalOutput">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Data stored as numerical values in a specified
format. A Numerical Data resource is a type
of "data product" which is a set of data that
is uniformly processed and formatted, from
one or more instruments, typically spanning
the full duration of the observations of the
relevant instrument(s). A data product may
consist of a collection of granules of successive
time spans, but may be a single high-level
entity.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ResourceID" type="spase:ResourceID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ResourceHeader" type="spase:ResourceHeader" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="AccessInformation" type="spase:AccessInformation" minOccurs="1" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ProcessingLevel" type="spase:ProcessingLevel" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderResourceName" type="spase:ProviderResourceName" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderProcessingLevel" type="spase:ProviderProcessingLevel" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderVersion" type="spase:ProviderVersion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedInstrumentID" type="spase:SimulatedInstrumentID" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="MeasurementType" type="spase:MeasurementType" minOccurs="1" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:choice minOccurs="0" maxOccurs="1">
<xsd:element name="TemporalDescription" type="spase:TemporalDescription"/> <!-- defined in -->
<xsd:element name="SpatialDescription" type="spase:SpatialDescription"/>
</xsd:choice>
<xsd:element name="SpectralRange" type="spase:SpectralRange" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Keyword" type="spase:Keyword" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="InputResourceID" type="spase:InputResourceID" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="Parameter" type="spase:Parameter" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="SimulationProduct" type="spase:Product" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Property" type="spase:Property" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Extension" type="spase:Extension" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DisplayOutput">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A graphical representation of data wherein
the underlying numeric values are not (readily)
accessible for analysis.. Examples are line
plots and spectrograms. A Display Data resource
is a type of "data product" which is a set
of data that is uniformly processed and formatted,
from one or more instruments, typically spanning
the full duration of the observations of the
relevant instrument(s). A data product may
consist of a collection of granules of successive
time spans, but may be a single high-level
entity.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="ResourceID" type="spase:ResourceID" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ResourceHeader" type="spase:ResourceHeader" minOccurs="1" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="AccessInformation" type="spase:AccessInformation" minOccurs="1" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="ProcessingLevel" type="spase:ProcessingLevel" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderResourceName" type="spase:ProviderResourceName" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderProcessingLevel" type="spase:ProviderProcessingLevel" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="ProviderVersion" type="spase:ProviderVersion" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedInstrumentID" type="spase:SimulatedInstrumentID" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="MeasurementType" type="spase:MeasurementType" minOccurs="1" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:choice minOccurs="0" maxOccurs="1">
<xsd:element name="TemporalDescription" type="spase:TemporalDescription"/> <!-- defined in -->
<xsd:element name="SpatialDescription" type="spase:SpatialDescription"/>
</xsd:choice>
<xsd:element name="SpectralRange" type="spase:SpectralRange" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="DisplayCadence" type="spase:DisplayCadence" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="SimulatedRegion" type="spase:SimulatedRegion" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Caveats" type="spase:Caveats" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
<xsd:element name="Keyword" type="spase:Keyword" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="InputResourceID" type="spase:InputResourceID" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="Parameter" type="spase:Parameter" minOccurs="0" maxOccurs="unbounded"/> <!-- defined in -->
<xsd:element name="SimulationProduct" type="spase:Product" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Property" type="spase:Property" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="Extension" type="spase:Extension" minOccurs="0" maxOccurs="1"/> <!-- defined in -->
</xsd:sequence>
</xsd:complexType>
<xsd:group name="CutsDescription">
<xsd:sequence>
<xsd:element name="PlaneNormalVector" type="spase:PlaneNormalVector" minOccurs="1" maxOccurs="1"/>
<xsd:element name="PlanePoint" type="spase:PlanePoint" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
</xsd:group>
<xsd:group name="CubesDescription">
<xsd:sequence>
<xsd:element name="RegionBegin" type="spase:RegionBegin" minOccurs="1" maxOccurs="1"/>
<xsd:element name="RegionEnd" type="spase:RegionEnd" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
</xsd:group>
<!-- ================================
Dictionary Terms
================================ -->
<xsd:simpleType name="BackWall">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Back wall of the simulation domain by which
the plasma flow may exit the simulation.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="ChemicalFormula">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Chemical formula representing a population
of particle.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="CodeLanguage">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Language in which a numerical code is written.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="CoordinatesLabel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the labels of each dimension
of the spatial domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeStringSequence"/>
</xsd:simpleType>
<xsd:simpleType name="DensityProfile">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Density profile of the particles in a population.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="Dimension">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The nnu8mber of items along one axis.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:integer"/>
</xsd:simpleType>
<xsd:simpleType name="Distribution">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Velocity distribution of the particles in
a population.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="Duration">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Duration of the simulation.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:duration"/>
</xsd:simpleType>
<xsd:simpleType name="FieldDimension">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Number of field dimensions in the simulation
domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:integer"/>
</xsd:simpleType>
<xsd:simpleType name="FieldModel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Field model imposed in the simulation run.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="FieldValue">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the values of the input parameter.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeStringSequence"/>
</xsd:simpleType>
<xsd:simpleType name="FrontWall">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Front wall of the simulation domain by which
the plasma flow may be injected.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="GridCellSize">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the cell sizes in each dimension.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeFloatSequence"/>
</xsd:simpleType>
<xsd:simpleType name="GridStructure">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Structure of the simulation grid.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="InputLabel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the labels of each dimension
of the input parameter.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeStringSequence"/>
</xsd:simpleType>
<xsd:simpleType name="InputTableURL">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A URL to a table containing input parameters.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:anyURI"/>
</xsd:simpleType>
<xsd:simpleType name="ModelID">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string defining the ID of the model.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeID"/>
</xsd:simpleType>
<xsd:simpleType name="ModelURL">
<xsd:annotation>
<xsd:documentation xml:lang="en">
URL pointing toward the description of a model
used in the definition of a property or an
input.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:anyURI"/>
</xsd:simpleType>
<xsd:complexType name="ObjectMass">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Mass of an object referenced as a simulated
region.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="Obstacle">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Obstacle in the simulation domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="Period">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A length or era of time.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="PlaneNormalVector">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A list of the component in each dimension
of the vector normal to a plane.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeFloatSequence"/>
</xsd:simpleType>
<xsd:simpleType name="PlanePoint">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A list of the component in each dimension
of a point in plane.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeFloatSequence"/>
</xsd:simpleType>
<xsd:simpleType name="Population">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A concise description of a particle population,
for references.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="PopulationChargeState">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Charge of a particle in a population, in units
of the charge of a proton. Charge state of
a bare proton = 1.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:double"/>
</xsd:simpleType>
<xsd:complexType name="PopulationDensity">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The number of particles per unit volume.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="PopulationFlowSpeed">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The rate at which particles or energy is passing
through a unit area in a unit time.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="PopulationMassNumber">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total number of protons and neutrons (together
known as nucleons) in an atomic nucleus.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="PopulationTemperature">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A measure of the kinetic energy of random
motion with respect to the average. Temperature
is properly defined only for an equilibrium
particle distribution (Maxwellian distribution).
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="ProcessCoefficient">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Coefficient associated to a chemical process.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="ProcessModel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Model used to describe a chemical process.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="ProductionRate">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The number of items that can be produced
during a given period of time.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="PropertyLabel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the labels of each dimension
of the property.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeStringSequence"/>
</xsd:simpleType>
<xsd:simpleType name="PropertyModel">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Model used to define a property.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="PropertyTableURL">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A URL to a table containing property values.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:anyURI"/>
</xsd:simpleType>
<xsd:simpleType name="PropertyValue">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A string list of the values of the property.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeStringSequence"/>
</xsd:simpleType>
<xsd:complexType name="Radius">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The length of a line segment from a center
point to the perimeter.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="RegionBegin">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The values that define the start point of
a region.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeFloatSequence"/>
</xsd:simpleType>
<xsd:simpleType name="RegionEnd">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The values that define the ending point of
a region.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeFloatSequence"/>
</xsd:simpleType>
<xsd:simpleType name="SideWall">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Side walls of the simulation domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="SimulatedInstrumentID">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The identifier of the a simulated instrument
description.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="spase:typeID"/>
</xsd:simpleType>
<xsd:simpleType name="SpatialDimension">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Number of spatial dimensions in the simulation
domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:integer"/>
</xsd:simpleType>
<xsd:simpleType name="Step">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Spatial step between two elements of the diagnosis.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="SubLongitude">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The longitude on the surface of an object
which is directly below another object.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="TimeStart">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Time at which the coverage by the element
start.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:time"/>
</xsd:simpleType>
<xsd:simpleType name="TimeStep">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Time Step.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:duration"/>
</xsd:simpleType>
<xsd:simpleType name="TimeStop">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Time at which the coverage by the element
stop.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:time"/>
</xsd:simpleType>
<xsd:complexType name="TotalProductionRate">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The total number of items that can be produced
during a given period of time.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="spase:typeValue"/>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="VelocityDimension">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Number of velocity dimensions in the simulation
domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:integer"/>
</xsd:simpleType>
<xsd:simpleType name="VersionTag">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The text string for a version indicator.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<!-- ================================
Lists
================================ -->
<!-- ==========================
Version
========================== -->
<xsd:simpleType name="Version">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Version number.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="1.0.0"/>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
ParameterQuantity
========================== -->
<xsd:simpleType name="ParameterQuantity">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
<xsd:union memberTypes="spase:FieldQuantity spase:ParticleQuantity spase:MeasurementType spase:ParticleType spase:DirectionAngle spase:MixedQuantity spase:SpectralRange spase:WaveQuantity spase:WaveType spase:InstrumentType spase:ProcCoefType spase:ProcessType spase:Product spase:SupportQuantity"/>
</xsd:simpleType>
<!-- ==========================
ProcCoefType
Whether the simulation results are obtained
from a stationary solution or are dynamically
computed.
========================== -->
<xsd:simpleType name="ProcCoefType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Whether the simulation results are obtained
from a stationary solution or are dynamically
computed.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="CrossSection">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Cross section of the reaction, when the reaction
implies the collision of two particles.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Frequency">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Other">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Rate">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Reaction rate: reaction production per unit
of time.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
ProcessType
Type of chemical process.
========================== -->
<xsd:simpleType name="ProcessType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of chemical process.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="ChargeExchange">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Chemical process involving a charge transfer
from an ion (which becomes neutral) to a neutral
(which becomes ionized).
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="DissociativeRecombination">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Chemical process by which an ion is neutralized
by capturing an electron, and splits in two
new neutral species.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="ElectronImpact">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Chemical process by which a neutral is ionized
thanks to the energy from the impact of an
electron.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PhotoIonization">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Chemical process by which a neutral is ionized
thanks to the energy from a photon.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
Product
Type of article or asset.
========================== -->
<xsd:simpleType name="Product">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Type of article or asset.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="2DCuts">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="3DCubes">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Lines">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="SpatialSeries">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Spectra">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TimeSeries">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
SavedQuantity
Quantities that are saved during a given diagnosis.
========================== -->
<xsd:simpleType name="SavedQuantity">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Quantities that are saved during a given diagnosis.
</xsd:documentation>
</xsd:annotation>
<xsd:union memberTypes="spase:FieldQuantity spase:ParticleQuantity spase:MixedQuantity spase:WaveQuantity spase:Product"/>
</xsd:simpleType>
<!-- ==========================
SimulatedRegion
Identifiers for areas of the physical world
which may be occupied or observed.
========================== -->
<xsd:simpleType name="SimulatedRegion">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Identifiers for areas of the physical world
which may be occupied or observed.
</xsd:documentation>
</xsd:annotation>
<xsd:union memberTypes="spase:Region spase:SpecificSimulatedRegion"/>
</xsd:simpleType>
<!-- ==========================
SimulationType
A characterization of the numerical scheme
used in the simulation.
========================== -->
<xsd:simpleType name="SimulationType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A characterization of the numerical scheme
used in the simulation.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Hybrid">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A numerical scheme simulating ions as particles
and electrons as a fluid.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="MHD">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PIC">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A numerical scheme simulating ions and electrons
as macroparticles.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Paraboloid">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A shape generated by the rotation of a parabola
around its axis of symmetry.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Test_Particle">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
SpecificSimulatedRegion
Identifiers for areas of the physical world
which may be occupied or observed.
========================== -->
<xsd:simpleType name="SpecificSimulatedRegion">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Identifiers for areas of the physical world
which may be occupied or observed.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Callisto">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Enceladus">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Europa">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Ganymede">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The biggest moon of Jupiter planet in our
solar system.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Incident">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Direction-dependent property.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Io">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Planet">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Rhea">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Titan">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Title">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
Symmetry
Symmetry of the simulation domain.
========================== -->
<xsd:simpleType name="Symmetry">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Symmetry of the simulation domain.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Axial">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Axial symmetry.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Central">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Central Symmetry.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="None">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Plane">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Symmetry across a plane.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ==========================
YN
Yes or No
========================== -->
<xsd:simpleType name="YN">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Yes or No
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="No">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Yes">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<!-- ================================
Types
================================ -->
<xsd:simpleType name="typeSequence">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
<xsd:list itemType="xsd:integer"/>
</xsd:simpleType>
<xsd:simpleType name="typeStringSequence">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A list of strings where the order of the values
is fixed. A space separates each value. For
example, "one two three".
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
<xsd:list itemType="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="typeFloatSequence">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A list of floating point numbers where the
order of the values is fixed. A space separates
each value. For example, "1.2 3.4 5.6".
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
<xsd:list itemType="xsd:float"/>
</xsd:simpleType>
<xsd:simpleType name="typeID">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[^:]+://[^/]+/.+"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="typeValue">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
A description of the standardized measurement
increments in which a value is specified.
The description is represented as a mathematical
phrase. Units should be represented by widely
accepted representation. For example, units
should conform to the International System
of Units (SI) which is maintained by BIPM
(Bureau International des Poids et Mesures
(see http://www.bipm.fr/ ) when appropriate
or use tokens like "Re" to represent units
of the Radius of the Earth. Within a phrase
the circumflex (^) is used to indicate a power,
a star (*) is used to indicate multiplication
and a slash (/) division. When symbols are
not separated by a mathematical operator,
multiplication is assumed. Symbols for base
units can be found at: http://www.bipm.fr/en/si/si_brochure/chapter2/2-1/#symbols
and those for common derived units can be
found at: http://www.bipm.fr/en/si/derived_units/2-2-2.html
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:extension base="xsd:double">
<xsd:attribute name="Units" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="UnitsConversion" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="typeElementBoundary">
<xsd:annotation>
<xsd:documentation xml:lang="en">
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="BackWall" type="spase:BackWall" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Caveats" type="base:Caveats" minOccurs="0" maxOccurs="1"/>
<xsd:element name="FrontWall" type="spase:FrontWall" minOccurs="0" maxOccurs="1"/>
<xsd:element name="Obstacle" type="spase:Obstacle" minOccurs="0" maxOccurs="1"/>
<xsd:element name="SideWall" type="spase:SideWall" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>