forked from angularsen/UnitsNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RotationalSpeed.json
88 lines (88 loc) · 2.61 KB
/
RotationalSpeed.json
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
{
"Name": "RotationalSpeed",
"BaseUnit": "RadianPerSecond",
"XmlDocSummary": "Rotational speed (sometimes called speed of revolution) is the number of complete rotations, revolutions, cycles, or turns per time unit. Rotational speed is a cyclic frequency, measured in radians per second or in hertz in the SI System by scientists, or in revolutions per minute (rpm or min-1) or revolutions per second in everyday life. The symbol for rotational speed is ω (the Greek lowercase letter \"omega\").",
"BaseDimensions": {
"T": -1
},
"Units": [
{
"SingularName": "RadianPerSecond",
"PluralName": "RadiansPerSecond",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Nano", "Micro", "Milli", "Centi", "Deci" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rad/s" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "рад/с" ]
}
]
},
{
"SingularName": "DegreePerSecond",
"PluralName": "DegreesPerSecond",
"FromUnitToBaseFunc": "(Math.PI / 180) * {x}",
"FromBaseToUnitFunc": "(180 / Math.PI) * {x}",
"Prefixes": [ "Nano", "Micro", "Milli" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "°/s", "deg/s" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "°/с" ]
}
]
},
{
"SingularName": "DegreePerMinute",
"PluralName": "DegreesPerMinute",
"FromUnitToBaseFunc": "(Math.PI / (180 * 60)) * {x}",
"FromBaseToUnitFunc": "(180 * 60 / Math.PI) * {x}",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "°/min", "deg/min" ]
}
]
},
{
"SingularName": "RevolutionPerSecond",
"PluralName": "RevolutionsPerSecond",
"FromUnitToBaseFunc": "{x} * 6.2831853072",
"FromBaseToUnitFunc": "{x} / 6.2831853072",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "r/s" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "об/с" ]
}
]
},
{
"SingularName": "RevolutionPerMinute",
"PluralName": "RevolutionsPerMinute",
"FromUnitToBaseFunc": "({x} * 6.2831853072) / 60",
"FromBaseToUnitFunc": "({x} / 6.2831853072) * 60",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rpm", "r/min" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "об/мин" ]
}
]
}
]
}