forked from materialdigital/application-ontologies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fatigue_test_ontology_FTO.ttl
1973 lines (1388 loc) · 92.7 KB
/
fatigue_test_ontology_FTO.ttl
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://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ns1: <http://www.w3.org/ns/prov#> .
@prefix ns2: <http://qudt.org/schema/qudt/> .
@prefix ns3: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pmd: <https://w3id.org/pmd/co/> .
@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 csvw: <https://w3.org/ns/csvw#> .
@prefix prov: <https://w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix pmdao: <https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/> .
@base <https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/> .
<https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/> rdf:type owl:Ontology ;
owl:imports <https://w3id.org/pmd/co/2.0.6> ;
dc:creator "Hossein Beygi Nasrabadi (orcid.org/0000-0002-3092-0532)" ;
dc:licence "creativecommons.org/licenses/by/4.0/" ;
dc:title "Fatigue Test Process Graph" ;
owl:versionInfo "1.0.2 (pmdao)" .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/licence
dc:licence rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/01/rdf-schema#label
rdfs:label rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
ns3:definition rdf:type owl:AnnotationProperty .
### https://w3id.org/pmd/co/definitionSource
pmd:definitionSource rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#string
xsd:string rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://www.w3.org/ns/prov#actedOnBehalfOf
ns1:actedOnBehalfOf rdf:type owl:ObjectProperty .
### https://w3.org/ns/prov#hasAssociatedWith
prov:hasAssociatedWith rdf:type owl:ObjectProperty .
### https://w3.org/ns/prov#influenced
prov:influenced rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/characteristic
pmd:characteristic rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/component
pmd:component rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/executedBy
pmd:executedBy rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/hasFunction
pmd:hasFunction rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/hasIdentifier
pmd:hasIdentifier rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/input
pmd:input rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/nextProcess
pmd:nextProcess rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/output
pmd:output rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/participant
pmd:participant rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/process
pmd:process rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/resource
pmd:resource rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/subordinateProcess
pmd:subordinateProcess rdf:type owl:ObjectProperty .
### https://w3id.org/pmd/co/unit
pmd:unit rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### http://www.w3.org/ns/prov#value
ns1:value rdf:type owl:DatatypeProperty .
#################################################################
# Classes
#################################################################
### http://qudt.org/schema/qudt/Unit
ns2:Unit rdf:type owl:Class .
### http://www.w3.org/ns/prov#Activity
ns1:Activity rdf:type owl:Class .
### http://www.w3.org/ns/prov#Agent
ns1:Agent rdf:type owl:Class .
### http://www.w3.org/ns/prov#Entity
ns1:Entity rdf:type owl:Class .
### http://www.w3.org/ns/prov#Organization
ns1:Organization rdf:type owl:Class ;
rdfs:subClassOf ns1:Agent .
### http://www.w3.org/ns/prov#Person
ns1:Person rdf:type owl:Class ;
rdfs:subClassOf ns1:Agent .
### http://www.w3.org/ns/prov#SoftwareAgent
ns1:SoftwareAgent rdf:type owl:Class ;
rdfs:subClassOf ns1:Agent .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Actuator
pmdao:Actuator rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode ;
rdfs:label "Actuator" ;
ns3:definition "device that provides a physical output in response to a input signal in a predetermined way" ;
pmd:definitionSource "ISO/IEC 29182‑2" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Amplitude
pmdao:Amplitude rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Amplitude" ;
ns3:definition "half the range of a variable" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Atmosphere
pmdao:Atmosphere rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Atmosphere" ;
ns3:definition "ambient conditions defined by the parameters of temperature and relative humidity" ;
pmd:definitionSource "ISO 18454:2018" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/AxialStrain
pmdao:AxialStrain rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "Axial Strain" ;
ns3:definition "linear strain in the direction of the applied force" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/CollibrationProcess
pmdao:CollibrationProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process ;
rdfs:label "Calibration Process" ;
ns3:definition "set of operations that establish, under specified conditions, the relationship between values indicated by a measuring instrument or measuring system, or values represented by a material measure, and the corresponding known values of a reference standard" ;
pmd:definitionSource "ISO 22716:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Cycle
pmdao:Cycle rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Cycle" ;
ns3:definition "smallest segment of the strain-time function that is repeated periodically" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/CycleNumber
pmdao:CycleNumber rdf:type owl:Class ;
rdfs:subClassOf pmdao:MathematicsValueObject ;
rdfs:label "Cycle Number" ;
ns3:definition "number of cycles of stress in fatigue test" ;
pmd:definitionSource "ISO 22214:2006" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/CyclicStrainHardeningExponent
pmdao:CyclicStrainHardeningExponent rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/CyclicStrengthCoefficient
pmdao:CyclicStrengthCoefficient rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/CyclicYieldStrength
pmdao:CyclicYieldStrength rdf:type owl:Class ;
rdfs:subClassOf pmd:YieldStrength ;
rdfs:label "Cyclic Yield Strength" ;
ns3:definition "0,2 % offset is typically used" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/DataAcquisitionDevice
pmdao:DataAcquisitionDevice rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode ;
rdfs:label "Data Acquisition Device" ;
ns3:definition "system for storing and/or providing permanent copies of test information" ;
pmd:definitionSource "ISO 13533:2001" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Displacement
pmdao:Displacement rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Displacement" ;
ns3:definition "axial movement of the pile head measured during testing" ;
pmd:definitionSource "ISO 22477-4:2018" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ElasticStrain
pmdao:ElasticStrain rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "Elastic Strain" ;
ns3:definition "elastic component of a total strain" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ElectroMechanicalActuator
pmdao:ElectroMechanicalActuator rdf:type owl:Class ;
rdfs:subClassOf pmdao:Actuator ;
rdfs:label "Electro-Mechanical Actuator" ;
ns3:definition "devices that convert electric energy into mechanical force in such a way as to execute work, mostly moving an object or a device" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/EngineeringStrain
pmdao:EngineeringStrain rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "Engineering Strain" ;
ns3:definition "axial strain calculated as the change in length divided by the original length" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/EngineeringStress
pmdao:EngineeringStress rdf:type owl:Class ;
rdfs:subClassOf pmd:Stress ;
rdfs:label "Engineering Stress" ;
ns3:definition "instantaneous force divided by the initial cross-sectional area of the gauge length" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Extremum
pmdao:Extremum rdf:type owl:Class ;
rdfs:subClassOf pmdao:MathematicsValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Failure
pmdao:Failure rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Failure" ;
ns3:definition "permanent deformation resulting from fracture; plastic deformation or loosening beyond the ultimate displacement that would render the spinal implant assembly ineffective or unable to adequately resist load" ;
pmd:definitionSource "ISO 12189:2008" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FailureTime
pmdao:FailureTime rdf:type owl:Class ;
rdfs:subClassOf pmd:Time ;
rdfs:label "Time To Failure" ;
ns3:definition "time duration required to obtain the number of cycles, Nf" ;
pmd:definitionSource "ISO 17140:2014" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueDuctilityCoefficient
pmdao:FatigueDuctilityCoefficient rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueDuctilityExponent
pmdao:FatigueDuctilityExponent rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueLife
pmdao:FatigueLife rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject ;
rdfs:label "Fatigue Life" ;
ns3:definition "number of cycles that have to be applied to achieve a failure" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueStrengthCoefficient
pmdao:FatigueStrengthCoefficient rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueStrengthExponent
pmdao:FatigueStrengthExponent rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueTest
pmdao:FatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmd:MechanicalTestingProcess ;
rdfs:label "Fatigue Test" ;
ns3:definition "test where repeated stress is applied to a test specimen, and the number of cycles to fracture is measured" ;
pmd:definitionSource "ISO 22214:2006" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueTestingMachine
pmdao:FatigueTestingMachine rdf:type owl:Class ;
rdfs:subClassOf pmd:TestingMachine .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FatigueValueObject
pmdao:FatigueValueObject rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Fatigue Value Object" ;
ns3:definition "The mechanical properties related to the fatigue bahaviour of materials" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FlatSheet
pmdao:FlatSheet rdf:type owl:Class ;
rdfs:subClassOf pmd:GeometryShape ;
rdfs:label "Flat-Sheet" ;
ns3:definition "sheets with two plane, substantially parallel surfaces" ;
pmd:definitionSource "ISO 7823-2:2003" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ForceCapicity
pmdao:ForceCapicity rdf:type owl:Class ;
rdfs:subClassOf pmd:Force ;
rdfs:label "Force Capacity" ;
ns3:definition "Force capacity refers to the fact that the machine must be able to generate enough force to fracture the specimen." .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ForceControlledFatigueTest
pmdao:ForceControlledFatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueTest ;
rdfs:label "Force-Controlled Fatigue Test" ;
ns3:definition "conducting axial, constant-amplitude, force-controlled, cyclic fatigue tests on specimens of a metal for the sake of generating fatigue-life data (i.e. stress vs. cycles to failure) for material characterization." ;
pmd:definitionSource "ISO 1099:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ForceTransducer
pmdao:ForceTransducer rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode ;
rdfs:label "Force Transducer" ;
ns3:definition "device used to determine mass by measuring the force applied either by tension or pressure" ;
pmd:definitionSource "ISO 6016:2008" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Fracture
pmdao:Fracture rdf:type owl:Class ;
rdfs:subClassOf pmdao:Failure ;
rdfs:label "Fracture" ;
ns3:definition "natural fractures in a formation resulting from external stress, usually being associated with a displacement" ;
pmd:definitionSource "ISO 18875:2015" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/FractureMode
pmdao:FractureMode rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Frequency
pmdao:Frequency rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Frequency" ;
ns3:definition "number of force or strain cycles per unit time applied to the test piece during fatigue testing" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/GrindingProcess
pmdao:GrindingProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Grinding Process" ;
ns3:definition "Grinding is the process of removing the surface of a hard material using a wheel made from or covered in hard grit." ;
pmd:definitionSource "Collins dictionary" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/GrippingDevice
pmdao:GrippingDevice rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode ;
rdfs:label "Gripping Device" ;
ns3:definition "device to hold a test specimen and to transfer a uniaxial tensile force to a test specimen during the test" ;
pmd:definitionSource "ISO 22215:2006" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/HandelingProcess
pmdao:HandelingProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Handling Process" ;
ns3:definition "a process by which something is handled in a commercial transaction." .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/HighCycleFatigueTest
pmdao:HighCycleFatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueTest ;
rdfs:label "High-Cycle Fatigue Test" ;
ns3:definition "fatigue test carried out in the region where the stress behaviour is dominant and fatigue life is relatively longer" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Humidity
pmdao:Humidity rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Humidity" ;
ns3:definition "general term for the amount of water vapour in the air" ;
pmd:definitionSource "ISO/TR 18931:2001" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/HydraulicActuator
pmdao:HydraulicActuator rdf:type owl:Class ;
rdfs:subClassOf pmdao:Actuator ;
rdfs:label "Hydraulic Actuator" ;
ns3:definition "cylindrical tube and piston assemblies that utilize hydraulic power to generate linear, rotary, or oscillatory motion" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ISO12106FatigueTest
pmdao:ISO12106FatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:StrainControlledFatigueTest ;
rdfs:label "ISO 12106:2017 Fatigue Test" ;
ns3:definition "Fatigue testing of metallic materials by an axial-strain-controlled method according to ISO 12106:2017 standard" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/LowCycleFatigueTest
pmdao:LowCycleFatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueTest ;
rdfs:label "Low-Cycle Fatigue Test" ;
ns3:definition "fatigue test carried out in the region where the cyclic plastic strain behaviour is dominant and fatigue life is relatively shorter" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/MachiningProcess
pmdao:MachiningProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Machining Process" ;
ns3:definition "Machining is the process of cutting, shaping, or removing material from a workpiece using a machine tool." ;
pmd:definitionSource "Collins dictionary" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/MarkingProcess
pmdao:MarkingProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Marking Process" ;
ns3:definition "The action of putting a mark on samples" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/MathematicsValueObject
pmdao:MathematicsValueObject rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Maximum
pmdao:Maximum rdf:type owl:Class ;
rdfs:subClassOf pmdao:Extremum ;
rdfs:label "Maximum" ;
ns3:definition "greatest algebraic value of a variable within one cycle" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Mean
pmdao:Mean rdf:type owl:Class ;
rdfs:subClassOf pmdao:MathematicsValueObject ;
rdfs:label "Mean" ;
ns3:definition "one-half of the algebraic sum of the maximum and minimum values of a variable" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Minimum
pmdao:Minimum rdf:type owl:Class ;
rdfs:subClassOf pmdao:Extremum ;
rdfs:label "Minimum" ;
ns3:definition "least algebraic value of a variable within one cycle" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Number
pmdao:Number rdf:type owl:Class ;
rdfs:subClassOf pmdao:MathematicsValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/PeakStress
pmdao:PeakStress rdf:type owl:Class ;
rdfs:subClassOf pmd:Stress ;
rdfs:label "Peak Stress" ;
ns3:definition "highest stress in the region or component under consideration" ;
pmd:definitionSource "ISO 13624-1:2009" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/PlasticStrain
pmdao:PlasticStrain rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "Plastic Strain" ;
ns3:definition "plastic strain component of a controlled strain" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/PolishingProcess
pmdao:PolishingProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Polishing Process" ;
ns3:definition "make the surface of (something) smooth and shiny by rubbing it." .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Range
pmdao:Range rdf:type owl:Class ;
rdfs:subClassOf pmdao:MathematicsValueObject ;
rdfs:label "Range" ;
ns3:definition "algebraic difference between the maximum and minimum values of a variable" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ResidualStress
pmdao:ResidualStress rdf:type owl:Class ;
rdfs:subClassOf pmd:Stress ;
rdfs:label "Residual Stress" ;
ns3:definition "stress that remains in a structure after processing, fabrication, assembly, testing or operation" ;
pmd:definitionSource "ISO 14623:2003" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/RoundBar
pmdao:RoundBar rdf:type owl:Class ;
rdfs:subClassOf pmd:GeometryShape ;
rdfs:label "Round Bar" ;
ns3:definition "bar having a circular cross section of diameter generally 8 mm or over" ;
pmd:definitionSource "ISO 6929:2013" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/SamplingProcess
pmdao:SamplingProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Sampling Process" ;
ns3:definition "the action or process of taking samples of something for analysis." .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/SignalPeriod
pmdao:SignalPeriod rdf:type owl:Class ;
rdfs:subClassOf pmdao:TimePeriod ;
rdfs:label "Signal Period" ;
ns3:definition "duration of the wavelength" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/SpecimenPreparationProcess
pmdao:SpecimenPreparationProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process ;
rdfs:label "Specimen Preparation Process" ;
ns3:definition "The process of preparing qualified specimen for testing purpuse" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StoringProcess
pmdao:StoringProcess rdf:type owl:Class ;
rdfs:subClassOf pmdao:SpecimenPreparationProcess ;
rdfs:label "Storing Process" ;
ns3:definition "the action or method of storing something for future use." .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Strain
pmdao:Strain rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Strain" ;
ns3:definition "relative deformation caused by a force applied to a test piece" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StrainAmplitude
pmdao:StrainAmplitude rdf:type owl:Class ;
rdfs:subClassOf pmdao:Amplitude ;
rdfs:label "Strain Amplitude" ;
ns3:definition "one-half of the algebraic difference between the maximum strain and the minimum strain in the strain cycle" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StrainControlledFatigueTest
pmdao:StrainControlledFatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueTest ;
rdfs:label "Axial-Strain-Controlled Fatigue Test" ;
ns3:definition "method|of testing uniaxially deformed specimens under strain control at constant|amplitude" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StrainFatigueLifeCurve
pmdao:StrainFatigueLifeCurve rdf:type owl:Class ;
rdfs:subClassOf pmd:Image .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StrainRange
pmdao:StrainRange rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "Strain Range" ;
ns3:definition "algebraic difference between the maximum and minimum values of strain" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StrainRatio
pmdao:StrainRatio rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StressAmplitude
pmdao:StressAmplitude rdf:type owl:Class ;
rdfs:subClassOf pmdao:Amplitude ;
rdfs:label "Stress Amplitude" ;
ns3:definition "one-half of the algebraic difference between the maximum stress and the minimum stress in the stress cycle" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StressStrainCurve
pmdao:StressStrainCurve rdf:type owl:Class ;
rdfs:subClassOf pmd:Image .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/StressStrainHystersisLoopCurve
pmdao:StressStrainHystersisLoopCurve rdf:type owl:Class ;
rdfs:subClassOf pmd:Image .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/ThermoMechanicalFatigueTest
pmdao:ThermoMechanicalFatigueTest rdf:type owl:Class ;
rdfs:subClassOf pmdao:FatigueTest ;
rdfs:label "Thermo Mechanical Fatigue Test" ;
ns3:definition "fatigue test under the conditions where cyclic, theoretically uniform temperatures within the test section and strain fields are externally imposed, simultaneously varied and controlled" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/TimePeriod
pmdao:TimePeriod rdf:type owl:Class ;
rdfs:subClassOf pmd:Time .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/TransitionRadious
pmdao:TransitionRadious rdf:type owl:Class ;
rdfs:subClassOf pmd:Radius ;
rdfs:label "Transition Radius" ;
ns3:definition "from parallel length into the grip end of the test specimen" ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/TrueStrain
pmdao:TrueStrain rdf:type owl:Class ;
rdfs:subClassOf pmdao:Strain ;
rdfs:label "True Strain" ;
ns3:definition "natural logarithm of the ratio of an instantaneous length to its original length in the direction of the applied force up to the onset of necking" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/TrueStress
pmdao:TrueStress rdf:type owl:Class ;
rdfs:subClassOf pmd:Stress ;
rdfs:label "True Stress" ;
ns3:definition "instantaneous force divided by the instantaneous cross-sectional area of the gauge length" ;
pmd:definitionSource "ISO 23718:2007" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/Uncertainity
pmdao:Uncertainity rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject ;
rdfs:label "Uncertainty" ;
ns3:definition "non-negative parameter characterizing the dispersion of the quantity values being attributed to a measurand, based on the information used" ;
pmd:definitionSource "ISO 29473:2010" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/UniaxialTensionCompressionMachine
pmdao:UniaxialTensionCompressionMachine rdf:type owl:Class ;
rdfs:subClassOf pmd:TestingMachine ;
rdfs:label "Uniaxial Tension-Compression Machine" ;
ns3:definition "machine for smooth startup of fatigue test with no backlash when passing through zero stress." ;
pmd:definitionSource "ISO 12106:2017" .
### https://gitlab.com/kupferdigital/process-graphs/lcf-test/-/raw/main/FatigueTest.ttl/WaveformDevice
pmdao:WaveformDevice rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode ;
rdfs:label "Waveform" ;
ns3:definition "shape of the wave when seen on an oscilloscope or digitized display" ;
pmd:definitionSource "ISO 26824:2022" .
### https://w3.org/ns/csvw#Table
csvw:Table rdf:type owl:Class .
### https://w3id.org/pmd/co/Algorithm
pmd:Algorithm rdf:type owl:Class ;
rdfs:subClassOf pmd:Method .
### https://w3id.org/pmd/co/AnalysingProcess
pmd:AnalysingProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process .
### https://w3id.org/pmd/co/Area
pmd:Area rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/AssemblingProcess
pmd:AssemblingProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process .
### https://w3id.org/pmd/co/ChemicalComposition
pmd:ChemicalComposition rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/ConditioningProcess
pmd:ConditioningProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process .
### https://w3id.org/pmd/co/CrossSectionArea
pmd:CrossSectionArea rdf:type owl:Class ;
rdfs:subClassOf pmd:Area .
### https://w3id.org/pmd/co/DataScope
pmd:DataScope rdf:type owl:Class .
### https://w3id.org/pmd/co/Dataset
pmd:Dataset rdf:type owl:Class ;
rdfs:subClassOf pmd:DigitalEntity .
### https://w3id.org/pmd/co/Date
pmd:Date rdf:type owl:Class ;
rdfs:subClassOf pmd:Time .
### https://w3id.org/pmd/co/DigitalEntity
pmd:DigitalEntity rdf:type owl:Class ;
rdfs:subClassOf ns1:Entity .
### https://w3id.org/pmd/co/Elongation
pmd:Elongation rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/EngineeredMaterial
pmd:EngineeredMaterial rdf:type owl:Class ;
rdfs:subClassOf pmd:Object .
### https://w3id.org/pmd/co/Extensometer
pmd:Extensometer rdf:type owl:Class ;
rdfs:subClassOf pmd:MeasuringDevice .
### https://w3id.org/pmd/co/ExtensometerGaugeLength
pmd:ExtensometerGaugeLength rdf:type owl:Class ;
rdfs:subClassOf pmd:GaugeLength .
### https://w3id.org/pmd/co/Force
pmd:Force rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Furnace
pmd:Furnace rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode .
### https://w3id.org/pmd/co/GaugeLength
pmd:GaugeLength rdf:type owl:Class ;
rdfs:subClassOf pmd:Length .
### https://w3id.org/pmd/co/GeometryChangingProcess
pmd:GeometryChangingProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:Process .
### https://w3id.org/pmd/co/GeometryShape
pmd:GeometryShape rdf:type owl:Class ;
rdfs:subClassOf pmd:TestPieceInfo .
### https://w3id.org/pmd/co/Grips
pmd:Grips rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode .
### https://w3id.org/pmd/co/GripsAlignment
pmd:GripsAlignment rdf:type owl:Class ;
rdfs:subClassOf pmd:AssemblingProcess .
### https://w3id.org/pmd/co/HeatTreatmentProcess
pmd:HeatTreatmentProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:ConditioningProcess .
### https://w3id.org/pmd/co/Identifier
pmd:Identifier rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Image
pmd:Image rdf:type owl:Class ;
rdfs:subClassOf pmd:DigitalEntity .
### https://w3id.org/pmd/co/Laboratory
pmd:Laboratory rdf:type owl:Class ;
rdfs:subClassOf ns1:Organization .
### https://w3id.org/pmd/co/Length
pmd:Length rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Location
pmd:Location rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/MaximumForce
pmd:MaximumForce rdf:type owl:Class ;
rdfs:subClassOf pmd:Force .
### https://w3id.org/pmd/co/Measurement
pmd:Measurement rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueScope .
### https://w3id.org/pmd/co/MeasuringDevice
pmd:MeasuringDevice rdf:type owl:Class ;
rdfs:subClassOf pmd:ProcessingNode .
### https://w3id.org/pmd/co/MeasuringProcess
pmd:MeasuringProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:AnalysingProcess .
### https://w3id.org/pmd/co/MechanicalTestingProcess
pmd:MechanicalTestingProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:AnalysingProcess .
### https://w3id.org/pmd/co/Metadata
pmd:Metadata rdf:type owl:Class ;
rdfs:subClassOf pmd:DataScope .
### https://w3id.org/pmd/co/Method
pmd:Method rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/ModulusOfElasticity
pmd:ModulusOfElasticity rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/MountingProcess
pmd:MountingProcess rdf:type owl:Class ;
rdfs:subClassOf pmd:AssemblingProcess .
### https://w3id.org/pmd/co/NodeName
pmd:NodeName rdf:type owl:Class ;
rdfs:subClassOf pmd:ProjectIdentifier .
### https://w3id.org/pmd/co/Norm
pmd:Norm rdf:type owl:Class ;
rdfs:subClassOf pmd:Method .
### https://w3id.org/pmd/co/Note
pmd:Note rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Object
pmd:Object rdf:type owl:Class ;
rdfs:subClassOf ns1:Entity .
### https://w3id.org/pmd/co/Operator
pmd:Operator rdf:type owl:Class ;
rdfs:subClassOf ns1:Person .
### https://w3id.org/pmd/co/OriginalGaugeLength
pmd:OriginalGaugeLength rdf:type owl:Class ;
rdfs:subClassOf pmd:GaugeLength .
### https://w3id.org/pmd/co/ParallelLength
pmd:ParallelLength rdf:type owl:Class ;
rdfs:subClassOf pmd:Length .
### https://w3id.org/pmd/co/PrimaryData
pmd:PrimaryData rdf:type owl:Class ;
rdfs:subClassOf pmd:DataScope .
### https://w3id.org/pmd/co/Process
pmd:Process rdf:type owl:Class ;
rdfs:subClassOf ns1:Activity .
### https://w3id.org/pmd/co/ProcessingNode
pmd:ProcessingNode rdf:type owl:Class ;
rdfs:subClassOf ns1:Agent .
### https://w3id.org/pmd/co/ProjectIdentifier
pmd:ProjectIdentifier rdf:type owl:Class ;
rdfs:subClassOf pmd:Identifier .
### https://w3id.org/pmd/co/ProofStrength
pmd:ProofStrength rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/ProofStrengthPlasticExtension
pmd:ProofStrengthPlasticExtension rdf:type owl:Class ;
rdfs:subClassOf pmd:ProofStrength .
### https://w3id.org/pmd/co/Radius
pmd:Radius rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Roughness
pmd:Roughness rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .
### https://w3id.org/pmd/co/Rp02
pmd:Rp02 rdf:type owl:Class ;
rdfs:subClassOf pmd:ProofStrengthPlasticExtension .
### https://w3id.org/pmd/co/Sample
pmd:Sample rdf:type owl:Class ;
rdfs:subClassOf pmd:EngineeredMaterial .
### https://w3id.org/pmd/co/SecondaryData
pmd:SecondaryData rdf:type owl:Class ;
rdfs:subClassOf pmd:DataScope .
### https://w3id.org/pmd/co/SetPoint
pmd:SetPoint rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueScope .
### https://w3id.org/pmd/co/SlopeOfTheElasticPart
pmd:SlopeOfTheElasticPart rdf:type owl:Class ;
rdfs:subClassOf pmd:ValueObject .