-
Notifications
You must be signed in to change notification settings - Fork 0
/
nanoindentation.ttl
1231 lines (940 loc) · 115 KB
/
nanoindentation.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 : <http://emmo.info/emmo/nanoind#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix emmo: <http://emmo.info/emmo#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix chameo: <http://emmo.info/emmo/domain/chameo/chameo#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@base <http://emmo.info/emmo/nanoind#> .
<http://emmo.info/emmo/domain/nanoind> rdf:type owl:Ontology ;
owl:imports <http://emmo.info/emmo/domain/chameo/chameo> ,
<https://raw.githubusercontent.com/emmo-repo/EMMO/master/top/annotations.ttl> ;
<http://purl.org/dc/terms/abstract> "Nanoindentation testing ontology developed within the NanoMECommons project."@en ;
<http://purl.org/dc/terms/alternative> "NanoInd" ;
<http://purl.org/dc/terms/bibliographicCitation> "Work under review - not available yet" ;
<http://purl.org/dc/terms/contributor> "Goldbeck Consulting Ltd (UK)" ;
<http://purl.org/dc/terms/created> "2023-11-29" ;
<http://purl.org/dc/terms/creator> "Gerhard Goldbeck" ,
"Pierluigi Del Nostro" ;
<http://purl.org/dc/terms/description> "Nanoindentation testing ontology"@en ;
<http://purl.org/dc/terms/hasFormat> <https://www.w3.org/TR/turtle/> ;
<http://purl.org/dc/terms/identifier> "http://emmo.info/emmo/domain/nanoind" ;
<http://purl.org/dc/terms/issued> "" ;
<http://purl.org/dc/terms/license> "https://creativecommons.org/licenses/by/4.0/legalcode" ;
<http://purl.org/dc/terms/modified> "2023-10-23T15:00:00Z" ;
<http://purl.org/dc/terms/publisher> "EMMC ASBL" ;
<http://purl.org/dc/terms/source> "" ;
<http://purl.org/dc/terms/title> "Nanoindentation Testing Ontology"@en ;
<http://purl.org/ontology/bibo/doi> "" ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "nanoind"@en ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://emmo.info/emmo/domain/chameo/chameo" ;
rdfs:comment """Contacts:
Gerhard Goldbeck
Goldbeck Consulting Ltd (UK)
email: gerhard@goldbeck-consulting.com"""@en ;
owl:backwardCompatibleWith "" ;
owl:priorVersion "" ;
owl:versionInfo "1.0.0-alpha1" ;
<http://www.w3.org/2004/02/skos/core#hiddenLabel> "NanoInd" ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/pierluigidelnostro/domain-nanoindentation> ;
<http://xmlns.com/foaf/0.1/page> <https://github.com/pierluigidelnostro/domain-nanoindentation> .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/abstract
<http://purl.org/dc/terms/abstract> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/alternative
<http://purl.org/dc/terms/alternative> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/hasFormat
<http://purl.org/dc/terms/hasFormat> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/identifier
<http://purl.org/dc/terms/identifier> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
<http://purl.org/dc/terms/issued> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
<http://purl.org/dc/terms/publisher> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/source
<http://purl.org/dc/terms/source> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://purl.org/ontology/bibo/doi
<http://purl.org/ontology/bibo/doi> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
<http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/homepage
<http://xmlns.com/foaf/0.1/homepage> rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/page
<http://xmlns.com/foaf/0.1/page> rdf:type owl:AnnotationProperty .
#################################################################
# Classes
#################################################################
### http://emmo.info/emmo/nanoind#EMMO_01338ee7-7c76-4ace-aaf4-fbf001d0dee6
:EMMO_01338ee7-7c76-4ace-aaf4-fbf001d0dee6 rdf:type owl:Class ;
rdfs:subClassOf chameo:SecondaryData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Phase annotation (character or numeric indicator) assigned to the nanoindentation raw data by doing phase analysis using statistics or machine learning (including clustering or supervised prediction based on an informed and trained model)."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The grouping of the hardness data distribution that is produced after using gaussian probability distribution function fitting to the number of the density plot peaks of hardness, resulting in different average hardness for each group of data, which is used to annotate the corresponding mechanical phase in accordance with literature and with the scientific background."@en ;
rdfs:label "PhaseAnalysisData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "PhaseAnalysisData"@en .
### http://emmo.info/emmo/nanoind#EMMO_03b8d505-34b6-49e4-8562-f303b1d4315a
:EMMO_03b8d505-34b6-49e4-8562-f303b1d4315a rdf:type owl:Class ;
rdfs:subClassOf :EMMO_e78d6d05-c2d4-48a5-be30-e2a9df3d7852 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_a69e8716-a4a6-4473-a59f-146ebd991fa6
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_8b35a71c-caf2-49c5-bfcc-18bb33f1a4e0
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The nanoindentation contact area describes the area of contact between the tip and the sample surface."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The contact area is calculated at specific contact depth, which is used as input in the tip area function which is output to calibration, providing the numeric output of the contact area."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The contact area in nanoindentation is estimated by an equation compared to microindentation where the contact imprint of the indentation is directly measured by microscopy."@en ;
rdfs:label "NanoindentationContactArea"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationContactArea"@en .
### http://emmo.info/emmo/nanoind#EMMO_0429e42f-5bf5-472b-b3f9-479229eaeb1c
:EMMO_0429e42f-5bf5-472b-b3f9-479229eaeb1c rdf:type owl:Class ;
rdfs:subClassOf chameo:PrimaryData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the lateral drift in the x,y axes of the indenter head during its movement inside the nanoindentation chamber, introduced due to the electronics heating during operation, especially when travelling large distances."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The coordinates offset is measured as output of performing tip to optics calibration."@en ;
rdfs:label "CoordinatesOffset"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "CoordinatesOffset"@en .
### http://emmo.info/emmo/nanoind#EMMO_043dcb51-4fb1-4f29-882d-5f62ef9c7148
:EMMO_043dcb51-4fb1-4f29-882d-5f62ef9c7148 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0f87af24-8fea-5c31-8442-35559ce9f1da ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "X position indicates the coordinates across x axis in the nanoindentation chamber, which are amongst the region of interest that nanoindentation test will be conducted."@en ;
rdfs:label "Xposition"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Xposition"@en .
### http://emmo.info/emmo/nanoind#EMMO_0553f023-b64a-5113-a3f4-487cb04554b6
:EMMO_0553f023-b64a-5113-a3f4-487cb04554b6 rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationProperty ,
:EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Stiffness is the extent to which an object/component/material/phase resists deformation in response to an applied force."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The frame stiffness of a nanoindenter is typically in the range of 1-10 N/m, depending on the specific design and materials used."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Stiffness"@en .
### http://emmo.info/emmo/nanoind#EMMO_0554da63-0423-5ca5-a176-9dd07ef32fb8
:EMMO_0554da63-0423-5ca5-a176-9dd07ef32fb8 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_9cd8f505-aad8-5554-a143-fdf7507ec7ec ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The total time for a measurement to start and finish."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "MeasurementTime"@en .
### http://emmo.info/emmo/nanoind#EMMO_065be06c-fb2d-48cc-a488-b7cd4c621580
:EMMO_065be06c-fb2d-48cc-a488-b7cd4c621580 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_8563a29b-e1d0-48d5-9875-826519c5596a ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A contour plot that depicts the phase change with coordinates of testing (x,y) in 2D or 3D if depth parameter is included, and a colour gradient is used to indicate each phase."@en ;
rdfs:label "NanoindentationPhaseMap"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationPhaseMap"@en .
### http://emmo.info/emmo/nanoind#EMMO_09591a7a-39f9-550f-8b87-77bb34f4fb2f
:EMMO_09591a7a-39f9-550f-8b87-77bb34f4fb2f rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationInstrument ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A nanoindenter is the instrument used for indentation hardness tests."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "A nanoindenter is typically used to quantify the nanomechanical characterisation properties, which refer to the range of 0-200 nm of depth according to the ISO 14577-1:2015."@en ;
rdfs:label "Nanoindenter"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Nanoindenter"@en .
### http://emmo.info/emmo/nanoind#EMMO_097d8202-eb97-445b-844d-54cd655a2c87
:EMMO_097d8202-eb97-445b-844d-54cd655a2c87 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The nanoindentation phase shift is used to indicate in continuous stiffness measurement the phase of the wave introduced due to the frequency of the measurement."@en ;
rdfs:label "NanoindentationPhaseShift"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationPhaseShift"@en .
### http://emmo.info/emmo/nanoind#EMMO_0efb361c-cca2-4b31-8696-b6cdbdc1730b
:EMMO_0efb361c-cca2-4b31-8696-b6cdbdc1730b rdf:type owl:Class ;
rdfs:subClassOf :EMMO_01338ee7-7c76-4ace-aaf4-fbf001d0dee6 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The resulting number of groups of data after grouping of the characterisation property data."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The number of groups of characterisation property data, which came up from the density plot number peaks of the specific characterisation property (i.e. hardness) or derived by a data-driven criterion that utilises one or more characterisation properties data (i.e. The elbow method used prior to k-means clustering)."@en ;
rdfs:label "NumberofPhases"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NumberofPhases"@en .
### http://emmo.info/emmo/nanoind#EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23
:EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the frequency, the amplitude of the wave if it is displacement controlled or the magnitude of the wave if it is force controlled."@en ;
rdfs:label "FrequencyParameters"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "FrequencyParameters"@en .
### http://emmo.info/emmo/nanoind#EMMO_0f87af24-8fea-5c31-8442-35559ce9f1da
:EMMO_0f87af24-8fea-5c31-8442-35559ce9f1da rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ,
:EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The coordinates relevant to the sample, where the test of nanoindentation is being conducted."@en ;
rdfs:label "NanoindentationCoordinates"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationCoordinates"@en .
### http://emmo.info/emmo/nanoind#EMMO_126fef72-87ce-4b4f-8516-6b3513366b58
:EMMO_126fef72-87ce-4b4f-8516-6b3513366b58 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Tip"@en .
### http://emmo.info/emmo/nanoind#EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff
:EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff rdf:type owl:Class ;
rdfs:subClassOf :EMMO_e033b8bc-aec3-508a-bf64-77a93e72df1f ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Model fitted data correspond to the secondary data created using the Oliver-Pharr contact mechanics model to extract information from the nanoindenter produced raw data."@en ;
rdfs:label "OliverPharrModelFittedData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "OliverPharrModelFittedData"@en .
### http://emmo.info/emmo/nanoind#EMMO_1a97a2c9-10ad-5e15-be10-fa5eabb6d542
:EMMO_1a97a2c9-10ad-5e15-be10-fa5eabb6d542 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_fd9e155e-c995-5237-b930-02ad04c0208f ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to Hertz contact mechanics model used to process nanoindentation raw data to extract the nanomechanical properties (i.e. stiffness, hardness, elastic modulus, etc.)."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The Hertz contact model produces both normal and shear forces based on the theoretical analysis of the deformation of smooth, elastic spheres in frictional contact. Viscous dashpots may be added for further energy dissipation in simulations involving impact. Both components transmit only a force."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "HertzModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_1b476e51-bdc7-4ea9-b0e0-d719fbecbe16
:EMMO_1b476e51-bdc7-4ea9-b0e0-d719fbecbe16 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_aa90561a-0d28-4381-824a-7c827c627e56 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the integer number that indicates the exact number of nanoindentation events that will occur in a specified region of interest within a single nanoindentation measurement."@en ;
rdfs:label "NumberofNanoindents"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NumberofNanoindents"@en .
### http://emmo.info/emmo/nanoind#EMMO_1e60509e-ad49-581b-8b8c-d20be3cac4b0
:EMMO_1e60509e-ad49-581b-8b8c-d20be3cac4b0 rdf:type owl:Class ;
rdfs:subClassOf <http://webprotege.stanford.edu/R8VNAsczoRlY7lZCPtQny9K> ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The distance the indenter tip moves away from the sample surface before the indentation starts and after every single indent within a single nanoindentation measurement."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Typically and empirically the move back value minimum possible threshold that a user could use is ten times smaller than the interindent spacing, however most of times the value is set to a higher number because the samples are not always perfectly flat or might be tilted, which can set up a risk of the indenter tip crushing on the sample surface while moving into the nanoindenter chamber between the current and the next nanoindent location (which has distance the interindent distance) within a single nanoindentation measurement."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipMoveBack"@en .
### http://emmo.info/emmo/nanoind#EMMO_262183bd-c73d-4fda-99b7-8b6753176f1d
:EMMO_262183bd-c73d-4fda-99b7-8b6753176f1d rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The height of the continuous stiffness nanoindentation measurement frequency, which corresponds to the maximum displacement or distance moved by a point on a vibrating body or wave measured from its equilibrium position. This is usually used as the region where the nanomechanical properties are extracted in continuous stiffness measurement mode."@en ;
rdfs:label "Amplitude"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Amplitude"@en .
### http://emmo.info/emmo/nanoind#EMMO_2698edca-874c-5026-b61b-e7112014fdd1
:EMMO_2698edca-874c-5026-b61b-e7112014fdd1 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The Berkovich indenter tip is the most frequently used indenter tip for instrumented indentation testing (IIT) to measure mechanical properties on the nanoscale. The Berkovich indenter tip is a three-sided pyramid that can be ground to a point and thus maintains a self-similar geometry to very small scales."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Berkovich"@en .
### http://emmo.info/emmo/nanoind#EMMO_29cf0bee-8144-416e-9a46-02b5c8d9ad5e
:EMMO_29cf0bee-8144-416e-9a46-02b5c8d9ad5e rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4696f5a6-3989-4d9a-8d82-bac70344663b ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the vertical drift in the z axis of the indenter head during its penetration into a sample, introduced due to the false estimation of the initial point of contact, which is pronounced especially when testing materials using a high strain rate, where a forward motion can be introduced, thus starting the measurement when the tip is already in contact with the sample in a couple of nanometers depth."@en ;
rdfs:label "ZeroContactPoint"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ZeroContactPoint"@en .
### http://emmo.info/emmo/nanoind#EMMO_2cc73574-eace-5e36-afb7-70a7cd61b217
:EMMO_2cc73574-eace-5e36-afb7-70a7cd61b217 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationMeasurement ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The procedure where the offset between the microscope site and indentation site is calculated and corrected."@en ;
rdfs:label "MicroscopeToIndenterCalibration" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "MicroscopeToIndenterCalibration"@en .
### http://emmo.info/emmo/nanoind#EMMO_2ccd4e0f-c57b-5a9e-94c5-41c2be5f77d8
:EMMO_2ccd4e0f-c57b-5a9e-94c5-41c2be5f77d8 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Nanoindenter extension modules are options that can be added to accommodate a variety of applications. The capabilities of the nanoindenter can be extended to facilitate application specific requirement."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Nanoindenter extension modules are options that can be added to accommodate a variety of applications. The capabilities of the nanoindenter can be extended to facilitate application specific requirement."@en ;
rdfs:label "NanoindenterExtensionModules"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindenterExtensionModules"@en .
### http://emmo.info/emmo/nanoind#EMMO_2f98bc65-69d1-52bc-8d9b-19766a69f0c3
:EMMO_2f98bc65-69d1-52bc-8d9b-19766a69f0c3 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4ab8c0cf-18aa-4e4f-9f13-8a072bd7cbd3 ,
:EMMO_cccafce4-fffe-55d6-bac4-8e4a4bdb48ce ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Thermal drift correction is employed in nanoindentation continuous raw data of time, displacement and load, corresponding to a stable loading sequence either in the beginning or in the end of the measurement used to measure thermal drift. The displacement change per second is measured during a constant load sequence, which corresponds to the measurement of the total displacement in the specified range of nanoindentation data, devided by the total time of the specific sequence of the routine."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ThermalDriftCorrection"@en .
### http://emmo.info/emmo/nanoind#EMMO_2fe978b2-0d14-4070-bbc9-aefe6f4d9b6f
:EMMO_2fe978b2-0d14-4070-bbc9-aefe6f4d9b6f rdf:type owl:Class ;
rdfs:subClassOf :EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the velocity of the indenter head movement while approaching the sample before contact."@en ;
rdfs:label "TipApproachRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipApproachRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_3083dcb1-3299-4c1f-8636-e02e7bcdc496
:EMMO_3083dcb1-3299-4c1f-8636-e02e7bcdc496 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_42f304bf-b2c6-4188-a189-a702fc2b851a ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The force actuator is designed to apply a force over-time on a sample. Many variants can be defined depending on way the force is applied (tensile/compressive uniaxial tests, bending test, indentation test) and its variation with time (static tests, dynamic/cyclic tests, impact tests, etc…)."@en ;
rdfs:label "ForceActuator"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ForceActuator"@en .
### http://emmo.info/emmo/nanoind#EMMO_32e4a855-39b5-5a27-9163-9175dd9dd1c9
:EMMO_32e4a855-39b5-5a27-9163-9175dd9dd1c9 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationMeasurement ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom chameo:ReferenceSample
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840 ;
owl:someValuesFrom :EMMO_8b35a71c-caf2-49c5-bfcc-18bb33f1a4e0
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840 ;
owl:someValuesFrom :EMMO_c66619a6-9ba1-499e-8ff5-96774774e574
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It is the z-axis calibration using a standard material with known mechanical properties to extract the contact depth versus the contact area relation to estimate the contact area without measuring it in unknown samples of their mechanical properties, according to Oliver-Pharr and ISO-14577/2022." ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The function that describes the real geometry of the tip, and more specifically the tip's area, is called Tip Area Function. In order for the nanomechanical properties to be calculated correctly, a calibration in order to obtain the Tip-Area-Function must be contacted prior to every set of measurements."@en ;
rdfs:label "TipAreaFunctionCalibration" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipAreaFunctionCalibration"@en .
### http://emmo.info/emmo/nanoind#EMMO_33020a2d-af0b-40b0-9171-4e2ae4651874
:EMMO_33020a2d-af0b-40b0-9171-4e2ae4651874 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Data acquisition rate corresponds to the number of data points recorded per second by the controller."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "When the DataAcquisitionRate is equal to 100Hz, then 100 data points are recorded per second of measurement; if the measurement time for performing one nanoindentation lasts 10 seconds, this means that 1000 data points are recorded for each indentation point."@en ;
rdfs:label "DataAcquisitionRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "DataAcquisitionRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_3365c29d-86c4-404e-b571-afe0155eaf7b
:EMMO_3365c29d-86c4-404e-b571-afe0155eaf7b rdf:type owl:Class ;
rdfs:subClassOf :EMMO_8563a29b-e1d0-48d5-9875-826519c5596a ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A contour plot that depicts the Hardness change with coordinates of testing (x,y) in 2D or 3D if depth parameter is included, and a colour gradient is used to indicate the relative variation of hardness."@en ;
rdfs:label "NanoindentationHardnessMap"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationHardnessMap"@en .
### http://emmo.info/emmo/nanoind#EMMO_376c214e-95d7-58c9-b25a-9e95d89e85ea
:EMMO_376c214e-95d7-58c9-b25a-9e95d89e85ea rdf:type owl:Class ;
rdfs:subClassOf :EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The duration for which the load is being applied to the sample, during the loading, unloading and stall phases."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationTime"@en .
### http://emmo.info/emmo/nanoind#EMMO_38023a7d-a9a0-5925-ac07-3803e5b029ad
:EMMO_38023a7d-a9a0-5925-ac07-3803e5b029ad rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationProperty ,
:EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The hardness is the resistance of the sample deformation when compression forces are applied."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The hardness of martensite can be measured using nanoindentation with a sharp indenter. The indentation depth and size are critical factors that affect the accuracy of the measurement. Martensite has a hardness range of 5-10 GPa, with some samples exhibiting higher values. The exact hardness value depends on the composition, structure, and processing history of the martensite. The values are calculated using Oliver-Pharr contact mechanics model, as a result of dividing applied force with the contact area."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The indentation hardness is calculated by examining a material's surface, which is being indented until an imprint is formed."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Hardness"@en .
### http://emmo.info/emmo/nanoind#EMMO_3b2fb3fa-f67f-57a5-8fc9-3dcfccf3cdfa
:EMMO_3b2fb3fa-f67f-57a5-8fc9-3dcfccf3cdfa rdf:type owl:Class ;
rdfs:subClassOf :EMMO_5399516a-f2ef-525e-92d9-eee82051ec8a ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_5a0e2d14-1712-419e-85e2-95146e489b98
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It is the control mode that the user sets a maximum depth for the measurement to reach and stop the load application."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The user sets the desired maximum displacement where the indenter penetrates the sample, which is used as stop condition."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "DisplacementControlled"@en .
### http://emmo.info/emmo/nanoind#EMMO_3d361cf2-086a-4fef-8360-5544a44f7482
:EMMO_3d361cf2-086a-4fef-8360-5544a44f7482 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_01338ee7-7c76-4ace-aaf4-fbf001d0dee6 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The character annotation of a group of characterisation properties data generated by nanoindentation that indicate the existence of a mechanical phase with unique set of characteristics according to the data-driven annotation and as indicated by the theory."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "Martensite, ferrite, bainite, derived by grouping the data of characterisation properties in steels."@en ;
rdfs:label "Phase"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Phase"@en .
### http://emmo.info/emmo/nanoind#EMMO_3ecbcfdc-20c5-5763-8db0-508aacbabe84
:EMMO_3ecbcfdc-20c5-5763-8db0-508aacbabe84 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_fd9e155e-c995-5237-b930-02ad04c0208f ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to Loubet contact mechanics model used to process nanoindentation raw data to extract the nanomechanical properties (i.e. stiffness, hardness, elastic modulus, etc.)."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "A new technique to determine the true projected contact area by nanoindentation, which requires combining two models used normally to determine the representative stress and strain from nanoindentation parameters. Consequently, it does not require any model classically used to calculate the projected contact area. The method requires performing indentation on the same sample with two indenter tips with different geometries."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "LoubetModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_3fb11ea0-8fb8-4c70-b8ec-d4e6058ae318
:EMMO_3fb11ea0-8fb8-4c70-b8ec-d4e6058ae318 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The data collected by performing nanoindentation calibration tests at large applied force or depth (compliance calibration protocol), used in comparison with data provided from the equipment manufacturer in order to account of the displacement that is due to the deformation of the indentation head springs instead of the displacement into the tested sample."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "Intepretation of ComplianceCalibrationData into the indenter software environment to save the expected deformation of the indenter head springs during testing to correct any overestimation of the nanoindentation depth after exhaustive use of the indenter (normally compliance calibration is performed once every 1 or 2 years)."@en ;
rdfs:label "ComplianceCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "SpringStiffnessCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ComplianceCalibrationData"@en .
### http://emmo.info/emmo/nanoind#EMMO_42f304bf-b2c6-4188-a189-a702fc2b851a
:EMMO_42f304bf-b2c6-4188-a189-a702fc2b851a rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Actuator" .
### http://emmo.info/emmo/nanoind#EMMO_4455172b-a665-4911-9118-ae2fa9c96dbd
:EMMO_4455172b-a665-4911-9118-ae2fa9c96dbd rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0429e42f-5bf5-472b-b3f9-479229eaeb1c ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the lateral drift in the x axis of the indenter head during its movement inside the nanoindentation chamber, introduced due to the electronics heating during operation, especially when travelling large distances."@en ;
rdfs:label "XOffset"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "XOffset"@en .
### http://emmo.info/emmo/nanoind#EMMO_4468c934-446c-4843-8f26-0044a31585aa
:EMMO_4468c934-446c-4843-8f26-0044a31585aa rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The frequency refers to the number of waves that pass a fixed point in unit time. It also describes the number of cycles or vibrations undergone during one unit of time by a body (here: indenter head) in periodic motion."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The Frequency that is applied during nanoindentation in continuous stiffness measurement mode to acquire the continuous change of indentation modulus, hardness, stiffness, etc. across depth."@en ;
rdfs:label "Frequency"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "OscilationFrequency"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Frequency"@en .
### http://emmo.info/emmo/nanoind#EMMO_46846950-cb47-4097-b1e4-c1309f85c78a
:EMMO_46846950-cb47-4097-b1e4-c1309f85c78a rdf:type owl:Class ;
rdfs:subClassOf :EMMO_01338ee7-7c76-4ace-aaf4-fbf001d0dee6 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The percentage of a specific group of characterisation properties data, which relates the population of the specific group of data to the overall population of data generated by nanoindentation in the specified region of interest which was tested."@en ;
rdfs:label "PhaseRatio"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "PhaseRatio"@en .
### http://emmo.info/emmo/nanoind#EMMO_4696f5a6-3989-4d9a-8d82-bac70344663b
:EMMO_4696f5a6-3989-4d9a-8d82-bac70344663b rdf:type owl:Class ;
rdfs:subClassOf chameo:PrimaryData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the vertical drift in the z axis of the indenter head during its penetration into a sample, introduced due to the deformation of the indenter head springs, thermal drift or due to the false estimation of the zero contact point."@en ;
rdfs:label "DisplacementOffset"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "DisplacementOffset"@en .
### http://emmo.info/emmo/nanoind#EMMO_47b2aab3-fc93-547a-9418-535a806f2e8a
:EMMO_47b2aab3-fc93-547a-9418-535a806f2e8a rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Anti-Vibration Table (AVT) is a Table where the nanoindenter is position onto, which is used to drop unwanted vibrations that delimit high-magnification/-resolution during characterization."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Anti-Vibration Table (AVT) is used to drop unwanted vibrations that delimit high-magnification/-resolution during characterization. "@en ;
rdfs:label "AntiVibrationTable"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "AntiVibrationTable"@en .
### http://emmo.info/emmo/nanoind#EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca
:EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca rdf:type owl:Class ;
rdfs:subClassOf chameo:MeasurementParameter ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Parameters that are used to formulate the measurement protocol/recipe to control the measurement and set stop conditions"@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The parameters that are determined by the user using the nanoindenter software to set-up the nanoindentation calibration/test measurement protocol."@en ;
rdfs:label "NanoindentationControlParameter"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "NanoindentationProtocolParameter"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationControlParameter"@en .
### http://emmo.info/emmo/nanoind#EMMO_4ab8c0cf-18aa-4e4f-9f13-8a072bd7cbd3
:EMMO_4ab8c0cf-18aa-4e4f-9f13-8a072bd7cbd3 rdf:type owl:Class ;
rdfs:subClassOf chameo:DataPreparation ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to fitting routines applied to the nanoindentation raw data, which is used then to correct the offset of the measurement parameters; correction of depth due to thermal drift, correction of the depth by identifying the actual zero contact point between the tip and the sample surface by using nanoindentation data."@en ;
rdfs:label "NanoindentationCorrectionRoutine"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationCorrectionRoutine"@en .
### http://emmo.info/emmo/nanoind#EMMO_523303f9-ceb8-5145-adc5-b6acb5d309fa
:EMMO_523303f9-ceb8-5145-adc5-b6acb5d309fa rdf:type owl:Class ;
rdfs:subClassOf chameo:Probe ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_3083dcb1-3299-4c1f-8636-e02e7bcdc496
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Indenter head is a component that is consisted by a frame with specific stiffness specifications, where the indentation tip is attached to ensure quantitative force transfer on the sample."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Indenter head is the component that is consisted by a frame with specific stiffness specifications, where the indentation tip is attached."@en ;
rdfs:label "IndenterHead"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "IndenterHead"@en .
### http://emmo.info/emmo/nanoind#EMMO_5399516a-f2ef-525e-92d9-eee82051ec8a
:EMMO_5399516a-f2ef-525e-92d9-eee82051ec8a rdf:type owl:Class ;
rdfs:subClassOf chameo:MeasurementParameter ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the property which is tuned in the nanoindentation protocol to control the measurement, typically load, displacement, or strain rate."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationProtocolMode"@en .
### http://emmo.info/emmo/nanoind#EMMO_54e5aeed-a5a2-4a43-8c81-f4b70fa7ff6b
:EMMO_54e5aeed-a5a2-4a43-8c81-f4b70fa7ff6b rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ac43b918-1cf3-4f5e-9ef8-7a2c824de9d6 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Sensitivity analysis is used to filter the data descriptors/parameters/characterisation properties that present strong dependence/correlation to each other, i.e. the one parameter is the product of another using a relation. The independent parameters are filtered to be used in subsequent analysis, i.e. phase identification."@en ;
rdfs:label "SensitivityAnalysisFilteredData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "SensitivityAnalysisFilteredData"@en .
### http://emmo.info/emmo/nanoind#EMMO_55fdd3e9-bd5d-5fe9-93fe-ce4f22eafcea
:EMMO_55fdd3e9-bd5d-5fe9-93fe-ce4f22eafcea rdf:type owl:Class ;
rdfs:subClassOf :EMMO_fd9e155e-c995-5237-b930-02ad04c0208f ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to Oliver-Pharr contact mechanics model used to process nanoindentation raw data to extract the nanomechanical properties (i.e. stiffness, hardness, elastic modulus, etc.)."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The Oliver–Pharr method was originally developed to measure the hardness and elastic modulus of a single phase elasto-plastic material from the indentation load–depth curve with sharp indenters, such as a pyramidal Berkovich tip."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "OliverPharrModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_5814dcc4-d0b9-5cdf-ab0e-785773930dba
:EMMO_5814dcc4-d0b9-5cdf-ab0e-785773930dba rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationProperty ,
:EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The elastic or Young's modulus quantifies the elastic response of a material subjected to the action of a concentrated load in a single point."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The elastic modulus of aluminum measured by nanoindentation is approximately 70-80 GPa. This value is relatively low compared to other metals, indicating that aluminum has a relatively low stiffness and resistance to deformation."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ElasticModulus"@en .
### http://emmo.info/emmo/nanoind#EMMO_59b43cc8-77a1-4b1e-97eb-b586188616cb
:EMMO_59b43cc8-77a1-4b1e-97eb-b586188616cb rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0429e42f-5bf5-472b-b3f9-479229eaeb1c ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the lateral drift in the y axis of the indenter head during its movement inside the nanoindentation chamber, introduced due to the electronics heating during operation, especially when travelling large distances."@en ;
rdfs:label "YOffset"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "YOffset"@en .
### http://emmo.info/emmo/nanoind#EMMO_5a0e2d14-1712-419e-85e2-95146e489b98
:EMMO_5a0e2d14-1712-419e-85e2-95146e489b98 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The maximum depth the user sets the indenter to penetrate into the sample, which is used as a stop condition during a displacement controlled measurement."@en ;
rdfs:label "TargetDisplacement"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "MaximumDepth"@en ,
"MaximumDisplacement"@en ,
"TargetDepth"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TargetDisplacement"@en .
### http://emmo.info/emmo/nanoind#EMMO_5ca6e1c1-93e9-5e1a-881b-2c2bd38074b1
:EMMO_5ca6e1c1-93e9-5e1a-881b-2c2bd38074b1 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_b3111cf6-107c-4aa6-8f3c-936348906200 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_4468c934-446c-4843-8f26-0044a31585aa
] ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The continuous stiffness measurement (CSM) method is a nanoindentation technique for obtaining elastic modulus and hardness data continuously during a nanoindentation process, and as such the measurement allows for the calculation of depth-dependent properties of a material in a single step."@en ;
rdfs:label "ContinuousStiffnessMeasurement" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ContinuousStiffnessMeasurement"@en .
### http://emmo.info/emmo/nanoind#EMMO_5ea270f0-5b79-544b-ad00-dc3737033d75
:EMMO_5ea270f0-5b79-544b-ad00-dc3737033d75 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_cccafce4-fffe-55d6-bac4-8e4a4bdb48ce ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Polynomial Regression is a form of Linear regression known as a special case of Multiple linear regression which estimates the relationship as an nth degree polynomial. "@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Although polynomial regression fits a nonlinear model to the data, as a statistical estimation problem it is linear."@en ;
rdfs:label "PolynomialRegression"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "PolynomialRegression"@en .
### http://emmo.info/emmo/nanoind#EMMO_679dff53-b148-4ffa-a60c-5c9e10edee12
:EMMO_679dff53-b148-4ffa-a60c-5c9e10edee12 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the force value, which will signal to the indentation software that the indenter tip is in contact with the sample, when the force recorded by the sensor exceeds the specific threshold value."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "When the trigger force it is exceeded and a displacement controlled protocols is selected with specific target depth, then after that trigger force the indenter will start to count the displacement for reaching the target depth threshold and stop the measurement. In case the trigger force is relatively high, then the indentation tip will already have penetrated the sample surface in a couple of nanometers, thus technically the final nanoindentation depth will exceed the threshold of target depth control parameter."@en ;
rdfs:label "TriggerForce"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TriggerForce"@en .
### http://emmo.info/emmo/nanoind#EMMO_69c892cc-b9c4-53cd-8e5e-216c57e2592f
:EMMO_69c892cc-b9c4-53cd-8e5e-216c57e2592f rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The sample holder (known also as flat specimen holder) is used for holding flat, circular or square/rectangular samples. It enables tight the sample from the front and from the back, to ensure that the shear stresses created by the indenter force application do not translate into x/y-axis displacement of the sample."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The sample holder (known also as flat specimen holder) is used for holding flat, circular or square/rectangular samples. It enables tightening the sample from the front and from the back."@en ;
rdfs:label "SampleHolder"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "SampleHolder"@en .
### http://emmo.info/emmo/nanoind#EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81
:EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81 rdf:type owl:Class ;
rdfs:subClassOf <http://webprotege.stanford.edu/R8VNAsczoRlY7lZCPtQny9K> ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It is the rate of the vertical movement of an indenter head, and correspondingly, tip."@en ;
rdfs:label "TipMovementRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipMovementRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_7417ea84-ca1c-5ef3-821c-0007b220ecba
:EMMO_7417ea84-ca1c-5ef3-821c-0007b220ecba rdf:type owl:Class ;
rdfs:subClassOf <http://webprotege.stanford.edu/R8VNAsczoRlY7lZCPtQny9K> ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The duration of the unloading phase of the measurement."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TargetUnloadTime"@en .
### http://emmo.info/emmo/nanoind#EMMO_755dd2db-9d48-42b9-8f68-fffe55cb6edb
:EMMO_755dd2db-9d48-42b9-8f68-fffe55cb6edb rdf:type owl:Class ;
rdfs:subClassOf chameo:PostProcessingModel ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_e88b7313-1ce5-408e-a2d6-6886d70a5460
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the machine learning algorithm that is used to model the data patterns."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "In nanoindentation machine learning is used to predict the phases in a sample that is tested by nanoindentation using previous knowledge from datasets with phase annotations or by clustering data into groups, which are identified in accordance to the scientific background."@en ;
rdfs:label "MachineLearningModel"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "MachineLearningModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_78896e20-1c4f-4bfd-8e57-85a1def4d05a
:EMMO_78896e20-1c4f-4bfd-8e57-85a1def4d05a rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0f87af24-8fea-5c31-8442-35559ce9f1da ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Y position indicates the coordinates across y axis in the nanoindentation champer, which are amongst the region of interest that nanoindentation test will be conducted."@en ;
rdfs:label "Yposition"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Yposition"@en .
### http://emmo.info/emmo/nanoind#EMMO_7fbd8a15-7c9d-5c36-a9a6-68291d90d144
:EMMO_7fbd8a15-7c9d-5c36-a9a6-68291d90d144 rdf:type owl:Class ;
rdfs:subClassOf <http://webprotege.stanford.edu/R8VNAsczoRlY7lZCPtQny9K> ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The duration the selected load is being applied to the sample."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TargetLoadingTimeOnSample"@en .
### http://emmo.info/emmo/nanoind#EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997
:EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 rdf:type owl:Class ;
rdfs:subClassOf chameo:RawData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 """All the raw data that are acquired by the instrument software during the test. The
raw data is a set of (unprocessed) data that is given directly as output from the controller."""@en ;
rdfs:label "NanoindentationRecordedParameters"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationRecordedParameters"@en .
### http://emmo.info/emmo/nanoind#EMMO_84bb72c3-17ca-41b6-afd5-4a1cabd17ba2
:EMMO_84bb72c3-17ca-41b6-afd5-4a1cabd17ba2 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the rate of the indenter head movement velocity while retracting from the sample, after the measurement stop condition is triggerred."@en ;
rdfs:label "TipUnloadRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipUnloadRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_8563a29b-e1d0-48d5-9875-826519c5596a
:EMMO_8563a29b-e1d0-48d5-9875-826519c5596a rdf:type owl:Class ;
rdfs:subClassOf chameo:SecondaryData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "An image/figure depicting a nanoindentation set of one or more properties/parameters (raw or processed) which change with the coordinates (x,y).or another nanoindentation parameter, or indicating the frequency of appearance of specific values of an individual parameter."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "A plot that depicts the hardness change with the nanoindentation contact depth."@en ;
rdfs:label "NanoindentationPlot"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationPlot"@en .
### http://emmo.info/emmo/nanoind#EMMO_86b9592f-d4fe-484e-8cf3-d51d91aed6d5
:EMMO_86b9592f-d4fe-484e-8cf3-d51d91aed6d5 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The rate that controls the change in strain (deformation) of a material with respect to time."@en ;
rdfs:label "TipStrainRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipStrainRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_8989ae5d-162d-54bc-ab2a-b2353d2f5d9b
:EMMO_8989ae5d-162d-54bc-ab2a-b2353d2f5d9b rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationMeasurement ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom chameo:ReferenceSample
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840 ;
owl:someValuesFrom :EMMO_3fb11ea0-8fb8-4c70-b8ec-d4e6058ae318
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the calibration at maximum force, which aims to correct the displacement measurement, calculating the displacement of the springs during force application of force on materials surface, due to reaction forces." ;
rdfs:label "ComplianceCalibration" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ComplianceCalibration"@en .
### http://emmo.info/emmo/nanoind#EMMO_8b35a71c-caf2-49c5-bfcc-18bb33f1a4e0
:EMMO_8b35a71c-caf2-49c5-bfcc-18bb33f1a4e0 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_5ea270f0-5b79-544b-ad00-dc3737033d75 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_a69e8716-a4a6-4473-a59f-146ebd991fa6
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840 ;
owl:someValuesFrom :EMMO_03b8d505-34b6-49e4-8562-f303b1d4315a
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "TipAreaFunction is the relation that is exported by polynomial fitting the nanoindentation data of contact depth and contact area from the calibration experiment using a reference sample. This relation calculates the contact area of non reference samples tested using as input the nanoindentation contact depth."@en ;
rdfs:label "TipAreaFunction"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipAreaFunction"@en .
### http://emmo.info/emmo/nanoind#EMMO_8b42952e-33f9-548c-a75a-d303f41dd39c
:EMMO_8b42952e-33f9-548c-a75a-d303f41dd39c rdf:type owl:Class ;
rdfs:subClassOf :EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The Cube-Corner indenter tip is a three- sided pyramid with mutually perpendicular faces arranged in a geometry like the corner of a cube. "@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "CubeCorner"@en .
### http://emmo.info/emmo/nanoind#EMMO_902d4c9c-0d45-523c-a4cb-801d0393bf59
:EMMO_902d4c9c-0d45-523c-a4cb-801d0393bf59 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_ce17bcb5-e666-51b8-ae5c-d3b61086bad0 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Tip temperature range corresponds to the temperature range which the tip can sustain without degrading, considering zero or non-zero force scenarios."@en ;
rdfs:label "TipTemperatureRange"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipTemperatureRange"@en .
### http://emmo.info/emmo/nanoind#EMMO_93cc4b17-9a8e-54e2-87eb-7853c7be60f8
:EMMO_93cc4b17-9a8e-54e2-87eb-7853c7be60f8 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_5399516a-f2ef-525e-92d9-eee82051ec8a ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 ;
owl:someValuesFrom :EMMO_86b9592f-d4fe-484e-8cf3-d51d91aed6d5
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It is the control mode that the user sets a constant strain rate for the measurement to maintain and stop the load application when specific load or displacement is reached."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The user sets the desired strain rate to be applied to the sample."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "StrainRateControlled"@en .
### http://emmo.info/emmo/nanoind#EMMO_9400e26c-e8d7-4fe5-a75f-1ed8196c9268
:EMMO_9400e26c-e8d7-4fe5-a75f-1ed8196c9268 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_b14e3441-698e-43d5-9447-2e46f1219260 ;
rdfs:label "IndenterFrameStiffness"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "IndenterFrameStiffness"@en .
### http://emmo.info/emmo/nanoind#EMMO_9a42c0cf-f0b5-52cd-b56d-5aa83d63688b
:EMMO_9a42c0cf-f0b5-52cd-b56d-5aa83d63688b rdf:type owl:Class ;
rdfs:subClassOf :EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The load that has been applied to the sample."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationLoad"@en .
### http://emmo.info/emmo/nanoind#EMMO_9b2d612e-8ed9-5091-aa0b-19052817e72e
:EMMO_9b2d612e-8ed9-5091-aa0b-19052817e72e rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationMeasurementProcess ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Scanning probe microscopy (SPM) is a branch of microscopy that forms images of surfaces using a physical probe that scans the specimen." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ScanningProbeMicroscopyMeasurement"@en .
### http://emmo.info/emmo/nanoind#EMMO_9cd8f505-aad8-5554-a143-fdf7507ec7ec
:EMMO_9cd8f505-aad8-5554-a143-fdf7507ec7ec rdf:type owl:Class ;
rdfs:subClassOf <http://webprotege.stanford.edu/R8VNAsczoRlY7lZCPtQny9K> ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The total duration of a nanoindentation test to be completed." ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationTime"@en .
### http://emmo.info/emmo/nanoind#EMMO_a2105b87-83f0-5656-a1be-992a16092741
:EMMO_a2105b87-83f0-5656-a1be-992a16092741 rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationEnvironment ,
:EMMO_ea7f0dd1-87af-5147-a9b9-b085e22a2e06 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Nanoindenter chamber is a nanoindentation components, which is usually a closed system with standard temperature and humidity, that also offers acoustic protection to isolate the measurement environment from the external noise."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "Nanoindenter chamber is a specific protected volume using structural materials to support specific temperature/humidity requirements, apply vacuum, isolate the measurement environment from the external noise. "@en ;
rdfs:label "NanoindenterChamber"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindenterChamber"@en .
### http://emmo.info/emmo/nanoind#EMMO_a45dfdb9-7459-4bb9-a712-8a24b85afd1d
:EMMO_a45dfdb9-7459-4bb9-a712-8a24b85afd1d rdf:type owl:Class ;
rdfs:subClassOf :EMMO_84470b1f-4d4a-46c8-931a-0a8627a4b997 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "An integer value that is used to count and indicate each of the nanoindentation event number."@en ;
rdfs:label "NanoindentationIndex"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationIndex"@en .
### http://emmo.info/emmo/nanoind#EMMO_a4af3c85-56db-447e-ab7e-d2b6fb784071
:EMMO_a4af3c85-56db-447e-ab7e-d2b6fb784071 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_6e3f1c2d-e82d-4fc4-a3e7-1de969667f81 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the rate of the indenter head movement while penetrating the sample (signaled by exceeding the trigger force settled for the measurement), before the control parameter of the measurement is triggered, and the measurement stops."@en ;
rdfs:label "TipLoadRate"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "TipLoadRate"@en .
### http://emmo.info/emmo/nanoind#EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e
:EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e rdf:type owl:Class ;
rdfs:subClassOf :EMMO_126fef72-87ce-4b4f-8516-6b3513366b58 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The indenter tip is a conical or spherical or conospherical shaped tip and is build using diamond or metal materials, which dependends on the application, the force/displacement requirements, and the mechanical behavior of the sample material." ;
rdfs:label "IndenterTip" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "IndenterTip"@en .
### http://emmo.info/emmo/nanoind#EMMO_a678c7cc-6026-46ce-b22d-73ff5d996dbd
:EMMO_a678c7cc-6026-46ce-b22d-73ff5d996dbd rdf:type owl:Class ;
rdfs:subClassOf :EMMO_0f83ef8d-abaf-4e8d-a449-67d36cb29a23 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The height of the continuous stiffness nanoindentation measurement frequency, which corresponds to the maximum force applied by a point on a vibrating body or wave measured from its equilibrium position (of each \"cycle\"). This is usually used as the region where the nanomechanical properties are extracted in continuous stiffness measurement mode."@en ;
rdfs:label "Magnitude"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Magnitude"@en .
### http://emmo.info/emmo/nanoind#EMMO_a69e8716-a4a6-4473-a59f-146ebd991fa6
:EMMO_a69e8716-a4a6-4473-a59f-146ebd991fa6 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_e78d6d05-c2d4-48a5-be30-e2a9df3d7852 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Nanoindentation contact depth describes the actual depth of contact during nanoindentation."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The contact depth is calculated by subtracting from the recorded depth the elastic depth, which corresponds to the product of epsilon parameter (related to tip geometry - for Berkovich is 0.75) with applied load and devided by stiffness."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The depth measured during the indentation (h) includes the depression of the sample around the indentation, in addition to the contact depth."@en ;
rdfs:label "NanoindentationContactDepth"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationContactDepth"@en .
### http://emmo.info/emmo/nanoind#EMMO_a75177d7-80ed-4c1f-89f9-20e29cbbcb03
:EMMO_a75177d7-80ed-4c1f-89f9-20e29cbbcb03 rdf:type owl:Class ;
rdfs:subClassOf chameo:PostProcessingModel ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A statistical model is a mathematical model that embodies a set of statistical assumptions concerning the generation of sample data. A statistical model represents, often in considerably idealized form, the data-generating process."@en ;
rdfs:label "StatisticsModel"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "StatisticsModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_aa90561a-0d28-4381-824a-7c827c627e56
:EMMO_aa90561a-0d28-4381-824a-7c827c627e56 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4977ec05-3708-4e29-8d05-7a11742a2dca ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the length and width of the indentation pattern, which will be localised in the sample to form and test the region of interest."@en ;
rdfs:label "GridDimensions"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "GridDimensions"@en .
### http://emmo.info/emmo/nanoind#EMMO_aab92d22-65e0-4352-af99-54bab5a17e17
:EMMO_aab92d22-65e0-4352-af99-54bab5a17e17 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_755dd2db-9d48-42b9-8f68-fffe55cb6edb ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A clustering model is an algorithm that uses a specific criterion to group data after a number of iterations set by the user in a number of groups that comes up natural or is provided by the user upon the use of a data-driven indicator."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "k-mean clustering algorithm is used to model normalised data into groups using the criterion of Euclidean distance."@en ;
rdfs:label "ClusteringModel"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ClusteringModel"@en .
### http://emmo.info/emmo/nanoind#EMMO_ac43b918-1cf3-4f5e-9ef8-7a2c824de9d6
:EMMO_ac43b918-1cf3-4f5e-9ef8-7a2c824de9d6 rdf:type owl:Class ;
rdfs:subClassOf chameo:PrimaryData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It corresponds to the nanoindentation raw data which were sorted using specific if/else conditions."@en ;
rdfs:label "FilteredData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "FilteredData"@en .
### http://emmo.info/emmo/nanoind#EMMO_aceac63c-c061-4351-b940-a08531472dda
:EMMO_aceac63c-c061-4351-b940-a08531472dda rdf:type owl:Class ;
rdfs:subClassOf :EMMO_a75177d7-80ed-4c1f-89f9-20e29cbbcb03 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "In probability theory, a probability density function, density function, or density of an absolutely continuous random variable, is a function whose value at any given sample in the sample space can be interpreted as providing a relative likelihood that the value of the random variable would be equal to that sample."@en ;
rdfs:label "ProbabilityDistributionFunction"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ProbabilityDistributionFunction"@en .
### http://emmo.info/emmo/nanoind#EMMO_b14e3441-698e-43d5-9447-2e46f1219260
:EMMO_b14e3441-698e-43d5-9447-2e46f1219260 rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationHardwareSpecification ;
rdfs:label "IndenterFrameProperty"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "IndenterFrameProperty"@en .
### http://emmo.info/emmo/nanoind#EMMO_b22303b1-dbbe-5ce5-8c37-ef6a6c9258bc
:EMMO_b22303b1-dbbe-5ce5-8c37-ef6a6c9258bc rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationProperty ,
:EMMO_130d4ec1-18f5-5752-80e8-6a0ad583e5ff ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The indentation modulus quantifies the elastic response detected by nanoindentation of a material subjected to the action of a concentrated load in a single point."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The reduced modulus is a measure of the material's stiffness and can be used to compare the mechanical properties of a material with those of other."@en ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "The reduced modulus Er is related to the Young's modulus E with the simple equation E* = E/(1−v^2), where v is the sample's Poisson's ratio."@en ;
rdfs:label "ReducedElasticModulus"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ReducedElasticModulus"@en .
### http://emmo.info/emmo/nanoind#EMMO_b26331f9-2ac3-50ea-9036-07b79d0a011a
:EMMO_b26331f9-2ac3-50ea-9036-07b79d0a011a rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationMethod ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_09591a7a-39f9-550f-8b87-77bb34f4fb2f
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a ;
owl:someValuesFrom :EMMO_a518471c-b749-5c03-bc7e-04f2aba1906e
] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironment ;
owl:someValuesFrom :EMMO_a2105b87-83f0-5656-a1be-992a16092741
] ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Nanoindentation (known also as nanoindentation test) is a method for testing the hardness and related mechanical properties of materials, facilitated by high-precision instrumentation in the nanometer scale, as well as analytical and computational algorithms for result evaluation."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "By definition, when someone performs nanoindentation, it refers to either quasistatic or continuous stiffness measurement. However, in reality with a nanoindenter someone can usually perform scratch testing, scanning probe microscopy, and apply non-contact surface energy mapping, which might also some times refer as nanoindentation, because they are measurements, which are conducted using an nanoindenter."@en ;
rdfs:label "Nanoindentation"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "Indentation"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Nanoindentation"@en .
### http://emmo.info/emmo/nanoind#EMMO_b3111cf6-107c-4aa6-8f3c-936348906200
:EMMO_b3111cf6-107c-4aa6-8f3c-936348906200 rdf:type owl:Class ;
rdfs:subClassOf chameo:CharacterisationMeasurementProcess ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "It is the procedure of testing a sample by using a tip to penetrate the surface while recording the force signal vs displacement and characterise the sample stiffness. The measurement can have zero oscilation frequency, termed quasistatic, or higher than zero, termed as continuous stiffness measurement." ;
rdfs:label "NanoindentationMeasurement"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationMeasurement"@en .
### http://emmo.info/emmo/nanoind#EMMO_b4937b84-bf09-5399-8781-6b6f55fa3011
:EMMO_b4937b84-bf09-5399-8781-6b6f55fa3011 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_4ab8c0cf-18aa-4e4f-9f13-8a072bd7cbd3 ,
:EMMO_cccafce4-fffe-55d6-bac4-8e4a4bdb48ce ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Stiffness fitting is the linear regression used in quasistatic nanoindentation to extract the stiffness of the sample within the range of 98-80% of the subsequent load or displacement value in the unloading load-displacement curve."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "StiffnessFitting"@en .
### http://emmo.info/emmo/nanoind#EMMO_b5f7403b-c469-5ac2-b1bd-95742e806c70
:EMMO_b5f7403b-c469-5ac2-b1bd-95742e806c70 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_b3111cf6-107c-4aa6-8f3c-936348906200 ;
emmo:EMMO_c7b62dd7_063a_4c2a_8504_42f7264ba83f "A quasi-static nanoindentation test is performed by applying and removing a load to a sample in a highly controlled manner with a geometrically well-defined probe."@en ;
rdfs:label "QuasistaticMeasurement" ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "QuasistaticMeasurement"@en .
### http://emmo.info/emmo/nanoind#EMMO_b7264717-216e-46c6-9bf1-b17009a358c2
:EMMO_b7264717-216e-46c6-9bf1-b17009a358c2 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationProcess ;
rdfs:label "NanoindentationCalibrationProcess"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationCalibrationProcess"@en .
### http://emmo.info/emmo/nanoind#EMMO_c5ca1331-654c-5c5f-b272-ec821e2b86b4
:EMMO_c5ca1331-654c-5c5f-b272-ec821e2b86b4 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_b4937b84-bf09-5399-8781-6b6f55fa3011 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Zero contact point extrapolation is the linear regression fitted in continuous stiffness measurement in nanoindentation to identify the zero depth of the initiation of tip-sample contact in nanoindentation experiment at a specified critical contact force value ranges, used to calculate the intercept with the x-axis as the real zero contact point of the measurement."@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "ZeroContactPointExtrapolation"@en .
### http://emmo.info/emmo/nanoind#EMMO_c66619a6-9ba1-499e-8ff5-96774774e574
:EMMO_c66619a6-9ba1-499e-8ff5-96774774e574 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "The nanoindentation data from a nanoindentation calibration test on reference sample with known indentation modulus and hardness, specifically contact depth and contact area, used to establish a function that describes the real geometry of the tip, and more specifically the tip's area, is called Tip Area Function."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "DisplacementCalibrationData are used to establish a polynomial regression function; the Tip Area Function. In order for the nanomechanical properties to be calculated correctly when testing a new sample, a calibration is conducted in order to obtain the Tip-Area-Function prior to every set of measurements."@en ;
rdfs:label "DisplacementCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "AreaFunctionCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "DisplacementCalibrationData"@en .
### http://emmo.info/emmo/nanoind#EMMO_c685ca8f-d20b-5e80-886e-6dcb018bf3ff
:EMMO_c685ca8f-d20b-5e80-886e-6dcb018bf3ff rdf:type owl:Class ;
rdfs:subClassOf :EMMO_755dd2db-9d48-42b9-8f68-fffe55cb6edb ,
:EMMO_a75177d7-80ed-4c1f-89f9-20e29cbbcb03 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Regression corresponds to the family of linear and non-linear models that can be used to describe the relationship of two or more variables."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "In machine learning the regression can be used to model more than or just one parameter, similar to statistics, in order to establish a relation to correlate the input parameters with an output, i.e. characterisation properties with phases. The regression can give the possibility for example in metals for a phase to be martensite, which can be 20%, and compared to the other potential phase, when the algorithm is fixed to assign values < 50% to 0, then from regression the algorithm performs classification (the output is that the phase is not classifies as martensite)."@en ;
rdfs:label "Regression"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "Regression"@en .
### http://emmo.info/emmo/nanoind#EMMO_c7e18278-0e6d-4e83-b696-ef63d3664ca9
:EMMO_c7e18278-0e6d-4e83-b696-ef63d3664ca9 rdf:type owl:Class ;
rdfs:subClassOf chameo:CalibrationData ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "X,Y coordinates that are drift corrected after the optical calibration of the distance between the indenter tip and the optical microscope."@en ;
emmo:EMMO_b432d2d5_25f4_4165_99c5_5935a7763c1a "The user performs some reference indents, for which the centre of the indents is used by the user as an input to the software to correct any deviations in X and Y axis and refine the (X,Y) data."@en ;
rdfs:label "OffsetCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "TiptoOpticsCalibrationData"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "OffsetCalibrationData"@en .
### http://emmo.info/emmo/nanoind#EMMO_c964dced-f886-4728-9d4b-fbf46451fde5
:EMMO_c964dced-f886-4728-9d4b-fbf46451fde5 rdf:type owl:Class ;
rdfs:subClassOf :EMMO_8563a29b-e1d0-48d5-9875-826519c5596a ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "A contour plot that depicts the indentation modulus change with coordinates of testing (x,y) in 2D or 3D if depth parameter is included, and a colour gradient is used to indicate the relative variation of indentation modulus."@en ;
rdfs:label "NanoindentationModulusMap"@en ;
<http://www.w3.org/2004/02/skos/core#prefLabel> "NanoindentationModulusMap"@en .
### http://emmo.info/emmo/nanoind#EMMO_ca811644-f6da-5c3a-8474-824bf0c3520f
:EMMO_ca811644-f6da-5c3a-8474-824bf0c3520f rdf:type owl:Class ;
rdfs:subClassOf chameo:Detector ;