-
Notifications
You must be signed in to change notification settings - Fork 9
/
cif_core.dic
28052 lines (22848 loc) · 851 KB
/
cif_core.dic
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
#\#CIF_2.0
##########################################################################
# #
# CIF CORE DICTIONARY #
# #
##########################################################################
data_CIF_CORE
_dictionary.title CIF_CORE
_dictionary.class Instance
_dictionary.version 3.3.0
_dictionary.date 2024-10-21
_dictionary.uri
https://raw.githubusercontent.com/COMCIFS/cif_core/master/cif_core.dic
_dictionary.ddl_conformance 4.2.0
_dictionary.namespace CifCore
_description.text
;
The CIF_CORE dictionary defines data items that are common to all domains
of crystallographic studies. These definitions are mostly used within the
Crystallographic Information Framework (CIF).
;
save_CIF_CORE_HEAD
_definition.id CIF_CORE_HEAD
_definition.scope Category
_definition.class Head
_definition.update 2024-05-15
_description.text
;
The CIF_CORE_HEAD category is the top-level category for all categories in
the CIF_CORE dictionary.
;
_name.category_id CIF_CORE
_name.object_id CIF_CORE_HEAD
save_
save_DIFFRACTION
_definition.id DIFFRACTION
_definition.scope Category
_definition.class Set
_definition.update 2024-05-15
_description.text
;
The DICTIONARY group encompassing the CORE DIFFRACTION data items defined
and used within the Crystallographic Information Framework (CIF).
;
_name.category_id CIF_CORE_HEAD
_name.object_id DIFFRACTION
save_
save_DIFFRN
_definition.id DIFFRN
_definition.scope Category
_definition.class Set
_definition.update 2022-05-09
_description.text
;
The CATEGORY of data items used to describe the diffraction experiment.
;
_name.category_id DIFFRACTION
_name.object_id DIFFRN
_category_key.name '_diffrn.id'
save_
save_diffrn.ambient_environment
_definition.id '_diffrn.ambient_environment'
_alias.definition_id '_diffrn_ambient_environment'
_definition.update 2012-11-26
_description.text
;
The gas or liquid environment of the crystal sample, if not air.
;
_name.category_id diffrn
_name.object_id ambient_environment
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
loop_
_description_example.case
'He'
'vacuum'
'mother liquor'
save_
save_diffrn.ambient_pressure
_definition.id '_diffrn.ambient_pressure'
_alias.definition_id '_diffrn_ambient_pressure'
_definition.update 2023-01-13
_description.text
;
Mean hydrostatic pressure at which intensities were measured.
;
_name.category_id diffrn
_name.object_id ambient_pressure
_type.purpose Measurand
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kilopascals
save_
save_diffrn.ambient_pressure_su
_definition.id '_diffrn.ambient_pressure_su'
loop_
_alias.definition_id
'_diffrn_ambient_pressure_su'
'_diffrn.ambient_pressure_esd'
_definition.update 2023-07-01
_description.text
;
Standard uncertainty of _diffrn.ambient_pressure.
;
_name.category_id diffrn
_name.object_id ambient_pressure_su
_name.linked_item_id '_diffrn.ambient_pressure'
_units.code kilopascals
_import.get [{'file':templ_attr.cif 'save':general_su}]
save_
save_diffrn.ambient_pressure_gt
_definition.id '_diffrn.ambient_pressure_gt'
_alias.definition_id '_diffrn_ambient_pressure_gt'
_definition.update 2012-12-13
_description.text
;
Mean hydrostatic pressure above which intensities were measured.
These items allow for a pressure range to be given.
_diffrn.ambient_pressure should be used in preference to this
item when possible.
;
_name.category_id diffrn
_name.object_id ambient_pressure_gt
_type.purpose Number
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kilopascals
save_
save_diffrn.ambient_pressure_lt
_definition.id '_diffrn.ambient_pressure_lt'
_alias.definition_id '_diffrn_ambient_pressure_lt'
_definition.update 2012-12-13
_description.text
;
Mean hydrostatic pressure below which intensities were measured.
These items allow for a pressure range to be given.
_diffrn.ambient_pressure should be used in preference to this
item when possible.
;
_name.category_id diffrn
_name.object_id ambient_pressure_lt
_type.purpose Number
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kilopascals
save_
save_diffrn.ambient_temperature
_definition.id '_diffrn.ambient_temperature'
loop_
_alias.definition_id
'_diffrn_ambient_temperature'
'_diffrn_ambient_temp'
'_diffrn.ambient_temp'
_definition.update 2012-11-26
_description.text
;
Mean temperature at which intensities were measured.
;
_name.category_id diffrn
_name.object_id ambient_temperature
_type.purpose Measurand
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kelvins
save_
save_diffrn.ambient_temperature_su
_definition.id '_diffrn.ambient_temperature_su'
loop_
_alias.definition_id
'_diffrn_ambient_temperature_su'
'_diffrn_ambient_temp_su'
'_diffrn.ambient_temp_esd'
_definition.update 2021-03-03
_description.text
;
Standard uncertainty of _diffrn.ambient_temperature.
;
_name.category_id diffrn
_name.object_id ambient_temperature_su
_name.linked_item_id '_diffrn.ambient_temperature'
_units.code kelvins
_import.get [{'file':templ_attr.cif 'save':general_su}]
save_
save_diffrn.ambient_temperature_details
_definition.id '_diffrn.ambient_temperature_details'
loop_
_alias.definition_id
'_diffrn_ambient_temp_details'
'_diffrn.ambient_temp_details'
_definition.update 2014-06-12
_description.text
;
A description of special aspects of temperature control during
data collection.
;
_name.category_id diffrn
_name.object_id ambient_temperature_details
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
save_
save_diffrn.ambient_temperature_gt
_definition.id '_diffrn.ambient_temperature_gt'
loop_
_alias.definition_id
'_diffrn_ambient_temp_gt'
'_diffrn_ambient_temperature_gt'
'_diffrn.ambient_temp_gt'
_definition.update 2012-12-13
_description.text
;
Mean temperature above which intensities were measured.
These items allow for a temperature range to be given.
_diffrn.ambient_temperature should be used in preference to
this item when possible.
;
_name.category_id diffrn
_name.object_id ambient_temperature_gt
_type.purpose Number
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kelvins
save_
save_diffrn.ambient_temperature_lt
_definition.id '_diffrn.ambient_temperature_lt'
loop_
_alias.definition_id
'_diffrn_ambient_temp_lt'
'_diffrn_ambient_temperature_lt'
'_diffrn.ambient_temp_lt'
_definition.update 2012-12-13
_description.text
;
Mean temperature below which intensities were measured.
These items allow for a temperature range to be given.
_diffrn.ambient_temperature should be used in preference to
this item when possible.
;
_name.category_id diffrn
_name.object_id ambient_temperature_lt
_type.purpose Number
_type.source Recorded
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code kelvins
save_
save_diffrn.crystal_id
_definition.id '_diffrn.crystal_id'
_definition.update 2022-05-09
_description.text
;
Identifier for the crystal from which diffraction data were
collected. This is a pointer to _exptl_crystal.id.
;
_name.category_id diffrn
_name.object_id crystal_id
_name.linked_item_id '_exptl_crystal.id'
_type.purpose Link
_type.source Assigned
_type.container Single
_type.contents Word
save_
save_diffrn.crystal_support
_definition.id '_diffrn.crystal_support'
_definition.update 2014-06-12
_description.text
;
The physical device used to support the crystal during data
collection.
;
_name.category_id diffrn
_name.object_id crystal_support
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
loop_
_description_example.case
'glass capillary'
'quartz capillary'
'fiber'
'metal loop'
save_
save_diffrn.crystal_treatment
_definition.id '_diffrn.crystal_treatment'
_alias.definition_id '_diffrn_crystal_treatment'
_definition.update 2012-11-26
_description.text
;
Remarks about how the crystal was treated prior to intensity measurement.
Particularly relevant when intensities were measured at low temperature.
;
_name.category_id diffrn
_name.object_id crystal_treatment
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
loop_
_description_example.case
'equilibrated in hutch for 24 hours'
'flash frozen in liquid nitrogen'
'slow cooled with direct air stream'
save_
save_diffrn.id
_definition.id '_diffrn.id'
_definition.update 2022-05-09
_description.text
;
Unique identifier for a diffraction data set collected under
particular diffraction conditions.
;
_name.category_id diffrn
_name.object_id id
_type.purpose Key
_type.source Assigned
_type.container Single
_type.contents Word
save_
save_diffrn.measured_fraction_theta_full
_definition.id '_diffrn.measured_fraction_theta_full'
_alias.definition_id '_diffrn_measured_fraction_theta_full'
_definition.update 2013-01-20
_description.text
;
Fraction of unique (symmetry-independent) reflections measured
out to _diffrn_reflns.theta_full.
;
_name.category_id diffrn
_name.object_id measured_fraction_theta_full
_type.purpose Number
_type.source Derived
_type.container Single
_type.contents Real
_enumeration.range 0.0:1.0
_units.code none
save_
save_diffrn.measured_fraction_theta_max
_definition.id '_diffrn.measured_fraction_theta_max'
_alias.definition_id '_diffrn_measured_fraction_theta_max'
_definition.update 2013-01-20
_description.text
;
Fraction of unique (symmetry-independent) reflections measured
out to _diffrn_reflns.theta_max.
;
_name.category_id diffrn
_name.object_id measured_fraction_theta_max
_type.purpose Number
_type.source Derived
_type.container Single
_type.contents Real
_enumeration.range 0.0:1.0
_units.code none
save_
save_diffrn.special_details
_definition.id '_diffrn.special_details'
loop_
_alias.definition_id
'_diffrn_special_details'
'_diffrn.details'
_definition.update 2012-11-26
_description.text
;
Special details of the diffraction measurement process. Should include
information about source instability, crystal motion, degradation, etc.
;
_name.category_id diffrn
_name.object_id special_details
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
_description_example.case
;
The results may not be entirely reliable as the measurement was
made during a heat wave when the air-conditioning had failed.
;
save_
save_diffrn.symmetry_description
_definition.id '_diffrn.symmetry_description'
_alias.definition_id '_diffrn_symmetry_description'
_definition.update 2012-11-26
_description.text
;
Recorded diffraction point symmetry, systematic absences and possible
space group(s) or superspace group(s) compatible with these.
;
_name.category_id diffrn
_name.object_id symmetry_description
_type.purpose Describe
_type.source Recorded
_type.container Single
_type.contents Text
save_
save_CELL
_definition.id CELL
_definition.scope Category
_definition.class Set
_definition.update 2023-03-02
_description.text
;
The CATEGORY of data items used to describe the parameters of
the crystal unit cell.
;
_name.category_id DIFFRN
_name.object_id CELL
_category_key.name '_cell.diffrn_id'
save_
save_cell.angle_alpha
_definition.id '_cell.angle_alpha'
_alias.definition_id '_cell_angle_alpha'
_name.category_id cell
_name.object_id angle_alpha
_import.get [{'file':templ_attr.cif 'save':cell_angle}]
save_
save_cell.angle_alpha_su
_definition.id '_cell.angle_alpha_su'
loop_
_alias.definition_id
'_cell_angle_alpha_su'
'_cell.angle_alpha_esd'
_name.category_id cell
_name.object_id angle_alpha_su
_name.linked_item_id '_cell.angle_alpha'
_import.get
[{'file':templ_attr.cif 'save':cell_angle_su}]
save_
save_cell.angle_beta
_definition.id '_cell.angle_beta'
_alias.definition_id '_cell_angle_beta'
_name.category_id cell
_name.object_id angle_beta
_import.get [{'file':templ_attr.cif 'save':cell_angle}]
save_
save_cell.angle_beta_su
_definition.id '_cell.angle_beta_su'
loop_
_alias.definition_id
'_cell_angle.beta_su'
'_cell_angle_beta_su'
'_cell.angle_beta_esd'
_name.category_id cell
_name.object_id angle_beta_su
_name.linked_item_id '_cell.angle_beta'
_import.get
[{'file':templ_attr.cif 'save':cell_angle_su}]
save_
save_cell.angle_gamma
_definition.id '_cell.angle_gamma'
_alias.definition_id '_cell_angle_gamma'
_name.category_id cell
_name.object_id angle_gamma
_import.get [{'file':templ_attr.cif 'save':cell_angle}]
save_
save_cell.angle_gamma_su
_definition.id '_cell.angle_gamma_su'
loop_
_alias.definition_id
'_cell_angle.gamma_su'
'_cell_angle_gamma_su'
'_cell.angle_gamma_esd'
_name.category_id cell
_name.object_id angle_gamma_su
_name.linked_item_id '_cell.angle_gamma'
_import.get
[{'file':templ_attr.cif 'save':cell_angle_su}]
save_
save_cell.atomic_mass
_definition.id '_cell.atomic_mass'
_definition.update 2012-11-22
_description.text
;
Atomic mass of the contents of the unit cell. This calculated
from the atom sites present in the ATOM_TYPE list, rather than
the ATOM_SITE lists of atoms in the refined model.
;
_name.category_id cell
_name.object_id atomic_mass
_type.purpose Number
_type.source Derived
_type.container Single
_type.contents Real
_enumeration.range 0.0:
_units.code dalton
_method.purpose Evaluation
_method.expression
;
mass = 0.
Loop t as atom_type {
mass += t.number_in_cell * t.atomic_mass
}
_cell.atomic_mass = mass
;
save_
save_cell.convert_uij_to_betaij
_definition.id '_cell.convert_Uij_to_betaij'
_definition.update 2021-09-24
_description.text
;
The reciprocal space matrix for converting the U(ij) matrix of
atomic displacement parameters to a dimensionless beta(IJ) matrix.
The ADP factor in a structure factor expression:
t = exp - 2π^2^ ( U11 h h a* a* + ...... 2 U23 k l b* c* )
t = exp - 0.25 ( B11 h h a* a* + ...... 2 B23 k l b* c* )
= exp - ( β11 h h + ............ 2 β23 k l )
The conversion of the U or B matrices to the β matrix
β = C U C = C B C /8π^2^
where C is conversion matrix defined here.
;
_name.category_id cell
_name.object_id convert_Uij_to_betaij
_type.purpose Measurand
_type.source Derived
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code reciprocal_angstroms
_method.purpose Evaluation
_method.expression
;
With c as cell
_cell.convert_Uij_to_betaij = 1.4142 * Pi *
Matrix([[ c.reciprocal_length_a, 0, 0 ],
[ 0, c.reciprocal_length_b, 0 ],
[ 0, 0, c.reciprocal_length_c ]])
;
save_
save_cell.convert_uij_to_betaij_su
_definition.id '_cell.convert_Uij_to_betaij_su'
_definition.update 2023-07-01
_description.text
;
Standard uncertainty of _cell.convert_Uij_to_betaij.
;
_name.category_id cell
_name.object_id convert_Uij_to_betaij_su
_name.linked_item_id '_cell.convert_Uij_to_betaij'
_type.purpose SU
_type.source Related
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code reciprocal_angstroms
save_
save_cell.convert_uiso_to_uij
_definition.id '_cell.convert_Uiso_to_Uij'
_definition.update 2021-07-07
_description.text
;
The reciprocal space matrix for converting the isotropic Uiso
atomic displacement parameter to the anisotropic matrix Uij.
| 1 cos(γ*) cos(β*) |
U[i,j] = Uiso * | cos(γ*) 1 cos(α*) |
| cos(β*) cos(α*) 1 |
;
_name.category_id cell
_name.object_id convert_Uiso_to_Uij
_type.purpose Measurand
_type.source Derived
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code none
_method.purpose Evaluation
_method.expression
;
With c as cell
_cell.convert_Uiso_to_Uij = [[ 1.,
Cosd(c.reciprocal_angle_gamma), Cosd(c.reciprocal_angle_beta) ],
[ Cosd(c.reciprocal_angle_gamma), 1.,
Cosd(c.reciprocal_angle_alpha) ], [
Cosd(c.reciprocal_angle_beta), Cosd(c.reciprocal_angle_alpha), 1. ]]
;
save_
save_cell.convert_uiso_to_uij_su
_definition.id '_cell.convert_Uiso_to_Uij_su'
_definition.update 2023-07-01
_description.text
;
Standard uncertainty of _cell.convert_Uiso_to_Uij.
;
_name.category_id cell
_name.object_id convert_Uiso_to_Uij_su
_name.linked_item_id '_cell.convert_Uiso_to_Uij'
_type.purpose SU
_type.source Related
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code none
save_
save_cell.diffrn_id
_definition.id '_cell.diffrn_id'
_definition.update 2023-02-01
_description.text
;
A pointer to the diffraction conditions to which this cell has been applied,
for example, to locate and extract diffraction peaks. These will normally be
the same conditions as those under which the cell was measured, but some
legacy data sets may have used a cell measured under differing conditions,
in which case those conditions should be indicated using the
_cell_measurement.condition_id data item.
;
_name.category_id cell
_name.object_id diffrn_id
_name.linked_item_id '_diffrn.id'
_type.purpose Link
_type.source Related
_type.container Single
_type.contents Word
save_
save_cell.formula_units_z
_definition.id '_cell.formula_units_Z'
_alias.definition_id '_cell_formula_units_Z'
_definition.update 2021-03-01
_description.text
;
The number of the formula units in the unit cell as specified
by _chemical_formula.structural, _chemical_formula.moiety or
_chemical_formula.sum.
;
_name.category_id cell
_name.object_id formula_units_Z
_type.purpose Number
_type.source Assigned
_type.container Single
_type.contents Integer
_enumeration.range 1:
_units.code none
save_
save_cell.length_a
_definition.id '_cell.length_a'
_alias.definition_id '_cell_length_a'
_name.category_id cell
_name.object_id length_a
_import.get [{'file':templ_attr.cif 'save':cell_length}]
save_
save_cell.length_a_su
_definition.id '_cell.length_a_su'
loop_
_alias.definition_id
'_cell_length_a_su'
'_cell.length_a_esd'
_name.category_id cell
_name.object_id length_a_su
_name.linked_item_id '_cell.length_a'
_import.get
[{'file':templ_attr.cif 'save':cell_length_su}]
save_
save_cell.length_b
_definition.id '_cell.length_b'
_alias.definition_id '_cell_length_b'
_name.category_id cell
_name.object_id length_b
_import.get [{'file':templ_attr.cif 'save':cell_length}]
save_
save_cell.length_b_su
_definition.id '_cell.length_b_su'
loop_
_alias.definition_id
'_cell_length_b_su'
'_cell.length_b_esd'
_name.category_id cell
_name.object_id length_b_su
_name.linked_item_id '_cell.length_b'
_import.get
[{'file':templ_attr.cif 'save':cell_length_su}]
save_
save_cell.length_c
_definition.id '_cell.length_c'
_alias.definition_id '_cell_length_c'
_name.category_id cell
_name.object_id length_c
_import.get [{'file':templ_attr.cif 'save':cell_length}]
save_
save_cell.length_c_su
_definition.id '_cell.length_c_su'
loop_
_alias.definition_id
'_cell_length_c_su'
'_cell.length_c_esd'
_name.category_id cell
_name.object_id length_c_su
_name.linked_item_id '_cell.length_c'
_import.get
[{'file':templ_attr.cif 'save':cell_length_su}]
save_
save_cell.metric_tensor
_definition.id '_cell.metric_tensor'
_definition.update 2021-07-07
_description.text
;
The direct space (covariant) metric tensor used to transform
vectors and coordinates from real (direct) to reciprocal space.
;
_name.category_id cell
_name.object_id metric_tensor
_type.purpose Number
_type.source Derived
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code angstrom_squared
_method.purpose Evaluation
_method.expression
;
with c as cell
_cell.metric_tensor = [[ c.vector_a*c.vector_a,
c.vector_a*c.vector_b, c.vector_a*c.vector_c ],
[ c.vector_b*c.vector_a, c.vector_b*c.vector_b, c.vector_b*c.vector_c ],
[ c.vector_c*c.vector_a, c.vector_c*c.vector_b,
c.vector_c*c.vector_c ]]
;
save_
save_cell.orthogonal_matrix
_definition.id '_cell.orthogonal_matrix'
_definition.update 2021-07-07
_description.text
;
Orthogonal matrix of the crystal unit cell. Definition uses
Rollet's axial assignments with cell vectors a,b,c aligned
with orthogonal axes X,Y,Z so that c||Z and b in plane YZ.
;
_name.category_id cell
_name.object_id orthogonal_matrix
_type.purpose Number
_type.source Derived
_type.container Matrix
_type.dimension '[3,3]'
_type.contents Real
_units.code angstroms
_method.purpose Evaluation
_method.expression
;
With c as cell
_cell.orthogonal_matrix = [
[ c.length_a*Sind(c.angle_beta)*Sind(c.reciprocal_angle_gamma), 0,
0 ], [
-c.length_a*Sind(c.angle_beta)*Cosd(c.reciprocal_angle_gamma),
c.length_b*Sind(c.angle_alpha), 0 ], [
c.length_a*Cosd(c.angle_beta),
c.length_b*Cosd(c.angle_alpha), c.length_c ]]
;
save_
save_cell.reciprocal_angle_alpha
_definition.id '_cell.reciprocal_angle_alpha'
_alias.definition_id '_cell_reciprocal_angle_alpha'
_definition.update 2013-01-18
_description.text
;
Reciprocal of the angle between _cell.length_b and _cell.length_c.
Ref: Buerger, M. J. (1942). X-ray Crystallography, p. 360.
New York: John Wiley & Sons Inc.
;
_name.category_id cell
_name.object_id reciprocal_angle_alpha
_type.purpose Measurand
_type.source Derived
_type.container Single
_type.contents Real
_enumeration.range 0.0:180.0
_units.code degrees
_method.purpose Evaluation
_method.expression
;
With c as cell
_cell.reciprocal_angle_alpha =
Acosd((Cosd(c.angle_beta)*Cosd(c.angle_gamma)-Cosd(c.angle_alpha))/
(Sind(c.angle_beta)*Sind(c.angle_gamma)))
;
save_
save_cell.reciprocal_angle_alpha_su
_definition.id '_cell.reciprocal_angle_alpha_su'
loop_
_alias.definition_id
'_cell_reciprocal_angle_alpha_su'
'_cell.reciprocal_angle_alpha_esd'
_definition.update 2021-03-03
_description.text
;
Standard uncertainty of _cell.reciprocal_angle_alpha.
;
_name.category_id cell
_name.object_id reciprocal_angle_alpha_su
_name.linked_item_id '_cell.reciprocal_angle_alpha'
_units.code degrees
_import.get [{'file':templ_attr.cif 'save':general_su}]
save_
save_cell.reciprocal_angle_beta