-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtto-simple.owl
More file actions
1303 lines (925 loc) · 79.9 KB
/
tto-simple.owl
File metadata and controls
1303 lines (925 loc) · 79.9 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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/pmd/tto/"
xml:base="https://w3id.org/pmd/tto/"
xmlns:co="https://w3id.org/pmd/co/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:doap="http://usefulinc.com/ns/doap#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="https://w3id.org/pmd/tto/">
<owl:versionIRI rdf:resource="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:bibliographicCitation>
<terms:contributor>https://orcid.org/0000-0003-1649-6832</terms:contributor>
<terms:created>2026-04-16</terms:created>
<terms:creator rdf:resource="https://orcid.org/0000-0001-7192-7143"/>
<terms:creator rdf:resource="https://orcid.org/0000-0002-3717-7104"/>
<terms:creator rdf:resource="https://orcid.org/0000-0002-7094-5371"/>
<terms:creator rdf:resource="https://orcid.org/0000-0002-9014-2920"/>
<terms:creator rdf:resource="https://orcid.org/0000-0003-4971-3645"/>
<terms:description xml:lang="de">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.</terms:description>
<terms:description xml:lang="en">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.</terms:description>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<terms:title>Tensile Test Ontology (TTO)</terms:title>
<doap:repository>https://github.com/materialdigital/tensile-test-ontology</doap:repository>
<owl:priorVersion rdf:resource="https://w3id.org/pmd/tto/2.0.1"/>
<owl:versionInfo>3.0.0</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.org/dc/terms/bibliographicCitation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/bibliographicCitation"/>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<rdfs:label>description</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license">
<rdfs:label>dcterms:license</rdfs:label>
<rdfs:label>license</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://usefulinc.com/ns/doap#repository -->
<owl:AnnotationProperty rdf:about="http://usefulinc.com/ns/doap#repository"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel">
<rdfs:label xml:lang="en">alternative label</rdfs:label>
<skos:definition xml:lang="en">An alternative lexical label for a resource.</skos:definition>
<skos:example xml:lang="en">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).</skos:example>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition">
<rdfs:label xml:lang="en">definition</rdfs:label>
<skos:definition xml:lang="en">A statement or formal explanation of the meaning of a concept.</skos:definition>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- https://w3id.org/pmd/co/definitionSource -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/definitionSource"/>
<!-- https://w3id.org/pmd/co/symbol -->
<owl:AnnotationProperty rdf:about="https://w3id.org/pmd/co/symbol"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<obo:IAO_0000112 xml:lang="en">my body has part my brain (continuant parthood, two material entities)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this year has part this day (occurrent parthood)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a whole and its part</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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/</obo:IAO_0000116>
<obo:IAO_0000116 xml:lang="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'.</obo:IAO_0000116>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000055"/>
<rdfs:label xml:lang="en">has realization</rdfs:label>
<rdfs:label xml:lang="en">realized in</rdfs:label>
<skos:altLabel xml:lang="en">realized in</skos:altLabel>
<skos:definition xml:lang="en">b has realization c =Def c realizes b</skos:definition>
<skos:example xml:lang="en">As for realizes</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000055 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000055">
<obo:IAO_0000115 xml:lang="en">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</obo:IAO_0000115>
<rdfs:label xml:lang="en">realizes</rdfs:label>
<skos:definition xml:lang="en">(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</skos:definition>
<skos:example xml:lang="en">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</skos:example>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000293 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000293">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<obo:IAO_0000112 xml:lang="en">see is_input_of example_of_usage</obo:IAO_0000112>
<obo:IAO_0000115>The inverse property of is specified input of</obo:IAO_0000115>
<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.</obo:IAO_0000116>
<rdfs:label xml:lang="en">has specified input</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
<obo:IAO_0000115>The inverse property of is specified output of</obo:IAO_0000115>
<rdfs:label xml:lang="en">has specified output</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000312 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000312">
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<rdfs:label xml:lang="en">is specified output of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057">
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0000057"/>
</owl:propertyChainAxiom>
<obo:IAO_0000112 xml:lang="en">this blood coagulation has participant this blood clot</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this investigation has participant this investigator</obo:IAO_0000112>
<obo:IAO_0000112 xml:lang="en">this process has participant this input material (or this output material)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between a process and a continuant, in which the continuant is somehow involved in the process</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<rdfs:label xml:lang="en">has participant</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000086 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000086">
<obo:IAO_0000112 xml:lang="en">this apple has quality this red color</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<rdfs:label xml:lang="en">has quality</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087">
<obo:IAO_0000112 xml:lang="en">this person has role this investigator role (more colloquially: this person has this role of investigator)</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">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.</obo:IAO_0000116>
<rdfs:label xml:lang="en">has role</rdfs:label>
</owl:ObjectProperty>
<!-- https://w3id.org/pmd/co/relatesTo -->
<owl:ObjectProperty rdf:about="https://w3id.org/pmd/co/relatesTo"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://w3id.org/pmd/tto/TTO_0000001 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000001">
<rdfs:label xml:lang="de">Höchstkraft der Kraftmessdose</rdfs:label>
<rdfs:label xml:lang="en">load cell maximum force</rdfs:label>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000004 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000004">
<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:comment>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Verlängerung</rdfs:label>
<rdfs:label xml:lang="en">elongation</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/Elongation"/>
<skos:definition xml:lang="de">Zunahme der Anfangsmesslänge zu einem beliebigen Zeitpunkt während des Versuchs</skos:definition>
<skos:definition xml:lang="en">increase in the original gauge length at any moment during the test</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000005 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000005">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<rdfs:comment xml:lang="en">Dimensional analysis: L
Unit (e.g. SI): mm</rdfs:comment>
<rdfs:comment xml:lang="de">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.</rdfs:comment>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Verlängerung (der Extensometer-Messlänge)</rdfs:label>
<rdfs:label xml:lang="en">extension</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/co/2.0.8/Extension"/>
<skos:definition xml:lang="en">Increase in the extensometer gauge length at any moment during a test</skos:definition>
<skos:definition xml:lang="de">Zunahme der Extensometer-Messlänge zu einem beliebigen Zeitpunkt eines Versuchs</skos:definition>
<co:definitionSource>DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000006 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000006">
<rdfs:label xml:lang="en">broken tested test piece role</rdfs:label>
<skos:definition xml:lang="en">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.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000007 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000007">
<rdfs:comment xml:lang="en">An unbroken tested test piece role may explicitly also be realized by a destructive testing process that unintendedly actually did not lead to breakage.</rdfs:comment>
<rdfs:label xml:lang="en">unbroken tested test piece role</rdfs:label>
<skos:definition xml:lang="en">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.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000008 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000008">
<rdfs:label xml:lang="de">Ergebnis eines Zugversuches</rdfs:label>
<rdfs:label xml:lang="en">tensile test result</rdfs:label>
<skos:definition xml:lang="en">Data item that represents any result generated during or after a tensile test, independent of its structure, granularity, or encoding format.</skos:definition>
<skos:definition xml:lang="de">Datenobjekt, das ein beliebiges Ergebnis beschreibt, das während oder nach einem Zugversuch erzeugt wird, unabhängig von Struktur, Detaillierungsgrad oder Format der Darstellung.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000009 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000009">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Streckgrenze</rdfs:label>
<rdfs:label xml:lang="en">yield strength</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/YieldStrength"/>
<skos:definition xml:lang="de">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</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000010 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000010">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Kraft bei der unteren Streckgrenze</rdfs:label>
<rdfs:label xml:lang="en">force at lower yield strength</rdfs:label>
<skos:definition xml:lang="en">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.</skos:definition>
<skos:definition xml:lang="de">Kraft bei unterer Streckgrenze (F_eL) ist eine Kraft, die am Punkt der unteren Streckgrenze (untere Streckgrenzen‑Bedingung) während eines Zugversuchs gemessen wird.</skos:definition>
<co:symbol>F_eL</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000011 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000011">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="en">change of transverse dimension</rdfs:label>
<rdfs:label xml:lang="de">Änderung der transversalen Dimension</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/ChangeOfTransverseDimension"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource>DIN EN ISO 10113:2021-06</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000012 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000012">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0050000"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Querschnittsfläche</rdfs:label>
<rdfs:label xml:lang="en">cross section area</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/co/2.0.8/CrossSectionArea"/>
<skos:definition xml:lang="de">Die Querschnittsfläche ist die Fläche eines Schnittes oder eines rechtwinklig geschnittenen oder gebrochenen Stücks eines Objektes in Bezug auf eine Achse.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource rdf:resource="https://www.merriam-webster.com/dictionary/cross%20section"/>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000013 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000013">
<rdfs:comment xml:lang="en">Dimensional analysis: L
Unit (e.g. SI): mm</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Querhaupttrennung</rdfs:label>
<rdfs:label xml:lang="en">crosshead separation</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/CrossheadSeparation"/>
<skos:definition xml:lang="de">Dieses Konzept beschreibt die Verschiebung der Traverse einer Zugprüfmaschine.</skos:definition>
<skos:definition xml:lang="en">This concept describes the displacement of the crossheads of a tensile testing machine.</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000014 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000014">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Traversengeschwindigkeit</rdfs:label>
<rdfs:label xml:lang="en">crosshead separation rate</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/CrossheadSeparationRate"/>
<skos:definition xml:lang="de">Traversenweg je Zeiteinheit</skos:definition>
<skos:definition xml:lang="en">displacement of the crossheads per time</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">v_c</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000015 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000015">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">End-Probendurchmesser</rdfs:label>
<rdfs:label xml:lang="en">diameter after fracture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/DiameterAfterFracture"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">The length of a straight line through the center of an object (tensile test piece) as measured after a fracture occured during a test.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000016 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000016">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Abgeschätzte Dehngeschwindigkeit Über Die Parallele Länge</rdfs:label>
<rdfs:label xml:lang="en">estimated strain rate over the parallel length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/EstimatedStrainRateOverTheParallelLength"/>
<skos:definition xml:lang="de">Zunahme der Dehnung über die parallele Länge der Probe je Zeiteinheit, basierend auf der Traversengeschwindigkeit und der parallelen Länge der Probe</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">e^._L_c</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000017 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000017">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000019"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Extensometer-Messlänge</rdfs:label>
<rdfs:label xml:lang="en">extensometer gauge length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/ExtensometerGaugeLength"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">L_e</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000018 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000018">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000019"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Messlänge nach dem Bruch</rdfs:label>
<rdfs:label xml:lang="en">final gauge length after fracture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/FinalGaugeLengthAfterFracture"/>
<skos:definition xml:lang="de">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</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">L_u</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000019 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000019">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Messlänge</rdfs:label>
<rdfs:label xml:lang="en">gauge length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/GaugeLength"/>
<skos:definition xml:lang="de">Länge des parallelen Teils der Probe, an dem zu einem beliebigen Zeitpunkt während des Versuchs die Verlängerung gemessen wird</skos:definition>
<skos:definition xml:lang="en">length of the parallel portion of the test piece on which elongation is measured at any moment during the test</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">L</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000020 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000020">
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000428"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Messlängenmarkierungen</rdfs:label>
<rdfs:label xml:lang="en">gauge length marks</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/GaugeLengthMarks"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">This concept is used to describe the visible markers usually attached to test pieces during a tensile test for elongation / extension measurements.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000021 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000021">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Kraft bei der oberer Streckgrenze</rdfs:label>
<rdfs:label xml:lang="en">force at upper yield strength</rdfs:label>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:symbol>F_eH</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000022 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000022">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000009"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="en">lower yield strength</rdfs:label>
<rdfs:label xml:lang="de">untere Streckgrenze</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/LowerYieldStrength"/>
<skos:definition xml:lang="de">kleinste Spannung während des plastischen Fließens, wobei Einschwingerscheinungen nicht berücksichtigt werden</skos:definition>
<skos:definition xml:lang="en">lowest value of stress during plastic yielding, ignoring any initial transient effects</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">R_eL</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000023 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000023">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Höchstkraft</rdfs:label>
<rdfs:label xml:lang="en">maximum force</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/MaximumForce"/>
<skos:definition xml:lang="de">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
.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000024 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000024">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000012"/>
<rdfs:subClassOf>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000056"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000060"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000015"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment>Symbol: S_u</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Kleinster Querschnitt nach dem Bruch</rdfs:label>
<rdfs:label xml:lang="en">minimum cross-sectional area after fracture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/MinimumCrossSectionalAreaAfterFracture"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource>DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000025 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000025">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Kraft bei Dehngrenze bei plastischer Extensometer-Dehnung</rdfs:label>
<rdfs:label xml:lang="en">force at proof strength plastic extension</rdfs:label>
<skos:definition xml:lang="en">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.</skos:definition>
<skos:definition xml:lang="de">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.</skos:definition>
<co:symbol>F_p</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000026 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000026">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000012"/>
<rdfs:subClassOf>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000029"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000030"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000027"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:comment>Symbol: S_o</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Anfangsquerschnitt innerhalb der parallelen Länge</rdfs:label>
<rdfs:label xml:lang="en">original cross-sectional area of the parallel length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/OriginalCrossSectionalArea"/>
<skos:definition xml:lang="de">Dieses Konzept beschreibt die initiale Querschnittsfläche des Zugprüfkörpers entlang seiner parallelen Länge, bevor eine Verformung auftritt.</skos:definition>
<skos:definition xml:lang="en">This concept describes the initial area of the tensile test piece before any deformation occurs.</skos:definition>
<co:definitionSource>DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000027 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000027">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Anfangs-Probendurchmesser</rdfs:label>
<rdfs:label xml:lang="en">original diameter</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/OriginalDiameter"/>
<skos:definition xml:lang="de">Die Länge einer geraden Linie durch den Mittelpunkt eines Objekts (Zugprüfkörpers), die vor einer Prüfung gemessen wird.</skos:definition>
<skos:definition xml:lang="en">The length of a straight line through the center of an object (tensile test piece) as measured prior to a tensile test.</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000028 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000028">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000019"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Anfangsmesslänge</rdfs:label>
<rdfs:label xml:lang="en">original gauge length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/OriginalGaugeLength"/>
<skos:definition xml:lang="de">Länge zwischen den Marken zur Kennzeichnung der Messlänge auf der Probe, die vor dem Versuch bei Raumtemperatur gemessen wird</skos:definition>
<skos:definition xml:lang="en">length between gauge length marks on the test piece measured at room temperature before the test</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">L_o</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000029 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000029">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Anfangs-Dicke</rdfs:label>
<rdfs:label xml:lang="en">original thickness</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/OriginalThickness"/>
<skos:definition xml:lang="de">Diese Entität beschreibt die gemessene Dimension in einer Richtung eines Prüfstücks, wie sie vor der Prüfung gemessen wurde.</skos:definition>
<skos:definition xml:lang="en">This entity describes the measured dimension in one direction of a test piece, as measured before the test.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000030 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000030">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Anfangs-Breite</rdfs:label>
<rdfs:label xml:lang="en">original width</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/OriginalWidth"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000031 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000031">
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Parallele Länge</rdfs:label>
<rdfs:label xml:lang="en">parallel length</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/ParallelLength"/>
<skos:definition xml:lang="de">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.</skos:definition>
<skos:definition xml:lang="en">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.</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">L_c</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000032 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000032">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000028"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Dehnung</rdfs:label>
<rdfs:label xml:lang="en">percentage elongation</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentageElongation"/>
<skos:definition xml:lang="de">Verlängerung, angegeben in Prozent, bezogen auf die Anfangsmesslänge</skos:definition>
<skos:definition xml:lang="en">elongation expressed as a percentage of the original gauge length</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000033 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000033">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000004"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Bruchdehnung</rdfs:label>
<rdfs:label xml:lang="en">percentage elongation after fracture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentageElongationAfterFracture"/>
<skos:definition xml:lang="de">bleibende Verlängerung der Messlänge nach dem Bruch (L_u − L_o), angegeben in Prozent, bezogen auf die Anfangsmesslänge</skos:definition>
<skos:definition xml:lang="en">permanent elongation of the gauge length after fracture (L_u − L_o), expressed as a percentage of the original gauge length</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">A</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000034 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000034">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000005"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000017"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Extensometer-Dehnung</rdfs:label>
<rdfs:label xml:lang="en">percentage extension</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/co/2.0.8/PercentageExtension"/>
<skos:altLabel xml:lang="en">(engineering) strain</skos:altLabel>
<skos:altLabel xml:lang="de">technische Dehnung</skos:altLabel>
<skos:definition xml:lang="en">extension expressed as a percentage of the extensometer gauge length
Note: The percentage extension is commonly called engineering strain.</skos:definition>
<skos:definition>in Prozent angegebene Verlängerung der Extensometer-Messlänge
Anmerkung: Die Extensometer-Dehnung wird oftmals auch als technische Dehnung bezeichnet.</skos:definition>
<co:definitionSource>DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000035 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000035">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000028"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Bleibende Dehnung</rdfs:label>
<rdfs:label xml:lang="en">percentage permanent elongation</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentagePermanentElongation"/>
<skos:definition xml:lang="de">Zunahme der Anfangsmesslänge einer Probe nach Entfernen einer festgelegten Zugspannung, angegeben in Prozent, bezogen auf die Anfangsmesslänge</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000036 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000036">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000005"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000017"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Bleibende Extensometer-Dehnung</rdfs:label>
<rdfs:label xml:lang="en">percentage permanent extension</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentagePermanentExtension"/>
<skos:definition xml:lang="de">Vergrößerung der Extensometer-Messlänge nach Entfernen einer festgelegten, auf die Probe aufgebrachten Zugspannung, angegeben in Prozent, bezogen auf die Extensometer-Messlänge</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000037 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000037">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000005"/>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000017"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000023"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Plastische Extensometer-Dehnung bei Höchstkraft</rdfs:label>
<rdfs:label xml:lang="en">percentage plastic extension at maximum force</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentagePlasticExtensionAtMaximumForce"/>
<skos:definition xml:lang="en">plastic extension at maximum force, expressed as a percentage of the extensometer gauge length</skos:definition>
<skos:definition xml:lang="de">plastische Verlängerung der Extensometer-Messlänge bei Höchstkraft, angegeben in Prozent, bezogen auf die Extensometer-Messlänge</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">A_g</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000038 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000038">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000024"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000026"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Brucheinschnürung</rdfs:label>
<rdfs:label xml:lang="en">percentage reduction of area</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentageReductionOfArea"/>
<skos:definition xml:lang="de">größte während des Versuchs aufgetretene Änderung des Querschnitts (S_o − S_u), angegeben in Prozent, bezogen auf den Anfangsquerschnitt S_o</skos:definition>
<skos:definition xml:lang="en">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</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol>Z</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000039 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000039">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000005"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000017"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>
<rdfs:label xml:lang="de">Gesamte Extensometer-Dehnung beim Bruch</rdfs:label>
<rdfs:label xml:lang="en">percentage total extension at fracture</rdfs:label>
<rdfs:seeAlso rdf:resource="https://w3id.org/pmd/tto/PercentageTotalExtensionAtFracture"/>
<skos:definition xml:lang="de">gesamte Verlängerung (elastische plus plastische Verlängerung) der Extensometer-Messlänge beim Bruch, angegeben in Prozent, bezogen auf die Extensometer-Messlänge</skos:definition>
<skos:definition xml:lang="en">total extension (elastic extension plus plastic extension) at the moment of fracture, expressed as a percentage of the extensometer gauge length</skos:definition>
<co:definitionSource xml:lang="en">DIN EN ISO 6892-1:2019</co:definitionSource>
<co:symbol xml:lang="en">A_t</co:symbol>
</owl:Class>
<!-- https://w3id.org/pmd/tto/TTO_0000040 -->
<owl:Class rdf:about="https://w3id.org/pmd/tto/TTO_0000040">
<rdfs:subClassOf rdf:resource="https://w3id.org/pmd/tto/TTO_0000005"/>
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000017"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="https://w3id.org/pmd/co/relatesTo"/>
<owl:someValuesFrom rdf:resource="https://w3id.org/pmd/tto/TTO_0000023"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/pmd/tto"/>