Skip to content
Snippets Groups Projects
Commit 1b09e383 authored by Marcel Nellesen's avatar Marcel Nellesen
Browse files

Update: Add Vocabularies (issues#314)

New: Create Radar ApplicationProfile (issues#312)
parent 9a54397b
Branches
No related tags found
No related merge requests found
MIT License
Copyright (c) 2019 RWTH Aachen University
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
# ApplicationProfiles
This repository contains all CoScInE application profiles.
#### Proposed Structure:
- `profiles` Folder: Contains application profiles
- e.g. `radar/index.ttl` with the application profile.
- `vocabularies` Folder: Contains "word lists" with a subfolder structure, no shapes
- e.g. `dc/dcmitype/index.ttl` for the dublin core types. Try to stick to the usual naming conventions for the prefixes in Turtle.
- e.g. `dfg/dfgs/index.ttl` for DFG Fachsystematik.
- `terms` Folder: contains subfolders with full schema definitions (properties + "word lists"), no shapes
- e.g. `index.ttl` for the definition of "internal" properties like current rwth:publishMetadata and its possible values
- later for definition of fields we may need when converting current forms.
Stick to lower case letters for all folders.
Use `purl.org/coscine` as prefix.
File structure:
- Files containing Turtle syntax should have `.ttl` ending.
- Make sure `.ttl` are valid. E.g. define prefixes like rwth (unlike [here](https://git.rwth-aachen.de/coscine/applicationprofiles/blob/b1acec31d467692063b2e59e24cdec133a85c4ab/Vocabularies/PublishMetadata/PublishMetadata.rdf))
- Make sure every file has a self descriptive "header" like
```ttl
<http://purl.org/coscine/terms/> # redirects to /terms/index.ttl in this repo
dcterms:license <https://spdx.org/licenses/MIT.html> ;
dcterms:publisher <https://itc.rwth-aachen.de> ;
dcterms:rights "Copyright © 2019 IT Center, RWTH Aachen University" ;
dcterms:title "Coscine Technical Metadata"@en .
```
including a (`dcterms:license` and `dcterms:publisher`) or `dcterms:rights` statement. The example above has both for illustration purposes. If other information like creator are available include them or leave them in. Refere to https://spdx.org/licenses/ for license URLs.
Redirections:
- `https://purl.org/coscine/voc` will redirect to the vocabularies folder and subfolders
- `https://purl.org/coscine/terms` will redirect to the terms folder and subfolders
- `https://purl.org/coscine/ap` will redirect to the shapes folder and subfolders
\ No newline at end of file
@base <https://purl.org/coscine/ap/radar/> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix coscinepublishmetadata: <https://purl.org/coscine/terms/publishMetadata/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix coscineradar: <https://purl.org/coscine/ap/radar/> .
coscineradar:
a sh:NodeShape ;
sh:targetClass coscineradar:;
sh:closed true ; #no additional properties are allowed
sh:property [
sh:path rdf:type ;
sh:node rdf:type ;
] ;
sh:property coscineradar:publishMetadata ;
sh:property coscineradar:hasIKZ ;
sh:property coscineradar:creator ;
sh:property coscineradar:title ;
sh:property coscineradar:created ;
sh:property coscineradar:subject ;
sh:property coscineradar:type ;
sh:property coscineradar:rights ;
sh:property coscineradar:rightsHolder .
coscineradar:publishMetadata
sh:path coscinepublishmetadata: ;
sh:node coscinepublishmetadata: ;
sh:order 0 ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:class coscinepublishmetadata: ;
sh:name "Visibility"@en, "Sichtbarkeit"@de .
coscineradar:hasIKZ
sh:path coscinepublishmetadata:hasIKZ ;
sh:node coscinepublishmetadata:hasIKZ ;
sh:order 1 ;
sh:minCount 1 ;
sh:minLength 1 ;
sh:datatype xsd:string ;
sh:name "IKZ"@en, "IKZ"@de .
coscineradar:creator
sh:path dc:creator ;
sh:node dc:creator ;
sh:order 2 ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:minLength 1 ;
sh:datatype xsd:string ;
sh:defaultValue "{ME}" ;
sh:name "Creator"@en, "Ersteller"@de .
coscineradar:title
sh:path dc:title ;
sh:node dc:title ;
sh:order 3 ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:minLength 1 ;
sh:datatype xsd:string ;
sh:name "Title"@en, "Titel"@de .
coscineradar:created
sh:path dc:created ;
sh:node dc:created ;
sh:order 4 ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype xsd:date ;
sh:defaultValue "{TODAY}" ;
sh:name "Production Date"@en, "Erstelldatum"@de .
coscineradar:subject
sh:path dc:subject ;
sh:node dc:subject ;
sh:order 5 ;
sh:maxCount 1 ;
sh:name "Subject Area"@en, "Fachrichtung"@de ;
sh:class <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> .
coscineradar:type
sh:path dc:type ;
sh:node dc:type ;
sh:order 6 ;
sh:maxCount 1 ;
sh:name "Resource"@en, "Ressource"@de ;
sh:class <http://purl.org/dc/dcmitype/> .
coscineradar:rights
sh:path dc:rights ;
sh:node dc:rights ;
sh:order 7 ;
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:name "Rights"@en, "Berechtigung"@de .
coscineradar:rightsHolder
sh:path dc:rightsHolder ;
sh:node dc:rightsHolder ;
sh:order 8 ;
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:name "Rightsholder"@en, "Rechteinhaber"@de .
\ No newline at end of file
@base <https://purl.org/coscine/terms/publishMetadata/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix coscineterms: <https://purl.org/coscine/terms/> .
coscineterms:publishMetadata
rdf:type coscineterms:publishMetadata .
coscineterms:metadataIsPrivate
rdfs:label "Private"@en ;
rdfs:label "Privat"@de ;
a coscineterms:publishMetadata .
coscineterms:metadataIsProtected
rdfs:label "Institute"@en ;
rdfs:label "Institut"@de ;
a coscineterms:publishMetadata .
coscineterms:metadataIsPublic
rdfs:label "Public"@en ;
rdfs:label "Öffentlich"@de ;
a coscineterms:publishMetadata .
\ No newline at end of file
@base <http://purl.org/dc/dcmitype/> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://purl.org/dc/dcam/> .
<http://purl.org/dc/dcmitype/>
rdf:type <http://purl.org/dc/dcmitype/> ;
dc:title "DCMI Type Vocabulary"@en ;
dc:publisher <http://purl.org/dc/aboutdcmi#DCMI> ;
dc:modified "2012-06-14"^^xsd:date .
<http://purl.org/dc/dcmitype/Collection>
rdfs:label "Collection"@en ;
rdfs:comment "An aggregation of resources."@en ;
dc:description "A collection is described as a group; its parts may also be separately described."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Collection-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Dataset>
rdfs:label "Dataset"@en ;
rdfs:comment "Data encoded in a defined structure."@en ;
dc:description "Examples include lists, tables, and databases. A dataset may be useful for direct machine processing."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Dataset-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Event>
rdfs:label "Event"@en ;
rdfs:comment "A non-persistent, time-based occurrence."@en ;
dc:description "Metadata for an event provides descriptive information that is the basis for discovery of the purpose, location, duration, and responsible agents associated with an event. Examples include an exhibition, webcast, conference, workshop, open day, performance, battle, trial, wedding, tea party, conflagration."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Event-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Image>
rdfs:label "Image"@en ;
rdfs:comment "A visual representation other than text."@en ;
dc:description "Examples include images and photographs of physical objects, paintings, prints, drawings, other images and graphics, animations and moving pictures, film, diagrams, maps, musical notation. Note that Image may include both electronic and physical representations."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Image-004> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/InteractiveResource>
rdfs:label "Interactive Resource"@en ;
rdfs:comment "A resource requiring interaction from the user to be understood, executed, or experienced."@en ;
dc:description "Examples include forms on Web pages, applets, multimedia learning objects, chat services, or virtual reality environments."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#InteractiveResource-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Service>
rdfs:label "Service"@en ;
rdfs:comment "A system that provides one or more functions."@en ;
dc:description "Examples include a photocopying service, a banking service, an authentication service, interlibrary loans, a Z39.50 or Web server."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Service-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Software>
rdfs:label "Software"@en ;
rdfs:comment "A computer program in source or compiled form."@en ;
dc:description "Examples include a C source file, MS-Windows .exe executable, or Perl script."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Software-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Sound>
rdfs:label "Sound"@en ;
rdfs:comment "A resource primarily intended to be heard."@en ;
dc:description "Examples include a music playback file format, an audio compact disc, and recorded speech or sounds."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Sound-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/Text>
rdfs:label "Text"@en ;
rdfs:comment "A resource consisting primarily of words for reading."@en ;
dc:description "Examples include books, letters, dissertations, poems, newspapers, articles, archives of mailing lists. Note that facsimiles or images of texts are still of the genre Text."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2000-07-11"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#Text-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/PhysicalObject>
rdfs:label "Physical Object"@en ;
rdfs:comment "An inanimate, three-dimensional object or substance."@en ;
dc:description "Note that digital representations of, or surrogates for, these objects should use Image, Text or one of the other types."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2002-07-13"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#PhysicalObject-003> ;
ns0:memberOf dc:DCMIType .
<http://purl.org/dc/dcmitype/StillImage>
rdfs:label "Still Image"@en ;
rdfs:comment "A static visual representation."@en ;
dc:description "Examples include paintings, drawings, graphic designs, plans and maps. Recommended best practice is to assign the type Text to images of textual materials. Instances of the type Still Image must also be describable as instances of the broader type Image."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2003-11-18"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#StillImage-003> ;
ns0:memberOf dc:DCMIType ;
rdfs:subClassOf <http://purl.org/dc/dcmitype/Image> .
<http://purl.org/dc/dcmitype/MovingImage>
rdfs:label "Moving Image"@en ;
rdfs:comment "A series of visual representations imparting an impression of motion when shown in succession."@en ;
dc:description "Examples include animations, movies, television programs, videos, zoetropes, or visual output from a simulation. Instances of the type Moving Image must also be describable as instances of the broader type Image."@en ;
a <http://purl.org/dc/dcmitype/> ;
dc:issued "2003-11-18"^^xsd:date ;
dc:modified "2008-01-14"^^xsd:date ;
dc:hasVersion <http://dublincore.org/usage/terms/history/#MovingImage-003> ;
ns0:memberOf dc:DCMIType ;
rdfs:subClassOf <http://purl.org/dc/dcmitype/Image> .
\ No newline at end of file
@base <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/>
rdf:type <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
dc:title "DFG Fachsystematik" ;
skos:hasTopConcept <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher> .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher>
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "DFG Fachsystematik"@de, "DFG Structure"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geistes- und Sozialwissenschaften"@de, "Humanities and Social Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Alte Kulturen"@de, "Ancient Cultures"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101#101-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ur- und Frhgeschichte (weltweit)"@de, "Prehistory"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101#101-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klassische Philologie"@de, "Classical Philology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101#101-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Alte Geschichte"@de, "Ancient History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101#101-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klassische Archologie"@de, "Classical Archaeology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101#101-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=101> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "gyptische und Vorderasiatische Altertumswissenschaften"@de, "Egyptology and Ancient Near Eastern Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geschichtswissenschaften"@de, "History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102#102-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mittelalterliche Geschichte"@de, "Medieval History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102#102-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Frhneuzeitliche Geschichte"@de, "Early Modern History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102#102-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Neuere und Neueste Geschichte (einschl. Europische Geschichte der Neuzeit und Auereuropische Geschichte)"@de, "Modern and Current History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102#102-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=102> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wissenschaftsgeschichte"@de, "History of Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kunst-, Musik-, Theater- und Medienwissenschaften"@de, "Fine Arts, Music, Theatre and Media Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103#103-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kunstgeschichte"@de, "Art History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103#103-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Musikwissenschaften"@de, "Musicology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103#103-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=103> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theater- und Medienwissenschaften"@de, "Theatre and Media Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Sprachwissenschaften"@de, "Linguistics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104#104-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine und Vergleichende Sprachwissenschaft, Typologie, Auereuropische Sprachen"@de, "General and Comparative Linguistics, Typology, Non-European Languages"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104#104-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Einzelsprachwissenschaften"@de, "Individual Linguistics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104#104-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Historische Linguistik"@de, "Historical Linguistics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104#104-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=104> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Angewandte Sprachwissenschaften, Experimentelle Linguistik, Computerlinguistik"@de, "Applied Linguistics, Experimental Linguistics, Computational Linguistics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Literaturwissenschaft"@de, "Literary Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105#105-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "ltere deutsche Literatur"@de, "Medieval German Literature"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105#105-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Neuere deutsche Literatur"@de, "Modern German Literature"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105#105-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Europische und Amerikanische Literaturen"@de, "European and American Literature"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105#105-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=105> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine und vergleichende Literaturwissenschaft; Kulturwissenschaft"@de, "General and Comparative Literature and Cultural Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Sozial- und Kulturanthropologie, Auereuropische Kulturen, Judaistik und Religionswissenschaft"@de, "Social and Cultural Anthropology, Non-European Cultures, Jewish Studies and Religious Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106#106-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ethnologie und Europische Ethnologie"@de, "Social and Cultural Anthropology and Ethnology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106#106-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Asienbezogene Wissenschaften"@de, "Asian Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106#106-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Afrika-, Amerika- und Ozeanienbezogene Wissenschaften"@de, "African, American and Oceania Studies "@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106#106-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Islamwissenschaften, Arabistik, Semitistik"@de, "Islamic Studies, Arabian Studies, Semitic Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106#106-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=106> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Religionswissenschaft und Judaistik"@de, "Religious Studies and Jewish Studies"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=107>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theologie"@de, "Theology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=107#107-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=107> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Evangelische Theologie"@de, "Protestant Theology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=107#107-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=107> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Katholische Theologie"@de, "Roman Catholic Theology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Philosophie"@de, "Philosophy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108#108-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geschichte der Philosophie"@de, "History of Philosophy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108#108-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theoretische Philosophie"@de, "Theoretical Philosophy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108#108-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=108> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Praktische Philosophie"@de, "Practical Philosophy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Erziehungswissenschaft und Bildungsforschung"@de, "Educational Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109#109-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine und Historische Pdagogik"@de, "General Education and History of Education"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109#109-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeines und fachbezogenes Lehren und Lernen"@de, "General and Domain-Specific Teaching and Learning"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109#109-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Bildungssysteme und Bildungsinstitutionen"@de, "Education Systems and Educational Institutions"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109#109-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=109> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pdagogische Sozial- und Organisationsforschung"@de, "Educational Research on Socialization, Welfare and Organisations"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Psychologie"@de, "Psychology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110#110-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine, Biologische und Mathematische Psychologie"@de, "General, Biological and Mathematical Psychology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110#110-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Entwicklungspsychologie und Pdagogische Psychologie"@de, "Developmental and Educational Psychology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110#110-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Sozialpsychologie und Arbeits- und Organisationspsychologie"@de, "Social Psychology, Industrial and Organisational Psychology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110#110-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=110> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Differentielle Psychologie, Klinische Psychologie, Medizinische Psychologie, Methoden"@de, "Differential Psychology, Clinical Psychology, Medical Psychology, Methodology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Sozialwissenschaften"@de, "Social Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111#111-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Soziologische Theorie"@de, "Sociological Theory"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111#111-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Empirische Sozialforschung"@de, "Empirical Social Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111#111-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Publizistik und Kommunikationswissenschaft"@de, "Communication Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111#111-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=111> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Politikwissenschaft"@de, "Political Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wirtschaftswissenschaften"@de, "Economics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112#112-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wirtschaftstheorie"@de, "Economic Theory"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112#112-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wirtschaftspolitik und Finanzwissenschaften"@de, "Economic Policy and Public Finance"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112#112-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Betriebswirtschaftslehre"@de, "Business Administration"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112#112-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Statistik und konometrie"@de, "Statistics and Econometrics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112#112-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=112> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wirtschafts- und Sozialgeschichte"@de, "Economic and Social History"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#1> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Rechtswissenschaften"@de, "Jurisprudence"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113#113-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Grundlagen des Rechts und der Rechtswissenschaft"@de, "Principles of Law and Jurisprudence"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113#113-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Privatrecht"@de, "Private Law"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113#113-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "ffentliches Recht"@de, "Public Law"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113#113-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Strafrecht, Strafprozessrecht"@de, "Criminal Law and Law of Criminal Procedure"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113#113-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=113> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kriminologie"@de, "Criminology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Lebenswissenschaften"@de, "Life Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Grundlagen der Biologie und Medizin"@de, "Basic Research in Biology and Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biochemie"@de, "Biochemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biophysik"@de, "Biophysics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Zellbiologie"@de, "Cell Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Strukturbiologie"@de, "Structural Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine Genetik"@de, "General Genetics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Entwicklungsbiologie"@de, "Developmental Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Bioinformatik und Theoretische Biologie"@de, "Bioinformatics and Theoretical Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201#201-08>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=201> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Anatomie"@de, "Anatomy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenwissenschaften"@de, "Plant Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Evolution und Systematik der Pflanzen und Pilze"@de, "Evolution and Systematics of Plants and Fungi"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenkologie und kosystemforschung"@de, "Plant Ecology and Ecosystem Analysis"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Organismische Interaktionen und chemische kologie pflanzlicher Systeme"@de, "Inter-Organismic Interactions and Chemical Ecology of Plant Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenphysiologie"@de, "Plant Physiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biochemie und Biophysik der Pflanzen"@de, "Plant Biochemistry and Biophysics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Zell- und Entwicklungsbiologie der Pflanzen"@de, "Plant Cell and Developmental Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202#202-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=202> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Genetik der Pflanzen"@de, "Plant Genetics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Zoologie"@de, "Zoology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Systematik und Morphologie der Tiere"@de, "Special Zoology and Morphology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Evolution, Anthropologie"@de, "Evolution, Anthropology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "kologie der Tiere, Biodiversitt und kosystemforschung"@de, "Animal Ecology, Biodiversity and Ecosystem Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biologie des Verhaltens und der Sinne"@de, "Sensory and Behavioural Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biochemie und Physiologie der Tiere"@de, "Biochemistry and Animal Physiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203#203-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=203> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Evolutionre Zell- und Entwicklungsbiologie der Tiere"@de, "Evolutionary Cell and Developmental Biology (Zoology)"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mikrobiologie, Virologie und Immunologie"@de, "Microbiology, Virology and Immunology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204#204-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Stoffwechselphysiologie, Biochemie und Genetik der Mikroorganismen"@de, "Metabolism, Biochemistry and Genetics of Microorganisms"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204#204-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mikrobielle kologie und Angewandte Mikrobiologie"@de, "Microbial Ecology and Applied Microbiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204#204-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Medizinische Mikrobiologie, Parasitologie, medizinische Mykologie und Hygiene, Molekulare Infektionsbiologie"@de, "Medical Microbiology, Parasitology, Medical Mycology and Hygiene, Molecular Infection Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204#204-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Virologie"@de, "Virology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204#204-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=204> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Immunologie"@de, "Immunology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Medizin"@de, "Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Epidemiologie, Medizinische Biometrie, Medizinische Informatik"@de, "Epidemiology, Medical Biometry, Medical Informatics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Public Health, medizinische Versorgungsforschung, Sozialmedizin"@de, "Public Health, Health Services Research, Social Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Humangenetik"@de, "Human Genetics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physiologie"@de, "Physiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ernhrungswissenschaften"@de, "Nutritional Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pathologie"@de, "Pathology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klinische Chemie und Pathobiochemie"@de, "Clinical Chemistry and Pathobiochemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-08>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pharmazie"@de, "Pharmacy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-09>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pharmakologie"@de, "Pharmacology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-10>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Toxikologie, Arbeitsmedizin und Rechtsmedizin"@de, "Toxicology, Occupational Medicine and Forensic Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-11>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ansthesiologie"@de, "Anaesthesiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-12>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kardiologie, Angiologie"@de, "Cardiology, Angiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-13>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pneumologie, Klinische Infektiologie"@de, "Pneumology, Clinical Infectiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-14>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Hmatologie, Onkologie, Transfusionsmedizin"@de, "Hematology, Oncology, Transfusion Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-15>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Gastroenterologie, Stoffwechsel"@de, "Gastroenterology, Metabolism"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-16>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Nephrologie"@de, "Nephrology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-17>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Endokrinologie, Diabetologie"@de, "Endocrinology, Diabetology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-18>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Rheumatologie, Klinische Immunologie, Allergologie"@de, "Rheumatology, Clinical Immunology, Allergology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-19>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Dermatologie"@de, "Dermatology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-20>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kinder- und Jugendmedizin"@de, "Pediatric and Adolescent Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-21>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Frauenheilkunde und Geburtshilfe"@de, "Gynaecology and Obstetrics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-22>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Reproduktionsmedizin/ -biologie"@de, "Reproductive Medicine/Biology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-23>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Urologie"@de, "Urology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-24>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biogerontologie und Geriatrie"@de, "Biogerontology and Geriatric Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-25>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemein- und Viszeralchirurgie"@de, "General and Visceral Surgery"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-26>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Herz-, Thorax-, Gefchirurgie"@de, "Cardiothoracic and Vascular Surgery"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-27>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Unfallchirurgie und Orthopdie"@de, "Traumatology and Orthopaedics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-28>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Zahnheilkunde; Mund-, Kiefer- und Gesichtschirurgie"@de, "Dentistry, Oral Surgery"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-29>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Hals-Nasen-Ohrenheilkunde"@de, "Otolaryngology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-30>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Radiologie und Nuklearmedizin"@de, "Radiology and Nuclear Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-31>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Radioonkologie und Strahlenbiologie"@de, "Radiation Oncology and Radiobiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205#205-32>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=205> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biomedizinische Technik und Medizinische Physik"@de, "Biomedical Technology and Medical Physics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Neurowissenschaft"@de, "Neurosciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Molekulare Neurowissenschaft und Neurogenetik"@de, "Molecular Neuroscience and Neurogenetics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Zellulre Neurowissenschaft"@de, "Cellular Neuroscience"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Entwicklungsneurobiologie"@de, "Developmental Neurobiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Systemische Neurowissenschaft, Computational Neuroscience, Verhalten"@de, "Systemic Neuroscience, Computational Neuroscience, Behaviour"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Organismische Neurobiologie"@de, "Organismic Neurobiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kognitive Neurowissenschaft"@de, "Cognitive Neuroscience"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Molekulare und Zellulre Neurologie, Neuropathologie"@de, "Molecular and Cellular Neurology, Neuropathology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-08>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klinische Neurowissenschaften I - Neurologie, Neurochirurgie, Neuroradiologie"@de, "Clinical Neurosciences I - Neurology, Neurosurgery, Neuroradiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-09>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biologische und molekulare Psychiatrie"@de, "Biological and Molecular Psychiatry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-10>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klinische Neurowissenschaften II - Psychiatrie, Psychotherapie, Kinder- und Jugendspychiatrie"@de, "Clinical Neurosciences II - Psychiatry, Psychotherapy, Child and Adolescent Psychiatry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206#206-11>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=206> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Klinische Neurowissenschaften III - Augenheilkunde"@de, "Clinical Neurosciences III - Ophthalmology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#2> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Agrar-, Forstwissenschaften und Tiermedizin"@de, "Agriculture, Forestry and Veterinary Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Bodenwissenschaften"@de, "Soil Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenbau und Agrartechnik"@de, "Plant Cultivation and Agricultural Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenernhrung"@de, "Plant Nutrition"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "kologie von Agrarlandschaften"@de, "Ecology of Agricultural Landscapes"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Pflanzenzchtung"@de, "Plant Breeding"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Phytomedizin"@de, "Phytomedicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Agrarkonomie und -soziologie"@de, "Agricultural Economics and Sociology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-08>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Forstwissenschaften"@de, "Forestry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-09>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Tierzucht, Tierhaltung und Tierhygiene"@de, "Animal Husbandry, Breeding and Hygiene"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-10>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Tierernhrung und Tierernhrungsphysiologie"@de, "Animal Nutrition and Nutrition Physiology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-11>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Grundlagen der Tiermedizin"@de, "Basic Veterinary Medical Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207#207-12>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=207> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Grundlagen von Pathogenese, Diagnostik, Therapie und Klinische Tiermedizin"@de, "Basic Research on Pathogenesis, Diagnostics and Therapy and Clinical Veterinary Medicine"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Naturwissenschaften"@de, "Natural Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=301>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Moleklchemie"@de, "Molecular Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=301#301-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=301> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Anorganische Moleklchemie - Synthese, Charakterisierung, Theorie und Modellierung"@de, "Inorganic Molecular Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=301#301-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=301> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Organische Moleklchemie - Synthese, Charakterisierung, Theorie und Modellierung"@de, "Organic Molecular Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Chemische Festkrper- und Oberflchenforschung"@de, "Chemical Solid State and Surface Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302#302-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Festkrper- und Oberflchenchemie, Materialsynthese"@de, "Solid State and Surface Chemistry, Material Synthesis"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302#302-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physikalische Chemie von Festkrpern und Oberflchen, Materialcharakterisierung"@de, "Physical Chemistry of Solids and Surfaces, Material Characterisation"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302#302-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=302> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theorie und Modellierung"@de, "Theory and Modelling"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=303>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physikalische und Theoretische Chemie"@de, "Physical and Theoretical Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=303#303-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=303> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physikalische Chemie von Moleklen, Flssigkeiten und Grenzflchen - Spektroskopie, Kinetik"@de, "Physical Chemistry of Molecules, Interfaces and Liquids - Spectroscopy, Kinetics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=303#303-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=303> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Allgemeine Theoretische Chemie"@de, "General Theoretical Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=304>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Analytik, Methodenentwicklung (Chemie)"@de, "Analytical Chemistry, Method Development (Chemistry)"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=304#304-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=304> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Analytik, Methodenentwicklung (Chemie)"@de, "Analytical Chemistry, Method Development (Chemistry)"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=305>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biologische Chemie und Lebensmittelchemie"@de, "Biological Chemistry and Food Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=305#305-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=305> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biologische und Biomimetische Chemie"@de, "Biological and Biomimetic Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=305#305-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=305> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Lebensmittelchemie"@de, "Food Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Polymerforschung"@de, "Polymer Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306#306-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Prparative und Physikalische Chemie von Polymeren"@de, "Preparatory and Physical Chemistry of Polymers"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306#306-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Experimentelle und Theoretische Polymerphysik"@de, "Experimental and Theoretical Physics of Polymers"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306#306-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=306> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Polymermaterialien"@de, "Polymer Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=307>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physik der kondensierten Materie"@de, "Condensed Matter Physics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=307#307-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=307> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Experimentelle Physik der kondensierten Materie"@de, "Experimental Condensed Matter Physics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=307#307-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=307> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theoretische Physik der kondensierten Materie"@de, "Theoretical Condensed Matter Physics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=308>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Optik, Quantenoptik und Physik der Atome, Molekle und Plasmen"@de, "Optics, Quantum Optics and Physics of Atoms, Molecules and Plasmas"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=308#308-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=308> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Optik, Quantenoptik, Physik der Atome, Molekle und Plasmen"@de, "Optics, Quantum Optics, Atoms, Molecules, Plasmas"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=309>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Teilchen, Kerne und Felder"@de, "Particles, Nuclei and Fields"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=309#309-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=309> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kern- und Elementarteilchenphysik, Quantenmechanik, Relativittstheorie, Felder"@de, "Particles, Nuclei and Fields"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=310>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Statistische Physik, Weiche Materie, Biologische Physik, Nichtlineare Dynamik"@de, "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=310#310-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=310> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Statistische Physik, Weiche Materie, Biologische Physik, Nichtlineare Dynamik"@de, "Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=311>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Astrophysik und Astronomie"@de, "Astrophysics and Astronomy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=311#311-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=311> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Astrophysik und Astronomie"@de, "Astrophysics and Astronomy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=312>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mathematik"@de, "Mathematics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=312#312-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=312> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mathematik"@de, "Mathematics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=313>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Atmosphren-, Meeres- und Klimaforschung"@de, "Atmospheric Science, Oceanography and Climate Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=313#313-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=313> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physik und Chemie der Atmosphre"@de, "Atmospheric Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=313#313-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=313> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physik, Chemie und Biologie des Meeres"@de, "Oceanography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=314>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geologie und Palontologie"@de, "Geology and Palaeontology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=314#314-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=314> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geologie, Ingenieurgeologie, Palontologie"@de, "Geology and Palaeontology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=315>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geophysik und Geodsie"@de, "Geophysics and Geodesy"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=315#315-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=315> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physik des Erdkrpers"@de, "Geophysics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=315#315-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=315> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geodsie, Photogrammetrie, Fernerkundung, Geoinformatik, Kartographie"@de, "Geodesy, Photogrammetry, Remote Sensing, Geoinformatics, Cartography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=316>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geochemie, Mineralogie und Kristallographie"@de, "Geochemistry, Mineralogy and Crystallography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=316#316-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=316> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Organische und Anorganische Geochemie, Biogeochemie, Mineralogie, Petrologie, Kristallographie, Lagerstttenkunde"@de, "Geochemistry, Mineralogy and Crystallography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=317>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geographie"@de, "Geography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=317#317-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=317> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Physische Geographie"@de, "Physical Geography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=317#317-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=317> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Humangeographie"@de, "Human Geography"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=318>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#3> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wasserforschung"@de, "Water Research"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=318#318-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=318> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Hydrogeologie, Hydrologie, Limnologie, Siedlungswasserwirtschaft, Wasserchemie, Integrierte Wasser-Ressourcen Bewirtschaftung"@de, "Hydrogeology, Hydrology, Limnology, Urban Water Management, Water Chemistry, Integrated Water Resources Management "@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ingenieurwissenschaften"@de, "Engineering Sciences"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Produktionstechnik"@de, "Production Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Spanende Fertigungstechnik"@de, "Metal-Cutting Manufacturing Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Ur- und Umformtechnik"@de, "Primary Shaping and Reshaping Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Fge-, Montage- und Trenntechnik"@de, "Joining, Mounting and Separation Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Kunststofftechnik"@de, "Plastics Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Produktionsorganisation und Betriebswissenschaften"@de, "Production Management and Operations Management"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401#401-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=401> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Werkzeugmaschinen und Produktionsautomatisierung"@de, "Machine Tools and Production Automation"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mechanik und Konstruktiver Maschinenbau"@de, "Mechanics and Constructive Mechanical Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402#402-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Konstruktion, Maschinenelemente, Produktentwicklung"@de, "Engineering Design, Machine Elements, Product Development"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402#402-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mechanik"@de, "Mechanics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402#402-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Leichtbau, Textiltechnik"@de, "Lightweight Construction, Textile Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402#402-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=402> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Akustik"@de, "Acoustics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Verfahrenstechnik, Technische Chemie"@de, "Process Engineering, Technical Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403#403-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Chemische und Thermische Verfahrenstechnik"@de, "Chemical and Thermal Process Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403#403-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Technische Chemie"@de, "Technical Chemistry"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403#403-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mechanische Verfahrenstechnik"@de, "Mechanical Process Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403#403-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=403> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Bioverfahrenstechnik"@de, "Biological Process Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Wrmeenergietechnik, Thermische Maschinen, Strmungsmechanik"@de, "Heat Energy Technology, Thermal Machines, Fluid Mechanics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404#404-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Energieverfahrenstechnik"@de, "Energy Process Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404#404-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Technische Thermodynamik"@de, "Technical Thermodynamics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404#404-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Strmungsmechanik"@de, "Fluid Mechanics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404#404-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=404> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Strmungs- und Kolbenmaschinen"@de, "Hydraulic and Turbo Engines and Piston Engines"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Werkstofftechnik"@de, "Materials Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405#405-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Metallurgische und thermische Prozesse und thermomechanische Behandlung von Werkstoffen"@de, "Metallurgical and Thermal Processes, Thermomechanical Treatment of Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405#405-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Keramische und metallische Sinterwerkstoffe"@de, "Sintered Metallic and Ceramic Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405#405-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Verbundwerkstoffe"@de, "Composite Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405#405-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mechanisches Verhalten von Konstruktionswerkstoffen"@de, "Mechanical Behaviour of Construction Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405#405-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=405> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Beschichtungs- und Oberflchentechnik"@de, "Coating and Surface Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Materialwissenschaft"@de, "Materials Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406#406-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Thermodynamik und Kinetik von Werkstoffen"@de, "Thermodynamics and Kinetics of Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406#406-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Herstellung und Eigenschaften von Funktionsmaterialien"@de, "Synthesis and Properties of Functional Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406#406-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mikrostrukturelle mechanische Eigenschaften von Materialien"@de, "Microstructural Mechanical Properties of Materials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406#406-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Strukturierung und Funktionalisierung"@de, "Structuring and Functionalisation"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406#406-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=406> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biomaterialien"@de, "Biomaterials"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Systemtechnik"@de, "Systems Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Automatisierungstechnik, Regelungssysteme, Robotik, Mechatronik, Cyber Physical Systems"@de, "Automation, Control Systems, Robotics, Mechatronics, Cyber Physical Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Messsysteme"@de, "Measurement Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Mikrosysteme"@de, "Microsystems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Verkehrs- und Transportsysteme, Logistik, Intelligenter und automatisierter Verkehr"@de, "Traffic and Transport Systems, Logistics, Intelligent and Automated Traffic"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Arbeitswissenschaft, Ergonomie, Mensch-Maschine-Systeme"@de, "Human Factors, Ergonomics, Human-Machine Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407#407-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=407> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Biomedizinische Systemtechnik"@de, "Biomedical Systems Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Elektrotechnik und Informationstechnik"@de, "Electrical Engineering and Information Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408#408-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Elektronische Halbleiter, Bauelemente und Schaltungen, Integrierte Systeme"@de, "Electronic Semiconductors, Components, Circuits, Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408#408-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Nachrichten- und Hochfrequenztechnik, Kommunikationstechnik und -netze, Theoretische Elektrotechnik"@de, "Communications, High-Frequency and Network Technology, Theoretical Electrical Engineering"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408#408-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=408> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Elektrische Energieerzeugung, -bertragung, -verteilung und -anwendung"@de, "Electrical Energy Generation, Distribution, Application"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Informatik"@de, "Computer Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Theoretische Informatik"@de, "Theoretical Computer Science"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Softwaretechnik und Programmiersprachen"@de, "Software Engineering and Programming Languages"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Sicherheit und Verlsslichkeit"@de, "Security and Dependability"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Betriebs-, Kommunikations-, Datenbank- und verteilte Systeme"@de, "Operating, Communication, Database and Distributed Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Interaktive und intelligente Systeme, Bild- und Sprachverarbeitung, Computergraphik und Visualisierung"@de, "Interactive and Intelligent Systems, Image and Language Processing, Computer Graphics and Visualisation"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Informationssysteme, Prozess- und Wissensmanagement"@de, "Information Systems, Process and Knowledge Management"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-07>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Rechnerarchitekturen und eingebettete Systeme"@de, "Computer Architecture and Embedded Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409#409-08>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=409> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Massiv parallele und datenintensive Systeme"@de, "Massively Parallel and Data-Intensive Systems"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/#4> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Bauwesen und Architektur"@de, "Construction Engineering and Architecture"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-01>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Architektur, Bau- und Konstruktionsgeschichte, Bauforschung, Ressourcenkonomie im Bauwesen"@de, "Architecture, Building and Construction History, Construction Research, Sustainable Building Technology"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-02>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Stdtebau/Stadtentwicklung, Raumplanung, Verkehrs- und Infrastrukturplanung, Landschaftsplanung"@de, "Urbanism, Spatial Planning, Transportation and Infrastructure Planning, Landscape Planning"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-03>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Baustoffwissenschaften, Bauchemie, Bauphysik"@de, "Construction Material Sciences, Chemistry, Building Physics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-04>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Konstruktiver Ingenieurbau, Bauinformatik und Baubetrieb"@de, "Structural Engineering, Building Informatics and Construction Operation"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-05>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Angewandte Mechanik, Statik und Dynamik"@de, "Applied Mechanics, Statics and Dynamics"@en .
<http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410#410-06>
rdfs:subClassOf <http://www.dfg.de/dfg_profil/gremien/fachkollegien/liste/index.jsp?id=410> ;
a <http://www.dfg.de/dfg_profil/gremien/fachkollegien/faecher/> ;
rdfs:label "Geotechnik, Wasserbau"@de, "Geotechnics, Hydraulic Engineering"@en .
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment