forked from mtconnect/cppagent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.tex
8623 lines (6745 loc) · 215 KB
/
terms.tex
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
\newglossaryentry{abstimeseries}
{
type=mtc,
category=model,
name= {AbsTimeSeries},
description= {It is an abstract type element and will be replaced in the \gls*{mtconnectstreams} document by the element name derived from the \gls*{type} attribute defined for the associated \gls*{dataitem} element defined in the \gls*{mtconnectdevices} document}
}
\newglossaryentry{abstractconfiguration}
{
type=mtc,
name= {AbstractConfiguration},
category=model,
kind={configuration},
description= {It is an abstract type XML element. It will never appear in the XML document representing a piece of equipment. }
}
\newglossaryentry{actuator}
{
type=mtc,
category=model,
name={Actuator},
kind={component},
description={Redefined as a piece of equipment with the ability to be represented as a \gls*{lower level} component of a parent \gls*{component} element or as a \gls*{composition} element. See \gls*{actuator type}}
}
\newglossaryentry{actual subtype}
{
type= mtc,
category=model,
name={ACTUAL},
kind={subtype},
description={The measured value of the data item type given by a sensor or encoder.}
}
\newglossaryentry{errors}
{
type=mtc,
category=model,
name= {Errors},
kind={element},
elements={\gls*{error}},
description={An XML container element in an \gls*{mtconnecterrors response document} provided by an \gls*{agent} when an error is encountered associated with a \gls*{request} for information from a client software application.}
}
\newglossaryentry{error}
{
type=mtc,
category=model,
name= {Error},
kind={element},
attributes={\gls*{errorcode}},
description={An \gls*{error}, XML element, occurs while interpreting a \gls*{request} for information from a client software application or when an \gls*{agent} experiences an error while publishing the \gls*{response} to a \gls*{request} for information.}
}
\newglossaryentry{errorcode}
{
type=mtc,
category=model,
name= {errorCode},
kind={attribute},
enumeration={\gls*{assetnotfound value},\gls*{internalerror value},\gls*{invalidrequest value},\gls*{invaliduri value},\gls*{invalidxpath value},\gls*{nodevice value},\gls*{outofrange value},\gls*{queryerror value},\gls*{toomany value},\gls*{unauthorized value},\gls*{unsupported value}},
description={Provides a descriptive code that indicates the type of error that was encountered by an \gls*{agent}.}
}
\newglossaryentry{auxiliaries}
{
type=mtc,
category=model,
name= {Auxiliaries},
kind={component},
description={An XML container used to organize information for \gls*{lower level} elements representing functional sub-systems that provide supplementary or extended capabilities for a piece of equipment, but they are not required for the basic operation of the equipment.}
}
\newglossaryentry{axes}
{
type=mtc,
category=model,
name= {Axes},
kind={component},
description={An XML container used to organize the \glspl*{structural element} of a piece of equipment that perform linear or rotational motion.}
}
\newglossaryentry{electric}
{
type=mtc,
category=model,
name={Electric},
kind={systems,component},
description={\gls*{electric} is an XML container that represents the information for the main power supply for device piece of equipment and the distribution of that power throughout the equipment. }
}
\newglossaryentry{loader}
{
type=mtc,
category=model,
name={Loader},
kind={auxiliaries,component},
description={\gls*{loader} is an XML container that represents the information for a unit comprised of all the parts involved in moving and distributing materials, parts, tooling, and other items to or from a piece of equipment.}
}
\newglossaryentry{wastedisposal}
{
type=mtc,
category=model,
name={WasteDisposal},
kind={auxiliaries,component},
description={\gls*{wastedisposal} is an XML container that represents the information for a unit comprised of all the parts involved in removing manufacturing byproducts from a piece of equipment.
}
}
\newglossaryentry{toolingdelivery}
{
type=mtc,
category=model,
name={ToolingDelivery},
kind={auxiliaries,component},
description={\gls*{toolingdelivery} is an XML container that represents the information for a unit involved in managing, positioning, storing, and delivering tooling within a piece of equipment.
}
}
\newglossaryentry{environmental}
{
type=mtc,
category=model,
name={Environmental},
kind={auxiliaries,component},
description={\gls*{environmental} is an XML container that represents the information for a unit or function involved in monitoring, managing, or conditioning the environment around or within a piece of equipment.}
}
\newglossaryentry{barfeeder}
{
type=mtc,
category=model,
name={BarFeeder},
kind={auxiliaries,component},
description={\gls*{barfeeder} is an XML container that represents the information for a unit involved in delivering bar stock to a piece of equipment.}
}
\newglossaryentry{units}
{
type=mtc,
category=model,
name={units},
kind={attribute},
description={The unit of measurement for the reported value of the data item.}
}
\newglossaryentry{buffersize}
{
type=mtc,
category=model,
name={bufferSize},
kind={attribute},
description={A value representing the maximum number of \glspl*{data entity} that \MAY be retained in the \gls*{agent} that published the \gls*{response document} at any point in time.}
}
\newglossaryentry{nextsequence}
{
type=mtc,
category=model,
name={nextSequence},
kind={attribute},
description={A number representing the sequence number of the piece of \gls*{streaming data} that is the next piece of data to be retrieved from the buffer of the \gls*{agent} that was not included in the \gls*{response document} published by the \gls*{agent}.}
}
\newglossaryentry{lastsequence}
{
type=mtc,
category=model,
name={lastSequence},
kind={attribute},
description={A number representing the sequence number assigned to the last piece of \gls*{streaming data} that was added to the buffer of the \gls*{agent} immediately prior to the time that the \gls*{agent} published the \gls*{response document}.}
}
\newglossaryentry{firstsequence}
{
type=mtc,
category=model,
name={firstSequence},
kind={attribute},
description={A number representing the sequence number assigned to the oldest piece of \gls*{streaming data} stored in the buffer of the \gls*{agent} immediately prior to the time that the \gls*{agent} published the \gls*{response document}.}
}
\newglossaryentry{calibrationdate}
{
type=mtc,
category=model,
name={CalibrationDate},
kind={element},
description={Date upon which the \gls*{sensor unit} was last calibrated. }
}
\newglossaryentry{nextcalibrationdate}
{
type=mtc,
category=model,
name={NextCalibrationDate},
kind={element},
description={Date upon which the sensor unit is next scheduled to be calibrated. }
}
\newglossaryentry{calibrationinitials}
{
type=mtc,
category=model,
name={CalibrationInitials},
kind={element},
description={The initials of the person verifying the validity of the calibration data.}
}
\newglossaryentry{category}
{
type=mtc,
category=model,
name={category},
kind={attribute},
description={Specifies the kind of information provided by a data item. }
}
\newglossaryentry{channel}
{
type=mtc,
category=model,
name={Channel},
kind={element},
attributes={\gls*{number},\gls*{name}},
elements={\gls*{description},\gls*{calibrationdate},\gls*{nextcalibrationdate},\gls*{calibrationinitials}},
description={\gls*{channel} represents each \gls*{sensing element} connected to a \gls*{sensor unit}.}
}
\newglossaryentry{channels}
{
type=mtc,
category=model,
name={Channels},
kind={element},
elements={\gls*{channel}},
description={When \gls*{sensor} represents multiple \glspl*{sensing element}, each \gls*{sensing element} is represented by a \gls*{channel} for the \gls*{sensor}. \newline \gls*{channels} is an XML container used to organize information for the \glspl*{sensing element}. }
}
\newglossaryentry{character data}
{
type=mtc,
category=model,
name={CharacterData},
description={See \gls*{cdata}}
}
\newglossaryentry{components}
{
type=mtc,
category=model,
name={Components},
elements={\gls*{device}},
kind={element},
description={An XML container that consists of one or more types of \gls*{component} XML elements. }
}
\newglossaryentry{component}
{
type=mtc,
category=model,
name={Component},
kind={element},
attributes={\gls*{id},\gls*{nativename},\gls*{sampleinterval},\gls*{uuid},\gls*{name}},
elements={\gls*{description},\gls*{configuration},\gls*{dataitems},\gls*{components},\glspl*{composition},\gls*{references}},
description={An abstract XML element. Replaced in the XML document by types of \gls*{component} elements representing physical parts and logical functions of a piece of equipment.}
}
\newglossaryentry{component componentstream}
{
type=mtc,
category=model,
name={component},
description={\gls*{component componentstream} identifies the \gls*{structural element} (\gls*{device}, \gls*{top level} \gls*{component}, or \gls*{lower level} \gls*{component}) associated with the \gls*{componentstream} element.}
}
\newglossaryentry{componentid}
{
type=mtc,
category=model,
name={componentId},
kind={attribute},
description={The identifier attribute of the \gls*{component} element that represents the physical part of a piece of equipment where the data represented by the \gls*{dataitem} element originated.}
}
\newglossaryentry{componentref}
{
type=mtc,
category=model,
name={ComponentRef},
kind={reference},
description={\gls*{componentref} XML element is a pointer to all of the information associated with another \gls*{structural element} defined elsewhere in the XML document for a piece of equipment. }
}
\newglossaryentry{componentstream}
{
type=mtc,
category=model,
name={ComponentStream},
description={An XML container type element that organizes data returned from an \gls*{agent} in response to a \gls*{current httprequest} or \gls*{sample httprequest} HTTP request.}
}
\newglossaryentry{composition}
{
type=mtc,
category=model,
name={Composition},
kind={element},
attributes={\gls*{id},\gls*{uuid},\gls*{name},\gls*{type}},
elements={\gls*{description}},
description={An XML element used to describe the lowest level structural building blocks contained within a \gls*{component} element.}
}
\newglossaryentry{compositions}
{
type=mtc,
category=model,
name={Compositions},
kind={element},
description={An XML container consisting of one or more types of \gls*{composition} XML elements.},
elements={\gls*{composition}}
}
\newglossaryentry{conditions}
{
type=mtc,
category=model,
name={Condition},
description={An XML container type element that organizes the data reported in the \gls*{mtconnectstreams} document for \gls*{dataitem} elements defined in the \gls*{mtconnectdevices} document with a \gls*{category} attribute of \gls*{condition category}.}
}
\newglossaryentry{condition}
{
type=mtc,
category=model,
name={Condition},
description={An XML element which provides the information and data reported from a piece of equipment for those \gls*{dataitem} elements defined with a \gls*{category} attribute of \gls*{condition category} in the \gls*{mtconnectdevices} document.}
}
\newglossaryentry{constraint}
{
type=mtc,
name={Constraint},
kind={element},
category=model,
description={A \gls*{constraint} is used by a software application to evaluate the validity of the reported data.}
}
\newglossaryentry{constraints}
{
type=mtc,
name={Constraints},
kind={element},
category=model,
description={\gls*{constraints} is an optional container that provides a set of expected values that can be reported for this \gls*{dataitem}.},
elements={\gls*{value},\gls*{maximum},\gls*{minimum},\gls*{nominal}}
}
\newglossaryentry{configuration}
{
type=mtc,
category=model,
name={Configuration},
description={An XML element that contains technical information about a piece of equipment describing its physical layout or functional characteristics.},
kind={element}
}
\newglossaryentry{current request}
{
type=mtc,
name={Current Request},
description={An \glstext{http} request to the \gls*{agent} for returning latest known values for the \gls*{dataitem} as an \gls*{mtconnectstreams} \glstext{xml} document}
}
\newglossaryentry{current httprequest}
{
type=mtc,
category=model,
name={current},
description={Used in the path portion of an \gls*{http request line}, by a client software application, to initiate a \gls*{current request} to an \gls*{agent} to publish an \gls*{mtconnectstreams} document.}
}
\newglossaryentry{asset httprequest}
{
type=mtc,
category=model,
name={asset},
plural={assets},
description={Used in the path portion of an \gls*{http request line}, by a client software application, to initiate an \gls*{asset request} to an \gls*{agent} to publish an \gls*{mtconnectassets} document.}
}
\newglossaryentry{dataitem}
{
type=mtc,
name={DataItem},
kind={element},
attributes={\gls*{name},\gls*{id},\gls*{type},\gls*{subtype},\gls*{statistic},\gls*{units},\gls*{nativeunits},\gls*{nativescale},\gls*{category},\gls*{coordinatesystem},\gls*{compositionid},\gls*{samplerate},\gls*{representation},\gls*{significantdigits}},
category=model,
description={\gls*{data entity} describing a piece of information reported about a piece of equipment.}
}
\newglossaryentry{dataitems}
{
type=mtc,
name={DataItems},
kind={element},
elements={\gls*{dataitem}},
category=model,
description={An XML container consisting of one or more types of \gls*{dataitem} XML elements.}
}
\newglossaryentry{dataitemid}
{
type=mtc,
category=model,
name={dataItemId},
kind={attribute},
description={The identifier attribute of the \gls*{dataitem} that represents the originally measured value of the data referenced by this data item.}
}
\newglossaryentry{dataitemref}
{
type=mtc,
category=model,
name={DataItemRef},
kind={reference},
description={\gls*{dataitemref} XML element is a pointer to a \gls*{data entity} associated with another \gls*{structural element} defined elsewhere in the XML document for a piece of equipment.}
}
\newglossaryentry{description}
{
type=mtc,
name={Description},
category=model,
description={An XML element that can contain any descriptive content.},
kind={element},
attributes={\gls*{manufacturer},\gls*{model},\gls*{serialnumber},\gls*{station}}
}
\newglossaryentry{device}
{
type=mtc,
category=model,
name={Device},
description={The primary container element for each piece of equipment. \gls*{device} is organized within the \gls*{devices} container.},
kind={element},
attributes={\gls*{id},\gls*{nativename},\gls*{sampleinterval},\gls*{uuid},\gls*{name}},
elements={\gls*{description},\gls*{configuration},\gls*{dataitems},\gls*{components},\glspl*{composition},\glspl*{reference}}
}
\newglossaryentry{devices}
{
type=mtc,
category=model,
name={Devices},
description={The first, or highest level, \gls*{structural element} in a \gls*{mtconnectdevices} document.},
elements={\gls*{device}},
kind={element}
}
\newglossaryentry{devicestream}
{
type=mtc,
category=model,
name={DeviceStream},
description={An XML container element provided in the \gls*{streams} container in the \gls*{mtconnectstreams} document.}
}
\newglossaryentry{discrete representation}
{
type=mtc,
category=model,
name={DISCRETE},
kind={representation},
description={A \gls*{data entity} where each discrete occurrence of the data may have the same value as the previous occurrence of the data.}
}
\newglossaryentry{duration}
{
type=mtc,
category=model,
name={duration},
description={The time-period over which the data was collected.}
}
\newglossaryentry{event}
{
type=mtc,
category=model,
name={Event},
description={An XML element which provides the information and data reported from a piece of equipment for those \gls*{dataitem} elements defined with a \gls*{category} attribute of \gls*{event category} in the \gls*{mtconnectdevices} document.}
}
\newglossaryentry{events}
{
type=mtc,
category=model,
name={Events},
description={An XML container type element that organizes the data reported in the \gls*{mtconnectstreams} document for \gls*{dataitem} elements defined in the \gls*{mtconnectdevices} document with a \gls*{category} attribute of \gls*{event category}.}
}
\newglossaryentry{filter}
{
type=mtc,
category=model,
kind={element},
name={Filter},
description={\gls*{filter} provides a means to control when an \gls*{agent} records updated information for a data item.}
}
\newglossaryentry{filters}
{
type=mtc,
category=model,
kind={element},
name={Filters},
description={An XML container consisting of one or more types of \gls*{filter} XML elements.},
elements={\gls*{filter}}
}
\newglossaryentry{firmwareversion}
{
type=mtc,
category=model,
name={FirmwareVersion},
kind={element},
description={Version number for the sensor unit as specified by the manufacturer.}
}
\newglossaryentry{header}
{
type=mtc,
category=model,
name={Header},
kind={element},
description={An XML container in an \gls*{mtconnect response document} that provides information from an \gls*{agent} defining version information, storage capacity, and parameters associated with the data management within the \gls*{agent}.}
}
\newglossaryentry{id}
{
type=mtc,
category=model,
name={id},
description={The unique identifier for this element.}
}
\newglossaryentry{idref}
{
type=mtc,
category=model,
name={idRef},
description={A pointer to the \gls*{id} attribute of an element that contains the information to be associated with this XML element.}
}
\newglossaryentry{initialvalue}
{
name={InitialValue},
category=model,
type=mtc,
kind={element},
description={\gls*{initialvalue} is an optional XML element that defines the starting value for a data item as well as the value to be set for the data item after a reset event.}
}
\newglossaryentry{interfaces}
{
type=mtc,
name={interfaces},
description={\citetitle{MTCPart5} provides an interaction model for coordinating activities between manufacturing devices}
}
\newglossaryentry{interface component}
{
type=mtc,
category=model,
name={Interface},
kind={component},
description={Each \gls*{interface component} contains \glspl*{data entity} available from the piece of equipment that may be needed to coordinate activities with associated pieces of equipment.}
}
\newglossaryentry{interfaces component}
{
type=mtc,
category=model,
name={Interfaces},
kind={component},
description={An XML container that organizes information used to coordinate actions and activities between pieces of equipment that communicate information between each other. }
}
\newglossaryentry{linear}
{
type=mtc,
category=model,
name={Linear},
kind={axes,component},
description={A \gls*{linear} axis represents the movement of a physical piece of equipment, or a portion of the equipment, in a straight line. }
}
\newglossaryentry{lower camel case}
{
type=mtc,
name={Lower Camel Case},
description={the first word is lowercase and the remaining words are capitalized and all spaces between words are removed.}
}
\newglossaryentry{lower level}
{
type=mtc,
name={Lower Level},
description={A nested element that is below a higher level element.}
}
\newglossaryentry{machine}
{
type=mtc,
category=model,
name={MACHINE},
kind={coordinatesystem},
description={An unchangeable coordinate system that has machine zero as its origin.}
}
\newglossaryentry{manufacturer}
{
type=mtc,
category=model,
name={manufacturer},
description={The name of the manufacturer of the physical or logical part of a piece of equipment represented by an XML element.}
}
\newglossaryentry{maximum}
{
type=mtc,
category=model,
name={Maximum},
kind={element},
description={The upper limit of data reported for a data item.}
}
\newglossaryentry{minimum}
{
type=mtc,
category=model,
name={Minimum},
kind={element},
description={The lower limit of data reported for a data item.}
}
\newglossaryentry{minimumdelta}
{
type=mtc,
category=model,
name={MINIMUM\_DELTA},
kind={filter},
description={For \gls*{filter} \gls*{minimumdelta}, a new value \MUSTNOT be reported for a data item unless the measured value has changed from the last reported value by at least the delta given as the \gls*{cdata} of this element.}
}
\newglossaryentry{modbus}
{
type=mtc,
name={MODBUS},
description={Modbus is a communication protocol developed by Modicon systems and is a method used for transmitting information over serial lines between electronic devices.}
}
\newglossaryentry{model}
{
type=mtc,
category=model,
name={model},
description={The model description of the physical part or logical function of a piece of equipment represented by this XML element.}
}
\newglossaryentry{mtconnect}
{
type=mtc,
name={MTConnect},
description={The name of the standard.}
}
\newglossaryentry{mtconnect standard}
{
type=mtc,
name={MTConnect Standard},
description={The name of the standard.}
}
\newglossaryentry{mtconnect asset}
{
type=mtc,
name={MTConnect Asset},
description={See \gls*{asset}}
}
\newglossaryentry{mtconnectdevices}
{
type=mtc,
category=model,
name={MTConnectDevices},
description={It is the root XML element of an \gls*{mtconnectdevices response document}.}
}
\newglossaryentry{mtconnectstreams}
{
type=mtc,
category=model,
name={MTConnectStreams},
description={It is the root XML element of an \gls*{mtconnectstreams response document}.}
}
\newglossaryentry{mtconnecterror}
{
type=mtc,
category=model,
name={MTConnectError},
description={It is the root XML element of an \gls*{mtconnecterrors response document}.}
}
\newglossaryentry{name}
{
type=mtc,
category=model,
name={name},
kind={attribute},
description={The name of an element or a piece of equipment.}
}
\newglossaryentry{nativename}
{
type=mtc,
category=model,
name={nativeName},
description={The common name normally associated with a piece of equipment or an element.}
}
\newglossaryentry{nativescale}
{
type=mtc,
category=model,
name={nativeScale},
kind={attribute},
description={\gls*{nativescale} \MAY be used to convert the reported value to represent the original measured value.}
}
\newglossaryentry{nativecode}
{
type=mtc,
category=model,
name={nativeCode},
description={The native code (usually an alpha-numeric value) generated by the controller of a piece of equipment or the element.}
}
\newglossaryentry{nativeseverity}
{
type=mtc,
category=model,
name={nativeSeverity},
description={If the piece of equipment designates a severity level to a fault, \gls*{nativeseverity} reports that severity information to a client software application. }
}
\newglossaryentry{nativeunits}
{
type=mtc,
category=model,
name={nativeUnits},
description={The native units of measurement for the reported value of the data item.}
}
\newglossaryentry{nominal}
{
type=mtc,
category=model,
name={Nominal},
kind={element},
description={The target or expected value for this data item.}
}
\newglossaryentry{occurrence}
{
type=mtc,
name={Occurrence},
description={Occurrence defines the number of times the content defined in the tables \MAY be provided in the usage case specified},
plural={Occurrences}
}
\newglossaryentry{number}
{
type=mtc,
category=model,
name={number},
description={A unique identifier that will only refer to a specific \gls*{sensing element}.}
}
\newglossaryentry{ontology}
{
type=mtc,
name={ontology},
description={logical structure of the terms used to describe a domain of knowledge, including both the definitions of the applicable terms and their relationships ISO 20534:2018}
}
\newglossaryentry{pascal case}
{
type=mtc,
name={Pascal Case},
description= {The first letter of each word is capitalized and the remaining letters are in lowercase. All space is removed between letters}
}
\newglossaryentry{path}
{
type=mtc,
category=model,
name={Path},
kind={controller,component},
description= {\gls*{path} is an XML container that represents the information for an independent operation or function within a \gls*{controller}.}
}
\newglossaryentry{period}
{
type=mtc,
category=model,
name={PERIOD},
kind={filter},
description={The data reported for a data item with this \gls*{filter} is provided on a periodic basis.}
}
\newglossaryentry{probe httprequest}
{
type=mtc,
category=model,
name={probe},
description={The form \gls*{probe httprequest} is used to designate a \gls*{probe request} in the path portion of an \gls*{http request line}.}
}
\newglossaryentry{probe request}
{
type=mtc,
name={Probe Request},
description={An \glstext{http} request to the \gls*{agent} for returning metadata as an \gls*{mtconnectdevices} \glstext{xml} document}
}
\newglossaryentry{qname}
{
type=mtc,
category=model,
name={QName},
description={A \gls*{qname}, or qualified name, is the fully qualified name of an element, attribute, or identifier in an XML document. A \gls*{qname} concisely associates the URI of an XML namespace with the local name of an element, attribute, or identifier in that namespace.}
}
\newglossaryentry{qualifier}
{
type=mtc,
category=model,
name={qualifier},
kind={attribute},
description={\gls*{qualifier} provides additional information regarding a \gls*{fault state} associated with the measured value of a process variable.}
}
\newglossaryentry{realization}
{
type=mtc,
name={Realization},
description={Realization is a specialized abstraction relationship between two sets of model elements, one representing a specification (the supplier) and the other represents an implementation of the latter (the client). Realization can be used to model stepwise refinement, optimizations, transformations, templates, model synthesis, framework composition, etc.}
}
\newglossaryentry{reference}
{
type=mtc,
category=model,
name={Reference},
kind={element},
attributes={\gls*{idref},\gls*{name}},
description={\gls*{reference} is a pointer to information that is associated with another \gls*{structural element} defined elsewhere in the XML document for a piece of equipment.}
}
\newglossaryentry{references}
{
type=mtc,
category=model,
name={References},
kind={element},
elements={\gls*{reference}},
description={An XML container consisting of one or more types of \gls*{reference} XML elements.}
}
\newglossaryentry{representation}
{
type=mtc,
category=model,
name={representation},
kind={attribute},
description={Description of a means to interpret data consisting of multiple data points or samples reported as a single value. \newline \gls*{representation} is an optional attribute. \newline \gls*{representation} will define a unique format for each set of data. \newline \gls*{representation} for \gls*{timeseries representation}, \gls*{discrete representation}, and \gls*{value representation} are defined in \citetitle{MTCPart2} \textit{Section 7.2.2.12}. \newline If \gls*{representation} is not specified, it \MUST be determined to be \gls*{value representation}.}
}
\newglossaryentry{resettrigger}
{
type=mtc,
category=model,
name={ResetTrigger},
kind={element},
description={\gls*{resettrigger} is an optional XML element that identifies the type of event that may cause a reset to occur. It is additional information regarding the meaning of the data that establishes an understanding of the time frame that the data represents so that the data may be correctly understood by a client software application.}
}
\newglossaryentry{resettriggered}
{
type=mtc,