-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtto-simple.ttl
More file actions
1009 lines (810 loc) · 65.2 KB
/
tto-simple.ttl
File metadata and controls
1009 lines (810 loc) · 65.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/pmd/tto/> .
@prefix co: <https://w3id.org/pmd/co/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix terms: <http://purl.org/dc/terms/> .
@base <https://w3id.org/pmd/tto/> .
<https://w3id.org/pmd/tto/> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/pmd/tto/3.0.0> ;
terms:bibliographicCitation "M. Schilling, B. Bayerlein, P. v. Hartrott, J. Waitelonis, H. Birkholz, P. D. Portella, B. Skrotzki, Advanced Engineering Materials 2024, 2400138." ;
terms:contributor "https://orcid.org/0000-0003-1649-6832" ;
terms:created "2026-04-16" ;
terms:creator <https://orcid.org/0000-0001-7192-7143> ,
<https://orcid.org/0000-0002-3717-7104> ,
<https://orcid.org/0000-0002-7094-5371> ,
<https://orcid.org/0000-0002-9014-2920> ,
<https://orcid.org/0000-0003-4971-3645> ;
terms:description """Dies ist die PMD-Ontologie für Zugversuche (Tensile Test Ontology – TTO), die auf der Grundlage der Prüfnorm \"ISO 6892-1: Metallische Werkstoffe – Zugversuche – Teil 1: Prüfverfahren bei Raumtemperatur\" entwickelt wurde.
Die TTO wurde im Rahmen des PMD-Projekts entwickelt. Die TTO bietet Konzeptualisierungen, die für die Beschreibung von Zugversuchen und entsprechenden Daten gemäß der jeweiligen Prüfnorm gültig sind. Durch die Verwendung der TTO zur Speicherung von Zugversuchsdaten sind alle Daten gut strukturiert und basieren auf einem gemeinsamen Vokabular, das von einer Expertengruppe vereinbart wurde (Erzeugung von FAIRen-Daten), was zu einer verbesserten Dateninteroperabilität führen wird. Durch den Import der PMD Core Ontology (PMDco) wird die Interoperabilität von Zugprüfungsdaten verbessert und die Abfrage in Kombination mit anderen Aspekten und Daten aus dem breiten Feld der Materialwissenschaft und Werkstofftechnik (MSE) erleichtert."""@de ,
"""This is thePMD ontology of the tensile test (Tensile Test Ontology - TTO) as developed on the basis of the test standard ISO 6892-1: Metallic materials - Tensile Testing - Part 1: Method of test at room temperature.
The TTO was developed in the frame of the PMD project. The TTO provides conceptualizations valid for the description of tensile tests and corresponding data in accordance with the respective test standard. By using TTO for storing tensile test data, all data will be well structured and based on a common vocabulary agreed on by an expert group (generation of FAIR data) which will lead to enhanced data interoperability. Due to the import of the PMD core ontology (PMDco), the interoperability of tensile test data is enhanced and querying in combination with other aspects and data within the broad field of material science and engineering (MSE) is facilitated."""@en ;
terms:license <http://creativecommons.org/licenses/by/4.0/> ;
terms:title "Tensile Test Ontology (TTO)" ;
doap:repository "https://github.com/materialdigital/tensile-test-ontology" ;
owl:priorVersion <https://w3id.org/pmd/tto/2.0.1> ;
owl:versionInfo "3.0.0" .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000112
obo:IAO_0000112 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000114
obo:IAO_0000114 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000115
obo:IAO_0000115 rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000116
obo:IAO_0000116 rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/bibliographicCitation
terms:bibliographicCitation rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
terms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
terms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
terms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
terms:description rdf:type owl:AnnotationProperty ;
rdfs:label "description" .
### http://purl.org/dc/terms/license
terms:license rdf:type owl:AnnotationProperty ;
rdfs:label "dcterms:license" ,
"license" .
### http://purl.org/dc/terms/title
terms:title rdf:type owl:AnnotationProperty .
### http://usefulinc.com/ns/doap#repository
doap:repository rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty ;
rdfs:label "alternative label"@en ;
skos:definition "An alternative lexical label for a resource."@en ;
skos:example "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."@en .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty ;
rdfs:label "definition"@en ;
skos:definition "A statement or formal explanation of the meaning of a concept."@en .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### https://w3id.org/pmd/co/definitionSource
co:definitionSource rdf:type owl:AnnotationProperty .
### https://w3id.org/pmd/co/symbol
co:symbol rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000051
obo:BFO_0000051 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:BFO_0000051 ;
rdf:type owl:TransitiveProperty ;
obo:IAO_0000112 "my body has part my brain (continuant parthood, two material entities)"@en ,
"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en ,
"this year has part this day (occurrent parthood)"@en ;
obo:IAO_0000115 "a core relation that holds between a whole and its part"@en ;
obo:IAO_0000116 "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."""@en ;
rdfs:label "has part"@en .
### http://purl.obolibrary.org/obo/BFO_0000054
obo:BFO_0000054 rdf:type owl:ObjectProperty ;
owl:inverseOf obo:BFO_0000055 ;
rdfs:label "has realization"@en ,
"realized in"@en ;
skos:altLabel "realized in"@en ;
skos:definition "b has realization c =Def c realizes b"@en ;
skos:example "As for realizes"@en .
### http://purl.obolibrary.org/obo/BFO_0000055
obo:BFO_0000055 rdf:type owl:ObjectProperty ;
obo:IAO_0000115 "Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process"@en ;
rdfs:label "realizes"@en ;
skos:definition "(Elucidation) realizes is a relation between a process b and realizable entity c such that c inheres in some d & for all t, if b has participant d then c exists & the type instantiated by b is correlated with the type instantiated by c"@en ;
skos:example "A balding process realizes a disposition to go bald; a studying process realizes a student role; a process of pumping blood realizes the pumping function of a heart"@en .
### http://purl.obolibrary.org/obo/OBI_0000293
obo:OBI_0000293 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
obo:IAO_0000112 "see is_input_of example_of_usage"@en ;
obo:IAO_0000115 "The inverse property of is specified input of" ;
obo:IAO_0000116 "8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works." ;
rdfs:label "has specified input"@en .
### http://purl.obolibrary.org/obo/OBI_0000299
obo:OBI_0000299 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf obo:RO_0000057 ;
owl:inverseOf obo:OBI_0000312 ;
obo:IAO_0000115 "The inverse property of is specified output of" ;
rdfs:label "has specified output"@en .
### http://purl.obolibrary.org/obo/OBI_0000312
obo:OBI_0000312 rdf:type owl:ObjectProperty ;
obo:IAO_0000115 "A relation between a completely executed planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."@en ;
rdfs:label "is specified output of"@en .
### http://purl.obolibrary.org/obo/RO_0000057
obo:RO_0000057 rdf:type owl:ObjectProperty ;
owl:propertyChainAxiom ( obo:BFO_0000051
obo:RO_0000057
) ;
obo:IAO_0000112 "this blood coagulation has participant this blood clot"@en ,
"this investigation has participant this investigator"@en ,
"this process has participant this input material (or this output material)"@en ;
obo:IAO_0000115 "a relation between a process and a continuant, in which the continuant is somehow involved in the process"@en ;
obo:IAO_0000116 "Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."@en ;
rdfs:label "has participant"@en .
### http://purl.obolibrary.org/obo/RO_0000086
obo:RO_0000086 rdf:type owl:ObjectProperty ;
obo:IAO_0000112 "this apple has quality this red color"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."@en ;
rdfs:label "has quality"@en .
### http://purl.obolibrary.org/obo/RO_0000087
obo:RO_0000087 rdf:type owl:ObjectProperty ;
obo:IAO_0000112 "this person has role this investigator role (more colloquially: this person has this role of investigator)"@en ;
obo:IAO_0000115 "a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"@en ;
obo:IAO_0000116 "A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."@en ;
rdfs:label "has role"@en .
### https://w3id.org/pmd/co/relatesTo
co:relatesTo rdf:type owl:ObjectProperty .
#################################################################
# Classes
#################################################################
### https://w3id.org/pmd/tto/TTO_0000001
:TTO_0000001 rdf:type owl:Class ;
rdfs:label "Höchstkraft der Kraftmessdose"@de ,
"load cell maximum force"@en ;
skos:definition "Die Maximalkraft der Kraftmessdose ist eine Gerätespezifikation, welche die größte Kraft bezeichnet, die eine Kraftmessdose bei einem Zugversuch zuverlässig und ohne bleibende Beschädigung messen kann. Sie definiert die obere Belastungsgrenze des Sensors, oberhalb derer Messfehler, plastische Verformungen oder ein Ausfall des Messsystems auftreten können."@de ,
"Load cell maximum force is a device specification describing the highest force that a load cell can reliably measure during a tensile test without permanent damage. It defines the upper load limit of the sensor, beyond which measurement errors, plastic deformation, or failure of the system may occur."@en .
### https://w3id.org/pmd/tto/TTO_0000004
:TTO_0000004 rdf:type owl:Class ;
rdfs:comment """'characteristic of' some
(object
and ('is specified output of' some
('tensile testing process'
and ('has specified input' some
(object
and ('has quality' some 'original gauge length'))))))""" ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Verlängerung"@de ,
"elongation"@en ;
rdfs:seeAlso :Elongation ;
skos:definition "Zunahme der Anfangsmesslänge zu einem beliebigen Zeitpunkt während des Versuchs"@de ,
"increase in the original gauge length at any moment during the test"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000005
:TTO_0000005 rdf:type owl:Class ;
obo:IAO_0000114 obo:IAO_0000428 ;
rdfs:comment """Dimensional analysis: L
Unit (e.g. SI): mm"""@en ,
"""Hinweis: Die Dehnung kann mit verschiedenen Kanälen gemessen werden (z. B. bei Verwendung von einem oder zwei Dehnungsmesserkanälen); in der Regel wird als Dehnungswert der mittlere Durchschnittswert der beteiligten Kanäle angegeben, falls zutreffend.
Hinweis: Die optische Längenänderungsmessung kann eine besondere Methode der Datenspeicherung erfordern."""@de ,
"""Note: The extension might be measured using different channels (e.g. when using one or two extensometer channels); usually, the mean average value of involved channels is given as extension value, if applicable.
Note: Optical extensometry may require a specific data storage method."""@en ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Verlängerung (der Extensometer-Messlänge)"@de ,
"extension"@en ;
rdfs:seeAlso <https://w3id.org/pmd/co/2.0.8/Extension> ;
skos:definition "Increase in the extensometer gauge length at any moment during a test"@en ,
"Zunahme der Extensometer-Messlänge zu einem beliebigen Zeitpunkt eines Versuchs"@de ;
co:definitionSource "DIN EN ISO 6892-1:2019" .
### https://w3id.org/pmd/tto/TTO_0000006
:TTO_0000006 rdf:type owl:Class ;
rdfs:label "broken tested test piece role"@en ;
skos:definition "The role of a test piece that, as part of a destructive testing process, has been brought to failure and is therefore in a broken physical state after the test."@en .
### https://w3id.org/pmd/tto/TTO_0000007
:TTO_0000007 rdf:type owl:Class ;
rdfs:comment "An unbroken tested test piece role may explicitly also be realized by a destructive testing process that unintendedly actually did not lead to breakage."@en ;
rdfs:label "unbroken tested test piece role"@en ;
skos:definition "The role of a test piece that has undergone a test but remains physically intact after the testing process, typically as a result of a non-destructive or non-failure-inducing test."@en .
### https://w3id.org/pmd/tto/TTO_0000008
:TTO_0000008 rdf:type owl:Class ;
rdfs:label "Ergebnis eines Zugversuches"@de ,
"tensile test result"@en ;
skos:definition "Data item that represents any result generated during or after a tensile test, independent of its structure, granularity, or encoding format."@en ,
"Datenobjekt, das ein beliebiges Ergebnis beschreibt, das während oder nach einem Zugversuch erzeugt wird, unabhängig von Struktur, Detaillierungsgrad oder Format der Darstellung."@de .
### https://w3id.org/pmd/tto/TTO_0000009
:TTO_0000009 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Streckgrenze"@de ,
"yield strength"@en ;
rdfs:seeAlso :YieldStrength ;
skos:definition "Wenn der metallische Werkstoff diese Eigenschaft aufweist: die Spannung zu einem bestimmten Zeitpunkt während des Versuchs bei dem eine plastische Verformung ohne Zunahme der Kraft auftritt"@de ,
"when the metallic material exhibits a yield phenomenon, stress corresponding to the point reached during the test at which plastic deformation occurs without any increase in the force"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000010
:TTO_0000010 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kraft bei der unteren Streckgrenze"@de ,
"force at lower yield strength"@en ;
skos:definition "A force at lower yield strength is a force that is measured at the lower yield point (lower yield strength condition) during a tensile test."@en ,
"Kraft bei unterer Streckgrenze (F_eL) ist eine Kraft, die am Punkt der unteren Streckgrenze (untere Streckgrenzen‑Bedingung) während eines Zugversuchs gemessen wird."@de ;
co:symbol "F_eL" .
### https://w3id.org/pmd/tto/TTO_0000011
:TTO_0000011 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "change of transverse dimension"@en ,
"Änderung der transversalen Dimension"@de ;
rdfs:seeAlso :ChangeOfTransverseDimension ;
skos:definition "Dieses Konzept beschreibt eine Variation der Abmessungen eines Prüfkörpers in Bezug auf seine Querachse, die sich auf seine Querschnittsfläche auswirkt und möglicherweise während eines Zugversuchs auftritt. Das Verhältnis der wahren plastischen Breitendehnung und der wahren plastischen Dickendehnung in einem in uniaxialem Zug beanspruchten Prüfkörper (vertikale Anisotropie) kann anhand dieser Information berechnet werden."@de ,
"This concept describes a variation in the dimension of a test piece referring to its transversal axis affecting its cross-sectional area that may potentially occur during a tensile test. The ratio of the true plastic strain in width and the true plastic strain in thickness in a test piece loaded in uniaxial tension (vertical anisotropy) may be calculated using this information."@en ;
co:definitionSource "DIN EN ISO 10113:2021-06" .
### https://w3id.org/pmd/tto/TTO_0000012
:TTO_0000012 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0050000 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Querschnittsfläche"@de ,
"cross section area"@en ;
rdfs:seeAlso <https://w3id.org/pmd/co/2.0.8/CrossSectionArea> ;
skos:definition "Die Querschnittsfläche ist die Fläche eines Schnittes oder eines rechtwinklig geschnittenen oder gebrochenen Stücks eines Objektes in Bezug auf eine Achse."@de ,
"The cross section area is an area of a cutting or piece of an object cut off or broken at right angles or related to an axis."@en ;
co:definitionSource <https://www.merriam-webster.com/dictionary/cross%20section> .
### https://w3id.org/pmd/tto/TTO_0000013
:TTO_0000013 rdf:type owl:Class ;
rdfs:comment """Dimensional analysis: L
Unit (e.g. SI): mm"""@en ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Querhaupttrennung"@de ,
"crosshead separation"@en ;
rdfs:seeAlso :CrossheadSeparation ;
skos:definition "Dieses Konzept beschreibt die Verschiebung der Traverse einer Zugprüfmaschine."@de ,
"This concept describes the displacement of the crossheads of a tensile testing machine."@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000014
:TTO_0000014 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Traversengeschwindigkeit"@de ,
"crosshead separation rate"@en ;
rdfs:seeAlso :CrossheadSeparationRate ;
skos:definition "Traversenweg je Zeiteinheit"@de ,
"displacement of the crossheads per time"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "v_c"@en .
### https://w3id.org/pmd/tto/TTO_0000015
:TTO_0000015 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "End-Probendurchmesser"@de ,
"diameter after fracture"@en ;
rdfs:seeAlso :DiameterAfterFracture ;
skos:definition "Die Länge einer geraden Linie durch den Mittelpunkt eines Objekts (Zugprüfstücks), gemessen nach einem Bruch, der während einer Prüfung aufgetreten ist."@de ,
"The length of a straight line through the center of an object (tensile test piece) as measured after a fracture occured during a test."@en .
### https://w3id.org/pmd/tto/TTO_0000016
:TTO_0000016 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Abgeschätzte Dehngeschwindigkeit Über Die Parallele Länge"@de ,
"estimated strain rate over the parallel length"@en ;
rdfs:seeAlso :EstimatedStrainRateOverTheParallelLength ;
skos:definition "Zunahme der Dehnung über die parallele Länge der Probe je Zeiteinheit, basierend auf der Traversengeschwindigkeit und der parallelen Länge der Probe"@de ,
"value of the increase of strain over the parallel length of the test piece per time based on the crosshead separation rate and the parallel length of the test piece"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "e^._L_c"@en .
### https://w3id.org/pmd/tto/TTO_0000017
:TTO_0000017 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000019 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Extensometer-Messlänge"@de ,
"extensometer gauge length"@en ;
rdfs:seeAlso :ExtensometerGaugeLength ;
skos:definition """Anfangsmesslänge des Dehnungsaufnehmers (Extensometer), die zum Messen der Verlängerung benutzt wird
Anmerkung: Für die Bestimmung mehrerer Eigenschaften, die (teilweise oder vollständig) von der Verlängerung abhängig sind, z. B. R_p, A_e oder A_g, ist die Verwendung eines Extensometers zwingend erforderlich."""@de ,
"""initial gauge length of the extensometer used for measurement of extension
Note: For the determination of several properties which are based (partly or complete) on extension, e. g. R_p, A_e or A_g, the use of an extensometer is mandatory."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "L_e"@en .
### https://w3id.org/pmd/tto/TTO_0000018
:TTO_0000018 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000019 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Messlänge nach dem Bruch"@de ,
"final gauge length after fracture"@en ;
rdfs:seeAlso :FinalGaugeLengthAfterFracture ;
skos:definition "Länge zwischen den Marken zur Kennzeichnung der Messlänge auf der Probe, die nach dem Bruch bei Raumtemperatur gemessen wird, nachdem die beiden Probenbruchstücke sorgfältig so zusammengefügt wurden, dass ihre Achsen in einer Geraden liegen"@de ,
"length between gauge length marks on the test piece measured after rupture, at room temperature, the two pieces having been carefully fitted back together so that their axes lie in a straight line"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "L_u"@en .
### https://w3id.org/pmd/tto/TTO_0000019
:TTO_0000019 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Messlänge"@de ,
"gauge length"@en ;
rdfs:seeAlso :GaugeLength ;
skos:definition "Länge des parallelen Teils der Probe, an dem zu einem beliebigen Zeitpunkt während des Versuchs die Verlängerung gemessen wird"@de ,
"length of the parallel portion of the test piece on which elongation is measured at any moment during the test"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "L"@en .
### https://w3id.org/pmd/tto/TTO_0000020
:TTO_0000020 rdf:type owl:Class ;
obo:IAO_0000114 obo:IAO_0000428 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Messlängenmarkierungen"@de ,
"gauge length marks"@en ;
rdfs:seeAlso :GaugeLengthMarks ;
skos:definition "Dieses Konzept wird verwendet, um die sichtbaren Markierungen zu beschreiben, die in der Regel während eines Zugversuchs zur Messung der Dehnung an den Prüfkörpern angebracht werden."@de ,
"This concept is used to describe the visible markers usually attached to test pieces during a tensile test for elongation / extension measurements."@en .
### https://w3id.org/pmd/tto/TTO_0000021
:TTO_0000021 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kraft bei der oberer Streckgrenze"@de ,
"force at upper yield strength"@en ;
skos:definition "Die Kraft bei oberer Streckgrenze (F_eH) ist eine Kraft, die am Punkt der oberen Streckgrenze gemessen wird, d. h. bevor der erste Kraftabfall während eines Zugversuchs auftritt."@de ,
"Force at upper yield strength is a force that is measured at the upper yield point (upper yield strength condition), i.e., prior to the first decrease in force during a tensile test."@en ;
co:symbol "F_eH" .
### https://w3id.org/pmd/tto/TTO_0000022
:TTO_0000022 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000009 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "lower yield strength"@en ,
"untere Streckgrenze"@de ;
rdfs:seeAlso :LowerYieldStrength ;
skos:definition "kleinste Spannung während des plastischen Fließens, wobei Einschwingerscheinungen nicht berücksichtigt werden"@de ,
"lowest value of stress during plastic yielding, ignoring any initial transient effects"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_eL"@en .
### https://w3id.org/pmd/tto/TTO_0000023
:TTO_0000023 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Höchstkraft"@de ,
"maximum force"@en ;
rdfs:seeAlso :MaximumForce ;
skos:definition """Bei Werkstoffen, die kein diskontinuierliches Fließen zeigen: größte Kraft, der die Probe während des Versuchs standhält
Bei Werkstoffen, die ein diskontinuierliches Fließen zeigen: größte Kraft, der die Probe während des Versuchs nach dem Beginn der Verfestigung standhält
Anmerkung: Für Werkstoffe, die ein diskontinuierliches Fließen zeigen, aber keine Verfestigung erzielt werden kann, ist die Höchstkraft nicht definiert
."""@de ,
"""For materials displaying no discontinuous yielding: highest force that the test piece withstands during the test
For materials displaying discontinuous yielding: highest force that the test piece withstands during the test after the beginning of work-hardening
Note: For materials which display discontinuous yielding, but where no work-hardening can be established, the maximum force is not defined."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000024
:TTO_0000024 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000012 ,
[ rdf:type owl:Class ;
owl:unionOf ( [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000056
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000060
]
) ;
rdf:type owl:Class
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000015
]
)
] ;
rdfs:comment "Symbol: S_u" ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kleinster Querschnitt nach dem Bruch"@de ,
"minimum cross-sectional area after fracture"@en ;
rdfs:seeAlso :MinimumCrossSectionalAreaAfterFracture ;
skos:definition """Dieses Konzept beschreibt die kleinste Querschnittsfläche des Zugprüfkörers, die nach dem Bruch infolge der aufgebrachten Zugkraft erhalten wird.
Anmerkung: Sie wird in der Regel senkrecht zur Richtung der aufgebrachten Kraft gemessen und dient zur Berechnung der technischen Spannung während der Prüfung.
Anmerkung: Es wird empfohlen, den Anfangsquerschnitt innerhalb der parallelen Länge mit einer Genauigkeit von ±2 % zu messen. Bei runden Prüfkörpern mit kleinem Durchmesser oder Prüfkörpern mit anderen Querschnittsgeometrien ist es jedoch möglicherweise nicht möglich, den Anfangsquerschnitt innerhalb der parallelen Länge mit einer Genauigkeit von ±2 % zu messen."""@de ,
"""This concept describes the smallest cross-sectional area of the tensile test piece observed after it has fractured under the applied tensile force.
Note: It is typically measured perpendicular to the direction of the applied force and is used to calculate engineering stress during the test.
Note: It is recommended to measure the original cross-sectional area of the parallel length to an accuracy of ±2 %. However, measuring the original cross-sectional area of the parallel length with an accuracy of ±2 % on small diameter round test pieces, or test pieces with other cross-sectional geometries, may not be possible."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019" .
### https://w3id.org/pmd/tto/TTO_0000025
:TTO_0000025 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kraft bei Dehngrenze bei plastischer Extensometer-Dehnung"@de ,
"force at proof strength plastic extension"@en ;
skos:definition "A force at proof strength plastic extension is a force that is measured at the proof‑strength point defined by a specified plastic extensometer extension during a tensile test."@en ,
"Die Kraft bei Dehngrenze (plastische Extensometer‑Dehnung) ist eine Kraft, die am Dehngrenzen‑Punkt gemessen wird, der durch eine vorgegebene plastische Extensometer‑Dehnung während eines Zugversuchs definiert ist."@de ;
co:symbol "F_p" .
### https://w3id.org/pmd/tto/TTO_0000026
:TTO_0000026 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000012 ,
[ rdf:type owl:Class ;
owl:unionOf ( [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000029
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000030
]
) ;
rdf:type owl:Class
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000027
]
)
] ;
rdfs:comment "Symbol: S_o" ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Anfangsquerschnitt innerhalb der parallelen Länge"@de ,
"original cross-sectional area of the parallel length"@en ;
rdfs:seeAlso :OriginalCrossSectionalArea ;
skos:definition "Dieses Konzept beschreibt die initiale Querschnittsfläche des Zugprüfkörpers entlang seiner parallelen Länge, bevor eine Verformung auftritt."@de ,
"This concept describes the initial area of the tensile test piece before any deformation occurs."@en ;
co:definitionSource "DIN EN ISO 6892-1:2019" .
### https://w3id.org/pmd/tto/TTO_0000027
:TTO_0000027 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Anfangs-Probendurchmesser"@de ,
"original diameter"@en ;
rdfs:seeAlso :OriginalDiameter ;
skos:definition "Die Länge einer geraden Linie durch den Mittelpunkt eines Objekts (Zugprüfkörpers), die vor einer Prüfung gemessen wird."@de ,
"The length of a straight line through the center of an object (tensile test piece) as measured prior to a tensile test."@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000028
:TTO_0000028 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000019 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Anfangsmesslänge"@de ,
"original gauge length"@en ;
rdfs:seeAlso :OriginalGaugeLength ;
skos:definition "Länge zwischen den Marken zur Kennzeichnung der Messlänge auf der Probe, die vor dem Versuch bei Raumtemperatur gemessen wird"@de ,
"length between gauge length marks on the test piece measured at room temperature before the test"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "L_o"@en .
### https://w3id.org/pmd/tto/TTO_0000029
:TTO_0000029 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Anfangs-Dicke"@de ,
"original thickness"@en ;
rdfs:seeAlso :OriginalThickness ;
skos:definition "Diese Entität beschreibt die gemessene Dimension in einer Richtung eines Prüfstücks, wie sie vor der Prüfung gemessen wurde."@de ,
"This entity describes the measured dimension in one direction of a test piece, as measured before the test."@en .
### https://w3id.org/pmd/tto/TTO_0000030
:TTO_0000030 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Anfangs-Breite"@de ,
"original width"@en ;
rdfs:seeAlso :OriginalWidth ;
skos:definition "Diese Entität beschreibt eine horizontale Messung eines Objekts (Prüfkörpers) im rechten Winkel zur Länge des Objekts (Prüfkörpers), wie sie vor einer Prüfung gemessen wird."@de ,
"This entity describes a horizontal measurement of an object (test piece) taken at right angles to the length of the object (test piece), as measured before a test."@en .
### https://w3id.org/pmd/tto/TTO_0000031
:TTO_0000031 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Parallele Länge"@de ,
"parallel length"@en ;
rdfs:seeAlso :ParallelLength ;
skos:definition """Länge des parallelen reduzierten Querschnitts der Probe
Anmerkung: Bei unbearbeiteten Proben tritt an die Stelle der parallelen Länge der Abstand zwischen den Einspannungen."""@de ,
"""length of the parallel reduced section of the test piece
Note: The concept of parallel length is replaced by the concept of distance between grips for unmachined test pieces."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "L_c"@en .
### https://w3id.org/pmd/tto/TTO_0000032
:TTO_0000032 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000004 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000028
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehnung"@de ,
"percentage elongation"@en ;
rdfs:seeAlso :PercentageElongation ;
skos:definition "Verlängerung, angegeben in Prozent, bezogen auf die Anfangsmesslänge"@de ,
"elongation expressed as a percentage of the original gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000033
:TTO_0000033 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000004 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Bruchdehnung"@de ,
"percentage elongation after fracture"@en ;
rdfs:seeAlso :PercentageElongationAfterFracture ;
skos:definition "bleibende Verlängerung der Messlänge nach dem Bruch (L_u − L_o), angegeben in Prozent, bezogen auf die Anfangsmesslänge"@de ,
"permanent elongation of the gauge length after fracture (L_u − L_o), expressed as a percentage of the original gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "A"@en .
### https://w3id.org/pmd/tto/TTO_0000034
:TTO_0000034 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Extensometer-Dehnung"@de ,
"percentage extension"@en ;
rdfs:seeAlso <https://w3id.org/pmd/co/2.0.8/PercentageExtension> ;
skos:altLabel "(engineering) strain"@en ,
"technische Dehnung"@de ;
skos:definition """extension expressed as a percentage of the extensometer gauge length
Note: The percentage extension is commonly called engineering strain."""@en ,
"""in Prozent angegebene Verlängerung der Extensometer-Messlänge
Anmerkung: Die Extensometer-Dehnung wird oftmals auch als technische Dehnung bezeichnet.""" ;
co:definitionSource "DIN EN ISO 6892-1:2019" .
### https://w3id.org/pmd/tto/TTO_0000035
:TTO_0000035 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000004 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000028
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Bleibende Dehnung"@de ,
"percentage permanent elongation"@en ;
rdfs:seeAlso :PercentagePermanentElongation ;
skos:definition "Zunahme der Anfangsmesslänge einer Probe nach Entfernen einer festgelegten Zugspannung, angegeben in Prozent, bezogen auf die Anfangsmesslänge"@de ,
"increase in the original gauge length of a test piece after removal of a specified stress, expressed as a percentage of the original gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000036
:TTO_0000036 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Bleibende Extensometer-Dehnung"@de ,
"percentage permanent extension"@en ;
rdfs:seeAlso :PercentagePermanentExtension ;
skos:definition "Vergrößerung der Extensometer-Messlänge nach Entfernen einer festgelegten, auf die Probe aufgebrachten Zugspannung, angegeben in Prozent, bezogen auf die Extensometer-Messlänge"@de ,
"increase in the extensometer gauge length, after removal of a specified stress from the test piece, expressed as a percentage of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en .
### https://w3id.org/pmd/tto/TTO_0000037
:TTO_0000037 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000023
]
) ;
rdf:type owl:Class
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Plastische Extensometer-Dehnung bei Höchstkraft"@de ,
"percentage plastic extension at maximum force"@en ;
rdfs:seeAlso :PercentagePlasticExtensionAtMaximumForce ;
skos:definition "plastic extension at maximum force, expressed as a percentage of the extensometer gauge length"@en ,
"plastische Verlängerung der Extensometer-Messlänge bei Höchstkraft, angegeben in Prozent, bezogen auf die Extensometer-Messlänge"@de ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "A_g"@en .
### https://w3id.org/pmd/tto/TTO_0000038
:TTO_0000038 rdf:type owl:Class ;
rdfs:subClassOf [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000024
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000026
]
) ;
rdf:type owl:Class
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Brucheinschnürung"@de ,
"percentage reduction of area"@en ;
rdfs:seeAlso :PercentageReductionOfArea ;
skos:definition "größte während des Versuchs aufgetretene Änderung des Querschnitts (S_o − S_u), angegeben in Prozent, bezogen auf den Anfangsquerschnitt S_o"@de ,
"maximum change in cross-sectional area which has occurred during the test (S_o − S_u), expressed as a percentage of the original cross-sectional area, S_o"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "Z" .
### https://w3id.org/pmd/tto/TTO_0000039
:TTO_0000039 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Gesamte Extensometer-Dehnung beim Bruch"@de ,
"percentage total extension at fracture"@en ;
rdfs:seeAlso :PercentageTotalExtensionAtFracture ;
skos:definition "gesamte Verlängerung (elastische plus plastische Verlängerung) der Extensometer-Messlänge beim Bruch, angegeben in Prozent, bezogen auf die Extensometer-Messlänge"@de ,
"total extension (elastic extension plus plastic extension) at the moment of fracture, expressed as a percentage of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "A_t"@en .
### https://w3id.org/pmd/tto/TTO_0000040
:TTO_0000040 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ,
[ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
]
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000023
]
) ;
rdf:type owl:Class
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Gesamte Extensometer-Dehnung bei Höchstkraft"@de ,
"percentage total extension at maximum force"@en ;
rdfs:seeAlso :PercentageTotalExtensionAtMaximumForce ;
skos:definition "gesamte Verlängerung (elastische plus plastische Verlängerung) der Extensometer-Messlänge bei Höchstkraft, angegeben in Prozent, bezogen auf die Extensometer-Messlänge"@de ,
"total extension (elastic extension plus plastic extension) at maximum force, expressed as a percentage of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "A_gt"@en .
### https://w3id.org/pmd/tto/TTO_0000041
:TTO_0000041 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000005 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Streckgrenzen-Extensometer-Dehnung"@de ,
"percentage yield point extension"@en ;
rdfs:seeAlso :PercentageYieldPointExtension ;
skos:definition "Bei Werkstoffen, die ein diskontinuierliches Fließen zeigen: Verlängerung der Extensometer-Messlänge zwischen dem Beginn örtlichen Fließens und dem Einsetzen gleichmäßiger Verfestigung, angegeben in Prozent, bezogen auf die Extensometer-Messlänge"@de ,
"For discontinuous yielding materials: extension between the start of yielding and the start of uniform work-hardening, expressed as a percentage of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "A_e"@en .
### https://w3id.org/pmd/tto/TTO_0000042
:TTO_0000042 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000025 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kraft bei Dehngrenze bei plastischer Extensometer-Dehnung Rp02"@de ,
"force at proof strength plastic extension f02"@en ;
skos:definition "Die Kraft bei Dehngrenze Rp0,2 (F_p_0,2) ist eine Kraft bei Dehngrenze (plastische Extensometer‑Dehnung), die an dem Punkt gemessen wird, an dem die vorgegebene plastische Extensometer‑Dehnung 0,2 % der Extensometer‑Messlänge während eines Zugversuchs beträgt."@de ,
"Force at proof strength plastic extension f02 is a force at proof strength plastic extension that is measured at the point where the specified plastic extensometer extension is 0.2% of the extensometer gauge length during a tensile test."@en ;
co:symbol "F_p_0.2" .
### https://w3id.org/pmd/tto/TTO_0000043
:TTO_0000043 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngrenze"@de ,
"proof strength"@en ;
rdfs:seeAlso :ProofStrength ;
skos:definition "Spannung, bei der ein bestimmter Dehnungswert gleich einem bestimmten Prozentsatz der Messlänge des Dehnungsmessers ist"@de ,
"stress at which the a specific extension value is equal to a specified percentage of the extensometer gauge length"@en .
### https://w3id.org/pmd/tto/TTO_0000044
:TTO_0000044 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000043 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngrenze bei plastischer Extensometer-Dehnung"@de ,
"proof strength plastic extension"@en ;
rdfs:seeAlso :ProofStrengthPlasticExtension ;
skos:definition """Spannung, bei der die plastische Extensometer-Dehnung einem vorgegebenen Prozentanteil der Extensometer-Messlänge entspricht
Anmerkung: Der Index wird durch den Zahlenwert ergänzt, der den vorgegebenen Zahlenwert der plastischen Extensometer-Dehnung in Prozent angibt, z. B. R_p_0,2."""@de ,
"""stress at which the plastic extension is equal to a specified percentage of the extensometer gauge length
Note: A suffix is added to the subscript to indicate the prescribed percentage, e.g. R_p_0.2.
Source: ISO 6892-1:2019"""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_p"@en .
### https://w3id.org/pmd/tto/TTO_0000045
:TTO_0000045 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000043 ,
[ rdf:type owl:Restriction ;
owl:onProperty co:relatesTo ;
owl:someValuesFrom :TTO_0000017
] ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngrenze bei gesamter Extensometer-Dehnung"@de ,
"proof strength total extension"@en ;
rdfs:seeAlso :ProofStrengthTotalExtension ;
skos:definition """Spannung, bei der die gesamte Extensometer-Dehnung (elastische und plastische Extensometer-Dehnung) einem vorgegebenen Prozentanteil der Extensometer-Messlänge entspricht
Anmerkung: Der Index wird durch den Zahlenwert ergänzt, der den vorgegebenen Zahlenwert der gesamten Extensometer-Dehnung in Prozent angibt, z. B. R_t_0,5."""@de ,
"""stress at which total extension (elastic extension plus plastic extension) is equal to a specified percentage of the extensometer gauge length
Note: A suffix is added to the subscript to indicate the prescribed percentage, e.g. R_t_0.5."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_t"@en .
### https://w3id.org/pmd/tto/TTO_0000046
:TTO_0000046 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000044 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngrenze bei plastischer Extensometer-Dehnung Rp01"@de ,
"proof strength plastic extension rp01"@en ;
rdfs:seeAlso :Rp01 ;
skos:definition "Spannung bei einer plastischen Extensometer-Dehnung, die 0,1 Prozent der Extensometer-Messlänge entspricht"@de ,
"stress at which the plastic extension is equal to 0.1 percent of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_p_0.1"@en .
### https://w3id.org/pmd/tto/TTO_0000047
:TTO_0000047 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000044 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngrenze bei plastischer Extensometer-Dehnung Rp02"@de ,
"proof strength plastic extension rp02"@en ;
rdfs:seeAlso :Rp02 ;
skos:definition "Spannung bei einer plastischen Extensometer-Dehnung, die 0,2 Prozent der Extensometer-Messlänge entspricht"@de ,
"stress at which the plastic extension is equal to 0.2 percent of the extensometer gauge length"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_p_0.2"@en .
### https://w3id.org/pmd/tto/TTO_0000048
:TTO_0000048 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000025 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Kraft bei Dehngrenze bei plastischer Extensometer-Dehnung Rp01"@de ,
"force at proof strength plastic extension f01"@en ;
skos:definition "Die Kraft bei Dehngrenze Rp0,1 (F_p_0,1) ist eine Kraft bei Dehngrenze (plastische Extensometer‑Dehnung), die an dem Punkt gemessen wird, an dem die vorgegebene plastische Extensometer‑Dehnung 0,2 % der Extensometer‑Messlänge während eines Zugversuchs beträgt."@de ,
"Force at proof strength plastic extension f01 is a force at proof strength plastic extension that is measured at the point where the specified plastic extensometer extension is 0.1% of the extensometer gauge length during a tensile test."@en ;
co:symbol "F_p_0.1" .
### https://w3id.org/pmd/tto/TTO_0000051
:TTO_0000051 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Dehngeschwindigkeit"@de ,
"strain rate"@en ;
rdfs:seeAlso :StrainRate ;
skos:definition "Zunahme der mit einem Extensometer in der Extensometer-Messlänge gemessenen Dehnung je Zeiteinheit"@de ,
"increase of strain, measured with an extensometer, in extensometer gauge length, per time"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "e^._L_e"@en .
### https://w3id.org/pmd/tto/TTO_0000052
:TTO_0000052 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Spannungsgeschwindigkeit"@de ,
"stress rate"@en ;
rdfs:seeAlso :StressRate ;
skos:definition """Zunahme der Spannung je Zeiteinheit
Anmerkung: Die Spannungsgeschwindigkeit wird nur im elastischen Bereich des Versuchs verwendet."""@de ,
"""increase of stress per time
Note: Stress rate is only used in the elastic part of the test."""@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R"@en .
### https://w3id.org/pmd/tto/TTO_0000053
:TTO_0000053 rdf:type owl:Class ;
obo:IAO_0000114 obo:IAO_0000428 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Zugfestigkeit"@de ,
"tensile strength"@en ;
rdfs:seeAlso :TensileStrength ;
skos:definition "Spannung, die der Höchstkraft entspricht"@de ,
"stress corresponding to the maximum force"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_m"@en .
### https://w3id.org/pmd/tto/TTO_0000054
:TTO_0000054 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Zugversuchsmethode"@de ,
"tensile test method"@en ;
rdfs:seeAlso :TensileTestMethod ;
skos:definition "A tensile test method is a plan specification that prescribes the execution of a controlled experiment designed to determine the mechanical properties of a material under uniaxial tensile loading. The plan specifies procedural steps, conditions, and measurement criteria to assess properties such as ultimate tensile strength, yield strength, and elongation at break."@en ,
"Eine Zugversuchsmethode ist eine Planspezifikation, die die Durchführung eines kontrollierten Versuchs zur Bestimmung der mechanischen Eigenschaften eines Materials unter einachsiger Zugbelastung vorschreibt. Der Plan legt Verfahrensschritte, Bedingungen und Messkriterien fest, um Eigenschaften wie die Zugfestigkeit, die Streckgrenze und die Bruchdehnung zu bestimmen."@de .
### https://w3id.org/pmd/tto/TTO_0000056
:TTO_0000056 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "End-Dicke"@de ,
"thickness after fracture"@en ;
rdfs:seeAlso :ThicknessAfterFracture ;
skos:definition "Diese Entität beschreibt die gemessene Dimension in einer Richtung eines Prüfstücks, wie sie vor der Prüfung gemessen wurde."@de ,
"This entity describes the measured dimension in one direction of a test piece, as measured after the test."@en .
### https://w3id.org/pmd/tto/TTO_0000057
:TTO_0000057 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Umschaltpunkt"@de ,
"transition point"@en ;
rdfs:seeAlso :TransitionPoint ;
skos:definition "Diese Entität beschreibt einen einzelnen Punkt, an dem ein Übergang von einer Bedingung oder einem Zustand in einen anderen erfolgt, z. B. der Punkt, an dem verschiedene Phasen von Materie im Gleichgewicht miteinander existieren können (auch Inversionspunkt genannt) oder wenn Prozessparameter geändert werden, die zu einem Übergang des Prozesses während seiner Ausführung führen."@de ,
"This entity describes a single point at which a transition from one condition or state to another occurs, e.g. the point at which different phases of matter are capable of existing together in equilibrium (also called inversion point) or if process parameters are changed that will lead to a transition of the process during its execution."@en .
### https://w3id.org/pmd/tto/TTO_0000058
:TTO_0000058 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Umschaltpunkt der Prüfgeschwindigkeit"@de ,
"transition point testing rate"@en ;
rdfs:seeAlso :TransitionPointTestingRate ;
skos:definition "Diese Entität beschreibt den Umschaltpunkt der Prüfgeschwindigkeit während eines Analyse- / Testprozesses, z.B. den Punkt bezogen auf die Dehnung oder Spannung, an welchem die Prüfgeschwindigkeit während eines Zugversuchs geändert wird. Typischerweise ist dieser Punkt mit einer Abnahme des Extensometers (Dehnungsaufnehmers) vom Prüfkörper während eines dehnungsgeregelten Zugversuchs verbunden."@de ,
"This entity describes the the transition point of the testing rate during an analysis / test process, e.g. the point referring to the strain or the stress at which the testing rate is changed during a tensile test. Typically, this transition point is associated with a removal of the extensometer from the test piece during a strain-controlled tensile test."@en .
### https://w3id.org/pmd/tto/TTO_0000059
:TTO_0000059 rdf:type owl:Class ;
rdfs:subClassOf :TTO_0000009 ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "Obere Streckgrenze"@de ,
"upper yield strength"@en ;
rdfs:seeAlso :UpperYieldStrength ;
skos:definition "höchste Spannung, bevor der erste Kraftabfall auftritt"@de ,
"maximum value of stress prior to the first decrease in force"@en ;
co:definitionSource "DIN EN ISO 6892-1:2019"@en ;
co:symbol "R_eH"@en .
### https://w3id.org/pmd/tto/TTO_0000060
:TTO_0000060 rdf:type owl:Class ;
rdfs:isDefinedBy <https://w3id.org/pmd/tto> ;
rdfs:label "End-Breite"@de ,
"width after fracture"@en ;
rdfs:seeAlso :WidthAfterFracture ;
skos:definition "Diese Entität beschreibt eine horizontale Messung eines Objekts (Prüfkörpers) im rechten Winkel zur Länge des Objekts (Prüfkörpers), wie sie nach einer Prüfung gemessen wird."@de ,
"This entity describes a horizontal measurement of an object (test piece) taken at right angles to the length of the object (test piece), as measured after a test."@en .
### https://w3id.org/pmd/tto/TTO_0050000
:TTO_0050000 rdf:type owl:Class ;
rdfs:label "area"@en .
### https://w3id.org/pmd/tto/TTO_1000000
:TTO_1000000 rdf:type owl:Class ;