-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathchmo-slim.owl
2487 lines (1802 loc) · 166 KB
/
chmo-slim.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.enanomapper.net/onto/external/chmo-slim.owl#"
xml:base="http://purl.enanomapper.net/onto/external/chmo-slim.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:pav="http://purl.org/pav/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:chmo="http://purl.obolibrary.org/obo/chmo#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ncicp="http://ncicb.nci.nih.gov/xml/owl/EVS/ComplexProperties.xsd#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.enanomapper.net/onto/external/chmo-slim.owl">
<dc:description>CHMO, the chemical methods ontology, describes methods used to collect data in chemical experiments, such as mass spectrometry and electron microscopy prepare and separate material for further analysis, such as sample ionisation, chromatography, and electrophoresis synthesise materials, such as epitaxy and continuous vapour deposition It also describes the instruments used in these experiments, such as mass spectrometers and chromatography columns. It is intended to be complementary to the Ontology for Biomedical Investigations (OBI).</dc:description>
<dc:title>Chemical Methods Ontology</dc:title>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<pav:importedFrom>http://purl.obolibrary.org/obo/chmo.owl</pav:importedFrom>
<oboInOwl:auto-generated-by>Slimmer</oboInOwl:auto-generated-by>
<oboInOwl:date>2023-07-12 13:30:32</oboInOwl:date>
<oboInOwl:hasOBOFormatVersion>1.2</oboInOwl:hasOBOFormatVersion>
<oboInOwl:saved-by>batchelorc</oboInOwl:saved-by>
<owl:versionInfo>This SLIM file was generated automatically by the eNanoMapper Slimmer software library. For more information see http://github.com/enanomapper/slimmer.</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000179 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000179"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000180 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000180"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000601 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000601"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000602 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000602"/>
<!-- http://purl.obolibrary.org/obo/IAO_0010000 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0010000"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- http://purl.obolibrary.org/obo/chmo#isDefinedBy -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chmo#isDefinedBy"/>
<!-- http://purl.obolibrary.org/obo/chmo#non-mining_synonym -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chmo#non-mining_synonym">
<oboInOwl:hasScope rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<rdfs:label>Non-mining synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/pav/importedFrom -->
<owl:AnnotationProperty rdf:about="http://purl.org/pav/importedFrom"/>
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty">
<rdfs:label>synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#auto-generated-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#auto-generated-by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#creation_date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label>has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label>database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label>has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label>has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label>has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasScope -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasScope">
<rdfs:label>has_scope</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonymType -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonymType">
<rdfs:label>has_synonym_type</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label>in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#saved-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#saved-by"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.bioontology.org/ontology/npo#NPO_1468 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1468"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1710 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1710"/>
<!-- http://purl.bioontology.org/ontology/npo#NPO_1945 -->
<owl:Class rdf:about="http://purl.bioontology.org/ontology/npo#NPO_1945"/>
<!-- http://purl.obolibrary.org/obo/CHMO_0000097 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000097">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>Microscopy where ions are used to produce an image.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId>FIX:0000962</oboInOwl:hasAlternativeId>
<oboInOwl:hasExactSynonym>IM</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000097</oboInOwl:id>
<rdfs:label>ion microscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000097"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Microscopy where ions are used to produce an image.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000098 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000098">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000097"/>
<obo:IAO_0000115>Microscopy where atoms of an inert gas in the vicinty of the specimen (which is in the form of a very sharp tip <10 m diameter) are ionised by the application of a strong electric field to the tip and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>FIM</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>field ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>field ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>field-ion microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>field-ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>field-ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000098</oboInOwl:id>
<rdfs:label>field ion microscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000098"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Microscopy where atoms of an inert gas in the vicinty of the specimen (which is in the form of a very sharp tip <10 m diameter) are ionised by the application of a strong electric field to the tip and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface.</owl:annotatedTarget>
<oboInOwl:hasDbXref>Orange:17.2.7</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000099 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000099">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000098"/>
<obo:IAO_0000115>Microscopy where atoms in the vicinty of the specimen (which is in the form of a very sharp tip <10 m diameter) are ionised by the application of a strong electric field to the tip and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface. When a sudden voltage pulse is applied to the tip, atoms from the surface of the specimen itself are be ejected and travel down a drift tube where their arrival time (a measure of the mass of the atom) can be determined. This allows the atomic composition of the specimen to be determined.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>AP FIM</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP field ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP field ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP field-ion microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP field-ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP field-ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP-FIM</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>AP/FIM</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>APFIM</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom probe field ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom probe field ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom probe field-ion microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom probe field-ionisation microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom probe field-ionization microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>atom-probe field-ion microscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000099</oboInOwl:id>
<rdfs:label>atom probe field ion microscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000099"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Microscopy where atoms in the vicinty of the specimen (which is in the form of a very sharp tip <10 m diameter) are ionised by the application of a strong electric field to the tip and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface. When a sudden voltage pulse is applied to the tip, atoms from the surface of the specimen itself are be ejected and travel down a drift tube where their arrival time (a measure of the mass of the atom) can be determined. This allows the atomic composition of the specimen to be determined.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000100">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000098"/>
<obo:IAO_0000115>Microscopy where atoms of He gas in the vicinty of the specimen are ionised and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface.</obo:IAO_0000115>
<oboInOwl:id>CHMO:0000100</oboInOwl:id>
<rdfs:label>helium-ion microscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000100"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Microscopy where atoms of He gas in the vicinty of the specimen are ionised and an image is produced by the projection of the ions onto a fluorescent screen. The image consists of a pattern of spots of light which correspond to individual atoms on the specimen surface.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000101 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000101">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000097"/>
<obo:IAO_0000115>Microscopy where an ion beam is scanned over the specimen surface and the secondary electrons emitted are detected.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId>FIX:0000963</oboInOwl:hasAlternativeId>
<oboInOwl:hasRelatedSynonym>SIM</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>CHMO:0000101</oboInOwl:id>
<rdfs:label>scanning ion microscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000101"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Microscopy where an ion beam is scanned over the specimen surface and the secondary electrons emitted are detected.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000101"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>SIM</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/chmo#non-mining_synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000204 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000204">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>A method for determining structure by measuring the change in direction or energy of X-rays scattered by a sample at low angles (0–10°).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>SAXS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>small angle X-ray scattering</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000204</oboInOwl:id>
<rdfs:label>small-angle X-ray scattering</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000204"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A method for determining structure by measuring the change in direction or energy of X-rays scattered by a sample at low angles (0–10°).</owl:annotatedTarget>
<oboInOwl:hasDbXref>FIX:0000223</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000207 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000207">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>A method for determining structure by measuring the change in direction or energy of X-rays scattered by a sample at wide angles (>10°). Wide-angle X-ray scattering is used for determining the structure of polymers.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>WAXS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>wide angle X-ray scattering</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000207</oboInOwl:id>
<rdfs:label>wide-angle X-ray scattering</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000207"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A method for determining structure by measuring the change in direction or energy of X-rays scattered by a sample at wide angles (>10°). Wide-angle X-ray scattering is used for determining the structure of polymers.</owl:annotatedTarget>
<oboInOwl:hasDbXref>FIX:0001128</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000258 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000258">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>A type of atomic emission spectrometry where a high energy laser pulse is used to generate a plasma which acts as the excitation source.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>LIBS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>LIPS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser induced plasma spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser induced plasma spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced breakdown atomic emission spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced breakdown atomic-emission spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced plasma atomic emission spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced plasma atomic emission spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced plasma spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>laser-induced plasma spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000258</oboInOwl:id>
<rdfs:label>laser-induced breakdown spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000258"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A type of atomic emission spectrometry where a high energy laser pulse is used to generate a plasma which acts as the excitation source.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000305 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000305">
<rdfs:subClassOf rdf:resource="http://purl.bioontology.org/ontology/npo#NPO_1710"/>
<obo:IAO_0000115>X-ray absorption spectroscopy where changes in the X-ray absorption coefficient measured within 40 eV of the absorption edge (the part of the spectrum where the incident X-ray energy matches the binding energy of an electron) are determined as a function of incident X-ray energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>NEXAF spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>NEXAFS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>NEXAFS spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>NEXAFSS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray absorption near edge structure (XANES) spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray absorption near edge structure spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray absorption near edge structure spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray absorption near-edge structure</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XANES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XANES spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XANES spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>near edge X-ray absorption spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>near-edge X-ray absorption fine structure spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000305</oboInOwl:id>
<rdfs:label>near-edge X-ray absorption fine structure spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000305"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>X-ray absorption spectroscopy where changes in the X-ray absorption coefficient measured within 40 eV of the absorption edge (the part of the spectrum where the incident X-ray energy matches the binding energy of an electron) are determined as a function of incident X-ray energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>FIX:0000025</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FIX:0000376</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000339 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000339">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>Spectroscopy where a high energy photon ionises a core electron and an electron from a higher energy level descends to take its place, releasing sufficient energy to eject a second so-called 'Auger' electron and the energy of the Auger electron is detected as a function of incident photon energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>AEES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Auger electron emission spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>AES</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>CHMO:0000339</oboInOwl:id>
<rdfs:label>Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where a high energy photon ionises a core electron and an electron from a higher energy level descends to take its place, releasing sufficient energy to eject a second so-called 'Auger' electron and the energy of the Auger electron is detected as a function of incident photon energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0-471-96523-5</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>AES</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/chmo#non-mining_synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000340 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000340">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of emission angle.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>ADAS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ARAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angular dependent Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000340</oboInOwl:id>
<rdfs:label>angular dependent Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000340"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of emission angle.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000341 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000341">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The wavelength of the incident photons is scanned over an absorption edge in the sample and the Auger electrons emitted are detected as a function of energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>RAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonance AES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonance Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonance Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonance Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonance Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonant AES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonant Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonant Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>resonant Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000341</oboInOwl:id>
<rdfs:label>resonant Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000341"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The wavelength of the incident photons is scanned over an absorption edge in the sample and the Auger electrons emitted are detected as a function of energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://doi.org/10.1103/PhysRevLett.88.243001</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000342 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000342">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000341"/>
<obo:IAO_0000115>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The wavelength of the incident photons is scanned over an absorption edge in the sample and the Auger electrons emitted are detected as a function of emission angle.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>angle-resolved resonance Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved resonance Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved resonant Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000342</oboInOwl:id>
<rdfs:label>angle-resolved resonant Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000342"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The wavelength of the incident photons is scanned over an absorption edge in the sample and the Auger electrons emitted are detected as a function of emission angle.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000343 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000343">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. Only the Auger electrons emitted at a particular photon energy are detected.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>APYS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Auger electron partial yield spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000343</oboInOwl:id>
<rdfs:label>Auger electron partial yield spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000343"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. Only the Auger electrons emitted at a particular photon energy are detected.</owl:annotatedTarget>
<oboInOwl:hasDbXref>OrangeBook:17.2.1.4</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000344 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000344">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where electron bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electron and the energies of these Auger electrons are detected as a function of incident electron energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>EAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>EEAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>EIAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron-excited Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron-induced Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron-induced Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000344</oboInOwl:id>
<rdfs:label>electron-excited Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000344"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where electron bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electron and the energies of these Auger electrons are detected as a function of incident electron energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>Orange:17.2.4</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000345 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000345">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000344"/>
<obo:IAO_0000115>Spectroscopy where bombardment of a sample with a finely focused (<10 m diameter) beam of electrons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident electron energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Auger electron microanalysis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>EMAS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron microprobe Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000345</oboInOwl:id>
<rdfs:label>electron microprobe Auger spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000345"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where bombardment of a sample with a finely focused (<10 m diameter) beam of electrons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident electron energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000346 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000346">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where ion bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident ion energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>IAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>IEAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>IIAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion neutralisation spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion neutralisation spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion neutralization spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion neutralization spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion-electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion-excited Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion-induced Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion-induced Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ionelectron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>INS</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>CHMO:0000346</oboInOwl:id>
<rdfs:label>ion-excited Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000346"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where ion bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident ion energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>Orange:17.2.4</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000347 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000347">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000346"/>
<obo:IAO_0000115>Spectroscopy where the bombardment of a sample with He+ ions results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident He+ ion energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>HAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>He+-excited Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000347</oboInOwl:id>
<rdfs:label>He+-excited Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000347"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where the bombardment of a sample with He+ ions results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident He+ ion energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000348 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000348">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000346"/>
<obo:IAO_0000115>Spectroscopy where the bombardment of a sample with protons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident proton energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>PAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>proton-induced Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000348</oboInOwl:id>
<rdfs:label>proton-induced Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000348"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where the bombardment of a sample with protons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident proton energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000349 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000349">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000346"/>
<obo:IAO_0000115>Spectroscopy where ion bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of emission angle.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>AIRES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved ion-electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>angle-resolved ion-electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000349</oboInOwl:id>
<rdfs:label>angle-resolved ion-excited Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000349"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where ion bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of emission angle.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000350 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000350">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where a high-energy photon beam is scanned over the surface of a sample resulting in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident photon energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>SAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>scanning Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>scanning Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>scanning Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000350</oboInOwl:id>
<rdfs:label>scanning Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000350"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where a high-energy photon beam is scanned over the surface of a sample resulting in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident photon energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000351 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000351">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where the bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident photon energy and a magnet is used to align all electron spins parallel to the emitting surface.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>SPAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>spin-polarized Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000351</oboInOwl:id>
<rdfs:label>spin-polarised Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000351"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where the bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of incident photon energy and a magnet is used to align all electron spins parallel to the emitting surface.</owl:annotatedTarget>
<oboInOwl:hasDbXref>OrangeBook:17.2.4</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000352 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000352">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000351"/>
<obo:IAO_0000115>Spectroscopy where the bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of emission angle and a magnet is used to align all electron spins parallel to the emitting surface.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>SPARPES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>spin-polarized angle-resolved Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000352</oboInOwl:id>
<rdfs:label>spin-polarised angle-resolved Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000352"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where the bombardment of a sample with high-energy photons results in the ionisation of core electrons and the emission of so-called 'Auger' electrons. The energies of these Auger electrons are detected as a function of emission angle and a magnet is used to align all electron spins parallel to the emitting surface.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://orcid.org/0000-0002-0640-0422</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000353 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000353">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000339"/>
<obo:IAO_0000115>Spectroscopy where X-ray bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident X-ray energy.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>X-ray excited Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray induced Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>X-ray induced Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XEAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>XIAES</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000353</oboInOwl:id>
<rdfs:label>X-ray excited Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000353"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where X-ray bombardment of a sample results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected as a function of incident X-ray energy.</owl:annotatedTarget>
<oboInOwl:hasDbXref>Orange:17.2.4</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000354 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000354">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000353"/>
<obo:IAO_0000115>Spectroscopy where the bombardment of a sample with a continuous X-ray source (X-rays generated when electrons, or other high energy charged particles such as protons or alpha-particles, lose energy whilst passing through the Coulomb field of a nucleus) results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>CX-AES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>CXAES</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>bremsstrahlung Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>bremsstrahlung Auger electron spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>bremsstrahlung Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>bremsstrahlung Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>continuous X-ray-induced Auger electron spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>continuous X-ray-induced Auger spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>continuous X-ray-induced Auger spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000354</oboInOwl:id>
<rdfs:label>continuous X-ray-induced Auger electron spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000354"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where the bombardment of a sample with a continuous X-ray source (X-rays generated when electrons, or other high energy charged particles such as protons or alpha-particles, lose energy whilst passing through the Coulomb field of a nucleus) results in the ionisation of core electrons and the emission of so-called 'Auger' electrons, which are detected.</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0824706005</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000373 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHMO_0000373">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000070"/>
<obo:IAO_0000115>Spectroscopy where a beam of electrons with a known, narrow range of kinetic energies is transmitted through a sample and the energy distribution of the transmitted electrons is measured.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId>CHMO:0002296</oboInOwl:hasAlternativeId>
<oboInOwl:hasExactSynonym>ETS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>TEELS</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron transmission spectrometry</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>electron transmission spectroscopy</oboInOwl:hasExactSynonym>
<oboInOwl:id>CHMO:0000373</oboInOwl:id>
<rdfs:label>transmission electron energy loss spectroscopy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHMO_0000373"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Spectroscopy where a beam of electrons with a known, narrow range of kinetic energies is transmitted through a sample and the energy distribution of the transmitted electrons is measured.</owl:annotatedTarget>
<oboInOwl:hasDbXref>https://doi.org/10.1351/goldbook.T06480</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHMO_0000404 -->