-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSRAO-base.obo
More file actions
1708 lines (1539 loc) · 128 KB
/
SRAO-base.obo
File metadata and controls
1708 lines (1539 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
data-version: http://www.fairsharing.org/ontology/subject/SRAO/releases/2025-06-01/SRAO-base.owl
idspace: dc http://purl.org/dc/elements/1.1/
idspace: dcterms http://purl.org/dc/terms/
idspace: domains http://www.fairsharing.org/ontology/domains/
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
idspace: subject http://www.fairsharing.org/ontology/subject/
ontology: http://www.fairsharing.org/ontology/subject/SRAO/SRAO-base.owl
property_value: dc:creator "The FAIRsharing Team, contact@fairsharing.org" xsd:string
property_value: dc:title "FAIRsharing Subject Ontology (SRAO)" xsd:string
property_value: dc:type IAO:8000001
property_value: dcterms:description "SRAO is a hierarchy of academic disciplines that draws from the re3data subject list as well as importing terms from 7 publicly-available ontologies. This hierarchy covers all of the humanities and natural sciences and, where external vocabularies could not be found, SRAO classes were created.\n\nThe initial hierarchy and class set came from FAIRsharing user requirements. Additional classes have been drawn from the following sources:\n\n1. the re3data subject categories as listed at http://www.re3data.org/browse/by-subject/\n2. NCIT (http://dx.doi.org/10.3233/978-1-60750-949-3-33, CC BY 4.0)\n3. the EDAM Topic hierarchy as available at http://edamontology.org (http://doi.org/10.1093/bioinformatics/btt113, CC BY-SA 4.0)\n4. AgroVoc (http://agrovoc.uniroma2.it/agrovoc/agrovoc/en/, CC BY 3.0 IGO)\n5. OMIT (https://doi.org/10.1371/journal.pone.0100855 and https://doi.org/10.1186/s13326-016-0064-2, CC BY 3.0)\n6. OBI (https://doi.org/10.1371/journal.pone.0154556, CC BY 3.0)\n7. PO (http://www.plantontology.org/, CC BY 4.0)\n8. UAT: (https://astrothesaurus.org/, CC BY 3.0 Unported)\n\nModifications to the hierarchy have been performed to aid usability within FAIRsharing as well as to aid ontology alignment and merging. Additional definitions and annotations have also been incorporated by the FAIRsharing Team.\n\nOriginally developed for use within FAIRsharing.org\n\nLicensed under the Creative Commons Attribution 4.0 International (CC BY 4.0), https://creativecommons.org/licenses/by/4.0/" xsd:string
property_value: dcterms:license https://creativecommons.org/licenses/by/4.0/
property_value: owl:versionInfo "2025-06-01" xsd:string
[Term]
id: subject:SRAO_0000002
name: Humanities and Social Science
def: "Humanities and Social Sciences is a broad multi-disciplinary research area incorporating both the Humanities and the Social Sciences. One differentiator for these two closely-related subjects is that humanities are predominately interested in studying the specifics and the 'unique', while social sciences are mainly interested in the general / population level." []
comment: AL 17.11.21: The label was modified from plural to singular according to FAIRsharing best practises.
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.thebritishacademy.ac.uk/blog/what-social-science, AL 17.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000004
name: Ancient Cultures
def: "Ancient Cultures is the study of the pattern of learned beliefs, values, and behavior that are shared within a group in the context of ancient civilisations." []
is_a: NCIT:C16478
is_a: OMIT:0007951
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from NCIT http://purl.obolibrary.org/obo/NCIT_C16478, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000005
name: Prehistory
def: "Prehistory is the branch of knowledge that deals with events or conditions before written or recorded history." []
is_a: NCIT:C54625
is_a: subject:SRAO_0000004 ! Ancient Cultures
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 6.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000006
name: Classical Philology
def: "Classical Philology is the branch of knowledge that deals with the historical, linguistic, interpretative, and critical aspects of literature from the classical period, generally considered to be the Ancient Greek and Ancient Roman civilizations." []
is_a: subject:SRAO_0000004 ! Ancient Cultures
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 13.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000009
name: Egyptology
def: "Egyptology is the study of Egyptian antiquities, of the ancient Egyptian language and history." []
comment: AL: 21.5.2019 Refactored re3data composite class 'Egyptology and Ancient Near Eastern Studies' into sibling classes 'Ancient Near Eastern Studies' and 'Ancient Near Eastern Studies' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000004 ! Ancient Cultures
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000012
name: Early Modern History
def: "Early Modern History is the study of the period of modern history that follows the late Middle Ages of the post-classical era. Although the chronological limits of the period are open to debate, the timeframe spans the period after the late portion of the post-classical age (c. 1500), known as the Middle Ages, through the beginning of the Age of Revolutions (c. 1800)." []
is_a: subject:SRAO_0000013 ! Modern History
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Early_modern_period, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000013
name: Modern History
def: "Modern History is the study of the historical period after post-classical history." []
comment: AL: 21.5.2019 Refactored re3data composite class 'Modern and Current History' into 'Modern History' according to FAIRsharing curation best practises.
is_a: NCIT:C54625
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Modern_history, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000014
name: History of Science
def: "History of Science is the study of the development of science and scientific knowledge, including both the natural and social sciences." []
is_a: NCIT:C54625
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/History_of_science, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000015
name: Fine Arts
def: "Fine Arts is a subject area covering the creative arts, including the visual arts, poetry, music, rhetoric, etc., whose products are intended to be appreciated primarily or solely for their aesthetic, imaginative, or intellectual content." []
comment: AL 10.4.2019: Renamed 'Fine Arts, Music, Theatre and Media Studies' to 'Fine Arts' to align with FAIRsharing curation best practices.
is_a: OMIT:0007951
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 10.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000016
name: Art History
def: "Art history is the study of objects of art in their historical development and stylistic contexts; that is genre, design, format, and style." []
is_a: NCIT:C54625
is_a: subject:SRAO_0000015 ! Fine Arts
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Art_history, AL 18.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000017
name: Musicology
def: "Musicology is the branch of knowledge that deals with music as a subject of study rather than as a skill or performing art; academic research in or scholarly study of music." []
is_a: subject:SRAO_0000015 ! Fine Arts
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000018
name: Media Studies
def: "Media Studies is a discipline and field of study that deals with the content, history, and effects of various media; in particular, the mass media." []
comment: AL 10.4.2019: Refactored 'Theatre and Media Studies' to sibling classes 'Theatre Studies' and 'Media Studies' to align with FAIRsharing curation best practices.
is_a: subject:SRAO_0000015 ! Fine Arts
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia, https://en.wikipedia.org/wiki/Media_studies, 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000020
name: Applied Linguistics
def: "Applied Linguistics is the branch of linguistics concerned with practical applications of language studies, such as language teaching, translation, and speech therapy. It is an interdisciplinary field which identifies, investigates, and offers solutions to language-related real-life problems. Some of the academic fields related to applied linguistics are education, psychology, communication research, anthropology, and sociology." []
comment: AL: 7.5.2019 Refactored re3data composite class 'General and Applied Linguistics' into 'Applied Linguistics' according to FAIRsharing curation best practises.
is_a: c:1335455465014
is_a: NCIT:C16294
is_a: NCIT:C17027
is_a: subject:SRAO_0000042 ! Education Science
is_a: subject:SRAO_0000054 ! Communication Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, Wikipedia https://en.wikipedia.org/wiki/Applied_linguistics, AL 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000022
name: Historical Linguistics
def: "Historical Linguistics is the branch of linguistics concerned with the history and development of languages." []
comment: AL: 7.5.2019 Refactored re3data composite class 'Typology, Non-European Languages, Historical Linguistics' into 'Historical Linguistics' according to FAIRsharing curation best practises.
is_a: c:1335455465014
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000023
name: Literary Studies
def: "Literary Studies is the study, evaluation, and interpretation of literature." []
is_a: OMIT:0007951
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Literary_criticism, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000024
name: Medieval German Literature
def: "Medieval German Literature is a field of study concerned with literature written in Germany, starting with the Carolingian dynasty. Various dates have been given for the end of the German literary Middle Ages, with the Reformation (1517) being the last possible cut-off point." []
is_a: subject:SRAO_0000023 ! Literary Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Medieval_German_literature, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000025
name: German Literature
def: "German Literature comprises the written works of the German-speaking peoples of central Europe." []
comment: AL 3.7.2019: Renamed from 'Modern German Literature' (the original re3data label) to 'German Literature' as FAIRsharing required a more broad subject area.
is_a: subject:SRAO_0000023 ! Literary Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Encyclopedia Britannica https://www.britannica.com/art/German-literature, AL 6.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000026
name: European Literature
def: "European Literature is the literature written in the context of Western culture in the languages of Europe, including the ones belonging to the Indo-European language family as well as several geographically or historically related languages such as Basque and Hungarian." []
comment: AL: 21.5.2019 Refactored re3data composite class 'European and American Literature' into sibling classes 'European Literature' and 'American Literature' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000023 ! Literary Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Western Literature" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Western_literature, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000027
name: Comparative Literature
def: "Comparative Literature is the study of literature across cultural and national frontiers, time periods, languages and genres, even across the boundaries between literature and the other arts." []
comment: AL: 21.5.2019 Refactored re3data composite class 'General and Comparative Literature and Cultural Studies' into sibling classes 'Comparative Literature' and 'Cultural Studies' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000023 ! Literary Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://www.gla.ac.uk/undergraduate/degrees/comparativeliterature/, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000030
name: Asian Studies
def: "Asian Studies is the term used usually in North America and Australia for what in Europe is known as Oriental studies. The field is concerned with the Asian people and societies, their cultures, languages, history and politics." []
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000299 ! Area Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Oriental Studies" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Asian_studies, 11.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000031
name: African Studies
def: "African Studies is the study of Africa, especially the continent's cultures and societies (as opposed to its geology, geography, zoology, etc.)." []
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000299 ! Area Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/African_studies, 11.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000032
name: Islamic Studies
def: "Islamic Studies refers to the study of Islam. Islamic studies can be pursued from a primarily secular or traditional religous perspective." []
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000033 ! Religious Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Islamic_studies, 11.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000033
name: Religious Studies
def: "Religious Studies is an academic field devoted to research into religious beliefs, behaviors, and institutions. It describes, compares, interprets, and explains religion, emphasizing systematic, historically based, and cross-cultural perspectives." []
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000299 ! Area Studies
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Religious_studies, AL 11.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000035
name: Protestant Theology
def: "Protestant Theology is the study of the Christian denomination of Protestantism." []
is_a: OMIT:0021467
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Protestantism#Theology, AL 13.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000036
name: Roman Catholic Theology
def: "Roman Catholic Theology is the understanding of Roman Catholic doctrine or teachings, and results from the studies of theologians. It is based on canonical scripture, and sacred tradition, as interpreted authoritatively by the magisterium of the Roman Catholic Church." []
is_a: OMIT:0021467
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Catholic_theology, AL 18.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000038
name: History of Philosophy
def: "History of philosophy is a research area concerned with the various periods, individuals and/or schools of philosophy." []
is_a: NCIT:C39794
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Philosophy#History_of_philosophy, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000039
name: Theoretical Philosophy
def: "Theoretical Philosophy is a discipline dealing with questions concerning the nature and scope of human knowledge, the relations between language, thought and reality, the structures of correct reasoning, and the fundamental categories of reality." []
is_a: NCIT:C39794
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.philosophy.su.se/utbildning/kurser/grundnivå/deltidskurser/2.44303/theoretical-philosophy-i-30-credits-tpi-1.276132, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000040
name: Practical Philosophy
def: "Practical Philosophy is the study of the bases of philosophy (metaphysics, knowledge theory, logic) for \"practical thinking\", with the emphasis on values, attitudes to life and norms of behaviour. Value theory and analysis of normative positions constitute the core of practical philosophy." []
is_a: NCIT:C39794
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.fil.lu.se/en/department/subjects-at-the-department/practical-philosophy/, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000041
name: Social and Behavioural Science
def: "Social and Behavioral Science is a broad area of study that applies to a unique range of disciplines -- anthropology, sociology, and psychology, among them -- that are primarily concerned with the analysis of human behavior." []
comment: AL 3.6.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.
is_a: subject:SRAO_0000002 ! Humanities and Social Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.ashford.edu/online-degrees/social-behavioral-science/what-is-social-and-behavioral-science, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000042
name: Education Science
def: "Education Science is the study of educational policy and practice and deals with the methods and strategies of teaching." []
comment: AL 5.6.2019: The label was modified from plural to singular according to FAIRsharing best practises.
is_a: subject:SRAO_0000041 ! Social and Behavioural Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Pedagogy" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Educational_sciences and https://www.researchgate.net/post/What_is_Education_Science, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000044
name: Research on Teaching, Learning and Training
def: "Research on Teaching, Learning and Training is a field of Education Science focusing on the study of teaching, learning and training methods." []
comment: AL 3.6.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.
is_a: subject:SRAO_0000042 ! Education Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000045
name: Professional Socialization
def: "Professional Socialization is the process of forming associations with others in a chosen profession; specifically, the process by which a person learns to function within a particular profession by internalizing its values and norms." []
comment: AL: 8.5.2019 Refactored re3data composite class 'Research on Socialization and Educational Institutions and Professions' into 'Professional Socialization' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000042 ! Education Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000047
name: Biological Psychology
def: "Biological psychology is the application of the principles of biology to the study of mental processes and behaviour. For example, it involves the measuring of biological, physiological, or genetic variables in an attempt to relate them to psychological or behavioural variables." []
comment: AL: 9.4.2019 Refactored re3data composite class 'General, Biological and Mathematical Psychology' into sibling classes 'Biological Psychology' and 'Mathematical Psychology' according to FAIRsharing curation best practises. Please note that, although there is an NCIT term 'Psychobiology' it has a synonym of 'Biological Psychiatry', and FAIRsharing considers 'Biological Psychiatry' and 'Biological Psychology' as two separate concepts.Placement of 'Cognitive Neuroscience' as a child (rather than a sibling) term of this class follows https://opentextbc.ca/introductiontopsychology/chapter/2-1-biological-psychology-structuralism-and-functionalism/
is_a: NCIT:C17027
is_a: NCIT:C95096
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Behavioral Neuroscience" xsd:string
property_value: IAO:0000118 "Biopsychology" xsd:string
property_value: IAO:0000118 "Physiological Psychology" xsd:string
property_value: IAO:0000118 "Psychobiology" xsd:string
property_value: IAO:0000119 "Adapted from https://opentextbc.ca/introductiontopsychology/chapter/2-1-biological-psychology-structuralism-and-functionalism/, AL 9.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000049
name: Social Psychology
def: "Social Psychology is the study of social interactions, including their origins and effects on individuals and groups." []
comment: AL: 9.4.2019 Refactored re3data composite class 'Social Psychology, Industrial and Organisational Psychology' into sibling classes 'Social Psychology' and 'Industrial and Organisational Psychology' according to FAIRsharing curation best practises. Definitions and common usage show that the composite term 'Industrial and Organisational Psychology' should not be further divided.
is_a: NCIT:C17027
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, 3.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000050
name: Differential Psychology
def: "Differential Psychology is the study of the ways in which individuals differ in their behavior and the processes that underlie it. This is a discipline that develops classifications (taxonomies) of psychological individual differences. This is distinguished from other aspects of psychology in that although psychology is ostensibly a study of individuals, modern psychologists often study groups, or attempt to discover general psychological processes that apply to all individuals." []
comment: AL: 9.4.2019 Refactored re3data composite class 'Differential Psychology, Clinical Psychology, Medical Psychology, Methodology' into sibling classes 'Differential Psychology', 'Clinical Psychology' and 'Medical Psychology' according to FAIRsharing curation best practises.'Methodology' was not required within SRAO at this time.
is_a: NCIT:C17027
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia, https://en.wikipedia.org/wiki/Differential_psychology, 28.3.19" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000052
name: Sociological Theory
def: "Sociological Theory is a field of Social Sciences focusing on the introduction of new substantive theories, history of theory, metatheory, formal theory construction, and synthetic contributions." []
is_a: NCIT:C17141
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://journals.sagepub.com/home/stx, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000053
name: Empirical Social Research
def: "Empirical Social Research uses empirical data on social formations and their members as a basis for explaining social phenomena. It is concerned with empirical research activities grounded in social theory and enriching social theory." []
is_a: NCIT:C17141
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://doi.org/10.1016/B978-0-08-097086-8.03217-7, AL 6.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000054
name: Communication Science
def: "Communication Science is the study of ways in which human beings communicate, including speech, gesture, telecommunication systems, publishing and broadcasting media, etc." []
is_a: NCIT:C17141
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Collins English Dictionary https://www.collinsdictionary.com/dictionary/english/communication-science, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000055
name: Political Science
def: "Political Science is the study of the State and systems of government; the analysis of political activity and behaviour." []
is_a: NCIT:C17141
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 12.6.20019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000057
name: Economic Theory
def: "Economic Theory is the field of study concerned with those areas of economics based on rigorous theoretical reasoning and on topics in mathematics that are supported by the analysis of economic problems." []
is_a: c:2481
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from SpringerLink https://link.springer.com/journal/199, AL 17.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000060
name: Business Administration
def: "Business Administration is the field of study concerning the process of running a business. It includes all aspects of overseeing and supervising business operations, as well as related fields which include accounting, finance, project management and marketing." []
is_a: c:2481
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED and Wikipedia https://en.wikipedia.org/wiki/Business_administration, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000062
name: Economic and Social History
def: "Economic and Social History is the study of the way societies change in their economic activities and social organisation. It is concerned with how people in the past lived and worked, and how this has affected the development of today’s world." []
comment: AL 21.5.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.
is_a: c:2481
is_a: NCIT:C54625
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://www.gla.ac.uk/undergraduate/degrees/economicsocialhistory/, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000064
name: Philosophy of Law
def: "Philosophy of Law is a branch of philosophy that examines the nature of law and law's relationship to other systems of norms, especially ethics and political philosophy." []
comment: AL: 21.5.2019 Refactored re3data composite class 'Legal and Political Philosophy, Legal History, Legal Theory' into sibling classes 'Philosophy of Law' and 'History of Law' according to FAIRsharing curation best practises. Legal Theory is not required at this time, and can fall under the Jurisprudence category generally.
is_a: NCIT:C39794
is_a: OMIT:0008715
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Legal Philosophy" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Philosophy_of_law, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000065
name: Private Law
def: "Private Law is the branch of law concerning relations and dealings between private individuals." []
is_a: OMIT:0008715
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000066
name: Public Law
def: "Public Law is the law governing relations between individuals and the State, or the conduct of the State." []
is_a: OMIT:0008715
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000083
name: Inter-organismic Interactions of Plants
def: "Inter-organismic Interactions of Plants is a research area concerned with all biochemical, physiological and molecular aspects of plant-plant interactions. [Adapted from https://www.tandfonline.com/action/journalInformation?show=aimsScope&journalCode=tjpi20, AL 17.6.2019]" []
is_a: topic:0780
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000085
name: Phytochemistry
def: "Phytochemistry is the chemistry of plants and plant products." []
comment: AL: 10.4.2019 Refactored 'Plant Biochemistry and Biophysics' into 'Phytochemistry' to simplify the term according to FAIRsharing curation best practises. Please note we already had the term 'Biophysics', and therefore do not currently require the 'Plant Biophysics' subdomain.
is_a: topic:0780
is_a: topic:3292
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, 3.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000086
name: Plant Cell Biology
def: "Plant Cell Biology is a research area focusing on the how the processes underlying plant cell function and development are regulated." []
comment: AL: 10.4.2019 Refactored 'Plant Cell and Developmental Biology' into 'Plant Cell Biology' to simplify the term according to FAIRsharing curation best practises.
is_a: NCIT:C17992
is_a: topic:0780
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.plants.ox.ac.uk/cell-and-developmental-biology-cdb, AL 23.3.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000092
name: Behavioural Biology
def: "Behavioural Biology is an interdisciplinary degree and field of science that examines the bidirectional interactions between behaviour and biology. An organism’s genetic, physiological and immunological processes drive behaviour, just as an individual's behaviour will impact its physiological and immunological state." []
comment: AL: 14.5.2019 Refactored re3data composite class 'Sensory and Behavioural Biology' into 'Behavioural Biology' according to FAIRsharing curation best practises.
is_a: NCIT:C17269
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Behavioral Biology" xsd:string
property_value: IAO:0000119 "https://www.abdn.ac.uk/study/undergraduate/degree-programmes/445/C859/behavioural-biology/. AL 14.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000097
name: Molecular Microbiology
def: "Molecular Microbiology is the branch of microbiology devoted to the study of the molecular basis of the physiological processes that occur in microorganisms." []
comment: AL: 10.4.2019 Refactored re3data composite class 'Metabolism, Biochemistry and Genetics of Microorganisms' into sibling classes 'Microbial Genetics', ' Microbial Physiology' and 'Molecular Microbiology' according to FAIRsharing curation best practises.
is_a: NCIT:C16851
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Alan Ward https://www.staff.ncl.ac.uk/alan.ward/Molecular_Microbiology/Lecture%201.pptx, AL 6.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000098
name: Applied Microbiology
def: "Applied Microbiology is a scientific discipline that deals with the application of microorganisms and the knowledge about them. Applications include biotechnology, agriculture, medicine, food microbiology and bioremediation." []
comment: AL: 25.9.17 Changed re3data label from "Microbial Ecology and Applied Microbiology" to "Applied Microbiology" as these are two distinct domains. Microbial Ecology, as a distinct displine, is a sibling class.
is_a: NCIT:C16851
is_a: topic:3297
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Nature https://www.nature.com/subjects/applied-microbiology, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000099
name: Molecular Infection Biology
def: "Molecular Infection Biology is the branch of molecular biology which applies to infectious agents." []
comment: AL: 28.9.17 'Medical Microbiology, Molecular Infection Biology' is asserted as a child of Microbiology by re3data, and has additionally been positioned as a child of 'Biomedical Sciences'.
is_a: NCIT:C15188
is_a: NCIT:C16851
is_a: topic:3047
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.vu.nl/en/study-guide/2018-2019/master/a-b/biomolecular-sciences/index.aspx?view=module&origin=50051465x50051462&id=50043925, AL 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000103
name: Medical Biometry
def: "Medical Biometry is the branch of science that deals with the statistical analysis of numerical data relating to humans, especially concerning genetic relationships or medical conditions." []
comment: AL: 1.5.2019 Refactored re3data composite class 'Epidemiology, Medical Biometry, Medical Informatics' into the 'Public Health' subclass 'Epidemiology' and its sibling 'Medical Biometry' according to FAIRsharing curation best practises. 'Medical Informatics' (which was already present) is now a parent term of 'Medical Biometry', which also has Public Health as an additional parent.
is_a: NCIT:C16439
is_a: NCIT:C17039
is_a: NCIT:C17167
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from OED, AL 1.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000109
name: Pathobiochemistry
def: "Pathobiochemistry is an intersiciplinary research area related to both biochemistry and pathology. Research focuses on diseases as a disruption of the ordinary biochemical processes of an organism." []
comment: re3data
is_a: NCIT:C16417
is_a: NCIT:C18189
is_a: topic:3292
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.internetchemistry.com/chemistry/pathobiochemistry.php, AL 16.5.2019" xsd:string
[Term]
id: subject:SRAO_0000128
name: Cardiothoracic Surgery
def: "Cariothoracic Surgery is the field of medicine involved in surgical treatment of organs inside the thorax (the chest)—generally treatment of conditions of the heart (heart disease) and lungs (lung disease)." []
comment: AL: 28.9.17 'Cardiothoracic Surgery' is asserted as a child of Medicine by re3data, and has been further refined by FAIRsharing as a child of Surgery, a class originating in EDAM.
is_a: NCIT:C17173
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Cardiothoracic_surgery, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000134
name: Medical Physics
def: "Medical Physics is the application of physics to healthcare; using physics for patient imaging, measurement and treatment." []
comment: AL: 1.5.2019 Refactored re3data composite class 'Biomedical Technology and Medical Physics' into 'Medical Physics' according to FAIRsharing curation best practises. SRAO already contains 'Biotechnology' which, though slightly broader, may be used in place of 'Biomedical Technology'.
is_a: NCIT:C16349
is_a: OMIT:0009577
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Applied Physics in Medicine" xsd:string
property_value: IAO:0000118 "Biomedical Physics" xsd:string
property_value: IAO:0000118 "Medical Biophysics" xsd:string
property_value: IAO:0000119 "EFOMP https://www.efomp.org/index.php?r=pages&id=public, accessed 2.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000136
name: Molecular Neuroscience
def: "Molecular Neuroscience is a branch of neuroscience that examines the biology of the nervous system with molecular biology, molecular genetics, protein chemistry and related methodologies." []
comment: AL: 9.4.2019 Refactored re3data composite class 'Molecular Neuroscience and Neurogenetics' into sibling classes 'Molecular Neuroscience' and 'Neurogenetics' according to FAIRsharing curation best practises.
is_a: NCIT:C95096
is_a: topic:3047
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Nature https://www.nature.com/subjects/molecular-neuroscience, 3.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000137
name: Cellular Neuroscience
def: "Cellular Neuroscience is the study of neurons at the cellular level. It includes cell morphology and physiological properties such as membrane trafficking, synthesis and transport of proteins, and synaptic plasticity." []
is_a: NCIT:C95096
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Nature https://www.nature.com/subjects/cellular-neuroscience, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000139
name: Systemic Neuroscience
def: "Systemic Neuroscience is a subdiscipline of Neuroscience and Systems Biology that studies the structure and function of neural circuits and systems. It encompasses a number of areas of study concerned with how nerve cells behave when connected together to form neural pathways, neural circuits, and larger brain networks." []
comment: AL: 9.4.2019 Refactored re3data composite class 'Systemic Neuroscience, Computational Neuroscience, Behaviour' into sibling classes 'Systemic Neuroscience' and 'Computational Neuroscience' according to FAIRsharing curation best practises. The 'Behaviour' aspect of the original class name is now superceded by 'Biological Psychology'.
is_a: NCIT:C95096
is_a: topic:2259
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Systems Neuroscience" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Systems_neuroscience, 3.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000140
name: Comparative Neurobiology
def: "Comparative Neurobiology is the study of how nervous systems work by comparing the neurobiology of multiple species." []
is_a: topic:3304
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://le.ac.uk/modules/bs3064, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000142
name: Molecular Neurology
def: "Molecular Neurology is the study of the molecular basis of neurology and neurological disorders." []
is_a: NCIT:C95096
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.elsevier.com/books/molecular-neurology/waxman/978-0-12-369509-3, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000144
name: Biological Psychiatry
def: "Biological Psychiatry is the branch of psychiatry concerned with the biological basis for mental disorders, typically using physical methods or medication (as opposed to psychotherapy) as treatment." []
is_a: NCIT:C95096
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 18.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000153
name: Phytomedicine
def: "Phytomedicine is a plant-based traditional medicinal practice that uses various plant materials in preventive and therapeutic processes (Wallis, 2005; Ali, 2008). [ScienceDirect https://www.sciencedirect.com/topics/nursing-and-health-professions/phytomedicine, AL 6.6.2019]" []
is_a: c:203
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000161
name: Clinical Veterinary Medicine
def: "Clinical Veterinary Medicine deals with the observation, diagnosis and treatment of illness, disease or damage through direct interaction with non-human patients." []
comment: AL: 14.5.2019 Refactored re3data composite class 'Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine' into 'Clinical Veterinary Medicine' according to FAIRsharing curation best practises.
is_a: topic:3397
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://www.thecompleteuniversityguide.co.uk/league-tables/hesa-subjects/D2, AL 14.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000164
name: Molecular Chemistry
def: "Molecular Chemistry is a subject concerned with the synthesis of molecules with new biological or physical properties to address scientific or societal challenges. This research area covers the development of new synthetic methodologies for the synthesis of both natural and novel products. [Adapted from https://www.reading.ac.uk/chemistry/research/chem-molecularchemistry.aspx and https://www.ru.nl/english/education/masters/molecular-chemistry/, AL 18.6.2019]" []
is_a: NCIT:C16414
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000165
name: Inorganic Molecular Chemistry
is_a: subject:SRAO_0000164 ! Molecular Chemistry
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000166
name: Organic Molecular Chemistry
comment: 17.10.17 AL: 'Organic Molecular Chemistry' is asserted as a child of 'Molecular Chemistry' by re3data, and as a child of 'Organic Chemistry' within FAIRsharing.
is_a: NCIT:C16419
is_a: subject:SRAO_0000164 ! Molecular Chemistry
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000169
name: Solid-State Chemistry
def: "Solid-State Chemistry, also sometimes referred as materials chemistry, is the study of the synthesis, structure, and properties of solid phase materials, particularly, but not necessarily exclusively of, non-molecular solids." []
comment: AL: 10.4.2019 Refactored re3data composite class 'Chemical Solid State and Surface Research' into 'Physical Chemistry', and refactored the Physical and Theoretical Chemistry hierarchies to reconcile them using non-composite terms according to FAIRsharing curation best practises. Refactored 'Physical Chemistry of Solids and Surfaces, Material Characterisation' into 'Solid-State Chemistry', and 'Surface Science'.
is_a: NCIT:C16421
is_a: subject:SRAO_0000236 ! Materials Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Materials Chemistry" xsd:string
property_value: IAO:0000119 "Wikipedia, https://en.wikipedia.org/wiki/Solid-state_chemistry, 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000172
name: Molecular Physical Chemistry
def: "Molecular Physical Chemistry is a field of Physical Chemistry concerned primarily with thermodynamics and reaction dynamics and other molecular properties that allow the behaviour of larger groups of molecules to be predicted." []
comment: AL: 10.4.2019 Refactored the Physical and Theoretical Chemistry hierarchies to reconcile them using non-composite terms according to FAIRsharing curation best practises. Refactored 'Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics' into 'Molecular Physical Chemistry' to simplify the term according to FAIRsharing curation best practises.
is_a: NCIT:C16421
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Molecular Physical Chemistry: A Concise Introduction 978-0854046195, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000173
name: Theoretical Chemistry
def: "Theoretical Chemistry is the examination of the structural and dynamic properties of molecules and molecular materials using the tools of quantum chemistry, equilibrium and nonequilibrium statistical mechanics and dynamics." []
comment: AL: 10.4.2019 Refactored 'General Theoretical Chemistry' into 'Theoretical Chemistry' to simplify the term according to FAIRsharing curation best practises.
is_a: NCIT:C16414
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://chemistry.cornell.edu/theoretical, AL 14.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000176
name: Biomimetic Chemistry
def: "Biomimetic Chemistry deals with chemical systems that can simulate biological phenomena, particularly catalysis and specificity." []
comment: AL: 14.5.2019 Refactored re3data composite class 'Biological and Biomimetic Chemistry' into 'Biomimetic Chemistry' according to FAIRsharing curation best practises. Also removed Biochemistry as a child and made it a sibling class, as Biochemistry is not a subset of Biomimetic Chemistry.
is_a: NCIT:C16414
is_a: OMIT:0027298
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "https://doi.org/10.1016/B978-0-08-026220-8.50026-9, AL 14.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000177
name: Food Chemistry
def: "Food Chemistry is the study of chemical processes and interactions of all biological and non-biological components of foods. The biological substances include such items as meat, poultry, lettuce, beer, and milk as examples. It is similar to biochemistry in its main components such as carbohydrates, lipids, and protein, but it also includes areas such as water, vitamins, minerals, enzymes, food additives, flavors, and colors. [Adapted from Wikipedia, AL 1.4.2019]" []
comment: AL 11.4.2019: 'Food Chemistry' used to be a child term of the now-deleted 'Biological Chemistry and Food Chemistry' class, which was deleted according to FAIRsharing curation guidelines as it overlapped with 'Food Chemistry' itself.
is_a: NCIT:C16414
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000178
name: Polymer Research
def: "Polymer Research is a subfield of Materials Science concerned with polymers, primarily synthetic polymers such as plastics and elastomers. The field of polymer science includes researchers in multiple disciplines including chemistry, physics, and engineering." []
is_a: NCIT:C16414
is_a: subject:SRAO_0000236 ! Materials Science
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Polymer_science, AL 21.05.2109" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000180
name: Polymer Physics
def: "Polymer Physics is the field of physics that studies polymers, their fluctuations, mechanical properties, as well as the kinetics of reactions involving degradation and polymerisation of polymers and monomers respectively." []
comment: AL: 21.5.2019 Refactored re3data composite class 'Experimental and Theoretical Physics of Polymers' into 'Polymer Physics' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000178 ! Polymer Research
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Polymer_physics, 2.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000183
name: Condensed Matter Physics
def: "Condensed Matter Physics is the field of physics that deals with the macroscopic and microscopic physical properties of matter. In particular it is concerned with the \"condensed\" phases that appear whenever the number of constituents in a system is extremely large and the interactions between the constituents are strong." []
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Condensed_matter_physics, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000184
name: Experimental Condensed Matter Physics
def: "Experimental Condensed Matter Physics involves the use of experimental probes to try to discover new properties of materials. Such probes include effects of electric and magnetic fields, measuring response functions, transport properties and thermometry." []
is_a: subject:SRAO_0000183 ! Condensed Matter Physics
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Condensed_matter_physics#Experimental, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000185
name: Theoretical Condensed Matter Physics
def: "Theoretical Condensed Matter Physics involves the use of theoretical models to understand properties of states of matter. These include models to study the electronic properties of solids and the physics of phase transitions. Modern theoretical studies involve the use of numerical computation of electronic structure and mathematical tools to understand phenomena such as high-temperature superconductivity, topological phases, and gauge symmetries." []
is_a: subject:SRAO_0000183 ! Condensed Matter Physics
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Condensed_matter_physics#Theoretical, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000186
name: Atomic, Molecular, Optical and Plasma Physics
def: "Atomic, Molecular, Optical and Plasma Physics (AMOP) is the study of matter-matter and light-matter interactions; at the scale of one or a few atoms and energy scales around several electron volts." []
comment: AL: 8.5.2019 Refactored re3data composite class 'Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas' into 'Atomic, Molecular, Optical and Plasma Physics' according to FAIRsharing curation best practises. This 'composite term' is a standard conflation within physics. Optics is very often included in atomic/molecular physics - the standard abbreviation is AMO, which is often seen now as AMOP, which includes plasma physics.
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "AMOP" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia, https://en.wikipedia.org/wiki/Atomic,_molecular,_and_optical_physics, AL 1.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000187
name: Particles, Nuclei and Fields
def: "Particles, Nuclei and Fields are interlinked areas of study within Physics. Particle physics is a research area concerned with the nature of the particles that constitute matter and radiation. Atomic nuclei, together with their constituents and interactions are studied within Nuclear Physics. Fields, in physics, are regions in which each point is affected by a force." []
comment: AL 16.5.2019: This 'composite term' (a class describing multiple concepts) is a standard conflation within this research area and is therefore retained. This is in contrast with the general rule within FAIRsharing to refactor composite terms.
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Particle_physics, https://en.wikipedia.org/wiki/Nuclear_physics ; and Encyclopedia Britannica https://www.britannica.com/science/field-physics, AL 16.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000188
name: Soft Matter Physics
def: "Soft Matter Physics sits at the interface between chemistry, physics and biology, and includes investigation of the structure, self-assembly, kinetics and properties of liquids, colloids, particles, formulations, gels, foams, sprays, soft solids and interfaces." []
comment: AL: 14.5.2019 Refactored re3data composite class 'Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics'. 'Biophysics' was already present in SRAO, and added 'Soft Matter Physics', 'Nonlinear Dynamics', and 'Statistical Physics' according to FAIRsharing curation best practises.
is_a: NCIT:C16345
is_a: NCIT:C16421
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted fromhttps://epsrc.ukri.org/research/ourportfolio/researchareas/biophysics/, AL 14.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000189
name: Astronomy and Astrophysics
def: "Astronomy and astrophysics are the study of objects and phenomena that are found beyond our solar system. This combines theoretical simulations and observation with both terrestrial and space-craft-borne instruments of the electromagnetic radiation and high-energy particles emitted by celestial bodies." []
comment: AL: 20.2.2025 Note that the UAT, which this hierarchy is based on, does not have a top-level term that encompasses all members of the terminology. We need such a term as our AO is broader in scope than just Astronomy and Astrophysics. However, as there is significant overlap in scope among Astronomy subjects and Astrophysics subjects, we are following how the UAT mixes their term hierarchies and keeping Astronomy and Astrophysics as a composite term.
is_a: topic:3318
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "Baptiste Cecconi, https://orcid.org/0000-0001-7915-5571" xsd:string
property_value: IAO:0000119 "Nature https://www.nature.com/subjects/astronomy-and-astrophysics, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
property_value: IAO:0000412 "UAT, https://astrothesaurus.org/" xsd:string
[Term]
id: subject:SRAO_0000198
name: Geoinformatics
def: "Geoinformatics is the science of developing and using information science infrastructure to address the problems of geography, cartography, geosciences and related branches of science and engineering." []
comment: AL: 8.5.2019 Refactored re3data composite class 'Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartogaphy' into parent class 'Geoinformatics' and child classes 'Geodesy', 'Photogrammetry', 'Remote Sensing' and 'Cartography' according to FAIRsharing curation best practises.
is_a: c:3235
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Geoinformatics, AL 8.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000202
name: Human Geography
def: "Human Geography is the branch of geography that deals with the activities of mankind as they affect or are influenced by the landscape; (also) the geographical features of a place or region as they relate to or are affected by humans or human activity. [OED, AL 12.6.2019]" []
is_a: NCIT:C16633
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000203
name: Water Research
def: "Water Research is the study of the science and technology of water quality and its management worldwide. [Elsevier https://www.journals.elsevier.com/water-research, AL 12.6.2019]" []
is_a: OMIT:0026615
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000206
name: Industrial Engineering
def: "Industrial engineering is a branch of engineering which deals with the optimization of complex processes, systems, or organizations, to create engineering processes and systems that improve quality and productivity." []
comment: AL 24.5.18: The original "Mechanical and industrial Engineering" class from re3data has been split into "Mechanical Engineering" and "Industrial Engineering". Removal of compound terms aligns with FAIRsharing best practices.
is_a: NCIT:C16548
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "Peter McQuilton" xsd:string
property_value: IAO:0000119 "Wikipedia, PAM 27.02.2018" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000207
name: Production Technology
def: "Production Technology is a combination of manufacturing technology, engineering sciences with management science." []
is_a: subject:SRAO_0000206 ! Industrial Engineering
property_value: IAO:0000117 "Peter McQuilton" xsd:string
property_value: IAO:0000119 "Wikipedia, PAM 28.02.2018" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000208
name: Metal-Cutting Manufacturing Engineering
def: "Metal-Cutting Manufacturing Engineering is the research area concerned with the manufacturing processes in which parts are shaped by removal of unwanted material. It is of great interest for industries such as automotive, aeronautics, aerospace, moulds and dies, and biomedicine." []
is_a: subject:SRAO_0000207 ! Production Technology
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.degruyter.com/view/product/463708, AL 17.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000209
name: Primary Shaping Technology
def: "Primary Shaping Technology concerns the primary processes within production technology, which convert raw material or scrap to a basic primary shaped and sized product." []
comment: AL: 10.4.2019 Refactored 'Production Automation, Factory Operation, Operations Manangement' into 'Automation' to simplify the term according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000207 ! Production Technology
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from http://www.minaprem.com/machining/introduction/primary-secondary-and-advanced-manufacturing-processes-examples/, AL 3.4.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000211
name: Plastics Engineering
def: "Plastics Engineering encompasses the processing, design, development, and manufacture of plastics products." []
is_a: subject:SRAO_0000207 ! Production Technology
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Plastics_engineering, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000218
name: Thermal Engineering
def: "Thermal Engineering is a study of energy transport particularly in nanoscale structure to obtain knowledge and understanding of the scientific effects on physical world that can engineering discoveries in industrial energy applications." []
comment: AL: 20.5.2019 Refactored re3data composite class 'Thermal Engineering/Process Engineering' into 'Thermal Engineering' according to FAIRsharing curation best practises. 'Process Engineering' already existed within SRAO.
is_a: subject:SRAO_0000225 ! Energy Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "Peter McQuilton" xsd:string
property_value: IAO:0000119 "Wikipedia, PAM 27.02.2018" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000219
name: Process Engineering
def: "Process Engineering is the understanding and application of the fundamental principles and laws of nature that allow us to transform raw material and energy into products that are useful to society, at an industrial level. Process engineering focuses on the design, operation, control, optimization and intensification of chemical, physical, and biological processes." []
comment: AL: 20.5.2019 Refactored re3data composite class 'Process Engineering, Technical Chemistry' into 'Process Engineering' according to FAIRsharing curation best practises. 'Technical Chemistry was already present as a child term.
is_a: NCIT:C16548
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Process_engineering, AL 20.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000221
name: Technical Chemistry
def: "Technical Chemistry is a branch of Chemistry dealing with chemical processes in an industrial setting. This includes material development, water resources management, environmental technology, or waste management. It also includes the development and testing of new substances and materials." []
is_a: NCIT:C16414
is_a: subject:SRAO_0000219 ! Process Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://www.tugraz.at/en/studying-and-teaching/degree-and-certificate-programmes/masters-degree-programmes/technical-chemistry/, AL 20.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000222
name: Mechanical Process Engineering
def: "Mechanical Process Engineering is a specialization of Process Engineering that deals with product development, design, and manufacturing processes. It involves assessing existing product manufacturing processes and developing new manufacturing processes based on the specifications of new products." []
is_a: subject:SRAO_0000219 ! Process Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://study.com/articles/mechanical_process_engineer_job_description_salary.html, AL 20.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000223
name: Biological Process Engineering
def: "Biological Process Engineering is a specialization of Chemical Engineering and Process Engineering that deals with the design and development of equipment and processes for the manufacturing of products such as agriculture, food, feed, pharmaceuticals, nutraceuticals, chemicals, and polymers and paper." []
is_a: NCIT:C16413
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Bioprocess Engineering" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Bioprocess_engineering, AL 20.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000224
name: Thermal Technology
def: "Thermal Technology is the technology of producing, storing, controlling, transmitting, and getting work from heat energy." []
comment: AL: 20.5.2019 Refactored re3data composite class 'Heat Energy Technology, Thermal Machines, Fluid Mechanics' into 'Thermal Technology' according to FAIRsharing curation best practises. 'Fluid Mechanics' was already present within SRAO, and 'Thermal Machines' is not currently within scope.
is_a: subject:SRAO_0000218 ! Thermal Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000118 "Heat Energy Technology" xsd:string
property_value: IAO:0000119 "https://canvas.instructure.com/courses/838884/pages/unit-3-lesson-8-an-introduction-to-thermal-technology, AL 20.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000225
name: Energy Engineering
def: "Energy Engineering covers the broad field of engineering dealing with energy efficiency, energy services, facility management, plant engineering, environmental compliance and alternative energy technologies, focussing on design, operation, control and optimization of energy use." []
is_a: NCIT:C16548
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "Peter McQuilton" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Energy_engineering, PAM 28.02.2018, updated by AL 20.05.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000227
name: Fluid Mechanics
def: "Fluid Mechanics the branch of mechanics dealing with the flow of liquids and gases and the way they respond to and exert forces." []
is_a: NCIT:C19638
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "OED, AL 20.5.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000230
name: Materials Engineering
def: "Materials Engineering is a research area concerned with the production of specifications for materials as well as their design, processing and application." []
is_a: NCIT:C16548
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from https://targetjobs.co.uk/careers-advice/job-descriptions/276077-materials-engineer-job-description, AL 18.6.2019" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000231
name: Thermomechanical Processing
def: "Thermomechanical Processing is a metallurgical process that combines mechanical or plastic deformation process like compression or forging, rolling etc. with thermal processes like heat-treatment, water quenching, heating and cooling at various rates into a single process." []
comment: AL: 7.5.2019 Refactored re3data composite class 'Metallurgical and Thermal Processes, Thermomechanical Treatment of Materials' into child class 'Thermomechanical Processing' with parent class 'Metallurgy' according to FAIRsharing curation best practises.
is_a: OMIT:0009732
is_a: subject:SRAO_0000219 ! Process Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia, https://en.wikipedia.org/wiki/Thermomechanical_processing, AL 28.3.19" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: subject:SRAO_0000232
name: Sintering
def: "Sintering is the process of compacting and forming a solid mass of material by heat or pressure without melting it to the point of liquefaction. Within materials engineering, sintering is a manufacturing process used with metals, ceramics, plastics, and other materials." []
comment: AL: 7.5.2019 Refactored re3data composite class 'Sintered Metallic and Ceramic Materials' into 'Sintering' according to FAIRsharing curation best practises.
is_a: subject:SRAO_0000230 ! Materials Engineering
property_value: IAO:0000117 "Allyson Lister, https://orcid.org/0000-0002-7702-4495" xsd:string