-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstatesAtoms.xsd
564 lines (563 loc) · 20.8 KB
/
statesAtoms.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified"
xmlns="http://vamdc.org/xml/xsams/1.0"
xmlns:xsams="http://vamdc.org/xml/xsams/1.0"
targetNamespace="http://vamdc.org/xml/xsams/1.0">
<xs:include schemaLocation="typesAttributes.xsd"/>
<xs:annotation>
<xs:documentation>5/8/07: polarizability added (DH,YR); quantumDefect added (12/5/07)</xs:documentation>
</xs:annotation>
<xs:element name="Atoms" type="AtomsType"/>
<xs:complexType name="AtomsType">
<xs:annotation>
<xs:documentation>Atoms or atomic ions</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Atom" type="AtomType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AtomType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="ChemicalElement" type="ChemicalElementType">
<xs:annotation>
<xs:documentation>Description of chemical elements</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Isotope" type="IsotopeType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>List of isotopes</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="IsotopeType">
<xs:sequence>
<xs:element name="IsotopeParameters" type="IsotopeParametersType" minOccurs="0">
<xs:annotation>
<xs:documentation>Parameters of a specific isotope</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ion" type="AtomicIonType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>List of ionization states</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Comments" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="IsotopeParametersType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="MassNumber" type="xs:integer">
<xs:annotation>
<xs:documentation>Mass number. Example: 40.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Mass" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Measured mass.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NuclearSpin" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Spin of an isotope</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AtomicIonType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="IonCharge" type="xs:integer">
<xs:annotation>
<xs:documentation>Ion charge. Example: 12.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IsoelectronicSequence" type="ElementSymbolType" minOccurs="0">
<xs:annotation>
<xs:documentation>Chemical element representation of isoelectronic sequence. Example: He.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AtomicState" type="AtomicStateType" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>List of atomic states within an ion</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InChI" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Standard InChI identifier</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InChIKey" type="xs:string" minOccurs="1">
<xs:annotation>
<xs:documentation>Standard InChI key. Relatively reliable way to decide if species are equal</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="speciesID" type="SpeciesIDType" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AtomicStateType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="Description" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>An arbitrary label</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AtomicNumericalData" type="AtomicNumericalDataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Numerical parameters describing an atomic state</xs:documentation>
</xs:annotation>
<xs:unique name="atomStateLifeTime">
<!--Atomic state life time decay mechanism shouldn't be repeated within same state-->
<xs:selector xpath="xsams:LifeTime"/>
<xs:field xpath="@decay"/>
</xs:unique>
</xs:element>
<xs:element name="AtomicQuantumNumbers" type="AtomicQuantumNumbersType" minOccurs="0">
<xs:annotation>
<xs:documentation>Discrete quantum numbers describing an atomic state</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AtomicComposition" type="AtomicCompositionType" minOccurs="0">
<xs:annotation>
<xs:documentation>Expansion of the wavefunction in a specific basis</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="stateID" type="StateIDType" use="required"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AtomicNumericalDataType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="StateEnergy" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Energy from the ground state</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IonizationEnergy" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Energy required to remove an electron</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LandeFactor" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Lande factor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="QuantumDefect" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>Quantum defect</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LifeTime" type="LifeTimeType" minOccurs="0" maxOccurs="3">
<xs:annotation>
<xs:documentation>State lifetime</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Polarizability" type="DataType" minOccurs="0">
<xs:annotation>
<xs:documentation>State polarizability</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="StatisticalWeight" type="xs:double" minOccurs="0">
<xs:annotation>
<xs:documentation>Statistical weight. May be non-integer due to plasma environment effects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="HyperfineConstantA" type="DataType">
<xs:annotation>
<xs:documentation>Hyperfine Structure Constant A, interaction with magnetic dipole nuclear moment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element minOccurs="0" name="HyperfineConstantB" type="DataType">
<xs:annotation>
<xs:documentation>Hyperfine Structure Constant B, interaction with the electric quadropole nuclear moment.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AtomicCompositionType">
<xs:complexContent>
<xs:extension base="PrimaryType">
<xs:sequence>
<xs:element name="Component" type="AtomicComponentType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Component of the state wavefunction</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="AtomicCoreType">
<xs:sequence>
<xs:element name="ElementCore" type="ElementSymbolType" minOccurs="0">
<xs:annotation>
<xs:documentation>Isoelectronic atom of the core. Example: Xe</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Configuration" type="ConfigurationType" minOccurs="0">
<xs:annotation>
<xs:documentation>Configuration of the core</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Term" type="TermType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term of the core</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalAngularMomentum" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Total angular momentum of the core</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AtomicComponentType">
<xs:annotation>
<xs:documentation>Description of a component of the atomic state wave function</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="SuperConfiguration" type="SuperConfigurationType" minOccurs="0">
<xs:annotation>
<xs:documentation>Superconfiguration</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Configuration" type="ConfigurationType" minOccurs="0">
<xs:annotation>
<xs:documentation>Atomic configuration</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Term" type="TermType" minOccurs="0">
<xs:annotation>
<xs:documentation>Atomic term</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MixingCoefficient" type="MixingCoefficientType" minOccurs="0">
<xs:annotation>
<xs:documentation>Expansion coefficient in the sum over the basis functions (signed or squared)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Comments" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Comments on a specific component</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="AtomicQuantumNumbersType">
<xs:all>
<xs:element name="Parity" type="ParityType" minOccurs="0">
<xs:annotation>
<xs:documentation>State parity. Example: odd</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalAngularMomentum" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Total angular momentum. Example: 2.5</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Kappa" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Relativistic parameter kappa</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HyperfineMomentum" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Hyperfine momentum. Example: 2</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MagneticQuantumNumber" type="AngularMomentumProjectionType" minOccurs="0">
<xs:annotation>
<xs:documentation>Magnetic quantum number. Example: -1</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="ConfigurationType">
<xs:annotation>
<xs:documentation>Description of atomic configuration</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="AtomicCore" type="AtomicCoreType" minOccurs="0">
<xs:annotation>
<xs:documentation>Description of the configuration core</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Shells" type="ShellsType" minOccurs="0">
<xs:annotation>
<xs:documentation>List of electron shells</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ConfigurationLabel" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Arbitrary configuration label</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="ShellsType">
<xs:sequence>
<xs:sequence>
<xs:element name="Shell" type="ShellType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Atomic shell</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:sequence minOccurs="0">
<xs:element name="ShellPair" type="ShellPairType" maxOccurs="unbounded"/>
</xs:sequence>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ShellPairType">
<xs:sequence>
<xs:element name="Shell1" type="ShellType"/>
<xs:element name="Shell2" type="ShellType"/>
<xs:element name="ShellPairTerm" type="TermType"/>
</xs:sequence>
<xs:attribute name="shellPairID" type="xs:ID" use="required">
<xs:annotation>
<xs:documentation>Identifier of the shell pair</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="ShellType">
<xs:annotation>
<xs:documentation>Complex type for atomic shell description.</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="PrincipalQuantumNumber" type="PrincipalQuantumNumberType">
<xs:annotation>
<xs:documentation>Principal quantum number</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OrbitalAngularMomentum" type="OrbitalAngularMomentumType"/>
<xs:element name="NumberOfElectrons" type="xs:double">
<xs:annotation>
<xs:documentation>Number of electrons in the shell</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Parity" type="ParityType" minOccurs="0">
<xs:annotation>
<xs:documentation>Parity of a shell</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Kappa" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Relativistic parameter</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TotalAngularMomentum" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Total angular momentum of the shell</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ShellTerm" type="TermType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term of the shell</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
<xs:attribute name="shellID" type="xs:ID" use="optional">
<xs:annotation>
<xs:documentation>Shell identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="SuperConfigurationType">
<xs:sequence>
<xs:element name="SuperShell" type="SuperShellType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>List of supershells</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="SuperShellType">
<xs:sequence>
<xs:element name="PrincipalQuantumNumber" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>Principal quantum number. Example: 4</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="NumberOfElectrons" type="xs:double">
<xs:annotation>
<xs:documentation>Number of electrons. May be noninteger to account for plasma effects. Example: 3</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="jjCouplingType">
<xs:sequence>
<xs:element name="j" type="AngularMomentumType" minOccurs="2" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Value of the total angular momentum</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="jKCouplingType">
<xs:all>
<xs:element name="j" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Value of the total angular momentum of the core</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="S2" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Spin of the external electron(s)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="K" type="AngularMomentumType">
<xs:annotation>
<xs:documentation>Value of the K-number (j + orbital angular momentum of the external electron(s))</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="LKCouplingType">
<xs:all>
<xs:element name="L" type="OrbitalAngularMomentumType">
<xs:annotation>
<xs:documentation>Value of the sum of orbital angular momenta of the core and external electron </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="K" type="AngularMomentumType">
<xs:annotation>
<xs:documentation>Value of the K-number (L + spin of the core)</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="S2" type="AngularMomentumType" minOccurs="0">
<xs:annotation>
<xs:documentation>Spin of the external electron(s)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="LSCouplingType">
<xs:all>
<xs:element name="L" type="OrbitalAngularMomentumType">
<xs:annotation>
<xs:documentation>Orbital angular momentum of the term in LS-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="S" type="AngularMomentumType">
<xs:annotation>
<xs:documentation>Spin angular momentum of the term in LS-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Multiplicity" type="xs:positiveInteger" minOccurs="0">
<xs:annotation>
<xs:documentation>2S+1</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Seniority" type="xs:nonNegativeInteger" minOccurs="0">
<xs:annotation>
<xs:documentation>Seniority number</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="MixingCoefficientType">
<xs:simpleContent>
<xs:extension base="xs:double">
<xs:attribute name="mixingClass" type="MixingClassType" use="required">
<xs:annotation>
<xs:documentation>Indicator of whether amplitude or amplitude squared is given</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="OrbitalAngularMomentumType">
<xs:annotation>
<xs:documentation>non-negative integer (and a symbol)</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="Value" type="xs:nonNegativeInteger">
<xs:annotation>
<xs:documentation>Value of the orbital angular momentum</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Symbol" type="OrbitalAngularMomentumSymbolType" minOccurs="0">
<xs:annotation>
<xs:documentation>Symbol of the orbital angular momentum</xs:documentation>
</xs:annotation>
</xs:element>
</xs:all>
</xs:complexType>
<xs:complexType name="TermType">
<xs:annotation>
<xs:documentation>Complex term for atomic term in different couplings (e.g., LS or jj).</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="LS" type="LSCouplingType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term in LS-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="jj" type="jjCouplingType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term in jj-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="J1J2" type="jjCouplingType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term in J1J2-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="jK" type="jKCouplingType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term in jK-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LK" type="LKCouplingType" minOccurs="0">
<xs:annotation>
<xs:documentation>Term in LK-coupling</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TermLabel" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Arbitrary term label</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="PrincipalQuantumNumberType">
<xs:annotation>
<xs:documentation>Principal quantum number (positive integer)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:positiveInteger"/>
</xs:simpleType>
<xs:simpleType name="OrbitalAngularMomentumSymbolType">
<xs:restriction base="xs:string">
<xs:length value="1"/>
<xs:pattern value="\w"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="MixingClassType">
<xs:restriction base="xs:token">
<xs:enumeration value="squared"/>
<xs:enumeration value="signed"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>