forked from COVESA/vehicle_signal_specification
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunits.yaml
More file actions
630 lines (568 loc) · 17 KB
/
Copy pathunits.yaml
File metadata and controls
630 lines (568 loc) · 17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
# This file defines units supported in the VSS standard catalog
# See VSS documentation for information on syntax and intended content
# Length
mm:
definition: Length measured in millimeters
unit: millimeter
quantity: length
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MilliM
quantity-kind: https://qudt.org/vocab/quantitykind/Length
cm:
definition: Length measured in centimeters
unit: centimeter
quantity: length
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/CentiM
quantity-kind: https://qudt.org/vocab/quantitykind/Length
m:
definition: Length measured in meters
unit: meter
quantity: length
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/M
quantity-kind: https://qudt.org/vocab/quantitykind/Length
km:
definition: Length measured in kilometers
unit: kilometer
quantity: length
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloM
quantity-kind: https://qudt.org/vocab/quantitykind/Length
inch:
definition: Distance measured in inches
unit: inch
quantity: length
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/IN
quantity-kind: https://qudt.org/vocab/quantitykind/Length
# Velocity
km/h:
definition: Velocity measured in kilometers per hours
unit: kilometer per hour
quantity: velocity
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloM-PER-HR
quantity-kind: https://qudt.org/vocab/quantitykind/Velocity
m/s:
definition: Speed measured in meters per second
unit: meters per second
quantity: velocity
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/M-PER-SEC
quantity-kind: https://qudt.org/vocab/quantitykind/Velocity
# Acceleration
m/s^2:
definition: Acceleration measured in meters per second squared
unit: meters per second squared
quantity: acceleration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/M-PER-SEC2
quantity-kind: https://qudt.org/vocab/quantitykind/Acceleration
cm/s^2:
definition: Acceleration measured in centimeters per second squared
unit: centimeters per second squared
quantity: acceleration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/CentiM-PER-SEC2
quantity-kind: https://qudt.org/vocab/quantitykind/Acceleration
# Volume
ml:
definition: Volume measured in milliliters
unit: milliliter
quantity: volume
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MilliL
quantity-kind: https://qudt.org/vocab/quantitykind/Volume
l:
definition: Volume measured in liters
unit: liter
quantity: volume
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/L
quantity-kind: https://qudt.org/vocab/quantitykind/Volume
cm^3:
definition: Volume measured in cubic centimeters
unit: cubic centimeters
quantity: volume
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/CentiM3
quantity-kind: https://qudt.org/vocab/quantitykind/Volume
# Temperature
Celsius:
definition: Temperature measured in degree Celsius
unit: degree Celsius
quantity: temperature
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DEG_C
quantity-kind: https://qudt.org/vocab/quantitykind/Temperature
Fahrenheit:
definition: Temperature measured in degree Fahrenheit
unit: degree Fahrenheit
quantity: temperature
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DEG_F
quantity-kind: https://qudt.org/vocab/quantitykind/Temperature
# Angle
degrees:
definition: Angle measured in degrees
unit: degree
quantity: angle
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/Degree
quantity-kind: https://qudt.org/vocab/quantitykind/Angle
# Angular Speed
degrees/s:
definition: Angular speed measured in degrees per second
unit: degree per second
quantity: angular-speed
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DEG-PER-SEC
quantity-kind: https://qudt.org/vocab/quantitykind/AngularVelocity
rad/s:
definition: Angular speed measured in radians per second
unit: radians per second
quantity: angular-speed
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/RAD-PER-SEC
quantity-kind: https://qudt.org/vocab/quantitykind/AngularVelocity
# Power
W:
definition: Power measured in watts
unit: watt
quantity: power
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/W
quantity-kind: https://qudt.org/vocab/quantitykind/Power
kW:
definition: Power measured in kilowatts
unit: kilowatt
quantity: power
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloW
quantity-kind: https://qudt.org/vocab/quantitykind/Power
PS:
definition: Power measured in horsepower
unit: horsepower
quantity: power
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/HP
quantity-kind: https://qudt.org/vocab/quantitykind/Power
# Work
kWh:
definition: Energy consumption measured in kilowatt hours
unit: kilowatt hours
quantity: work
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloW-HR
quantity-kind: https://qudt.org/vocab/quantitykind/Energy
# Mass
g:
definition: Mass measured in grams
unit: gram
quantity: mass
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/GM
quantity-kind: https://qudt.org/vocab/quantitykind/Mass
kg:
definition: Mass measured in kilograms
unit: kilogram
quantity: mass
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloGM
quantity-kind: https://qudt.org/vocab/quantitykind/Mass
lbs:
definition: Mass measured in pounds
unit: pound
quantity: mass
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/LB
quantity-kind: https://qudt.org/vocab/quantitykind/Mass
# Voltage
V:
definition: Electric potential measured in volts
unit: volt
quantity: voltage
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/V
quantity-kind: https://qudt.org/vocab/quantitykind/Voltage
# Electric Current
A:
definition: Electric current measured in amperes
unit: ampere
quantity: electric-current
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/A
quantity-kind: https://qudt.org/vocab/quantitykind/ElectricCurrent
# Electric Charge
Ah:
definition: Electric charge measured in ampere hours
unit: ampere hours
quantity: electric-charge
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/A_HR
quantity-kind: https://qudt.org/vocab/quantitykind/ElectricCharge
# Duration
ns:
definition: Duration measured in nanoseconds
unit: nanosecond
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/NanoSEC
quantity-kind: https://qudt.org/vocab/quantitykind/Time
us:
definition: Duration measured in microseconds
unit: microsecond
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: https://qudt.org/vocab/unit/MicroSEC
quantity-kind: https://qudt.org/vocab/quantitykind/Time
ms:
definition: Duration measured in milliseconds
unit: millisecond
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MilliSEC
quantity-kind: https://qudt.org/vocab/quantitykind/Time
s:
definition: Duration measured in seconds
unit: second
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/SEC
quantity-kind: https://qudt.org/vocab/quantitykind/Time
min:
unit: minute
definition: Duration measured in minutes
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MIN
quantity-kind: https://qudt.org/vocab/quantitykind/Time
h:
definition: Duration measured in hours
unit: hour
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/HR
quantity-kind: https://qudt.org/vocab/quantitykind/Time
day:
definition: Duration measured in days
unit: days
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DAY
quantity-kind: https://qudt.org/vocab/quantitykind/Time
weeks:
definition: Duration measured in weeks
unit: weeks
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/WK
quantity-kind: https://qudt.org/vocab/quantitykind/Time
months:
definition: Duration measured in months
unit: months
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MO
quantity-kind: https://qudt.org/vocab/quantitykind/Time
years:
definition: Duration measured in years
unit: years
quantity: duration
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/YR
quantity-kind: https://qudt.org/vocab/quantitykind/Time
# Datetime
unix-time:
definition: Number of non-leap seconds which have passed since 00:00:00 UTC on Thursday, 1 January 1970
unit: UNIX Timestamp
quantity: datetime
allowed-datatypes: ['uint32','uint64','int64']
iso8601:
definition: Date and Time expressed as a string according to ISO 8601
unit: ISO 8601
quantity: datetime
allowed-datatypes: ['string']
# Pressure
mbar:
definition: Pressure measured in millibars
unit: millibar
quantity: pressure
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MilliBAR
quantity-kind: https://qudt.org/vocab/quantitykind/VaporPressure
Pa:
definition: Pressure measured in pascal
unit: pascal
quantity: pressure
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/PA
quantity-kind: https://qudt.org/vocab/quantitykind/VaporPressure
kPa:
definition: Pressure measured in kilopascal
unit: kilopascal
quantity: pressure
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloPA
quantity-kind: https://qudt.org/vocab/quantitykind/VaporPressure
psi:
definition: Pressure measured in pounds per square inch
unit: pounds per square inch
quantity: pressure
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/PSI
quantity-kind: https://qudt.org/vocab/quantitykind/VaporPressure
hPa:
definition: Pressure measured in hectopascal
unit: hectopascal
quantity: pressure
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/HectoPA
quantity-kind: https://qudt.org/vocab/quantitykind/AtmosphericPressure
# Rating
stars:
definition: Rating measured in stars
unit: stars
quantity: rating
allowed-datatypes: ['numeric']
# Mass per time
g/s:
definition: Mass per time measured in grams per second
unit: grams per second
quantity: mass-per-time
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/GM-PER-SEC
quantity-kind: https://qudt.org/vocab/quantitykind/MassFlowRate
# Mass per distance
g/km:
definition: Mass per distance measured in grams per kilometers
unit: grams per kilometer
quantity: mass-per-distance
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/GM-PER-KiloM
quantity-kind: https://qudt.org/vocab/quantitykind/MassPerLength
# Energy consumption per distance
kWh/100km:
definition: Energy consumption per distance measured in kilowatt hours per 100 kilometers
unit: kilowatt hours per 100 kilometers
quantity: energy-consumption-per-distance
allowed-datatypes: ['numeric']
Wh/km:
definition: Energy consumption per distance measured in watt hours per kilometer
unit: watt hour per km
quantity: energy-consumption-per-distance
allowed-datatypes: ['numeric']
# Volume per distance
ml/100km:
definition: Volume per distance measured in milliliters per 100 kilometers
unit: milliliter per 100 kilometers
quantity: volume-per-distance
allowed-datatypes: ['numeric']
l/100km:
definition: Volume per distance measured in liters per 100 kilometers
unit: liter per 100 kilometers
quantity: volume-per-distance
allowed-datatypes: ['numeric']
# Volume flow rate
l/h:
definition: Flow measured in liters per hour
unit: liter per hour
quantity: volume-flow-rate
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/L-PER-HR
quantity-kind: https://qudt.org/vocab/quantitykind/VolumeFlowRate
# Distance per volume
mpg-us:
definition: Distance per volume measured in miles per US gallon (3.785 liters)
unit: miles per US gallon
quantity: distance-per-volume
allowed-datatypes: ['numeric']
mpg-uk:
definition: Distance per volume measured in miles per Imperial gallon (4.546 liters)
unit: miles per Imperial gallon
quantity: distance-per-volume
allowed-datatypes: ['numeric']
mpge:
definition: Miles per US gallon gasoline equivalent (33.7 kWh) for electric vehicles
unit: miles per US gallon equivalent
quantity: distance-per-volume
allowed-datatypes: ['numeric']
mpg:
definition: Alias for mpg-us (Distance per volume measured in miles per US gallon)
unit: miles per US gallon (deprecated)
quantity: distance-per-volume
allowed-datatypes: ['numeric']
deprecation: "Deprecated in V6.0 — replaced by 'mpg-us' to distinguish from 'mpg-uk'"
km/l:
definition: Distance per volume measured in kilometers per liter
unit: kilometers per liter
quantity: distance-per-volume
allowed-datatypes: ['numeric']
# Precipitation Rate
mm/h:
definition: Precipitation intensity measured in millimeters per hour
unit: millimeter per hour
quantity: precipitation-rate
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/MilliM-PER-HR
quantity-kind: https://qudt.org/vocab/quantitykind/PrecipitationRate
# Force
N:
definition: Force measured in newton
unit: newton
quantity: force
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/N
quantity-kind: https://qudt.org/vocab/quantitykind/Force
kN:
unit: kilo newton
definition: Force measured in kilo newton
quantity: force
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/KiloN
quantity-kind: https://qudt.org/vocab/quantitykind/Force
# Torque
Nm:
definition: Torque measured in newton meters
unit: newton meter
quantity: torque
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/N-M
quantity-kind: https://qudt.org/vocab/quantitykind/Torque
# Rotational Speed
rpm:
definition: Rotational speed measured in revolutions per minute
unit: revolutions per minute
quantity: rotational-speed
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/REV-PER-MIN
quantity-kind: https://qudt.org/vocab/quantitykind/RotationalVelocity
# Frequency
Hz:
definition: Frequency measured in hertz
unit: Hertz
quantity: frequency
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/HZ
quantity-kind: https://qudt.org/vocab/quantitykind/Frequency
cpm:
definition: Number of cycles per minute
unit: cycles per minute
quantity: frequency
allowed-datatypes: ['numeric']
bpm:
definition: Number of human heart beats per minute
unit: beats per minute
quantity: frequency
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/BEAT-PER-MIN
quantity-kind: https://qudt.org/vocab/quantitykind/HeartRate
# Relation
ratio:
definition: Relation measured as ratio
unit: ratio
quantity: relation
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/ONE-PER-ONE
quantity-kind: https://qudt.org/vocab/quantitykind/DimensionlessRatio
percent:
definition: Relation measured in percent
unit: percent
quantity: relation
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/PERCENT
quantity-kind: https://qudt.org/vocab/quantitykind/DimensionlessRatio
nm/km:
definition: nm/km
unit: nano meter per kilometer
quantity: relation
allowed-datatypes: ['numeric']
dBm:
definition: Power level expressed in decibels with reference to one milliwatt
unit: decibel milliwatt
quantity: relation
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DeciB-MilliW
quantity-kind: https://qudt.org/vocab/quantitykind/Unknown
dB:
definition: Ratio of two values of a physical quantity, usually power or intensity, on a logarithmic scale.
unit: decibel
quantity: relation
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/DeciB
quantity-kind: https://qudt.org/vocab/quantitykind/SoundPowerLevel
# Resistance
Ohm:
definition: Electrical resistance measured in ohms
unit: Ohm
quantity: resistance
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/OHM
quantity-kind: https://qudt.org/vocab/quantitykind/Resistance
# Illuminance
lx:
definition: Light intensity in Lux
unit: lux
quantity: illuminance
allowed-datatypes: ['numeric']
qudt:
unit: http://qudt.org/vocab/unit/LUX
quantity-kind: https://qudt.org/vocab/quantitykind/LuminousFluxPerArea